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