]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/net/bfin_mac.c
FEC: Properly align address over the buffers for cache ops
[people/ms/u-boot.git] / drivers / net / bfin_mac.c
CommitLineData
26bf7dec 1/*
395bce4f 2 * Driver for Blackfin On-Chip MAC device
26bf7dec 3 *
395bce4f 4 * Copyright (c) 2005-2008 Analog Device, Inc.
26bf7dec 5 *
395bce4f 6 * Licensed under the GPL-2 or later.
26bf7dec
AL
7 */
8
9#include <common.h>
10#include <config.h>
26bf7dec 11#include <net.h>
89973f8a 12#include <netdev.h>
26bf7dec
AL
13#include <command.h>
14#include <malloc.h>
ac45af4e
MF
15#include <miiphy.h>
16#include <linux/mii.h>
26bf7dec 17
395bce4f 18#include <asm/blackfin.h>
8339ad73 19#include <asm/portmux.h>
d4d77308
MF
20#include <asm/mach-common/bits/dma.h>
21#include <asm/mach-common/bits/emac.h>
22#include <asm/mach-common/bits/pll.h>
23
395bce4f
MF
24#include "bfin_mac.h"
25
a7ec6ac8
MF
26#ifndef CONFIG_PHY_ADDR
27# define CONFIG_PHY_ADDR 1
28#endif
29#ifndef CONFIG_PHY_CLOCK_FREQ
30# define CONFIG_PHY_CLOCK_FREQ 2500000
31#endif
32
26bf7dec
AL
33#ifdef CONFIG_POST
34#include <post.h>
35#endif
36
26bf7dec
AL
37#define RXBUF_BASE_ADDR 0xFF900000
38#define TXBUF_BASE_ADDR 0xFF800000
39#define TX_BUF_CNT 1
40
53677ef1 41#define TOUT_LOOP 1000000
26bf7dec 42
6d7d4803
MF
43static ADI_ETHER_BUFFER *txbuf[TX_BUF_CNT];
44static ADI_ETHER_BUFFER *rxbuf[PKTBUFSRX];
26bf7dec
AL
45static u16 txIdx; /* index of the current RX buffer */
46static u16 rxIdx; /* index of the current TX buffer */
47
26bf7dec 48/* DMAx_CONFIG values at DMA Restart */
6d7d4803
MF
49static const union {
50 u16 data;
51 ADI_DMA_CONFIG_REG reg;
52} txdmacfg = {
53 .reg = {
54 .b_DMA_EN = 1, /* enabled */
55 .b_WNR = 0, /* read from memory */
56 .b_WDSIZE = 2, /* wordsize is 32 bits */
57 .b_DMA2D = 0,
58 .b_RESTART = 0,
59 .b_DI_SEL = 0,
60 .b_DI_EN = 0, /* no interrupt */
61 .b_NDSIZE = 5, /* 5 half words is desc size */
62 .b_FLOW = 7 /* large desc flow */
63 },
395bce4f
MF
64};
65
ac45af4e
MF
66static int bfin_miiphy_wait(void)
67{
68 /* poll the STABUSY bit */
69 while (bfin_read_EMAC_STAADD() & STABUSY)
70 continue;
71 return 0;
72}
73
5700bb63 74static int bfin_miiphy_read(const char *devname, uchar addr, uchar reg, ushort *val)
ac45af4e
MF
75{
76 if (bfin_miiphy_wait())
77 return 1;
78 bfin_write_EMAC_STAADD(SET_PHYAD(addr) | SET_REGAD(reg) | STABUSY);
79 if (bfin_miiphy_wait())
80 return 1;
81 *val = bfin_read_EMAC_STADAT();
82 return 0;
83}
84
5700bb63 85static int bfin_miiphy_write(const char *devname, uchar addr, uchar reg, ushort val)
ac45af4e
MF
86{
87 if (bfin_miiphy_wait())
88 return 1;
89 bfin_write_EMAC_STADAT(val);
90 bfin_write_EMAC_STAADD(SET_PHYAD(addr) | SET_REGAD(reg) | STAOP | STABUSY);
91 return 0;
92}
93
395bce4f 94int bfin_EMAC_initialize(bd_t *bis)
26bf7dec
AL
95{
96 struct eth_device *dev;
ac45af4e 97 dev = malloc(sizeof(*dev));
26bf7dec
AL
98 if (dev == NULL)
99 hang();
100
101 memset(dev, 0, sizeof(*dev));
94060a15 102 strcpy(dev->name, "bfin_mac");
26bf7dec
AL
103
104 dev->iobase = 0;
105 dev->priv = 0;
106 dev->init = bfin_EMAC_init;
107 dev->halt = bfin_EMAC_halt;
108 dev->send = bfin_EMAC_send;
109 dev->recv = bfin_EMAC_recv;
4324dc72 110 dev->write_hwaddr = bfin_EMAC_setup_addr;
26bf7dec
AL
111
112 eth_register(dev);
113
ac45af4e
MF
114#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
115 miiphy_register(dev->name, bfin_miiphy_read, bfin_miiphy_write);
116#endif
117
91494731 118 return 0;
26bf7dec
AL
119}
120
10cbe3b6 121static int bfin_EMAC_send(struct eth_device *dev, void *packet, int length)
26bf7dec
AL
122{
123 int i;
124 int result = 0;
125 unsigned int *buf;
126 buf = (unsigned int *)packet;
127
128 if (length <= 0) {
129 printf("Ethernet: bad packet size: %d\n", length);
130 goto out;
131 }
132
0c714817 133 if (bfin_read_DMA2_IRQ_STATUS() & DMA_ERR) {
26bf7dec
AL
134 printf("Ethernet: tx DMA error\n");
135 goto out;
136 }
137
0c714817 138 for (i = 0; (bfin_read_DMA2_IRQ_STATUS() & DMA_RUN); ++i) {
26bf7dec
AL
139 if (i > TOUT_LOOP) {
140 puts("Ethernet: tx time out\n");
141 goto out;
142 }
143 }
144 txbuf[txIdx]->FrmData->NoBytes = length;
145 memcpy(txbuf[txIdx]->FrmData->Dest, (void *)packet, length);
146 txbuf[txIdx]->Dma[0].START_ADDR = (u32) txbuf[txIdx]->FrmData;
0c714817
MF
147 bfin_write_DMA2_NEXT_DESC_PTR(txbuf[txIdx]->Dma);
148 bfin_write_DMA2_CONFIG(txdmacfg.data);
149 bfin_write_EMAC_OPMODE(bfin_read_EMAC_OPMODE() | TE);
26bf7dec
AL
150
151 for (i = 0; (txbuf[txIdx]->StatusWord & TX_COMP) == 0; i++) {
152 if (i > TOUT_LOOP) {
153 puts("Ethernet: tx error\n");
154 goto out;
155 }
156 }
157 result = txbuf[txIdx]->StatusWord;
158 txbuf[txIdx]->StatusWord = 0;
159 if ((txIdx + 1) >= TX_BUF_CNT)
160 txIdx = 0;
161 else
162 txIdx++;
395bce4f 163 out:
8eed6ca5 164 debug("BFIN EMAC send: length = %d\n", length);
26bf7dec
AL
165 return result;
166}
167
168static int bfin_EMAC_recv(struct eth_device *dev)
169{
170 int length = 0;
171
172 for (;;) {
173 if ((rxbuf[rxIdx]->StatusWord & RX_COMP) == 0) {
174 length = -1;
175 break;
176 }
177 if ((rxbuf[rxIdx]->StatusWord & RX_DMAO) != 0) {
178 printf("Ethernet: rx dma overrun\n");
179 break;
180 }
181 if ((rxbuf[rxIdx]->StatusWord & RX_OK) == 0) {
182 printf("Ethernet: rx error\n");
183 break;
184 }
185 length = rxbuf[rxIdx]->StatusWord & 0x000007FF;
186 if (length <= 4) {
187 printf("Ethernet: bad frame\n");
188 break;
189 }
488feef8
RG
190
191 debug("%s: len = %d\n", __func__, length - 4);
192
6705e036 193 NetRxPackets[rxIdx] = rxbuf[rxIdx]->FrmData->Dest;
26bf7dec 194 NetReceive(NetRxPackets[rxIdx], length - 4);
0c714817 195 bfin_write_DMA1_IRQ_STATUS(DMA_DONE | DMA_ERR);
26bf7dec
AL
196 rxbuf[rxIdx]->StatusWord = 0x00000000;
197 if ((rxIdx + 1) >= PKTBUFSRX)
198 rxIdx = 0;
199 else
200 rxIdx++;
201 }
202
203 return length;
204}
205
206/**************************************************************
207 *
208 * Ethernet Initialization Routine
209 *
210 *************************************************************/
211
ac45af4e
MF
212/* MDC = SCLK / MDC_freq / 2 - 1 */
213#define MDC_FREQ_TO_DIV(mdc_freq) (get_sclk() / (mdc_freq) / 2 - 1)
214
8339ad73
MF
215#ifndef CONFIG_BFIN_MAC_PINS
216# ifdef CONFIG_RMII
217# define CONFIG_BFIN_MAC_PINS P_RMII0
218# else
219# define CONFIG_BFIN_MAC_PINS P_MII0
220# endif
221#endif
222
ac45af4e
MF
223static int bfin_miiphy_init(struct eth_device *dev, int *opmode)
224{
8339ad73 225 const unsigned short pins[] = CONFIG_BFIN_MAC_PINS;
ac45af4e
MF
226 u16 phydat;
227 size_t count;
228
229 /* Enable PHY output */
0c714817 230 bfin_write_VR_CTL(bfin_read_VR_CTL() | CLKBUFOE);
ac45af4e
MF
231
232 /* Set all the pins to peripheral mode */
8339ad73 233 peripheral_request_list(pins, "bfin_mac");
ac45af4e
MF
234
235 /* Odd word alignment for Receive Frame DMA word */
236 /* Configure checksum support and rcve frame word alignment */
a7ec6ac8 237 bfin_write_EMAC_SYSCTL(RXDWA | RXCKS | SET_MDCDIV(MDC_FREQ_TO_DIV(CONFIG_PHY_CLOCK_FREQ)));
ac45af4e
MF
238
239 /* turn on auto-negotiation and wait for link to come up */
a7ec6ac8 240 bfin_miiphy_write(dev->name, CONFIG_PHY_ADDR, MII_BMCR, BMCR_ANENABLE);
ac45af4e
MF
241 count = 0;
242 while (1) {
243 ++count;
a7ec6ac8 244 if (bfin_miiphy_read(dev->name, CONFIG_PHY_ADDR, MII_BMSR, &phydat))
ac45af4e
MF
245 return -1;
246 if (phydat & BMSR_LSTATUS)
247 break;
248 if (count > 30000) {
249 printf("%s: link down, check cable\n", dev->name);
250 return -1;
251 }
252 udelay(100);
253 }
254
255 /* see what kind of link we have */
a7ec6ac8 256 if (bfin_miiphy_read(dev->name, CONFIG_PHY_ADDR, MII_LPA, &phydat))
ac45af4e
MF
257 return -1;
258 if (phydat & LPA_DUPLEX)
259 *opmode = FDMODE;
260 else
261 *opmode = 0;
262
263 bfin_write_EMAC_MMC_CTL(RSTC | CROLL);
264
265 /* Initialize the TX DMA channel registers */
0c714817
MF
266 bfin_write_DMA2_X_COUNT(0);
267 bfin_write_DMA2_X_MODIFY(4);
268 bfin_write_DMA2_Y_COUNT(0);
269 bfin_write_DMA2_Y_MODIFY(0);
ac45af4e
MF
270
271 /* Initialize the RX DMA channel registers */
0c714817
MF
272 bfin_write_DMA1_X_COUNT(0);
273 bfin_write_DMA1_X_MODIFY(4);
274 bfin_write_DMA1_Y_COUNT(0);
275 bfin_write_DMA1_Y_MODIFY(0);
ac45af4e
MF
276
277 return 0;
278}
279
4324dc72
MF
280static int bfin_EMAC_setup_addr(struct eth_device *dev)
281{
0c714817 282 bfin_write_EMAC_ADDRLO(
4324dc72
MF
283 dev->enetaddr[0] |
284 dev->enetaddr[1] << 8 |
285 dev->enetaddr[2] << 16 |
0c714817
MF
286 dev->enetaddr[3] << 24
287 );
288 bfin_write_EMAC_ADDRHI(
4324dc72 289 dev->enetaddr[4] |
0c714817
MF
290 dev->enetaddr[5] << 8
291 );
4324dc72
MF
292 return 0;
293}
294
395bce4f 295static int bfin_EMAC_init(struct eth_device *dev, bd_t *bd)
26bf7dec
AL
296{
297 u32 opmode;
298 int dat;
299 int i;
8eed6ca5 300 debug("Eth_init: ......\n");
26bf7dec
AL
301
302 txIdx = 0;
303 rxIdx = 0;
304
ac45af4e
MF
305 /* Initialize System Register */
306 if (bfin_miiphy_init(dev, &dat) < 0)
26bf7dec
AL
307 return -1;
308
ac45af4e 309 /* Initialize EMAC address */
4324dc72 310 bfin_EMAC_setup_addr(dev);
26bf7dec 311
ac45af4e 312 /* Initialize TX and RX buffer */
26bf7dec
AL
313 for (i = 0; i < PKTBUFSRX; i++) {
314 rxbuf[i] = SetupRxBuffer(i);
315 if (i > 0) {
6d7d4803 316 rxbuf[i - 1]->Dma[1].NEXT_DESC_PTR = rxbuf[i]->Dma;
26bf7dec 317 if (i == (PKTBUFSRX - 1))
6d7d4803 318 rxbuf[i]->Dma[1].NEXT_DESC_PTR = rxbuf[0]->Dma;
26bf7dec
AL
319 }
320 }
321 for (i = 0; i < TX_BUF_CNT; i++) {
322 txbuf[i] = SetupTxBuffer(i);
323 if (i > 0) {
6d7d4803 324 txbuf[i - 1]->Dma[1].NEXT_DESC_PTR = txbuf[i]->Dma;
26bf7dec 325 if (i == (TX_BUF_CNT - 1))
6d7d4803 326 txbuf[i]->Dma[1].NEXT_DESC_PTR = txbuf[0]->Dma;
26bf7dec
AL
327 }
328 }
329
330 /* Set RX DMA */
0c714817
MF
331 bfin_write_DMA1_NEXT_DESC_PTR(rxbuf[0]->Dma);
332 bfin_write_DMA1_CONFIG(rxbuf[0]->Dma[0].CONFIG_DATA);
26bf7dec
AL
333
334 /* Wait MII done */
ac45af4e 335 bfin_miiphy_wait();
26bf7dec
AL
336
337 /* We enable only RX here */
338 /* ASTP : Enable Automatic Pad Stripping
339 PR : Promiscuous Mode for test
340 PSF : Receive frames with total length less than 64 bytes.
341 FDMODE : Full Duplex Mode
342 LB : Internal Loopback for test
343 RE : Receiver Enable */
344 if (dat == FDMODE)
345 opmode = ASTP | FDMODE | PSF;
346 else
347 opmode = ASTP | PSF;
348 opmode |= RE;
092d2487 349#ifdef CONFIG_RMII
26bf7dec
AL
350 opmode |= TE | RMII;
351#endif
352 /* Turn on the EMAC */
0c714817 353 bfin_write_EMAC_OPMODE(opmode);
26bf7dec
AL
354 return 0;
355}
356
357static void bfin_EMAC_halt(struct eth_device *dev)
358{
8eed6ca5 359 debug("Eth_halt: ......\n");
26bf7dec 360 /* Turn off the EMAC */
0c714817 361 bfin_write_EMAC_OPMODE(0);
26bf7dec 362 /* Turn off the EMAC RX DMA */
0c714817
MF
363 bfin_write_DMA1_CONFIG(0);
364 bfin_write_DMA2_CONFIG(0);
26bf7dec
AL
365}
366
26bf7dec
AL
367ADI_ETHER_BUFFER *SetupRxBuffer(int no)
368{
369 ADI_ETHER_FRAME_BUFFER *frmbuf;
370 ADI_ETHER_BUFFER *buf;
371 int nobytes_buffer = sizeof(ADI_ETHER_BUFFER[2]) / 2; /* ensure a multi. of 4 */
372 int total_size = nobytes_buffer + RECV_BUFSIZE;
373
6d7d4803
MF
374 buf = (void *) (RXBUF_BASE_ADDR + no * total_size);
375 frmbuf = (void *) (RXBUF_BASE_ADDR + no * total_size + nobytes_buffer);
26bf7dec
AL
376
377 memset(buf, 0x00, nobytes_buffer);
378 buf->FrmData = frmbuf;
379 memset(frmbuf, 0xfe, RECV_BUFSIZE);
380
381 /* set up first desc to point to receive frame buffer */
382 buf->Dma[0].NEXT_DESC_PTR = &(buf->Dma[1]);
383 buf->Dma[0].START_ADDR = (u32) buf->FrmData;
384 buf->Dma[0].CONFIG.b_DMA_EN = 1; /* enabled */
385 buf->Dma[0].CONFIG.b_WNR = 1; /* Write to memory */
386 buf->Dma[0].CONFIG.b_WDSIZE = 2; /* wordsize is 32 bits */
387 buf->Dma[0].CONFIG.b_NDSIZE = 5; /* 5 half words is desc size. */
388 buf->Dma[0].CONFIG.b_FLOW = 7; /* large desc flow */
389
390 /* set up second desc to point to status word */
6d7d4803 391 buf->Dma[1].NEXT_DESC_PTR = buf->Dma;
26bf7dec
AL
392 buf->Dma[1].START_ADDR = (u32) & buf->IPHdrChksum;
393 buf->Dma[1].CONFIG.b_DMA_EN = 1; /* enabled */
394 buf->Dma[1].CONFIG.b_WNR = 1; /* Write to memory */
395 buf->Dma[1].CONFIG.b_WDSIZE = 2; /* wordsize is 32 bits */
396 buf->Dma[1].CONFIG.b_DI_EN = 1; /* enable interrupt */
397 buf->Dma[1].CONFIG.b_NDSIZE = 5; /* must be 0 when FLOW is 0 */
398 buf->Dma[1].CONFIG.b_FLOW = 7; /* stop */
399
400 return buf;
401}
402
403ADI_ETHER_BUFFER *SetupTxBuffer(int no)
404{
405 ADI_ETHER_FRAME_BUFFER *frmbuf;
406 ADI_ETHER_BUFFER *buf;
407 int nobytes_buffer = sizeof(ADI_ETHER_BUFFER[2]) / 2; /* ensure a multi. of 4 */
408 int total_size = nobytes_buffer + RECV_BUFSIZE;
409
6d7d4803
MF
410 buf = (void *) (TXBUF_BASE_ADDR + no * total_size);
411 frmbuf = (void *) (TXBUF_BASE_ADDR + no * total_size + nobytes_buffer);
26bf7dec
AL
412
413 memset(buf, 0x00, nobytes_buffer);
414 buf->FrmData = frmbuf;
415 memset(frmbuf, 0x00, RECV_BUFSIZE);
416
417 /* set up first desc to point to receive frame buffer */
418 buf->Dma[0].NEXT_DESC_PTR = &(buf->Dma[1]);
419 buf->Dma[0].START_ADDR = (u32) buf->FrmData;
420 buf->Dma[0].CONFIG.b_DMA_EN = 1; /* enabled */
421 buf->Dma[0].CONFIG.b_WNR = 0; /* Read to memory */
422 buf->Dma[0].CONFIG.b_WDSIZE = 2; /* wordsize is 32 bits */
423 buf->Dma[0].CONFIG.b_NDSIZE = 5; /* 5 half words is desc size. */
424 buf->Dma[0].CONFIG.b_FLOW = 7; /* large desc flow */
425
426 /* set up second desc to point to status word */
427 buf->Dma[1].NEXT_DESC_PTR = &(buf->Dma[0]);
428 buf->Dma[1].START_ADDR = (u32) & buf->StatusWord;
429 buf->Dma[1].CONFIG.b_DMA_EN = 1; /* enabled */
430 buf->Dma[1].CONFIG.b_WNR = 1; /* Write to memory */
431 buf->Dma[1].CONFIG.b_WDSIZE = 2; /* wordsize is 32 bits */
432 buf->Dma[1].CONFIG.b_DI_EN = 1; /* enable interrupt */
433 buf->Dma[1].CONFIG.b_NDSIZE = 0; /* must be 0 when FLOW is 0 */
434 buf->Dma[1].CONFIG.b_FLOW = 0; /* stop */
435
436 return buf;
437}
438
6d0f6bcf 439#if defined(CONFIG_POST) && defined(CONFIG_SYS_POST_ETHER)
26bf7dec
AL
440int ether_post_test(int flags)
441{
442 uchar buf[64];
443 int i, value = 0;
444 int length;
0c714817 445 uint addr;
26bf7dec
AL
446
447 printf("\n--------");
448 bfin_EMAC_init(NULL, NULL);
449 /* construct the package */
0c714817
MF
450 addr = bfin_read_EMAC_ADDRLO();
451 buf[0] = buf[6] = addr;
452 buf[1] = buf[7] = addr >> 8;
453 buf[2] = buf[8] = addr >> 16;
454 buf[3] = buf[9] = addr >> 24;
455 addr = bfin_read_EMAC_ADDRHI();
456 buf[4] = buf[10] = addr;
457 buf[5] = buf[11] = addr >> 8;
26bf7dec
AL
458 buf[12] = 0x08; /* Type: ARP */
459 buf[13] = 0x06;
460 buf[14] = 0x00; /* Hardware type: Ethernet */
461 buf[15] = 0x01;
462 buf[16] = 0x08; /* Protocal type: IP */
463 buf[17] = 0x00;
464 buf[18] = 0x06; /* Hardware size */
465 buf[19] = 0x04; /* Protocol size */
466 buf[20] = 0x00; /* Opcode: request */
467 buf[21] = 0x01;
468
469 for (i = 0; i < 42; i++)
470 buf[i + 22] = i;
471 printf("--------Send 64 bytes......\n");
10cbe3b6 472 bfin_EMAC_send(NULL, buf, 64);
26bf7dec
AL
473 for (i = 0; i < 100; i++) {
474 udelay(10000);
475 if ((rxbuf[rxIdx]->StatusWord & RX_COMP) != 0) {
476 value = 1;
477 break;
478 }
479 }
480 if (value == 0) {
481 printf("--------EMAC can't receive any data\n");
482 eth_halt();
483 return -1;
484 }
485 length = rxbuf[rxIdx]->StatusWord & 0x000007FF - 4;
486 for (i = 0; i < length; i++) {
487 if (rxbuf[rxIdx]->FrmData->Dest[i] != buf[i]) {
488 printf("--------EMAC receive error data!\n");
489 eth_halt();
490 return -1;
491 }
492 }
493 printf("--------receive %d bytes, matched\n", length);
494 bfin_EMAC_halt(NULL);
495 return 0;
496}
497#endif