Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 2 | /* |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 3 | * Copyright (C) 2021 Waymo LLC |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 4 | * Copyright (C) 2011 Michal Simek <monstr@monstr.eu> |
| 5 | * Copyright (C) 2011 PetaLogix |
| 6 | * Copyright (C) 2010 Xilinx, Inc. All rights reserved. |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <config.h> |
| 10 | #include <common.h> |
Simon Glass | 1eb69ae | 2019-11-14 12:57:39 -0700 | [diff] [blame] | 11 | #include <cpu_func.h> |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 12 | #include <dm.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 13 | #include <log.h> |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 14 | #include <net.h> |
| 15 | #include <malloc.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 16 | #include <asm/global_data.h> |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 17 | #include <asm/io.h> |
| 18 | #include <phy.h> |
| 19 | #include <miiphy.h> |
Siva Durga Prasad Paladugu | d02a0b1 | 2017-01-06 16:18:50 +0530 | [diff] [blame] | 20 | #include <wait_bit.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 21 | #include <linux/delay.h> |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 22 | |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 23 | DECLARE_GLOBAL_DATA_PTR; |
| 24 | |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 25 | /* Link setup */ |
| 26 | #define XAE_EMMC_LINKSPEED_MASK 0xC0000000 /* Link speed */ |
| 27 | #define XAE_EMMC_LINKSPD_10 0x00000000 /* Link Speed mask for 10 Mbit */ |
| 28 | #define XAE_EMMC_LINKSPD_100 0x40000000 /* Link Speed mask for 100 Mbit */ |
| 29 | #define XAE_EMMC_LINKSPD_1000 0x80000000 /* Link Speed mask for 1000 Mbit */ |
| 30 | |
| 31 | /* Interrupt Status/Enable/Mask Registers bit definitions */ |
| 32 | #define XAE_INT_RXRJECT_MASK 0x00000008 /* Rx frame rejected */ |
| 33 | #define XAE_INT_MGTRDY_MASK 0x00000080 /* MGT clock Lock */ |
| 34 | |
| 35 | /* Receive Configuration Word 1 (RCW1) Register bit definitions */ |
| 36 | #define XAE_RCW1_RX_MASK 0x10000000 /* Receiver enable */ |
| 37 | |
| 38 | /* Transmitter Configuration (TC) Register bit definitions */ |
| 39 | #define XAE_TC_TX_MASK 0x10000000 /* Transmitter enable */ |
| 40 | |
| 41 | #define XAE_UAW1_UNICASTADDR_MASK 0x0000FFFF |
| 42 | |
| 43 | /* MDIO Management Configuration (MC) Register bit definitions */ |
| 44 | #define XAE_MDIO_MC_MDIOEN_MASK 0x00000040 /* MII management enable*/ |
| 45 | |
| 46 | /* MDIO Management Control Register (MCR) Register bit definitions */ |
| 47 | #define XAE_MDIO_MCR_PHYAD_MASK 0x1F000000 /* Phy Address Mask */ |
| 48 | #define XAE_MDIO_MCR_PHYAD_SHIFT 24 /* Phy Address Shift */ |
| 49 | #define XAE_MDIO_MCR_REGAD_MASK 0x001F0000 /* Reg Address Mask */ |
| 50 | #define XAE_MDIO_MCR_REGAD_SHIFT 16 /* Reg Address Shift */ |
| 51 | #define XAE_MDIO_MCR_OP_READ_MASK 0x00008000 /* Op Code Read Mask */ |
| 52 | #define XAE_MDIO_MCR_OP_WRITE_MASK 0x00004000 /* Op Code Write Mask */ |
| 53 | #define XAE_MDIO_MCR_INITIATE_MASK 0x00000800 /* Ready Mask */ |
| 54 | #define XAE_MDIO_MCR_READY_MASK 0x00000080 /* Ready Mask */ |
| 55 | |
| 56 | #define XAE_MDIO_DIV_DFT 29 /* Default MDIO clock divisor */ |
| 57 | |
Siva Durga Prasad Paladugu | 89ce5a9 | 2017-01-06 16:27:15 +0530 | [diff] [blame] | 58 | #define XAXIDMA_BD_STS_ACTUAL_LEN_MASK 0x007FFFFF /* Actual len */ |
| 59 | |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 60 | /* DMA macros */ |
| 61 | /* Bitmasks of XAXIDMA_CR_OFFSET register */ |
| 62 | #define XAXIDMA_CR_RUNSTOP_MASK 0x00000001 /* Start/stop DMA channel */ |
| 63 | #define XAXIDMA_CR_RESET_MASK 0x00000004 /* Reset DMA engine */ |
| 64 | |
| 65 | /* Bitmasks of XAXIDMA_SR_OFFSET register */ |
| 66 | #define XAXIDMA_HALTED_MASK 0x00000001 /* DMA channel halted */ |
| 67 | |
| 68 | /* Bitmask for interrupts */ |
| 69 | #define XAXIDMA_IRQ_IOC_MASK 0x00001000 /* Completion intr */ |
| 70 | #define XAXIDMA_IRQ_DELAY_MASK 0x00002000 /* Delay interrupt */ |
| 71 | #define XAXIDMA_IRQ_ALL_MASK 0x00007000 /* All interrupts */ |
| 72 | |
| 73 | /* Bitmasks of XAXIDMA_BD_CTRL_OFFSET register */ |
| 74 | #define XAXIDMA_BD_CTRL_TXSOF_MASK 0x08000000 /* First tx packet */ |
| 75 | #define XAXIDMA_BD_CTRL_TXEOF_MASK 0x04000000 /* Last tx packet */ |
| 76 | |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 77 | /* Bitmasks for XXV Ethernet MAC */ |
| 78 | #define XXV_TC_TX_MASK 0x00000001 |
| 79 | #define XXV_TC_FCS_MASK 0x00000002 |
| 80 | #define XXV_RCW1_RX_MASK 0x00000001 |
| 81 | #define XXV_RCW1_FCS_MASK 0x00000002 |
| 82 | |
| 83 | #define DMAALIGN 128 |
| 84 | #define XXV_MIN_PKT_SIZE 60 |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 85 | |
| 86 | static u8 rxframe[PKTSIZE_ALIGN] __attribute((aligned(DMAALIGN))); |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 87 | static u8 txminframe[XXV_MIN_PKT_SIZE] __attribute((aligned(DMAALIGN))); |
| 88 | |
| 89 | enum emac_variant { |
| 90 | EMAC_1G = 0, |
| 91 | EMAC_10G_25G = 1, |
| 92 | }; |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 93 | |
| 94 | /* Reflect dma offsets */ |
| 95 | struct axidma_reg { |
| 96 | u32 control; /* DMACR */ |
| 97 | u32 status; /* DMASR */ |
Vipul Kumar | 047f3bf | 2018-01-23 14:52:35 +0530 | [diff] [blame] | 98 | u32 current; /* CURDESC low 32 bit */ |
| 99 | u32 current_hi; /* CURDESC high 32 bit */ |
| 100 | u32 tail; /* TAILDESC low 32 bit */ |
| 101 | u32 tail_hi; /* TAILDESC high 32 bit */ |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 102 | }; |
| 103 | |
Ashok Reddy Soma | 215f206 | 2021-06-24 00:34:40 -0600 | [diff] [blame] | 104 | /* Platform data structures */ |
| 105 | struct axidma_plat { |
| 106 | struct eth_pdata eth_pdata; |
| 107 | struct axidma_reg *dmatx; |
| 108 | struct axidma_reg *dmarx; |
| 109 | int phyaddr; |
| 110 | u8 eth_hasnobuf; |
| 111 | int phy_of_handle; |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 112 | enum emac_variant mactype; |
Ashok Reddy Soma | 215f206 | 2021-06-24 00:34:40 -0600 | [diff] [blame] | 113 | }; |
| 114 | |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 115 | /* Private driver structures */ |
| 116 | struct axidma_priv { |
| 117 | struct axidma_reg *dmatx; |
| 118 | struct axidma_reg *dmarx; |
| 119 | int phyaddr; |
Michal Simek | 6609f35 | 2015-12-09 14:39:42 +0100 | [diff] [blame] | 120 | struct axi_regs *iobase; |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 121 | phy_interface_t interface; |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 122 | struct phy_device *phydev; |
| 123 | struct mii_dev *bus; |
Siva Durga Prasad Paladugu | 89ce5a9 | 2017-01-06 16:27:15 +0530 | [diff] [blame] | 124 | u8 eth_hasnobuf; |
Siva Durga Prasad Paladugu | fccfb71 | 2019-03-15 17:46:45 +0530 | [diff] [blame] | 125 | int phy_of_handle; |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 126 | enum emac_variant mactype; |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 127 | }; |
| 128 | |
| 129 | /* BD descriptors */ |
| 130 | struct axidma_bd { |
Ashok Reddy Soma | f9d3b31 | 2020-09-03 08:36:43 -0600 | [diff] [blame] | 131 | u32 next_desc; /* Next descriptor pointer */ |
| 132 | u32 next_desc_msb; |
| 133 | u32 buf_addr; /* Buffer address */ |
| 134 | u32 buf_addr_msb; |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 135 | u32 reserved3; |
| 136 | u32 reserved4; |
| 137 | u32 cntrl; /* Control */ |
| 138 | u32 status; /* Status */ |
| 139 | u32 app0; |
| 140 | u32 app1; /* TX start << 16 | insert */ |
| 141 | u32 app2; /* TX csum seed */ |
| 142 | u32 app3; |
| 143 | u32 app4; |
| 144 | u32 sw_id_offset; |
| 145 | u32 reserved5; |
| 146 | u32 reserved6; |
| 147 | }; |
| 148 | |
| 149 | /* Static BDs - driver uses only one BD */ |
| 150 | static struct axidma_bd tx_bd __attribute((aligned(DMAALIGN))); |
| 151 | static struct axidma_bd rx_bd __attribute((aligned(DMAALIGN))); |
| 152 | |
| 153 | struct axi_regs { |
| 154 | u32 reserved[3]; |
| 155 | u32 is; /* 0xC: Interrupt status */ |
| 156 | u32 reserved2; |
| 157 | u32 ie; /* 0x14: Interrupt enable */ |
| 158 | u32 reserved3[251]; |
| 159 | u32 rcw1; /* 0x404: Rx Configuration Word 1 */ |
| 160 | u32 tc; /* 0x408: Tx Configuration */ |
| 161 | u32 reserved4; |
| 162 | u32 emmc; /* 0x410: EMAC mode configuration */ |
| 163 | u32 reserved5[59]; |
| 164 | u32 mdio_mc; /* 0x500: MII Management Config */ |
| 165 | u32 mdio_mcr; /* 0x504: MII Management Control */ |
| 166 | u32 mdio_mwd; /* 0x508: MII Management Write Data */ |
| 167 | u32 mdio_mrd; /* 0x50C: MII Management Read Data */ |
| 168 | u32 reserved6[124]; |
| 169 | u32 uaw0; /* 0x700: Unicast address word 0 */ |
| 170 | u32 uaw1; /* 0x704: Unicast address word 1 */ |
| 171 | }; |
| 172 | |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 173 | struct xxv_axi_regs { |
| 174 | u32 gt_reset; /* 0x0 */ |
| 175 | u32 reserved[2]; |
| 176 | u32 tc; /* 0xC: Tx Configuration */ |
| 177 | u32 reserved2; |
| 178 | u32 rcw1; /* 0x14: Rx Configuration Word 1 */ |
| 179 | }; |
| 180 | |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 181 | /* Use MII register 1 (MII status register) to detect PHY */ |
| 182 | #define PHY_DETECT_REG 1 |
| 183 | |
| 184 | /* |
| 185 | * Mask used to verify certain PHY features (or register contents) |
| 186 | * in the register above: |
| 187 | * 0x1000: 10Mbps full duplex support |
| 188 | * 0x0800: 10Mbps half duplex support |
| 189 | * 0x0008: Auto-negotiation support |
| 190 | */ |
| 191 | #define PHY_DETECT_MASK 0x1808 |
| 192 | |
Michal Simek | f36bbcc | 2015-12-09 14:36:31 +0100 | [diff] [blame] | 193 | static inline int mdio_wait(struct axi_regs *regs) |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 194 | { |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 195 | u32 timeout = 200; |
| 196 | |
| 197 | /* Wait till MDIO interface is ready to accept a new transaction. */ |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 198 | while (timeout && (!(readl(®s->mdio_mcr) |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 199 | & XAE_MDIO_MCR_READY_MASK))) { |
| 200 | timeout--; |
| 201 | udelay(1); |
| 202 | } |
| 203 | if (!timeout) { |
| 204 | printf("%s: Timeout\n", __func__); |
| 205 | return 1; |
| 206 | } |
| 207 | return 0; |
| 208 | } |
| 209 | |
Vipul Kumar | 047f3bf | 2018-01-23 14:52:35 +0530 | [diff] [blame] | 210 | /** |
| 211 | * axienet_dma_write - Memory mapped Axi DMA register Buffer Descriptor write. |
| 212 | * @bd: pointer to BD descriptor structure |
| 213 | * @desc: Address offset of DMA descriptors |
| 214 | * |
| 215 | * This function writes the value into the corresponding Axi DMA register. |
| 216 | */ |
| 217 | static inline void axienet_dma_write(struct axidma_bd *bd, u32 *desc) |
| 218 | { |
| 219 | #if defined(CONFIG_PHYS_64BIT) |
Ashok Reddy Soma | f9d3b31 | 2020-09-03 08:36:43 -0600 | [diff] [blame] | 220 | writeq((unsigned long)bd, desc); |
Vipul Kumar | 047f3bf | 2018-01-23 14:52:35 +0530 | [diff] [blame] | 221 | #else |
| 222 | writel((u32)bd, desc); |
| 223 | #endif |
| 224 | } |
| 225 | |
Michal Simek | 0d78abf | 2015-12-09 14:44:38 +0100 | [diff] [blame] | 226 | static u32 phyread(struct axidma_priv *priv, u32 phyaddress, u32 registernum, |
| 227 | u16 *val) |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 228 | { |
Michal Simek | 0d78abf | 2015-12-09 14:44:38 +0100 | [diff] [blame] | 229 | struct axi_regs *regs = priv->iobase; |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 230 | u32 mdioctrlreg = 0; |
| 231 | |
Michal Simek | f36bbcc | 2015-12-09 14:36:31 +0100 | [diff] [blame] | 232 | if (mdio_wait(regs)) |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 233 | return 1; |
| 234 | |
| 235 | mdioctrlreg = ((phyaddress << XAE_MDIO_MCR_PHYAD_SHIFT) & |
| 236 | XAE_MDIO_MCR_PHYAD_MASK) | |
| 237 | ((registernum << XAE_MDIO_MCR_REGAD_SHIFT) |
| 238 | & XAE_MDIO_MCR_REGAD_MASK) | |
| 239 | XAE_MDIO_MCR_INITIATE_MASK | |
| 240 | XAE_MDIO_MCR_OP_READ_MASK; |
| 241 | |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 242 | writel(mdioctrlreg, ®s->mdio_mcr); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 243 | |
Michal Simek | f36bbcc | 2015-12-09 14:36:31 +0100 | [diff] [blame] | 244 | if (mdio_wait(regs)) |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 245 | return 1; |
| 246 | |
| 247 | /* Read data */ |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 248 | *val = readl(®s->mdio_mrd); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 249 | return 0; |
| 250 | } |
| 251 | |
Michal Simek | 0d78abf | 2015-12-09 14:44:38 +0100 | [diff] [blame] | 252 | static u32 phywrite(struct axidma_priv *priv, u32 phyaddress, u32 registernum, |
| 253 | u32 data) |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 254 | { |
Michal Simek | 0d78abf | 2015-12-09 14:44:38 +0100 | [diff] [blame] | 255 | struct axi_regs *regs = priv->iobase; |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 256 | u32 mdioctrlreg = 0; |
| 257 | |
Michal Simek | f36bbcc | 2015-12-09 14:36:31 +0100 | [diff] [blame] | 258 | if (mdio_wait(regs)) |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 259 | return 1; |
| 260 | |
| 261 | mdioctrlreg = ((phyaddress << XAE_MDIO_MCR_PHYAD_SHIFT) & |
| 262 | XAE_MDIO_MCR_PHYAD_MASK) | |
| 263 | ((registernum << XAE_MDIO_MCR_REGAD_SHIFT) |
| 264 | & XAE_MDIO_MCR_REGAD_MASK) | |
| 265 | XAE_MDIO_MCR_INITIATE_MASK | |
| 266 | XAE_MDIO_MCR_OP_WRITE_MASK; |
| 267 | |
| 268 | /* Write data */ |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 269 | writel(data, ®s->mdio_mwd); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 270 | |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 271 | writel(mdioctrlreg, ®s->mdio_mcr); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 272 | |
Michal Simek | f36bbcc | 2015-12-09 14:36:31 +0100 | [diff] [blame] | 273 | if (mdio_wait(regs)) |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 274 | return 1; |
| 275 | |
| 276 | return 0; |
| 277 | } |
| 278 | |
Michal Simek | 5d0449d | 2015-12-08 16:10:05 +0100 | [diff] [blame] | 279 | static int axiemac_phy_init(struct udevice *dev) |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 280 | { |
| 281 | u16 phyreg; |
Patrick van Gelder | 945a550 | 2020-06-03 14:18:04 +0200 | [diff] [blame] | 282 | int i; |
| 283 | u32 ret; |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 284 | struct axidma_priv *priv = dev_get_priv(dev); |
Michal Simek | 6609f35 | 2015-12-09 14:39:42 +0100 | [diff] [blame] | 285 | struct axi_regs *regs = priv->iobase; |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 286 | struct phy_device *phydev; |
| 287 | |
| 288 | u32 supported = SUPPORTED_10baseT_Half | |
| 289 | SUPPORTED_10baseT_Full | |
| 290 | SUPPORTED_100baseT_Half | |
| 291 | SUPPORTED_100baseT_Full | |
| 292 | SUPPORTED_1000baseT_Half | |
| 293 | SUPPORTED_1000baseT_Full; |
| 294 | |
Michal Simek | 5d0449d | 2015-12-08 16:10:05 +0100 | [diff] [blame] | 295 | /* Set default MDIO divisor */ |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 296 | writel(XAE_MDIO_DIV_DFT | XAE_MDIO_MC_MDIOEN_MASK, ®s->mdio_mc); |
Michal Simek | 5d0449d | 2015-12-08 16:10:05 +0100 | [diff] [blame] | 297 | |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 298 | if (priv->phyaddr == -1) { |
| 299 | /* Detect the PHY address */ |
| 300 | for (i = 31; i >= 0; i--) { |
Michal Simek | 0d78abf | 2015-12-09 14:44:38 +0100 | [diff] [blame] | 301 | ret = phyread(priv, i, PHY_DETECT_REG, &phyreg); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 302 | if (!ret && (phyreg != 0xFFFF) && |
| 303 | ((phyreg & PHY_DETECT_MASK) == PHY_DETECT_MASK)) { |
| 304 | /* Found a valid PHY address */ |
| 305 | priv->phyaddr = i; |
| 306 | debug("axiemac: Found valid phy address, %x\n", |
Michal Simek | 2652a62 | 2015-12-09 10:54:53 +0100 | [diff] [blame] | 307 | i); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 308 | break; |
| 309 | } |
| 310 | } |
| 311 | } |
| 312 | |
| 313 | /* Interface - look at tsec */ |
Siva Durga Prasad Paladugu | 9c0da76 | 2016-02-21 15:46:14 +0530 | [diff] [blame] | 314 | phydev = phy_connect(priv->bus, priv->phyaddr, dev, priv->interface); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 315 | |
| 316 | phydev->supported &= supported; |
| 317 | phydev->advertising = phydev->supported; |
| 318 | priv->phydev = phydev; |
Siva Durga Prasad Paladugu | fccfb71 | 2019-03-15 17:46:45 +0530 | [diff] [blame] | 319 | if (priv->phy_of_handle) |
| 320 | priv->phydev->node = offset_to_ofnode(priv->phy_of_handle); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 321 | phy_config(phydev); |
Michal Simek | 5d0449d | 2015-12-08 16:10:05 +0100 | [diff] [blame] | 322 | |
| 323 | return 0; |
| 324 | } |
| 325 | |
| 326 | /* Setting axi emac and phy to proper setting */ |
| 327 | static int setup_phy(struct udevice *dev) |
| 328 | { |
Siva Durga Prasad Paladugu | 8964f24 | 2016-02-21 15:46:15 +0530 | [diff] [blame] | 329 | u16 temp; |
| 330 | u32 speed, emmc_reg, ret; |
Michal Simek | 5d0449d | 2015-12-08 16:10:05 +0100 | [diff] [blame] | 331 | struct axidma_priv *priv = dev_get_priv(dev); |
| 332 | struct axi_regs *regs = priv->iobase; |
| 333 | struct phy_device *phydev = priv->phydev; |
| 334 | |
Siva Durga Prasad Paladugu | 8964f24 | 2016-02-21 15:46:15 +0530 | [diff] [blame] | 335 | if (priv->interface == PHY_INTERFACE_MODE_SGMII) { |
| 336 | /* |
| 337 | * In SGMII cases the isolate bit might set |
| 338 | * after DMA and ethernet resets and hence |
| 339 | * check and clear if set. |
| 340 | */ |
| 341 | ret = phyread(priv, priv->phyaddr, MII_BMCR, &temp); |
| 342 | if (ret) |
| 343 | return 0; |
| 344 | if (temp & BMCR_ISOLATE) { |
| 345 | temp &= ~BMCR_ISOLATE; |
| 346 | ret = phywrite(priv, priv->phyaddr, MII_BMCR, temp); |
| 347 | if (ret) |
| 348 | return 0; |
| 349 | } |
| 350 | } |
| 351 | |
Timur Tabi | 11af8d6 | 2012-07-09 08:52:43 +0000 | [diff] [blame] | 352 | if (phy_startup(phydev)) { |
| 353 | printf("axiemac: could not initialize PHY %s\n", |
| 354 | phydev->dev->name); |
| 355 | return 0; |
| 356 | } |
Michal Simek | 6f9b937 | 2013-11-21 16:15:51 +0100 | [diff] [blame] | 357 | if (!phydev->link) { |
| 358 | printf("%s: No link.\n", phydev->dev->name); |
| 359 | return 0; |
| 360 | } |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 361 | |
| 362 | switch (phydev->speed) { |
| 363 | case 1000: |
| 364 | speed = XAE_EMMC_LINKSPD_1000; |
| 365 | break; |
| 366 | case 100: |
| 367 | speed = XAE_EMMC_LINKSPD_100; |
| 368 | break; |
| 369 | case 10: |
| 370 | speed = XAE_EMMC_LINKSPD_10; |
| 371 | break; |
| 372 | default: |
| 373 | return 0; |
| 374 | } |
| 375 | |
| 376 | /* Setup the emac for the phy speed */ |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 377 | emmc_reg = readl(®s->emmc); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 378 | emmc_reg &= ~XAE_EMMC_LINKSPEED_MASK; |
| 379 | emmc_reg |= speed; |
| 380 | |
| 381 | /* Write new speed setting out to Axi Ethernet */ |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 382 | writel(emmc_reg, ®s->emmc); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 383 | |
| 384 | /* |
| 385 | * Setting the operating speed of the MAC needs a delay. There |
| 386 | * doesn't seem to be register to poll, so please consider this |
| 387 | * during your application design. |
| 388 | */ |
| 389 | udelay(1); |
| 390 | |
| 391 | return 1; |
| 392 | } |
| 393 | |
| 394 | /* STOP DMA transfers */ |
Michal Simek | ad499e4 | 2015-12-16 09:18:12 +0100 | [diff] [blame] | 395 | static void axiemac_stop(struct udevice *dev) |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 396 | { |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 397 | struct axidma_priv *priv = dev_get_priv(dev); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 398 | u32 temp; |
| 399 | |
| 400 | /* Stop the hardware */ |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 401 | temp = readl(&priv->dmatx->control); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 402 | temp &= ~XAXIDMA_CR_RUNSTOP_MASK; |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 403 | writel(temp, &priv->dmatx->control); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 404 | |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 405 | temp = readl(&priv->dmarx->control); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 406 | temp &= ~XAXIDMA_CR_RUNSTOP_MASK; |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 407 | writel(temp, &priv->dmarx->control); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 408 | |
| 409 | debug("axiemac: Halted\n"); |
| 410 | } |
| 411 | |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 412 | static int xxv_axi_ethernet_init(struct axidma_priv *priv) |
| 413 | { |
| 414 | struct xxv_axi_regs *regs = (struct xxv_axi_regs *)priv->iobase; |
| 415 | |
| 416 | writel(readl(®s->rcw1) | XXV_RCW1_FCS_MASK, ®s->rcw1); |
| 417 | writel(readl(®s->tc) | XXV_TC_FCS_MASK, ®s->tc); |
| 418 | writel(readl(®s->tc) | XXV_TC_TX_MASK, ®s->tc); |
| 419 | writel(readl(®s->rcw1) | XXV_RCW1_RX_MASK, ®s->rcw1); |
| 420 | |
| 421 | return 0; |
| 422 | } |
| 423 | |
Michal Simek | f098548 | 2015-12-09 14:53:51 +0100 | [diff] [blame] | 424 | static int axi_ethernet_init(struct axidma_priv *priv) |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 425 | { |
Michal Simek | f098548 | 2015-12-09 14:53:51 +0100 | [diff] [blame] | 426 | struct axi_regs *regs = priv->iobase; |
Siva Durga Prasad Paladugu | d02a0b1 | 2017-01-06 16:18:50 +0530 | [diff] [blame] | 427 | int err; |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 428 | |
| 429 | /* |
| 430 | * Check the status of the MgtRdy bit in the interrupt status |
| 431 | * registers. This must be done to allow the MGT clock to become stable |
| 432 | * for the Sgmii and 1000BaseX PHY interfaces. No other register reads |
| 433 | * will be valid until this bit is valid. |
| 434 | * The bit is always a 1 for all other PHY interfaces. |
Siva Durga Prasad Paladugu | 89ce5a9 | 2017-01-06 16:27:15 +0530 | [diff] [blame] | 435 | * Interrupt status and enable registers are not available in non |
| 436 | * processor mode and hence bypass in this mode |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 437 | */ |
Siva Durga Prasad Paladugu | 89ce5a9 | 2017-01-06 16:27:15 +0530 | [diff] [blame] | 438 | if (!priv->eth_hasnobuf) { |
Álvaro Fernández Rojas | 4826350 | 2018-01-23 17:14:55 +0100 | [diff] [blame] | 439 | err = wait_for_bit_le32(®s->is, XAE_INT_MGTRDY_MASK, |
| 440 | true, 200, false); |
Siva Durga Prasad Paladugu | 89ce5a9 | 2017-01-06 16:27:15 +0530 | [diff] [blame] | 441 | if (err) { |
| 442 | printf("%s: Timeout\n", __func__); |
| 443 | return 1; |
| 444 | } |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 445 | |
Siva Durga Prasad Paladugu | 89ce5a9 | 2017-01-06 16:27:15 +0530 | [diff] [blame] | 446 | /* |
| 447 | * Stop the device and reset HW |
| 448 | * Disable interrupts |
| 449 | */ |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 450 | writel(0, ®s->ie); |
Siva Durga Prasad Paladugu | 89ce5a9 | 2017-01-06 16:27:15 +0530 | [diff] [blame] | 451 | } |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 452 | |
| 453 | /* Disable the receiver */ |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 454 | writel(readl(®s->rcw1) & ~XAE_RCW1_RX_MASK, ®s->rcw1); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 455 | |
| 456 | /* |
| 457 | * Stopping the receiver in mid-packet causes a dropped packet |
| 458 | * indication from HW. Clear it. |
| 459 | */ |
Siva Durga Prasad Paladugu | 89ce5a9 | 2017-01-06 16:27:15 +0530 | [diff] [blame] | 460 | if (!priv->eth_hasnobuf) { |
| 461 | /* Set the interrupt status register to clear the interrupt */ |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 462 | writel(XAE_INT_RXRJECT_MASK, ®s->is); |
Siva Durga Prasad Paladugu | 89ce5a9 | 2017-01-06 16:27:15 +0530 | [diff] [blame] | 463 | } |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 464 | |
| 465 | /* Setup HW */ |
| 466 | /* Set default MDIO divisor */ |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 467 | writel(XAE_MDIO_DIV_DFT | XAE_MDIO_MC_MDIOEN_MASK, ®s->mdio_mc); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 468 | |
| 469 | debug("axiemac: InitHw done\n"); |
| 470 | return 0; |
| 471 | } |
| 472 | |
Michal Simek | ad499e4 | 2015-12-16 09:18:12 +0100 | [diff] [blame] | 473 | static int axiemac_write_hwaddr(struct udevice *dev) |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 474 | { |
Simon Glass | c69cda2 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 475 | struct eth_pdata *pdata = dev_get_plat(dev); |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 476 | struct axidma_priv *priv = dev_get_priv(dev); |
| 477 | struct axi_regs *regs = priv->iobase; |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 478 | |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 479 | if (priv->mactype != EMAC_1G) |
| 480 | return 0; |
| 481 | |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 482 | /* Set the MAC address */ |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 483 | int val = ((pdata->enetaddr[3] << 24) | (pdata->enetaddr[2] << 16) | |
| 484 | (pdata->enetaddr[1] << 8) | (pdata->enetaddr[0])); |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 485 | writel(val, ®s->uaw0); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 486 | |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 487 | val = (pdata->enetaddr[5] << 8) | pdata->enetaddr[4]; |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 488 | val |= readl(®s->uaw1) & ~XAE_UAW1_UNICASTADDR_MASK; |
| 489 | writel(val, ®s->uaw1); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 490 | return 0; |
| 491 | } |
| 492 | |
| 493 | /* Reset DMA engine */ |
Michal Simek | f098548 | 2015-12-09 14:53:51 +0100 | [diff] [blame] | 494 | static void axi_dma_init(struct axidma_priv *priv) |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 495 | { |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 496 | u32 timeout = 500; |
| 497 | |
| 498 | /* Reset the engine so the hardware starts from a known state */ |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 499 | writel(XAXIDMA_CR_RESET_MASK, &priv->dmatx->control); |
| 500 | writel(XAXIDMA_CR_RESET_MASK, &priv->dmarx->control); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 501 | |
| 502 | /* At the initialization time, hardware should finish reset quickly */ |
| 503 | while (timeout--) { |
| 504 | /* Check transmit/receive channel */ |
| 505 | /* Reset is done when the reset bit is low */ |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 506 | if (!((readl(&priv->dmatx->control) | |
| 507 | readl(&priv->dmarx->control)) |
Michal Simek | 3e3f8ba | 2015-10-28 11:00:47 +0100 | [diff] [blame] | 508 | & XAXIDMA_CR_RESET_MASK)) { |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 509 | break; |
| 510 | } |
| 511 | } |
| 512 | if (!timeout) |
| 513 | printf("%s: Timeout\n", __func__); |
| 514 | } |
| 515 | |
Michal Simek | ad499e4 | 2015-12-16 09:18:12 +0100 | [diff] [blame] | 516 | static int axiemac_start(struct udevice *dev) |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 517 | { |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 518 | struct axidma_priv *priv = dev_get_priv(dev); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 519 | u32 temp; |
| 520 | |
| 521 | debug("axiemac: Init started\n"); |
| 522 | /* |
| 523 | * Initialize AXIDMA engine. AXIDMA engine must be initialized before |
| 524 | * AxiEthernet. During AXIDMA engine initialization, AXIDMA hardware is |
| 525 | * reset, and since AXIDMA reset line is connected to AxiEthernet, this |
| 526 | * would ensure a reset of AxiEthernet. |
| 527 | */ |
Michal Simek | f098548 | 2015-12-09 14:53:51 +0100 | [diff] [blame] | 528 | axi_dma_init(priv); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 529 | |
| 530 | /* Initialize AxiEthernet hardware. */ |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 531 | if (priv->mactype == EMAC_1G) { |
| 532 | if (axi_ethernet_init(priv)) |
| 533 | return -1; |
| 534 | } else { |
| 535 | if (xxv_axi_ethernet_init(priv)) |
| 536 | return -1; |
| 537 | } |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 538 | |
| 539 | /* Disable all RX interrupts before RxBD space setup */ |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 540 | temp = readl(&priv->dmarx->control); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 541 | temp &= ~XAXIDMA_IRQ_ALL_MASK; |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 542 | writel(temp, &priv->dmarx->control); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 543 | |
| 544 | /* Start DMA RX channel. Now it's ready to receive data.*/ |
Vipul Kumar | 047f3bf | 2018-01-23 14:52:35 +0530 | [diff] [blame] | 545 | axienet_dma_write(&rx_bd, &priv->dmarx->current); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 546 | |
| 547 | /* Setup the BD. */ |
| 548 | memset(&rx_bd, 0, sizeof(rx_bd)); |
Ashok Reddy Soma | f9d3b31 | 2020-09-03 08:36:43 -0600 | [diff] [blame] | 549 | rx_bd.next_desc = lower_32_bits((unsigned long)&rx_bd); |
| 550 | rx_bd.buf_addr = lower_32_bits((unsigned long)&rxframe); |
| 551 | #if defined(CONFIG_PHYS_64BIT) |
| 552 | rx_bd.next_desc_msb = upper_32_bits((unsigned long)&rx_bd); |
| 553 | rx_bd.buf_addr_msb = upper_32_bits((unsigned long)&rxframe); |
| 554 | #endif |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 555 | rx_bd.cntrl = sizeof(rxframe); |
| 556 | /* Flush the last BD so DMA core could see the updates */ |
Ashok Reddy Soma | 315a3c3 | 2020-09-03 08:36:44 -0600 | [diff] [blame] | 557 | flush_cache((phys_addr_t)&rx_bd, sizeof(rx_bd)); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 558 | |
| 559 | /* It is necessary to flush rxframe because if you don't do it |
| 560 | * then cache can contain uninitialized data */ |
Ashok Reddy Soma | 315a3c3 | 2020-09-03 08:36:44 -0600 | [diff] [blame] | 561 | flush_cache((phys_addr_t)&rxframe, sizeof(rxframe)); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 562 | |
| 563 | /* Start the hardware */ |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 564 | temp = readl(&priv->dmarx->control); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 565 | temp |= XAXIDMA_CR_RUNSTOP_MASK; |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 566 | writel(temp, &priv->dmarx->control); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 567 | |
| 568 | /* Rx BD is ready - start */ |
Vipul Kumar | 047f3bf | 2018-01-23 14:52:35 +0530 | [diff] [blame] | 569 | axienet_dma_write(&rx_bd, &priv->dmarx->tail); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 570 | |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 571 | if (priv->mactype == EMAC_1G) { |
| 572 | struct axi_regs *regs = priv->iobase; |
| 573 | /* Enable TX */ |
| 574 | writel(XAE_TC_TX_MASK, ®s->tc); |
| 575 | /* Enable RX */ |
| 576 | writel(XAE_RCW1_RX_MASK, ®s->rcw1); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 577 | |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 578 | /* PHY setup */ |
| 579 | if (!setup_phy(dev)) { |
| 580 | axiemac_stop(dev); |
| 581 | return -1; |
| 582 | } |
| 583 | } else { |
| 584 | struct xxv_axi_regs *regs = (struct xxv_axi_regs *)priv->iobase; |
| 585 | /* Enable TX */ |
| 586 | writel(readl(®s->tc) | XXV_TC_TX_MASK, ®s->tc); |
| 587 | |
| 588 | /* Enable RX */ |
| 589 | writel(readl(®s->rcw1) | XXV_RCW1_RX_MASK, ®s->rcw1); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 590 | } |
| 591 | |
| 592 | debug("axiemac: Init complete\n"); |
| 593 | return 0; |
| 594 | } |
| 595 | |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 596 | static int axiemac_send(struct udevice *dev, void *ptr, int len) |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 597 | { |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 598 | struct axidma_priv *priv = dev_get_priv(dev); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 599 | u32 timeout; |
| 600 | |
| 601 | if (len > PKTSIZE_ALIGN) |
| 602 | len = PKTSIZE_ALIGN; |
| 603 | |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 604 | /* If size is less than min packet size, pad to min size */ |
| 605 | if (priv->mactype == EMAC_10G_25G && len < XXV_MIN_PKT_SIZE) { |
| 606 | memset(txminframe, 0, XXV_MIN_PKT_SIZE); |
| 607 | memcpy(txminframe, ptr, len); |
| 608 | len = XXV_MIN_PKT_SIZE; |
| 609 | ptr = txminframe; |
| 610 | } |
| 611 | |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 612 | /* Flush packet to main memory to be trasfered by DMA */ |
Ashok Reddy Soma | 315a3c3 | 2020-09-03 08:36:44 -0600 | [diff] [blame] | 613 | flush_cache((phys_addr_t)ptr, len); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 614 | |
| 615 | /* Setup Tx BD */ |
| 616 | memset(&tx_bd, 0, sizeof(tx_bd)); |
| 617 | /* At the end of the ring, link the last BD back to the top */ |
Ashok Reddy Soma | f9d3b31 | 2020-09-03 08:36:43 -0600 | [diff] [blame] | 618 | tx_bd.next_desc = lower_32_bits((unsigned long)&tx_bd); |
| 619 | tx_bd.buf_addr = lower_32_bits((unsigned long)ptr); |
| 620 | #if defined(CONFIG_PHYS_64BIT) |
| 621 | tx_bd.next_desc_msb = upper_32_bits((unsigned long)&tx_bd); |
| 622 | tx_bd.buf_addr_msb = upper_32_bits((unsigned long)ptr); |
| 623 | #endif |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 624 | /* Save len */ |
| 625 | tx_bd.cntrl = len | XAXIDMA_BD_CTRL_TXSOF_MASK | |
| 626 | XAXIDMA_BD_CTRL_TXEOF_MASK; |
| 627 | |
| 628 | /* Flush the last BD so DMA core could see the updates */ |
Ashok Reddy Soma | 315a3c3 | 2020-09-03 08:36:44 -0600 | [diff] [blame] | 629 | flush_cache((phys_addr_t)&tx_bd, sizeof(tx_bd)); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 630 | |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 631 | if (readl(&priv->dmatx->status) & XAXIDMA_HALTED_MASK) { |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 632 | u32 temp; |
Vipul Kumar | 047f3bf | 2018-01-23 14:52:35 +0530 | [diff] [blame] | 633 | axienet_dma_write(&tx_bd, &priv->dmatx->current); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 634 | /* Start the hardware */ |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 635 | temp = readl(&priv->dmatx->control); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 636 | temp |= XAXIDMA_CR_RUNSTOP_MASK; |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 637 | writel(temp, &priv->dmatx->control); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 638 | } |
| 639 | |
| 640 | /* Start transfer */ |
Vipul Kumar | 047f3bf | 2018-01-23 14:52:35 +0530 | [diff] [blame] | 641 | axienet_dma_write(&tx_bd, &priv->dmatx->tail); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 642 | |
| 643 | /* Wait for transmission to complete */ |
| 644 | debug("axiemac: Waiting for tx to be done\n"); |
| 645 | timeout = 200; |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 646 | while (timeout && (!(readl(&priv->dmatx->status) & |
Michal Simek | 3e3f8ba | 2015-10-28 11:00:47 +0100 | [diff] [blame] | 647 | (XAXIDMA_IRQ_DELAY_MASK | XAXIDMA_IRQ_IOC_MASK)))) { |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 648 | timeout--; |
| 649 | udelay(1); |
| 650 | } |
| 651 | if (!timeout) { |
| 652 | printf("%s: Timeout\n", __func__); |
| 653 | return 1; |
| 654 | } |
| 655 | |
| 656 | debug("axiemac: Sending complete\n"); |
| 657 | return 0; |
| 658 | } |
| 659 | |
Michal Simek | f098548 | 2015-12-09 14:53:51 +0100 | [diff] [blame] | 660 | static int isrxready(struct axidma_priv *priv) |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 661 | { |
| 662 | u32 status; |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 663 | |
| 664 | /* Read pending interrupts */ |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 665 | status = readl(&priv->dmarx->status); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 666 | |
| 667 | /* Acknowledge pending interrupts */ |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 668 | writel(status & XAXIDMA_IRQ_ALL_MASK, &priv->dmarx->status); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 669 | |
| 670 | /* |
| 671 | * If Reception done interrupt is asserted, call RX call back function |
| 672 | * to handle the processed BDs and then raise the according flag. |
| 673 | */ |
| 674 | if ((status & (XAXIDMA_IRQ_DELAY_MASK | XAXIDMA_IRQ_IOC_MASK))) |
| 675 | return 1; |
| 676 | |
| 677 | return 0; |
| 678 | } |
| 679 | |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 680 | static int axiemac_recv(struct udevice *dev, int flags, uchar **packetp) |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 681 | { |
| 682 | u32 length; |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 683 | struct axidma_priv *priv = dev_get_priv(dev); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 684 | u32 temp; |
| 685 | |
| 686 | /* Wait for an incoming packet */ |
Michal Simek | f098548 | 2015-12-09 14:53:51 +0100 | [diff] [blame] | 687 | if (!isrxready(priv)) |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 688 | return -1; |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 689 | |
| 690 | debug("axiemac: RX data ready\n"); |
| 691 | |
| 692 | /* Disable IRQ for a moment till packet is handled */ |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 693 | temp = readl(&priv->dmarx->control); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 694 | temp &= ~XAXIDMA_IRQ_ALL_MASK; |
Siva Durga Prasad Paladugu | a04a5da | 2017-11-23 12:23:12 +0530 | [diff] [blame] | 695 | writel(temp, &priv->dmarx->control); |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 696 | if (!priv->eth_hasnobuf && priv->mactype == EMAC_1G) |
Siva Durga Prasad Paladugu | 89ce5a9 | 2017-01-06 16:27:15 +0530 | [diff] [blame] | 697 | length = rx_bd.app4 & 0xFFFF; /* max length mask */ |
| 698 | else |
| 699 | length = rx_bd.status & XAXIDMA_BD_STS_ACTUAL_LEN_MASK; |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 700 | |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 701 | #ifdef DEBUG |
| 702 | print_buffer(&rxframe, &rxframe[0], 1, length, 16); |
| 703 | #endif |
Michal Simek | 97d2363 | 2015-12-09 14:13:23 +0100 | [diff] [blame] | 704 | |
| 705 | *packetp = rxframe; |
| 706 | return length; |
| 707 | } |
| 708 | |
| 709 | static int axiemac_free_pkt(struct udevice *dev, uchar *packet, int length) |
| 710 | { |
| 711 | struct axidma_priv *priv = dev_get_priv(dev); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 712 | |
| 713 | #ifdef DEBUG |
| 714 | /* It is useful to clear buffer to be sure that it is consistent */ |
| 715 | memset(rxframe, 0, sizeof(rxframe)); |
| 716 | #endif |
| 717 | /* Setup RxBD */ |
| 718 | /* Clear the whole buffer and setup it again - all flags are cleared */ |
| 719 | memset(&rx_bd, 0, sizeof(rx_bd)); |
Ashok Reddy Soma | f9d3b31 | 2020-09-03 08:36:43 -0600 | [diff] [blame] | 720 | rx_bd.next_desc = lower_32_bits((unsigned long)&rx_bd); |
| 721 | rx_bd.buf_addr = lower_32_bits((unsigned long)&rxframe); |
| 722 | #if defined(CONFIG_PHYS_64BIT) |
| 723 | rx_bd.next_desc_msb = upper_32_bits((unsigned long)&rx_bd); |
| 724 | rx_bd.buf_addr_msb = upper_32_bits((unsigned long)&rxframe); |
| 725 | #endif |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 726 | rx_bd.cntrl = sizeof(rxframe); |
| 727 | |
| 728 | /* Write bd to HW */ |
Ashok Reddy Soma | 315a3c3 | 2020-09-03 08:36:44 -0600 | [diff] [blame] | 729 | flush_cache((phys_addr_t)&rx_bd, sizeof(rx_bd)); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 730 | |
| 731 | /* It is necessary to flush rxframe because if you don't do it |
| 732 | * then cache will contain previous packet */ |
Ashok Reddy Soma | 315a3c3 | 2020-09-03 08:36:44 -0600 | [diff] [blame] | 733 | flush_cache((phys_addr_t)&rxframe, sizeof(rxframe)); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 734 | |
| 735 | /* Rx BD is ready - start again */ |
Vipul Kumar | 047f3bf | 2018-01-23 14:52:35 +0530 | [diff] [blame] | 736 | axienet_dma_write(&rx_bd, &priv->dmarx->tail); |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 737 | |
| 738 | debug("axiemac: RX completed, framelength = %d\n", length); |
| 739 | |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 740 | return 0; |
| 741 | } |
| 742 | |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 743 | static int axiemac_miiphy_read(struct mii_dev *bus, int addr, |
| 744 | int devad, int reg) |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 745 | { |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 746 | int ret; |
| 747 | u16 value; |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 748 | |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 749 | ret = phyread(bus->priv, addr, reg, &value); |
| 750 | debug("axiemac: Read MII 0x%x, 0x%x, 0x%x, %d\n", addr, reg, |
| 751 | value, ret); |
| 752 | return value; |
Michal Simek | 4f1ec4c | 2011-10-06 20:35:35 +0000 | [diff] [blame] | 753 | } |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 754 | |
| 755 | static int axiemac_miiphy_write(struct mii_dev *bus, int addr, int devad, |
| 756 | int reg, u16 value) |
| 757 | { |
| 758 | debug("axiemac: Write MII 0x%x, 0x%x, 0x%x\n", addr, reg, value); |
| 759 | return phywrite(bus->priv, addr, reg, value); |
| 760 | } |
| 761 | |
| 762 | static int axi_emac_probe(struct udevice *dev) |
| 763 | { |
Ashok Reddy Soma | 215f206 | 2021-06-24 00:34:40 -0600 | [diff] [blame] | 764 | struct axidma_plat *plat = dev_get_plat(dev); |
| 765 | struct eth_pdata *pdata = &plat->eth_pdata; |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 766 | struct axidma_priv *priv = dev_get_priv(dev); |
| 767 | int ret; |
| 768 | |
Ashok Reddy Soma | 215f206 | 2021-06-24 00:34:40 -0600 | [diff] [blame] | 769 | priv->iobase = (struct axi_regs *)pdata->iobase; |
| 770 | priv->dmatx = plat->dmatx; |
| 771 | /* RX channel offset is 0x30 */ |
| 772 | priv->dmarx = (struct axidma_reg *)((phys_addr_t)priv->dmatx + 0x30); |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 773 | priv->mactype = plat->mactype; |
Ashok Reddy Soma | 215f206 | 2021-06-24 00:34:40 -0600 | [diff] [blame] | 774 | |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 775 | if (priv->mactype == EMAC_1G) { |
| 776 | priv->eth_hasnobuf = plat->eth_hasnobuf; |
| 777 | priv->phyaddr = plat->phyaddr; |
| 778 | priv->phy_of_handle = plat->phy_of_handle; |
| 779 | priv->interface = pdata->phy_interface; |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 780 | |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 781 | priv->bus = mdio_alloc(); |
| 782 | priv->bus->read = axiemac_miiphy_read; |
| 783 | priv->bus->write = axiemac_miiphy_write; |
| 784 | priv->bus->priv = priv; |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 785 | |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 786 | ret = mdio_register_seq(priv->bus, dev_seq(dev)); |
| 787 | if (ret) |
| 788 | return ret; |
| 789 | |
| 790 | axiemac_phy_init(dev); |
| 791 | } |
Michal Simek | 5d0449d | 2015-12-08 16:10:05 +0100 | [diff] [blame] | 792 | |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 793 | return 0; |
| 794 | } |
| 795 | |
| 796 | static int axi_emac_remove(struct udevice *dev) |
| 797 | { |
| 798 | struct axidma_priv *priv = dev_get_priv(dev); |
| 799 | |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 800 | if (priv->mactype == EMAC_1G) { |
| 801 | free(priv->phydev); |
| 802 | mdio_unregister(priv->bus); |
| 803 | mdio_free(priv->bus); |
| 804 | } |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 805 | |
| 806 | return 0; |
| 807 | } |
| 808 | |
| 809 | static const struct eth_ops axi_emac_ops = { |
Michal Simek | ad499e4 | 2015-12-16 09:18:12 +0100 | [diff] [blame] | 810 | .start = axiemac_start, |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 811 | .send = axiemac_send, |
| 812 | .recv = axiemac_recv, |
Michal Simek | 97d2363 | 2015-12-09 14:13:23 +0100 | [diff] [blame] | 813 | .free_pkt = axiemac_free_pkt, |
Michal Simek | ad499e4 | 2015-12-16 09:18:12 +0100 | [diff] [blame] | 814 | .stop = axiemac_stop, |
| 815 | .write_hwaddr = axiemac_write_hwaddr, |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 816 | }; |
| 817 | |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 818 | static int axi_emac_of_to_plat(struct udevice *dev) |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 819 | { |
Ashok Reddy Soma | 215f206 | 2021-06-24 00:34:40 -0600 | [diff] [blame] | 820 | struct axidma_plat *plat = dev_get_plat(dev); |
| 821 | struct eth_pdata *pdata = &plat->eth_pdata; |
Simon Glass | e160f7d | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 822 | int node = dev_of_offset(dev); |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 823 | int offset = 0; |
| 824 | const char *phy_mode; |
| 825 | |
Masahiro Yamada | 2548493 | 2020-07-17 14:36:48 +0900 | [diff] [blame] | 826 | pdata->iobase = dev_read_addr(dev); |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 827 | plat->mactype = dev_get_driver_data(dev); |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 828 | |
Simon Glass | e160f7d | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 829 | offset = fdtdec_lookup_phandle(gd->fdt_blob, node, |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 830 | "axistream-connected"); |
| 831 | if (offset <= 0) { |
| 832 | printf("%s: axistream is not found\n", __func__); |
| 833 | return -EINVAL; |
| 834 | } |
Ashok Reddy Soma | 215f206 | 2021-06-24 00:34:40 -0600 | [diff] [blame] | 835 | plat->dmatx = (struct axidma_reg *)fdtdec_get_addr(gd->fdt_blob, |
Siva Durga Prasad Paladugu | dc1fcc4 | 2017-06-22 11:14:55 +0530 | [diff] [blame] | 836 | offset, "reg"); |
Ashok Reddy Soma | 215f206 | 2021-06-24 00:34:40 -0600 | [diff] [blame] | 837 | if (!plat->dmatx) { |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 838 | printf("%s: axi_dma register space not found\n", __func__); |
| 839 | return -EINVAL; |
| 840 | } |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 841 | |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 842 | if (plat->mactype == EMAC_1G) { |
| 843 | plat->phyaddr = -1; |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 844 | |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 845 | offset = fdtdec_lookup_phandle(gd->fdt_blob, node, |
| 846 | "phy-handle"); |
| 847 | if (offset > 0) { |
| 848 | plat->phyaddr = fdtdec_get_int(gd->fdt_blob, offset, |
| 849 | "reg", -1); |
| 850 | plat->phy_of_handle = offset; |
| 851 | } |
| 852 | |
| 853 | phy_mode = fdt_getprop(gd->fdt_blob, node, "phy-mode", NULL); |
| 854 | if (phy_mode) |
| 855 | pdata->phy_interface = phy_get_interface_by_name(phy_mode); |
| 856 | if (pdata->phy_interface == -1) { |
| 857 | printf("%s: Invalid PHY interface '%s'\n", __func__, |
| 858 | phy_mode); |
| 859 | return -EINVAL; |
| 860 | } |
| 861 | |
| 862 | plat->eth_hasnobuf = fdtdec_get_bool(gd->fdt_blob, node, |
| 863 | "xlnx,eth-hasnobuf"); |
Siva Durga Prasad Paladugu | fccfb71 | 2019-03-15 17:46:45 +0530 | [diff] [blame] | 864 | } |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 865 | |
Ashok Reddy Soma | 215f206 | 2021-06-24 00:34:40 -0600 | [diff] [blame] | 866 | printf("AXI EMAC: %lx, phyaddr %d, interface %s\n", (ulong)pdata->iobase, |
| 867 | plat->phyaddr, phy_string_for_interface(pdata->phy_interface)); |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 868 | |
| 869 | return 0; |
| 870 | } |
| 871 | |
| 872 | static const struct udevice_id axi_emac_ids[] = { |
Ashok Reddy Soma | 53b2af1 | 2021-06-24 00:34:41 -0600 | [diff] [blame^] | 873 | { .compatible = "xlnx,axi-ethernet-1.00.a", .data = (uintptr_t)EMAC_1G }, |
| 874 | { .compatible = "xlnx,xxv-ethernet-1.0", .data = (uintptr_t)EMAC_10G_25G }, |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 875 | { } |
| 876 | }; |
| 877 | |
| 878 | U_BOOT_DRIVER(axi_emac) = { |
| 879 | .name = "axi_emac", |
| 880 | .id = UCLASS_ETH, |
| 881 | .of_match = axi_emac_ids, |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 882 | .of_to_plat = axi_emac_of_to_plat, |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 883 | .probe = axi_emac_probe, |
| 884 | .remove = axi_emac_remove, |
| 885 | .ops = &axi_emac_ops, |
Simon Glass | 41575d8 | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 886 | .priv_auto = sizeof(struct axidma_priv), |
Ashok Reddy Soma | 215f206 | 2021-06-24 00:34:40 -0600 | [diff] [blame] | 887 | .plat_auto = sizeof(struct axidma_plat), |
Michal Simek | 75cc93f | 2015-12-08 15:44:41 +0100 | [diff] [blame] | 888 | }; |