1
2
3
4
5
6
7
8
9
10
11#include <common.h>
12#include <malloc.h>
13#include <memalign.h>
14#include <net.h>
15#include <netdev.h>
16#include <miiphy.h>
17#include "fec_mxc.h"
18
19#include <asm/arch/clock.h>
20#include <asm/arch/imx-regs.h>
21#include <asm/imx-common/sys_proto.h>
22#include <asm/io.h>
23#include <asm/errno.h>
24#include <linux/compiler.h>
25
26DECLARE_GLOBAL_DATA_PTR;
27
28
29
30
31
32#define FEC_XFER_TIMEOUT 5000
33
34
35
36
37
38
39
40#define FEC_DMA_RX_MINALIGN 64
41
42#ifndef CONFIG_MII
43#error "CONFIG_MII has to be defined!"
44#endif
45
46#ifndef CONFIG_FEC_XCV_TYPE
47#define CONFIG_FEC_XCV_TYPE MII100
48#endif
49
50
51
52
53
54#ifdef CONFIG_MX28
55#define CONFIG_FEC_MXC_SWAP_PACKET
56#endif
57
58#define RXDESC_PER_CACHELINE (ARCH_DMA_MINALIGN/sizeof(struct fec_bd))
59
60
61#if ((ARCH_DMA_MINALIGN < 16) || (ARCH_DMA_MINALIGN % 16 != 0))
62#error "ARCH_DMA_MINALIGN must be multiple of 16!"
63#endif
64
65#if ((PKTALIGN < ARCH_DMA_MINALIGN) || \
66 (PKTALIGN % ARCH_DMA_MINALIGN != 0))
67#error "PKTALIGN must be multiple of ARCH_DMA_MINALIGN!"
68#endif
69
70#undef DEBUG
71
72#ifdef CONFIG_FEC_MXC_SWAP_PACKET
73static void swap_packet(uint32_t *packet, int length)
74{
75 int i;
76
77 for (i = 0; i < DIV_ROUND_UP(length, 4); i++)
78 packet[i] = __swab32(packet[i]);
79}
80#endif
81
82
83
84
85static int fec_mdio_read(struct ethernet_regs *eth, uint8_t phyAddr,
86 uint8_t regAddr)
87{
88 uint32_t reg;
89 uint32_t phy;
90 uint32_t start;
91 int val;
92
93
94
95
96
97 writel(FEC_IEVENT_MII, ð->ievent);
98 reg = regAddr << FEC_MII_DATA_RA_SHIFT;
99 phy = phyAddr << FEC_MII_DATA_PA_SHIFT;
100
101 writel(FEC_MII_DATA_ST | FEC_MII_DATA_OP_RD | FEC_MII_DATA_TA |
102 phy | reg, ð->mii_data);
103
104
105
106
107 start = get_timer(0);
108 while (!(readl(ð->ievent) & FEC_IEVENT_MII)) {
109 if (get_timer(start) > (CONFIG_SYS_HZ / 1000)) {
110 printf("Read MDIO failed...\n");
111 return -1;
112 }
113 }
114
115
116
117
118 writel(FEC_IEVENT_MII, ð->ievent);
119
120
121
122
123 val = (unsigned short)readl(ð->mii_data);
124 debug("%s: phy: %02x reg:%02x val:%#x\n", __func__, phyAddr,
125 regAddr, val);
126 return val;
127}
128
129static void fec_mii_setspeed(struct ethernet_regs *eth)
130{
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146 u32 pclk = imx_get_fecclk();
147 u32 speed = DIV_ROUND_UP(pclk, 5000000);
148 u32 hold = DIV_ROUND_UP(pclk, 100000000) - 1;
149#ifdef FEC_QUIRK_ENET_MAC
150 speed--;
151#endif
152 writel(speed << 1 | hold << 8, ð->mii_speed);
153 debug("%s: mii_speed %08x\n", __func__, readl(ð->mii_speed));
154}
155
156static int fec_mdio_write(struct ethernet_regs *eth, uint8_t phyAddr,
157 uint8_t regAddr, uint16_t data)
158{
159 uint32_t reg;
160 uint32_t phy;
161 uint32_t start;
162
163 reg = regAddr << FEC_MII_DATA_RA_SHIFT;
164 phy = phyAddr << FEC_MII_DATA_PA_SHIFT;
165
166 writel(FEC_MII_DATA_ST | FEC_MII_DATA_OP_WR |
167 FEC_MII_DATA_TA | phy | reg | data, ð->mii_data);
168
169
170
171
172 start = get_timer(0);
173 while (!(readl(ð->ievent) & FEC_IEVENT_MII)) {
174 if (get_timer(start) > (CONFIG_SYS_HZ / 1000)) {
175 printf("Write MDIO failed...\n");
176 return -1;
177 }
178 }
179
180
181
182
183 writel(FEC_IEVENT_MII, ð->ievent);
184 debug("%s: phy: %02x reg:%02x val:%#x\n", __func__, phyAddr,
185 regAddr, data);
186
187 return 0;
188}
189
190static int fec_phy_read(struct mii_dev *bus, int phyAddr, int dev_addr,
191 int regAddr)
192{
193 return fec_mdio_read(bus->priv, phyAddr, regAddr);
194}
195
196static int fec_phy_write(struct mii_dev *bus, int phyAddr, int dev_addr,
197 int regAddr, u16 data)
198{
199 return fec_mdio_write(bus->priv, phyAddr, regAddr, data);
200}
201
202#ifndef CONFIG_PHYLIB
203static int miiphy_restart_aneg(struct eth_device *dev)
204{
205 int ret = 0;
206#if !defined(CONFIG_FEC_MXC_NO_ANEG)
207 struct fec_priv *fec = (struct fec_priv *)dev->priv;
208 struct ethernet_regs *eth = fec->bus->priv;
209
210
211
212
213
214#ifdef CONFIG_MX27
215 fec_mdio_write(eth, fec->phy_id, MII_DCOUNTER, 0x00FF);
216#endif
217 fec_mdio_write(eth, fec->phy_id, MII_BMCR, BMCR_RESET);
218 udelay(1000);
219
220
221
222
223 fec_mdio_write(eth, fec->phy_id, MII_ADVERTISE,
224 LPA_100FULL | LPA_100HALF | LPA_10FULL |
225 LPA_10HALF | PHY_ANLPAR_PSB_802_3);
226 fec_mdio_write(eth, fec->phy_id, MII_BMCR,
227 BMCR_ANENABLE | BMCR_ANRESTART);
228
229 if (fec->mii_postcall)
230 ret = fec->mii_postcall(fec->phy_id);
231
232#endif
233 return ret;
234}
235
236static int miiphy_wait_aneg(struct eth_device *dev)
237{
238 uint32_t start;
239 int status;
240 struct fec_priv *fec = (struct fec_priv *)dev->priv;
241 struct ethernet_regs *eth = fec->bus->priv;
242
243
244
245
246 start = get_timer(0);
247 do {
248 if (get_timer(start) > (CONFIG_SYS_HZ * 5)) {
249 printf("%s: Autonegotiation timeout\n", dev->name);
250 return -1;
251 }
252
253 status = fec_mdio_read(eth, fec->phy_id, MII_BMSR);
254 if (status < 0) {
255 printf("%s: Autonegotiation failed. status: %d\n",
256 dev->name, status);
257 return -1;
258 }
259 } while (!(status & BMSR_LSTATUS));
260
261 return 0;
262}
263#endif
264
265static int fec_rx_task_enable(struct fec_priv *fec)
266{
267 writel(FEC_R_DES_ACTIVE_RDAR, &fec->eth->r_des_active);
268 return 0;
269}
270
271static int fec_rx_task_disable(struct fec_priv *fec)
272{
273 return 0;
274}
275
276static int fec_tx_task_enable(struct fec_priv *fec)
277{
278 writel(FEC_X_DES_ACTIVE_TDAR, &fec->eth->x_des_active);
279 return 0;
280}
281
282static int fec_tx_task_disable(struct fec_priv *fec)
283{
284 return 0;
285}
286
287
288
289
290
291
292
293
294
295
296static void fec_rbd_init(struct fec_priv *fec, int count, int dsize)
297{
298 uint32_t size;
299 uint8_t *data;
300 int i;
301
302
303
304
305
306 size = roundup(dsize, ARCH_DMA_MINALIGN);
307 for (i = 0; i < count; i++) {
308 data = (uint8_t *)fec->rbd_base[i].data_pointer;
309 memset(data, 0, dsize);
310 flush_dcache_range((uint32_t)data, (uint32_t)data + size);
311
312 fec->rbd_base[i].status = FEC_RBD_EMPTY;
313 fec->rbd_base[i].data_length = 0;
314 }
315
316
317 fec->rbd_base[i - 1].status = FEC_RBD_WRAP | FEC_RBD_EMPTY;
318 fec->rbd_index = 0;
319
320 flush_dcache_range((unsigned)fec->rbd_base,
321 (unsigned)fec->rbd_base + size);
322}
323
324
325
326
327
328
329
330
331
332
333
334
335
336static void fec_tbd_init(struct fec_priv *fec)
337{
338 unsigned addr = (unsigned)fec->tbd_base;
339 unsigned size = roundup(2 * sizeof(struct fec_bd),
340 ARCH_DMA_MINALIGN);
341
342 memset(fec->tbd_base, 0, size);
343 fec->tbd_base[0].status = 0;
344 fec->tbd_base[1].status = FEC_TBD_WRAP;
345 fec->tbd_index = 0;
346 flush_dcache_range(addr, addr + size);
347}
348
349
350
351
352
353
354static void fec_rbd_clean(int last, struct fec_bd *pRbd)
355{
356 unsigned short flags = FEC_RBD_EMPTY;
357 if (last)
358 flags |= FEC_RBD_WRAP;
359 writew(flags, &pRbd->status);
360 writew(0, &pRbd->data_length);
361}
362
363static int fec_get_hwaddr(struct eth_device *dev, int dev_id,
364 unsigned char *mac)
365{
366 imx_get_mac_from_fuse(dev_id, mac);
367 return !is_valid_ethaddr(mac);
368}
369
370static int fec_set_hwaddr(struct eth_device *dev)
371{
372 uchar *mac = dev->enetaddr;
373 struct fec_priv *fec = (struct fec_priv *)dev->priv;
374
375 writel(0, &fec->eth->iaddr1);
376 writel(0, &fec->eth->iaddr2);
377 writel(0, &fec->eth->gaddr1);
378 writel(0, &fec->eth->gaddr2);
379
380
381
382
383 writel((mac[0] << 24) + (mac[1] << 16) + (mac[2] << 8) + mac[3],
384 &fec->eth->paddr1);
385 writel((mac[4] << 24) + (mac[5] << 16) + 0x8808, &fec->eth->paddr2);
386
387 return 0;
388}
389
390
391
392
393static void fec_reg_setup(struct fec_priv *fec)
394{
395 uint32_t rcntrl;
396
397
398
399
400 writel(0x00000000, &fec->eth->imask);
401
402
403
404
405 writel(0xffffffff, &fec->eth->ievent);
406
407
408
409
410
411
412
413 rcntrl = PKTSIZE << FEC_RCNTRL_MAX_FL_SHIFT;
414 if (fec->xcv_type != SEVENWIRE)
415 rcntrl |= FEC_RCNTRL_FCE | FEC_RCNTRL_MII_MODE;
416 if (fec->xcv_type == RGMII)
417 rcntrl |= FEC_RCNTRL_RGMII;
418 else if (fec->xcv_type == RMII)
419 rcntrl |= FEC_RCNTRL_RMII;
420
421 writel(rcntrl, &fec->eth->r_cntrl);
422}
423
424
425
426
427
428static int fec_open(struct eth_device *edev)
429{
430 struct fec_priv *fec = (struct fec_priv *)edev->priv;
431 int speed;
432 uint32_t addr, size;
433 int i;
434
435 debug("fec_open: fec_open(dev)\n");
436
437 writel(1 << 2, &fec->eth->x_cntrl);
438 fec->rbd_index = 0;
439
440
441 for (i = 0; i < FEC_RBD_NUM - 1; i++)
442 fec_rbd_clean(0, &fec->rbd_base[i]);
443 fec_rbd_clean(1, &fec->rbd_base[i]);
444
445
446 size = roundup(FEC_RBD_NUM * sizeof(struct fec_bd),
447 ARCH_DMA_MINALIGN);
448 addr = (uint32_t)fec->rbd_base;
449 flush_dcache_range(addr, addr + size);
450
451#ifdef FEC_QUIRK_ENET_MAC
452
453 writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_DBSWAP,
454 &fec->eth->ecntrl);
455
456 writel(readl(&fec->eth->x_wmrk) | FEC_X_WMRK_STRFWD,
457 &fec->eth->x_wmrk);
458#endif
459
460
461
462 writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_ETHER_EN,
463 &fec->eth->ecntrl);
464#if defined(CONFIG_MX25) || defined(CONFIG_MX53) || defined(CONFIG_MX6SL)
465 udelay(100);
466
467
468
469
470
471 writew(0, &fec->eth->miigsk_enr);
472
473
474 while (readw(&fec->eth->miigsk_enr) & MIIGSK_ENR_READY)
475 udelay(2);
476
477
478 writew(MIIGSK_CFGR_IF_MODE_RMII, &fec->eth->miigsk_cfgr);
479
480
481 writew(MIIGSK_ENR_EN, &fec->eth->miigsk_enr);
482
483
484 int max_loops = 10;
485 while ((readw(&fec->eth->miigsk_enr) & MIIGSK_ENR_READY) == 0) {
486 if (--max_loops <= 0) {
487 printf("WAIT for MII Gasket ready timed out\n");
488 break;
489 }
490 }
491#endif
492
493#ifdef CONFIG_PHYLIB
494 {
495
496 int ret = phy_startup(fec->phydev);
497
498 if (ret) {
499 printf("Could not initialize PHY %s\n",
500 fec->phydev->dev->name);
501 return ret;
502 }
503 speed = fec->phydev->speed;
504 }
505#else
506 miiphy_wait_aneg(edev);
507 speed = miiphy_speed(edev->name, fec->phy_id);
508 miiphy_duplex(edev->name, fec->phy_id);
509#endif
510
511#ifdef FEC_QUIRK_ENET_MAC
512 {
513 u32 ecr = readl(&fec->eth->ecntrl) & ~FEC_ECNTRL_SPEED;
514 u32 rcr = readl(&fec->eth->r_cntrl) & ~FEC_RCNTRL_RMII_10T;
515 if (speed == _1000BASET)
516 ecr |= FEC_ECNTRL_SPEED;
517 else if (speed != _100BASET)
518 rcr |= FEC_RCNTRL_RMII_10T;
519 writel(ecr, &fec->eth->ecntrl);
520 writel(rcr, &fec->eth->r_cntrl);
521 }
522#endif
523 debug("%s:Speed=%i\n", __func__, speed);
524
525
526
527
528 fec_rx_task_enable(fec);
529
530 udelay(100000);
531 return 0;
532}
533
534static int fec_init(struct eth_device *dev, bd_t* bd)
535{
536 struct fec_priv *fec = (struct fec_priv *)dev->priv;
537 uint32_t mib_ptr = (uint32_t)&fec->eth->rmon_t_drop;
538 int i;
539
540
541 fec_set_hwaddr(dev);
542
543
544
545
546 fec_tbd_init(fec);
547
548
549 fec_rbd_init(fec, FEC_RBD_NUM, FEC_MAX_PKT_SIZE);
550
551 fec_reg_setup(fec);
552
553 if (fec->xcv_type != SEVENWIRE)
554 fec_mii_setspeed(fec->bus->priv);
555
556
557
558
559 writel(0x00010020, &fec->eth->op_pause);
560 writel(0x2, &fec->eth->x_wmrk);
561
562
563
564 writel(0x00000000, &fec->eth->gaddr1);
565 writel(0x00000000, &fec->eth->gaddr2);
566
567
568
569 if (!is_cpu_type(MXC_CPU_MX6UL)) {
570
571 for (i = mib_ptr; i <= mib_ptr + 0xfc; i += 4)
572 writel(0, i);
573
574
575 writel(0x520, &fec->eth->r_fstart);
576 }
577
578
579 writel(FEC_MAX_PKT_SIZE, &fec->eth->emrbr);
580 writel((uint32_t)fec->tbd_base, &fec->eth->etdsr);
581 writel((uint32_t)fec->rbd_base, &fec->eth->erdsr);
582
583#ifndef CONFIG_PHYLIB
584 if (fec->xcv_type != SEVENWIRE)
585 miiphy_restart_aneg(dev);
586#endif
587 fec_open(dev);
588 return 0;
589}
590
591
592
593
594
595static void fec_halt(struct eth_device *dev)
596{
597 struct fec_priv *fec = (struct fec_priv *)dev->priv;
598 int counter = 0xffff;
599
600
601
602
603 writel(FEC_TCNTRL_GTS | readl(&fec->eth->x_cntrl),
604 &fec->eth->x_cntrl);
605
606 debug("eth_halt: wait for stop regs\n");
607
608
609
610 while ((counter--) && (!(readl(&fec->eth->ievent) & FEC_IEVENT_GRA)))
611 udelay(1);
612
613
614
615
616 fec_tx_task_disable(fec);
617 fec_rx_task_disable(fec);
618
619
620
621
622
623 writel(readl(&fec->eth->ecntrl) & ~FEC_ECNTRL_ETHER_EN,
624 &fec->eth->ecntrl);
625 fec->rbd_index = 0;
626 fec->tbd_index = 0;
627 debug("eth_halt: done\n");
628}
629
630
631
632
633
634
635
636
637static int fec_send(struct eth_device *dev, void *packet, int length)
638{
639 unsigned int status;
640 uint32_t size, end;
641 uint32_t addr;
642 int timeout = FEC_XFER_TIMEOUT;
643 int ret = 0;
644
645
646
647
648
649 struct fec_priv *fec = (struct fec_priv *)dev->priv;
650
651
652
653
654 if ((length > 1500) || (length <= 0)) {
655 printf("Payload (%d) too large\n", length);
656 return -1;
657 }
658
659
660
661
662
663
664#ifdef CONFIG_FEC_MXC_SWAP_PACKET
665 swap_packet((uint32_t *)packet, length);
666#endif
667
668 addr = (uint32_t)packet;
669 end = roundup(addr + length, ARCH_DMA_MINALIGN);
670 addr &= ~(ARCH_DMA_MINALIGN - 1);
671 flush_dcache_range(addr, end);
672
673 writew(length, &fec->tbd_base[fec->tbd_index].data_length);
674 writel(addr, &fec->tbd_base[fec->tbd_index].data_pointer);
675
676
677
678
679
680
681
682
683
684 status = readw(&fec->tbd_base[fec->tbd_index].status) & FEC_TBD_WRAP;
685 status |= FEC_TBD_LAST | FEC_TBD_TC | FEC_TBD_READY;
686 writew(status, &fec->tbd_base[fec->tbd_index].status);
687
688
689
690
691
692
693 size = roundup(2 * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
694 addr = (uint32_t)fec->tbd_base;
695 flush_dcache_range(addr, addr + size);
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717 readl(addr + size - 4);
718
719
720
721
722 fec_tx_task_enable(fec);
723
724
725
726
727
728
729 while (--timeout) {
730 if (!(readl(&fec->eth->x_des_active) & FEC_X_DES_ACTIVE_TDAR))
731 break;
732 }
733
734 if (!timeout) {
735 ret = -EINVAL;
736 goto out;
737 }
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753 timeout = FEC_XFER_TIMEOUT;
754 while (--timeout) {
755 invalidate_dcache_range(addr, addr + size);
756 if (!(readw(&fec->tbd_base[fec->tbd_index].status) &
757 FEC_TBD_READY))
758 break;
759 }
760
761 if (!timeout)
762 ret = -EINVAL;
763
764out:
765 debug("fec_send: status 0x%x index %d ret %i\n",
766 readw(&fec->tbd_base[fec->tbd_index].status),
767 fec->tbd_index, ret);
768
769 if (fec->tbd_index)
770 fec->tbd_index = 0;
771 else
772 fec->tbd_index = 1;
773
774 return ret;
775}
776
777
778
779
780
781
782static int fec_recv(struct eth_device *dev)
783{
784 struct fec_priv *fec = (struct fec_priv *)dev->priv;
785 struct fec_bd *rbd = &fec->rbd_base[fec->rbd_index];
786 unsigned long ievent;
787 int frame_length, len = 0;
788 uint16_t bd_status;
789 uint32_t addr, size, end;
790 int i;
791 ALLOC_CACHE_ALIGN_BUFFER(uchar, buff, FEC_MAX_PKT_SIZE);
792
793
794
795
796 ievent = readl(&fec->eth->ievent);
797 writel(ievent, &fec->eth->ievent);
798 debug("fec_recv: ievent 0x%lx\n", ievent);
799 if (ievent & FEC_IEVENT_BABR) {
800 fec_halt(dev);
801 fec_init(dev, fec->bd);
802 printf("some error: 0x%08lx\n", ievent);
803 return 0;
804 }
805 if (ievent & FEC_IEVENT_HBERR) {
806
807 writel(0x00000001 | readl(&fec->eth->x_cntrl),
808 &fec->eth->x_cntrl);
809 }
810 if (ievent & FEC_IEVENT_GRA) {
811
812 if (readl(&fec->eth->x_cntrl) & 0x00000001) {
813 fec_halt(dev);
814 writel(~0x00000001 & readl(&fec->eth->x_cntrl),
815 &fec->eth->x_cntrl);
816 fec_init(dev, fec->bd);
817 }
818 }
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833 addr = (uint32_t)rbd;
834 addr &= ~(ARCH_DMA_MINALIGN - 1);
835 size = roundup(sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
836 invalidate_dcache_range(addr, addr + size);
837
838 bd_status = readw(&rbd->status);
839 debug("fec_recv: status 0x%x\n", bd_status);
840
841 if (!(bd_status & FEC_RBD_EMPTY)) {
842 if ((bd_status & FEC_RBD_LAST) && !(bd_status & FEC_RBD_ERR) &&
843 ((readw(&rbd->data_length) - 4) > 14)) {
844
845
846
847 addr = readl(&rbd->data_pointer);
848 frame_length = readw(&rbd->data_length) - 4;
849
850
851
852 end = roundup(addr + frame_length, ARCH_DMA_MINALIGN);
853 addr &= ~(ARCH_DMA_MINALIGN - 1);
854 invalidate_dcache_range(addr, end);
855
856
857
858
859#ifdef CONFIG_FEC_MXC_SWAP_PACKET
860 swap_packet((uint32_t *)addr, frame_length);
861#endif
862 memcpy(buff, (char *)addr, frame_length);
863 net_process_received_packet(buff, frame_length);
864 len = frame_length;
865 } else {
866 if (bd_status & FEC_RBD_ERR)
867 printf("error frame: 0x%08x 0x%08x\n",
868 addr, bd_status);
869 }
870
871
872
873
874
875
876
877 size = RXDESC_PER_CACHELINE - 1;
878 if ((fec->rbd_index & size) == size) {
879 i = fec->rbd_index - size;
880 addr = (uint32_t)&fec->rbd_base[i];
881 for (; i <= fec->rbd_index ; i++) {
882 fec_rbd_clean(i == (FEC_RBD_NUM - 1),
883 &fec->rbd_base[i]);
884 }
885 flush_dcache_range(addr,
886 addr + ARCH_DMA_MINALIGN);
887 }
888
889 fec_rx_task_enable(fec);
890 fec->rbd_index = (fec->rbd_index + 1) % FEC_RBD_NUM;
891 }
892 debug("fec_recv: stop\n");
893
894 return len;
895}
896
897static void fec_set_dev_name(char *dest, int dev_id)
898{
899 sprintf(dest, (dev_id == -1) ? "FEC" : "FEC%i", dev_id);
900}
901
902static int fec_alloc_descs(struct fec_priv *fec)
903{
904 unsigned int size;
905 int i;
906 uint8_t *data;
907
908
909 size = roundup(2 * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
910 fec->tbd_base = memalign(ARCH_DMA_MINALIGN, size);
911 if (!fec->tbd_base)
912 goto err_tx;
913
914
915 size = roundup(FEC_RBD_NUM * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
916 fec->rbd_base = memalign(ARCH_DMA_MINALIGN, size);
917 if (!fec->rbd_base)
918 goto err_rx;
919
920 memset(fec->rbd_base, 0, size);
921
922
923
924
925 size = roundup(FEC_MAX_PKT_SIZE, FEC_DMA_RX_MINALIGN);
926 for (i = 0; i < FEC_RBD_NUM; i++) {
927 data = memalign(FEC_DMA_RX_MINALIGN, size);
928 if (!data) {
929 printf("%s: error allocating rxbuf %d\n", __func__, i);
930 goto err_ring;
931 }
932
933 memset(data, 0, size);
934
935 fec->rbd_base[i].data_pointer = (uint32_t)data;
936 fec->rbd_base[i].status = FEC_RBD_EMPTY;
937 fec->rbd_base[i].data_length = 0;
938
939 flush_dcache_range((uint32_t)data, (uint32_t)data + size);
940 }
941
942
943 fec->rbd_base[i - 1].status = FEC_RBD_WRAP | FEC_RBD_EMPTY;
944
945 fec->rbd_index = 0;
946 fec->tbd_index = 0;
947
948 return 0;
949
950err_ring:
951 for (; i >= 0; i--)
952 free((void *)fec->rbd_base[i].data_pointer);
953 free(fec->rbd_base);
954err_rx:
955 free(fec->tbd_base);
956err_tx:
957 return -ENOMEM;
958}
959
960static void fec_free_descs(struct fec_priv *fec)
961{
962 int i;
963
964 for (i = 0; i < FEC_RBD_NUM; i++)
965 free((void *)fec->rbd_base[i].data_pointer);
966 free(fec->rbd_base);
967 free(fec->tbd_base);
968}
969
970#ifdef CONFIG_PHYLIB
971int fec_probe(bd_t *bd, int dev_id, uint32_t base_addr,
972 struct mii_dev *bus, struct phy_device *phydev)
973#else
974static int fec_probe(bd_t *bd, int dev_id, uint32_t base_addr,
975 struct mii_dev *bus, int phy_id)
976#endif
977{
978 struct eth_device *edev;
979 struct fec_priv *fec;
980 unsigned char ethaddr[6];
981 uint32_t start;
982 int ret = 0;
983
984
985 edev = (struct eth_device *)malloc(sizeof(struct eth_device));
986 if (!edev) {
987 puts("fec_mxc: not enough malloc memory for eth_device\n");
988 ret = -ENOMEM;
989 goto err1;
990 }
991
992 fec = (struct fec_priv *)malloc(sizeof(struct fec_priv));
993 if (!fec) {
994 puts("fec_mxc: not enough malloc memory for fec_priv\n");
995 ret = -ENOMEM;
996 goto err2;
997 }
998
999 memset(edev, 0, sizeof(*edev));
1000 memset(fec, 0, sizeof(*fec));
1001
1002 ret = fec_alloc_descs(fec);
1003 if (ret)
1004 goto err3;
1005
1006 edev->priv = fec;
1007 edev->init = fec_init;
1008 edev->send = fec_send;
1009 edev->recv = fec_recv;
1010 edev->halt = fec_halt;
1011 edev->write_hwaddr = fec_set_hwaddr;
1012
1013 fec->eth = (struct ethernet_regs *)base_addr;
1014 fec->bd = bd;
1015
1016 fec->xcv_type = CONFIG_FEC_XCV_TYPE;
1017
1018
1019 writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_RESET, &fec->eth->ecntrl);
1020 start = get_timer(0);
1021 while (readl(&fec->eth->ecntrl) & FEC_ECNTRL_RESET) {
1022 if (get_timer(start) > (CONFIG_SYS_HZ * 5)) {
1023 printf("FEC MXC: Timeout reseting chip\n");
1024 goto err4;
1025 }
1026 udelay(10);
1027 }
1028
1029 fec_reg_setup(fec);
1030 fec_set_dev_name(edev->name, dev_id);
1031 fec->dev_id = (dev_id == -1) ? 0 : dev_id;
1032 fec->bus = bus;
1033 fec_mii_setspeed(bus->priv);
1034#ifdef CONFIG_PHYLIB
1035 fec->phydev = phydev;
1036 phy_connect_dev(phydev, edev);
1037
1038 phy_config(phydev);
1039#else
1040 fec->phy_id = phy_id;
1041#endif
1042 eth_register(edev);
1043
1044 if (fec_get_hwaddr(edev, dev_id, ethaddr) == 0) {
1045 debug("got MAC%d address from fuse: %pM\n", dev_id, ethaddr);
1046 memcpy(edev->enetaddr, ethaddr, 6);
1047 if (!getenv("ethaddr"))
1048 eth_setenv_enetaddr("ethaddr", ethaddr);
1049 }
1050 return ret;
1051err4:
1052 fec_free_descs(fec);
1053err3:
1054 free(fec);
1055err2:
1056 free(edev);
1057err1:
1058 return ret;
1059}
1060
1061struct mii_dev *fec_get_miibus(uint32_t base_addr, int dev_id)
1062{
1063 struct ethernet_regs *eth = (struct ethernet_regs *)base_addr;
1064 struct mii_dev *bus;
1065 int ret;
1066
1067 bus = mdio_alloc();
1068 if (!bus) {
1069 printf("mdio_alloc failed\n");
1070 return NULL;
1071 }
1072 bus->read = fec_phy_read;
1073 bus->write = fec_phy_write;
1074 bus->priv = eth;
1075 fec_set_dev_name(bus->name, dev_id);
1076
1077 ret = mdio_register(bus);
1078 if (ret) {
1079 printf("mdio_register failed\n");
1080 free(bus);
1081 return NULL;
1082 }
1083 fec_mii_setspeed(eth);
1084 return bus;
1085}
1086
1087int fecmxc_initialize_multi(bd_t *bd, int dev_id, int phy_id, uint32_t addr)
1088{
1089 uint32_t base_mii;
1090 struct mii_dev *bus = NULL;
1091#ifdef CONFIG_PHYLIB
1092 struct phy_device *phydev = NULL;
1093#endif
1094 int ret;
1095
1096#ifdef CONFIG_MX28
1097
1098
1099
1100
1101 base_mii = MXS_ENET0_BASE;
1102#else
1103 base_mii = addr;
1104#endif
1105 debug("eth_init: fec_probe(bd, %i, %i) @ %08x\n", dev_id, phy_id, addr);
1106 bus = fec_get_miibus(base_mii, dev_id);
1107 if (!bus)
1108 return -ENOMEM;
1109#ifdef CONFIG_PHYLIB
1110 phydev = phy_find_by_mask(bus, 1 << phy_id, PHY_INTERFACE_MODE_RGMII);
1111 if (!phydev) {
1112 mdio_unregister(bus);
1113 free(bus);
1114 return -ENOMEM;
1115 }
1116 ret = fec_probe(bd, dev_id, addr, bus, phydev);
1117#else
1118 ret = fec_probe(bd, dev_id, addr, bus, phy_id);
1119#endif
1120 if (ret) {
1121#ifdef CONFIG_PHYLIB
1122 free(phydev);
1123#endif
1124 mdio_unregister(bus);
1125 free(bus);
1126 }
1127 return ret;
1128}
1129
1130#ifdef CONFIG_FEC_MXC_PHYADDR
1131int fecmxc_initialize(bd_t *bd)
1132{
1133 return fecmxc_initialize_multi(bd, -1, CONFIG_FEC_MXC_PHYADDR,
1134 IMX_FEC_BASE);
1135}
1136#endif
1137
1138#ifndef CONFIG_PHYLIB
1139int fecmxc_register_mii_postcall(struct eth_device *dev, int (*cb)(int))
1140{
1141 struct fec_priv *fec = (struct fec_priv *)dev->priv;
1142 fec->mii_postcall = cb;
1143 return 0;
1144}
1145#endif
1146