blob: a5c188066ca5822627f44e6fbc3473242d99b299 [file] [log] [blame]
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +01001/*
2 * Copyright (C) 2005-2006 Atmel Corporation
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +01005 */
6#include <common.h>
7
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +01008/*
9 * The u-boot networking stack is a little weird. It seems like the
10 * networking core allocates receive buffers up front without any
11 * regard to the hardware that's supposed to actually receive those
12 * packets.
13 *
14 * The MACB receives packets into 128-byte receive buffers, so the
15 * buffers allocated by the core isn't very practical to use. We'll
16 * allocate our own, but we need one such buffer in case a packet
17 * wraps around the DMA ring so that we have to copy it.
18 *
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020019 * Therefore, define CONFIG_SYS_RX_ETH_BUFFER to 1 in the board-specific
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +010020 * configuration header. This way, the core allocates one RX buffer
21 * and one TX buffer, each of which can hold a ethernet packet of
22 * maximum size.
23 *
24 * For some reason, the networking core unconditionally specifies a
25 * 32-byte packet "alignment" (which really should be called
26 * "padding"). MACB shouldn't need that, but we'll refrain from any
27 * core modifications here...
28 */
29
30#include <net.h>
Ben Warren89973f82008-08-31 22:22:04 -070031#include <netdev.h>
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +010032#include <malloc.h>
Semih Hazar0f751d62009-12-17 15:07:15 +020033#include <miiphy.h>
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +010034
35#include <linux/mii.h>
36#include <asm/io.h>
37#include <asm/dma-mapping.h>
38#include <asm/arch/clk.h>
Bo Shen8314ccd2013-08-19 10:35:47 +080039#include <asm-generic/errno.h>
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +010040
41#include "macb.h"
42
Andreas Bießmannceef9832014-05-26 22:55:18 +020043#define MACB_RX_BUFFER_SIZE 4096
44#define MACB_RX_RING_SIZE (MACB_RX_BUFFER_SIZE / 128)
45#define MACB_TX_RING_SIZE 16
46#define MACB_TX_TIMEOUT 1000
47#define MACB_AUTONEG_TIMEOUT 5000000
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +010048
49struct macb_dma_desc {
50 u32 addr;
51 u32 ctrl;
52};
53
Wu, Josh5ae0e382014-05-27 16:31:05 +080054#define DMA_DESC_BYTES(n) (n * sizeof(struct macb_dma_desc))
55#define MACB_TX_DMA_DESC_SIZE (DMA_DESC_BYTES(MACB_TX_RING_SIZE))
56#define MACB_RX_DMA_DESC_SIZE (DMA_DESC_BYTES(MACB_RX_RING_SIZE))
Wu, Joshade4ea42015-06-03 16:45:44 +080057#define MACB_TX_DUMMY_DMA_DESC_SIZE (DMA_DESC_BYTES(1))
Wu, Josh5ae0e382014-05-27 16:31:05 +080058
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +010059#define RXADDR_USED 0x00000001
60#define RXADDR_WRAP 0x00000002
61
62#define RXBUF_FRMLEN_MASK 0x00000fff
63#define RXBUF_FRAME_START 0x00004000
64#define RXBUF_FRAME_END 0x00008000
65#define RXBUF_TYPEID_MATCH 0x00400000
66#define RXBUF_ADDR4_MATCH 0x00800000
67#define RXBUF_ADDR3_MATCH 0x01000000
68#define RXBUF_ADDR2_MATCH 0x02000000
69#define RXBUF_ADDR1_MATCH 0x04000000
70#define RXBUF_BROADCAST 0x80000000
71
72#define TXBUF_FRMLEN_MASK 0x000007ff
73#define TXBUF_FRAME_END 0x00008000
74#define TXBUF_NOCRC 0x00010000
75#define TXBUF_EXHAUSTED 0x08000000
76#define TXBUF_UNDERRUN 0x10000000
77#define TXBUF_MAXRETRY 0x20000000
78#define TXBUF_WRAP 0x40000000
79#define TXBUF_USED 0x80000000
80
81struct macb_device {
82 void *regs;
83
84 unsigned int rx_tail;
85 unsigned int tx_head;
86 unsigned int tx_tail;
87
88 void *rx_buffer;
89 void *tx_buffer;
90 struct macb_dma_desc *rx_ring;
91 struct macb_dma_desc *tx_ring;
92
93 unsigned long rx_buffer_dma;
94 unsigned long rx_ring_dma;
95 unsigned long tx_ring_dma;
96
Wu, Joshade4ea42015-06-03 16:45:44 +080097 struct macb_dma_desc *dummy_desc;
98 unsigned long dummy_desc_dma;
99
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100100 const struct device *dev;
101 struct eth_device netdev;
102 unsigned short phy_addr;
Bo Shenb1a00062013-04-24 15:59:27 +0800103 struct mii_dev *bus;
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100104};
105#define to_macb(_nd) container_of(_nd, struct macb_device, netdev)
106
Bo Shend256be22013-04-24 15:59:28 +0800107static int macb_is_gem(struct macb_device *macb)
108{
109 return MACB_BFEXT(IDNUM, macb_readl(macb, MID)) == 0x2;
110}
111
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100112static void macb_mdio_write(struct macb_device *macb, u8 reg, u16 value)
113{
114 unsigned long netctl;
115 unsigned long netstat;
116 unsigned long frame;
117
118 netctl = macb_readl(macb, NCR);
119 netctl |= MACB_BIT(MPE);
120 macb_writel(macb, NCR, netctl);
121
122 frame = (MACB_BF(SOF, 1)
123 | MACB_BF(RW, 1)
124 | MACB_BF(PHYA, macb->phy_addr)
125 | MACB_BF(REGA, reg)
126 | MACB_BF(CODE, 2)
127 | MACB_BF(DATA, value));
128 macb_writel(macb, MAN, frame);
129
130 do {
131 netstat = macb_readl(macb, NSR);
132 } while (!(netstat & MACB_BIT(IDLE)));
133
134 netctl = macb_readl(macb, NCR);
135 netctl &= ~MACB_BIT(MPE);
136 macb_writel(macb, NCR, netctl);
137}
138
139static u16 macb_mdio_read(struct macb_device *macb, u8 reg)
140{
141 unsigned long netctl;
142 unsigned long netstat;
143 unsigned long frame;
144
145 netctl = macb_readl(macb, NCR);
146 netctl |= MACB_BIT(MPE);
147 macb_writel(macb, NCR, netctl);
148
149 frame = (MACB_BF(SOF, 1)
150 | MACB_BF(RW, 2)
151 | MACB_BF(PHYA, macb->phy_addr)
152 | MACB_BF(REGA, reg)
153 | MACB_BF(CODE, 2));
154 macb_writel(macb, MAN, frame);
155
156 do {
157 netstat = macb_readl(macb, NSR);
158 } while (!(netstat & MACB_BIT(IDLE)));
159
160 frame = macb_readl(macb, MAN);
161
162 netctl = macb_readl(macb, NCR);
163 netctl &= ~MACB_BIT(MPE);
164 macb_writel(macb, NCR, netctl);
165
166 return MACB_BFEXT(DATA, frame);
167}
168
Joe Hershberger1b8c18b2013-06-24 19:06:38 -0500169void __weak arch_get_mdio_control(const char *name)
Shiraz Hashim416ce622012-12-13 17:22:52 +0530170{
171 return;
172}
173
Bo Shenb1a00062013-04-24 15:59:27 +0800174#if defined(CONFIG_CMD_MII) || defined(CONFIG_PHYLIB)
Semih Hazar0f751d62009-12-17 15:07:15 +0200175
Mike Frysinger5700bb62010-07-27 18:35:08 -0400176int macb_miiphy_read(const char *devname, u8 phy_adr, u8 reg, u16 *value)
Semih Hazar0f751d62009-12-17 15:07:15 +0200177{
178 struct eth_device *dev = eth_get_dev_by_name(devname);
179 struct macb_device *macb = to_macb(dev);
180
Andreas Bießmannceef9832014-05-26 22:55:18 +0200181 if (macb->phy_addr != phy_adr)
Semih Hazar0f751d62009-12-17 15:07:15 +0200182 return -1;
183
Shiraz Hashim416ce622012-12-13 17:22:52 +0530184 arch_get_mdio_control(devname);
Semih Hazar0f751d62009-12-17 15:07:15 +0200185 *value = macb_mdio_read(macb, reg);
186
187 return 0;
188}
189
Mike Frysinger5700bb62010-07-27 18:35:08 -0400190int macb_miiphy_write(const char *devname, u8 phy_adr, u8 reg, u16 value)
Semih Hazar0f751d62009-12-17 15:07:15 +0200191{
192 struct eth_device *dev = eth_get_dev_by_name(devname);
193 struct macb_device *macb = to_macb(dev);
194
Andreas Bießmannceef9832014-05-26 22:55:18 +0200195 if (macb->phy_addr != phy_adr)
Semih Hazar0f751d62009-12-17 15:07:15 +0200196 return -1;
197
Shiraz Hashim416ce622012-12-13 17:22:52 +0530198 arch_get_mdio_control(devname);
Semih Hazar0f751d62009-12-17 15:07:15 +0200199 macb_mdio_write(macb, reg, value);
200
201 return 0;
202}
203#endif
204
Wu, Josh5ae0e382014-05-27 16:31:05 +0800205#define RX 1
206#define TX 0
207static inline void macb_invalidate_ring_desc(struct macb_device *macb, bool rx)
208{
209 if (rx)
210 invalidate_dcache_range(macb->rx_ring_dma, macb->rx_ring_dma +
211 MACB_RX_DMA_DESC_SIZE);
212 else
213 invalidate_dcache_range(macb->tx_ring_dma, macb->tx_ring_dma +
214 MACB_TX_DMA_DESC_SIZE);
215}
216
217static inline void macb_flush_ring_desc(struct macb_device *macb, bool rx)
218{
219 if (rx)
220 flush_dcache_range(macb->rx_ring_dma, macb->rx_ring_dma +
221 MACB_RX_DMA_DESC_SIZE);
222 else
223 flush_dcache_range(macb->tx_ring_dma, macb->tx_ring_dma +
224 MACB_TX_DMA_DESC_SIZE);
225}
226
227static inline void macb_flush_rx_buffer(struct macb_device *macb)
228{
229 flush_dcache_range(macb->rx_buffer_dma, macb->rx_buffer_dma +
230 MACB_RX_BUFFER_SIZE);
231}
232
233static inline void macb_invalidate_rx_buffer(struct macb_device *macb)
234{
235 invalidate_dcache_range(macb->rx_buffer_dma, macb->rx_buffer_dma +
236 MACB_RX_BUFFER_SIZE);
237}
Semih Hazar0f751d62009-12-17 15:07:15 +0200238
Jon Loeliger07d38a12007-07-09 17:30:01 -0500239#if defined(CONFIG_CMD_NET)
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100240
Joe Hershberger9d9a89b2012-05-21 14:45:31 +0000241static int macb_send(struct eth_device *netdev, void *packet, int length)
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100242{
243 struct macb_device *macb = to_macb(netdev);
244 unsigned long paddr, ctrl;
245 unsigned int tx_head = macb->tx_head;
246 int i;
247
248 paddr = dma_map_single(packet, length, DMA_TO_DEVICE);
249
250 ctrl = length & TXBUF_FRMLEN_MASK;
251 ctrl |= TXBUF_FRAME_END;
Andreas Bießmannceef9832014-05-26 22:55:18 +0200252 if (tx_head == (MACB_TX_RING_SIZE - 1)) {
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100253 ctrl |= TXBUF_WRAP;
254 macb->tx_head = 0;
Andreas Bießmannceef9832014-05-26 22:55:18 +0200255 } else {
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100256 macb->tx_head++;
Andreas Bießmannceef9832014-05-26 22:55:18 +0200257 }
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100258
259 macb->tx_ring[tx_head].ctrl = ctrl;
260 macb->tx_ring[tx_head].addr = paddr;
Haavard Skinnemoen04fcb5d2007-05-02 13:22:38 +0200261 barrier();
Wu, Josh5ae0e382014-05-27 16:31:05 +0800262 macb_flush_ring_desc(macb, TX);
263 /* Do we need check paddr and length is dcache line aligned? */
264 flush_dcache_range(paddr, paddr + length);
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100265 macb_writel(macb, NCR, MACB_BIT(TE) | MACB_BIT(RE) | MACB_BIT(TSTART));
266
267 /*
268 * I guess this is necessary because the networking core may
269 * re-use the transmit buffer as soon as we return...
270 */
Andreas Bießmannceef9832014-05-26 22:55:18 +0200271 for (i = 0; i <= MACB_TX_TIMEOUT; i++) {
Haavard Skinnemoen04fcb5d2007-05-02 13:22:38 +0200272 barrier();
Wu, Josh5ae0e382014-05-27 16:31:05 +0800273 macb_invalidate_ring_desc(macb, TX);
Haavard Skinnemoen04fcb5d2007-05-02 13:22:38 +0200274 ctrl = macb->tx_ring[tx_head].ctrl;
275 if (ctrl & TXBUF_USED)
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100276 break;
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100277 udelay(1);
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100278 }
279
280 dma_unmap_single(packet, length, paddr);
281
Andreas Bießmannceef9832014-05-26 22:55:18 +0200282 if (i <= MACB_TX_TIMEOUT) {
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100283 if (ctrl & TXBUF_UNDERRUN)
284 printf("%s: TX underrun\n", netdev->name);
285 if (ctrl & TXBUF_EXHAUSTED)
286 printf("%s: TX buffers exhausted in mid frame\n",
287 netdev->name);
Haavard Skinnemoen04fcb5d2007-05-02 13:22:38 +0200288 } else {
289 printf("%s: TX timeout\n", netdev->name);
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100290 }
291
292 /* No one cares anyway */
293 return 0;
294}
295
296static void reclaim_rx_buffers(struct macb_device *macb,
297 unsigned int new_tail)
298{
299 unsigned int i;
300
301 i = macb->rx_tail;
Wu, Josh5ae0e382014-05-27 16:31:05 +0800302
303 macb_invalidate_ring_desc(macb, RX);
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100304 while (i > new_tail) {
305 macb->rx_ring[i].addr &= ~RXADDR_USED;
306 i++;
Andreas Bießmannceef9832014-05-26 22:55:18 +0200307 if (i > MACB_RX_RING_SIZE)
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100308 i = 0;
309 }
310
311 while (i < new_tail) {
312 macb->rx_ring[i].addr &= ~RXADDR_USED;
313 i++;
314 }
315
Haavard Skinnemoen04fcb5d2007-05-02 13:22:38 +0200316 barrier();
Wu, Josh5ae0e382014-05-27 16:31:05 +0800317 macb_flush_ring_desc(macb, RX);
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100318 macb->rx_tail = new_tail;
319}
320
321static int macb_recv(struct eth_device *netdev)
322{
323 struct macb_device *macb = to_macb(netdev);
324 unsigned int rx_tail = macb->rx_tail;
325 void *buffer;
326 int length;
327 int wrapped = 0;
328 u32 status;
329
330 for (;;) {
Wu, Josh5ae0e382014-05-27 16:31:05 +0800331 macb_invalidate_ring_desc(macb, RX);
332
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100333 if (!(macb->rx_ring[rx_tail].addr & RXADDR_USED))
334 return -1;
335
336 status = macb->rx_ring[rx_tail].ctrl;
337 if (status & RXBUF_FRAME_START) {
338 if (rx_tail != macb->rx_tail)
339 reclaim_rx_buffers(macb, rx_tail);
340 wrapped = 0;
341 }
342
343 if (status & RXBUF_FRAME_END) {
344 buffer = macb->rx_buffer + 128 * macb->rx_tail;
345 length = status & RXBUF_FRMLEN_MASK;
Wu, Josh5ae0e382014-05-27 16:31:05 +0800346
347 macb_invalidate_rx_buffer(macb);
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100348 if (wrapped) {
349 unsigned int headlen, taillen;
350
Andreas Bießmannceef9832014-05-26 22:55:18 +0200351 headlen = 128 * (MACB_RX_RING_SIZE
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100352 - macb->rx_tail);
353 taillen = length - headlen;
Joe Hershberger1fd92db2015-04-08 01:41:06 -0500354 memcpy((void *)net_rx_packets[0],
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100355 buffer, headlen);
Joe Hershberger1fd92db2015-04-08 01:41:06 -0500356 memcpy((void *)net_rx_packets[0] + headlen,
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100357 macb->rx_buffer, taillen);
Joe Hershberger1fd92db2015-04-08 01:41:06 -0500358 buffer = (void *)net_rx_packets[0];
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100359 }
360
Joe Hershberger1fd92db2015-04-08 01:41:06 -0500361 net_process_received_packet(buffer, length);
Andreas Bießmannceef9832014-05-26 22:55:18 +0200362 if (++rx_tail >= MACB_RX_RING_SIZE)
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100363 rx_tail = 0;
364 reclaim_rx_buffers(macb, rx_tail);
365 } else {
Andreas Bießmannceef9832014-05-26 22:55:18 +0200366 if (++rx_tail >= MACB_RX_RING_SIZE) {
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100367 wrapped = 1;
368 rx_tail = 0;
369 }
370 }
Haavard Skinnemoen04fcb5d2007-05-02 13:22:38 +0200371 barrier();
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100372 }
373
374 return 0;
375}
376
Haavard Skinnemoenf2134f82007-05-02 13:31:53 +0200377static void macb_phy_reset(struct macb_device *macb)
378{
379 struct eth_device *netdev = &macb->netdev;
380 int i;
381 u16 status, adv;
382
383 adv = ADVERTISE_CSMA | ADVERTISE_ALL;
384 macb_mdio_write(macb, MII_ADVERTISE, adv);
385 printf("%s: Starting autonegotiation...\n", netdev->name);
386 macb_mdio_write(macb, MII_BMCR, (BMCR_ANENABLE
387 | BMCR_ANRESTART));
388
Andreas Bießmannceef9832014-05-26 22:55:18 +0200389 for (i = 0; i < MACB_AUTONEG_TIMEOUT / 100; i++) {
Haavard Skinnemoenf2134f82007-05-02 13:31:53 +0200390 status = macb_mdio_read(macb, MII_BMSR);
391 if (status & BMSR_ANEGCOMPLETE)
392 break;
393 udelay(100);
394 }
395
396 if (status & BMSR_ANEGCOMPLETE)
397 printf("%s: Autonegotiation complete\n", netdev->name);
398 else
399 printf("%s: Autonegotiation timed out (status=0x%04x)\n",
400 netdev->name, status);
401}
402
Gunnar Rangoyfc01ea12009-01-23 12:56:31 +0100403#ifdef CONFIG_MACB_SEARCH_PHY
404static int macb_phy_find(struct macb_device *macb)
405{
406 int i;
407 u16 phy_id;
408
409 /* Search for PHY... */
410 for (i = 0; i < 32; i++) {
411 macb->phy_addr = i;
412 phy_id = macb_mdio_read(macb, MII_PHYSID1);
413 if (phy_id != 0xffff) {
414 printf("%s: PHY present at %d\n", macb->netdev.name, i);
415 return 1;
416 }
417 }
418
419 /* PHY isn't up to snuff */
Andreas Bießmann6ed0e942012-08-16 01:50:04 +0000420 printf("%s: PHY not found\n", macb->netdev.name);
Gunnar Rangoyfc01ea12009-01-23 12:56:31 +0100421
422 return 0;
423}
424#endif /* CONFIG_MACB_SEARCH_PHY */
425
426
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100427static int macb_phy_init(struct macb_device *macb)
428{
429 struct eth_device *netdev = &macb->netdev;
Bo Shenb1a00062013-04-24 15:59:27 +0800430#ifdef CONFIG_PHYLIB
431 struct phy_device *phydev;
432#endif
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100433 u32 ncfgr;
434 u16 phy_id, status, adv, lpa;
435 int media, speed, duplex;
436 int i;
437
Shiraz Hashim416ce622012-12-13 17:22:52 +0530438 arch_get_mdio_control(netdev->name);
Gunnar Rangoyfc01ea12009-01-23 12:56:31 +0100439#ifdef CONFIG_MACB_SEARCH_PHY
440 /* Auto-detect phy_addr */
Andreas Bießmannceef9832014-05-26 22:55:18 +0200441 if (!macb_phy_find(macb))
Gunnar Rangoyfc01ea12009-01-23 12:56:31 +0100442 return 0;
Gunnar Rangoyfc01ea12009-01-23 12:56:31 +0100443#endif /* CONFIG_MACB_SEARCH_PHY */
444
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100445 /* Check if the PHY is up to snuff... */
446 phy_id = macb_mdio_read(macb, MII_PHYSID1);
447 if (phy_id == 0xffff) {
448 printf("%s: No PHY present\n", netdev->name);
449 return 0;
450 }
451
Bo Shenb1a00062013-04-24 15:59:27 +0800452#ifdef CONFIG_PHYLIB
Bo Shen8314ccd2013-08-19 10:35:47 +0800453 /* need to consider other phy interface mode */
454 phydev = phy_connect(macb->bus, macb->phy_addr, netdev,
455 PHY_INTERFACE_MODE_RGMII);
456 if (!phydev) {
457 printf("phy_connect failed\n");
458 return -ENODEV;
459 }
460
Bo Shenb1a00062013-04-24 15:59:27 +0800461 phy_config(phydev);
462#endif
463
Haavard Skinnemoenf2134f82007-05-02 13:31:53 +0200464 status = macb_mdio_read(macb, MII_BMSR);
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100465 if (!(status & BMSR_LSTATUS)) {
Haavard Skinnemoenf2134f82007-05-02 13:31:53 +0200466 /* Try to re-negotiate if we don't have link already. */
467 macb_phy_reset(macb);
468
Andreas Bießmannceef9832014-05-26 22:55:18 +0200469 for (i = 0; i < MACB_AUTONEG_TIMEOUT / 100; i++) {
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100470 status = macb_mdio_read(macb, MII_BMSR);
471 if (status & BMSR_LSTATUS)
472 break;
Haavard Skinnemoenf2134f82007-05-02 13:31:53 +0200473 udelay(100);
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100474 }
475 }
476
477 if (!(status & BMSR_LSTATUS)) {
478 printf("%s: link down (status: 0x%04x)\n",
479 netdev->name, status);
480 return 0;
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100481 }
Bo Shend256be22013-04-24 15:59:28 +0800482
483 /* First check for GMAC */
484 if (macb_is_gem(macb)) {
485 lpa = macb_mdio_read(macb, MII_STAT1000);
Bo Shend256be22013-04-24 15:59:28 +0800486
Andreas Bießmann47609572014-09-18 23:46:48 +0200487 if (lpa & (LPA_1000FULL | LPA_1000HALF)) {
488 duplex = ((lpa & LPA_1000FULL) ? 1 : 0);
489
490 printf("%s: link up, 1000Mbps %s-duplex (lpa: 0x%04x)\n",
Bo Shend256be22013-04-24 15:59:28 +0800491 netdev->name,
Bo Shend256be22013-04-24 15:59:28 +0800492 duplex ? "full" : "half",
493 lpa);
494
495 ncfgr = macb_readl(macb, NCFGR);
Andreas Bießmann47609572014-09-18 23:46:48 +0200496 ncfgr &= ~(MACB_BIT(SPD) | MACB_BIT(FD));
497 ncfgr |= GEM_BIT(GBE);
498
Bo Shend256be22013-04-24 15:59:28 +0800499 if (duplex)
500 ncfgr |= MACB_BIT(FD);
Andreas Bießmann47609572014-09-18 23:46:48 +0200501
Bo Shend256be22013-04-24 15:59:28 +0800502 macb_writel(macb, NCFGR, ncfgr);
503
504 return 1;
505 }
506 }
507
508 /* fall back for EMAC checking */
509 adv = macb_mdio_read(macb, MII_ADVERTISE);
510 lpa = macb_mdio_read(macb, MII_LPA);
511 media = mii_nway_result(lpa & adv);
512 speed = (media & (ADVERTISE_100FULL | ADVERTISE_100HALF)
513 ? 1 : 0);
514 duplex = (media & ADVERTISE_FULL) ? 1 : 0;
515 printf("%s: link up, %sMbps %s-duplex (lpa: 0x%04x)\n",
516 netdev->name,
517 speed ? "100" : "10",
518 duplex ? "full" : "half",
519 lpa);
520
521 ncfgr = macb_readl(macb, NCFGR);
Bo Shenc83cb5f2015-03-04 13:35:16 +0800522 ncfgr &= ~(MACB_BIT(SPD) | MACB_BIT(FD) | GEM_BIT(GBE));
Bo Shend256be22013-04-24 15:59:28 +0800523 if (speed)
524 ncfgr |= MACB_BIT(SPD);
525 if (duplex)
526 ncfgr |= MACB_BIT(FD);
527 macb_writel(macb, NCFGR, ncfgr);
528
529 return 1;
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100530}
531
Wu, Joshade4ea42015-06-03 16:45:44 +0800532static int gmac_init_multi_queues(struct macb_device *macb)
533{
534 int i, num_queues = 1;
535 u32 queue_mask;
536
537 /* bit 0 is never set but queue 0 always exists */
538 queue_mask = gem_readl(macb, DCFG6) & 0xff;
539 queue_mask |= 0x1;
540
541 for (i = 1; i < MACB_MAX_QUEUES; i++)
542 if (queue_mask & (1 << i))
543 num_queues++;
544
545 macb->dummy_desc->ctrl = TXBUF_USED;
546 macb->dummy_desc->addr = 0;
547 flush_dcache_range(macb->dummy_desc_dma, macb->dummy_desc_dma +
548 MACB_TX_DUMMY_DMA_DESC_SIZE);
549
550 for (i = 1; i < num_queues; i++)
551 gem_writel_queue_TBQP(macb, macb->dummy_desc_dma, i - 1);
552
553 return 0;
554}
555
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100556static int macb_init(struct eth_device *netdev, bd_t *bd)
557{
558 struct macb_device *macb = to_macb(netdev);
559 unsigned long paddr;
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100560 int i;
561
562 /*
563 * macb_halt should have been called at some point before now,
564 * so we'll assume the controller is idle.
565 */
566
567 /* initialize DMA descriptors */
568 paddr = macb->rx_buffer_dma;
Andreas Bießmannceef9832014-05-26 22:55:18 +0200569 for (i = 0; i < MACB_RX_RING_SIZE; i++) {
570 if (i == (MACB_RX_RING_SIZE - 1))
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100571 paddr |= RXADDR_WRAP;
572 macb->rx_ring[i].addr = paddr;
573 macb->rx_ring[i].ctrl = 0;
574 paddr += 128;
575 }
Wu, Josh5ae0e382014-05-27 16:31:05 +0800576 macb_flush_ring_desc(macb, RX);
577 macb_flush_rx_buffer(macb);
578
Andreas Bießmannceef9832014-05-26 22:55:18 +0200579 for (i = 0; i < MACB_TX_RING_SIZE; i++) {
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100580 macb->tx_ring[i].addr = 0;
Andreas Bießmannceef9832014-05-26 22:55:18 +0200581 if (i == (MACB_TX_RING_SIZE - 1))
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100582 macb->tx_ring[i].ctrl = TXBUF_USED | TXBUF_WRAP;
583 else
584 macb->tx_ring[i].ctrl = TXBUF_USED;
585 }
Wu, Josh5ae0e382014-05-27 16:31:05 +0800586 macb_flush_ring_desc(macb, TX);
587
Andreas Bießmannceef9832014-05-26 22:55:18 +0200588 macb->rx_tail = 0;
589 macb->tx_head = 0;
590 macb->tx_tail = 0;
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100591
592 macb_writel(macb, RBQP, macb->rx_ring_dma);
593 macb_writel(macb, TBQP, macb->tx_ring_dma);
594
Bo Shend256be22013-04-24 15:59:28 +0800595 if (macb_is_gem(macb)) {
Wu, Joshade4ea42015-06-03 16:45:44 +0800596 /* Check the multi queue and initialize the queue for tx */
597 gmac_init_multi_queues(macb);
598
Bo Shencabf61c2014-11-10 15:24:01 +0800599 /*
600 * When the GMAC IP with GE feature, this bit is used to
601 * select interface between RGMII and GMII.
602 * When the GMAC IP without GE feature, this bit is used
603 * to select interface between RMII and MII.
604 */
605#if defined(CONFIG_RGMII) || defined(CONFIG_RMII)
Bo Shend256be22013-04-24 15:59:28 +0800606 gem_writel(macb, UR, GEM_BIT(RGMII));
607#else
608 gem_writel(macb, UR, 0);
609#endif
610 } else {
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100611 /* choose RMII or MII mode. This depends on the board */
612#ifdef CONFIG_RMII
Bo Shend8f64b42013-04-24 15:59:26 +0800613#ifdef CONFIG_AT91FAMILY
Stelian Pop7263ef12008-01-03 21:15:56 +0000614 macb_writel(macb, USRIO, MACB_BIT(RMII) | MACB_BIT(CLKEN));
615#else
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100616 macb_writel(macb, USRIO, 0);
Stelian Pop7263ef12008-01-03 21:15:56 +0000617#endif
618#else
Bo Shend8f64b42013-04-24 15:59:26 +0800619#ifdef CONFIG_AT91FAMILY
Stelian Pop7263ef12008-01-03 21:15:56 +0000620 macb_writel(macb, USRIO, MACB_BIT(CLKEN));
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100621#else
622 macb_writel(macb, USRIO, MACB_BIT(MII));
623#endif
Stelian Pop7263ef12008-01-03 21:15:56 +0000624#endif /* CONFIG_RMII */
Bo Shend256be22013-04-24 15:59:28 +0800625 }
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100626
627 if (!macb_phy_init(macb))
Ben Warren422b1a02008-01-09 18:15:53 -0500628 return -1;
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100629
630 /* Enable TX and RX */
631 macb_writel(macb, NCR, MACB_BIT(TE) | MACB_BIT(RE));
632
Ben Warren422b1a02008-01-09 18:15:53 -0500633 return 0;
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100634}
635
636static void macb_halt(struct eth_device *netdev)
637{
638 struct macb_device *macb = to_macb(netdev);
639 u32 ncr, tsr;
640
641 /* Halt the controller and wait for any ongoing transmission to end. */
642 ncr = macb_readl(macb, NCR);
643 ncr |= MACB_BIT(THALT);
644 macb_writel(macb, NCR, ncr);
645
646 do {
647 tsr = macb_readl(macb, TSR);
648 } while (tsr & MACB_BIT(TGO));
649
650 /* Disable TX and RX, and clear statistics */
651 macb_writel(macb, NCR, MACB_BIT(CLRSTAT));
652}
653
Ben Warren6bb46792010-06-01 11:55:42 -0700654static int macb_write_hwaddr(struct eth_device *dev)
655{
656 struct macb_device *macb = to_macb(dev);
657 u32 hwaddr_bottom;
658 u16 hwaddr_top;
659
660 /* set hardware address */
andreas.devel@googlemail.com6c169c12011-06-09 02:08:46 +0000661 hwaddr_bottom = dev->enetaddr[0] | dev->enetaddr[1] << 8 |
662 dev->enetaddr[2] << 16 | dev->enetaddr[3] << 24;
Ben Warren6bb46792010-06-01 11:55:42 -0700663 macb_writel(macb, SA1B, hwaddr_bottom);
andreas.devel@googlemail.com6c169c12011-06-09 02:08:46 +0000664 hwaddr_top = dev->enetaddr[4] | dev->enetaddr[5] << 8;
Ben Warren6bb46792010-06-01 11:55:42 -0700665 macb_writel(macb, SA1T, hwaddr_top);
666 return 0;
667}
668
Bo Shend256be22013-04-24 15:59:28 +0800669static u32 macb_mdc_clk_div(int id, struct macb_device *macb)
670{
671 u32 config;
672 unsigned long macb_hz = get_macb_pclk_rate(id);
673
674 if (macb_hz < 20000000)
675 config = MACB_BF(CLK, MACB_CLK_DIV8);
676 else if (macb_hz < 40000000)
677 config = MACB_BF(CLK, MACB_CLK_DIV16);
678 else if (macb_hz < 80000000)
679 config = MACB_BF(CLK, MACB_CLK_DIV32);
680 else
681 config = MACB_BF(CLK, MACB_CLK_DIV64);
682
683 return config;
684}
685
686static u32 gem_mdc_clk_div(int id, struct macb_device *macb)
687{
688 u32 config;
689 unsigned long macb_hz = get_macb_pclk_rate(id);
690
691 if (macb_hz < 20000000)
692 config = GEM_BF(CLK, GEM_CLK_DIV8);
693 else if (macb_hz < 40000000)
694 config = GEM_BF(CLK, GEM_CLK_DIV16);
695 else if (macb_hz < 80000000)
696 config = GEM_BF(CLK, GEM_CLK_DIV32);
697 else if (macb_hz < 120000000)
698 config = GEM_BF(CLK, GEM_CLK_DIV48);
699 else if (macb_hz < 160000000)
700 config = GEM_BF(CLK, GEM_CLK_DIV64);
701 else
702 config = GEM_BF(CLK, GEM_CLK_DIV96);
703
704 return config;
705}
706
Bo Shen32e4f6b2013-09-18 15:07:44 +0800707/*
708 * Get the DMA bus width field of the network configuration register that we
709 * should program. We find the width from decoding the design configuration
710 * register to find the maximum supported data bus width.
711 */
712static u32 macb_dbw(struct macb_device *macb)
713{
714 switch (GEM_BFEXT(DBWDEF, gem_readl(macb, DCFG1))) {
715 case 4:
716 return GEM_BF(DBW, GEM_DBW128);
717 case 2:
718 return GEM_BF(DBW, GEM_DBW64);
719 case 1:
720 default:
721 return GEM_BF(DBW, GEM_DBW32);
722 }
723}
724
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100725int macb_eth_initialize(int id, void *regs, unsigned int phy_addr)
726{
727 struct macb_device *macb;
728 struct eth_device *netdev;
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100729 u32 ncfgr;
730
731 macb = malloc(sizeof(struct macb_device));
732 if (!macb) {
733 printf("Error: Failed to allocate memory for MACB%d\n", id);
734 return -1;
735 }
736 memset(macb, 0, sizeof(struct macb_device));
737
738 netdev = &macb->netdev;
739
Andreas Bießmannceef9832014-05-26 22:55:18 +0200740 macb->rx_buffer = dma_alloc_coherent(MACB_RX_BUFFER_SIZE,
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100741 &macb->rx_buffer_dma);
Wu, Josh5ae0e382014-05-27 16:31:05 +0800742 macb->rx_ring = dma_alloc_coherent(MACB_RX_DMA_DESC_SIZE,
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100743 &macb->rx_ring_dma);
Wu, Josh5ae0e382014-05-27 16:31:05 +0800744 macb->tx_ring = dma_alloc_coherent(MACB_TX_DMA_DESC_SIZE,
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100745 &macb->tx_ring_dma);
Wu, Joshade4ea42015-06-03 16:45:44 +0800746 macb->dummy_desc = dma_alloc_coherent(MACB_TX_DUMMY_DMA_DESC_SIZE,
747 &macb->dummy_desc_dma);
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100748
Wu, Josh5ae0e382014-05-27 16:31:05 +0800749 /* TODO: we need check the rx/tx_ring_dma is dcache line aligned */
750
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100751 macb->regs = regs;
752 macb->phy_addr = phy_addr;
753
Bo Shend256be22013-04-24 15:59:28 +0800754 if (macb_is_gem(macb))
755 sprintf(netdev->name, "gmac%d", id);
756 else
757 sprintf(netdev->name, "macb%d", id);
758
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100759 netdev->init = macb_init;
760 netdev->halt = macb_halt;
761 netdev->send = macb_send;
762 netdev->recv = macb_recv;
Ben Warren6bb46792010-06-01 11:55:42 -0700763 netdev->write_hwaddr = macb_write_hwaddr;
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100764
765 /*
766 * Do some basic initialization so that we at least can talk
767 * to the PHY
768 */
Bo Shend256be22013-04-24 15:59:28 +0800769 if (macb_is_gem(macb)) {
770 ncfgr = gem_mdc_clk_div(id, macb);
Bo Shen32e4f6b2013-09-18 15:07:44 +0800771 ncfgr |= macb_dbw(macb);
Bo Shend256be22013-04-24 15:59:28 +0800772 } else {
773 ncfgr = macb_mdc_clk_div(id, macb);
774 }
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100775
776 macb_writel(macb, NCFGR, ncfgr);
777
778 eth_register(netdev);
779
Bo Shenb1a00062013-04-24 15:59:27 +0800780#if defined(CONFIG_CMD_MII) || defined(CONFIG_PHYLIB)
Semih Hazar0f751d62009-12-17 15:07:15 +0200781 miiphy_register(netdev->name, macb_miiphy_read, macb_miiphy_write);
Bo Shenb1a00062013-04-24 15:59:27 +0800782 macb->bus = miiphy_get_dev_by_name(netdev->name);
Semih Hazar0f751d62009-12-17 15:07:15 +0200783#endif
Haavard Skinnemoen5c1fe1f2006-01-20 10:03:34 +0100784 return 0;
785}
786
Jon Loeliger07d38a12007-07-09 17:30:01 -0500787#endif