1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22#include <linux/module.h>
23#include <linux/kernel.h>
24#include <linux/string.h>
25#include <linux/ptrace.h>
26#include <linux/errno.h>
27#include <linux/ioport.h>
28#include <linux/slab.h>
29#include <linux/interrupt.h>
30#include <linux/pci.h>
31#include <linux/init.h>
32#include <linux/delay.h>
33#include <linux/netdevice.h>
34#include <linux/etherdevice.h>
35#include <linux/skbuff.h>
36#include <linux/spinlock.h>
37#include <linux/workqueue.h>
38#include <linux/bitops.h>
39
40#include <asm/irq.h>
41#include <asm/uaccess.h>
42#include <asm/io.h>
43#include <asm/pgtable.h>
44#include <asm/cacheflush.h>
45
46#include <asm/coldfire.h>
47#include <asm/mcfsim.h>
48#include "fec.h"
49
50#if defined(CONFIG_FEC2)
51#define FEC_MAX_PORTS 2
52#else
53#define FEC_MAX_PORTS 1
54#endif
55
56#if defined(CONFIG_M5272)
57#define HAVE_mii_link_interrupt
58#endif
59
60
61
62
63static unsigned int fec_hw[] = {
64#if defined(CONFIG_M5272)
65 (MCF_MBAR + 0x840),
66#elif defined(CONFIG_M527x)
67 (MCF_MBAR + 0x1000),
68 (MCF_MBAR + 0x1800),
69#elif defined(CONFIG_M523x) || defined(CONFIG_M528x)
70 (MCF_MBAR + 0x1000),
71#elif defined(CONFIG_M520x)
72 (MCF_MBAR+0x30000),
73#elif defined(CONFIG_M532x)
74 (MCF_MBAR+0xfc030000),
75#else
76 &(((immap_t *)IMAP_ADDR)->im_cpm.cp_fec),
77#endif
78};
79
80static unsigned char fec_mac_default[] = {
81 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
82};
83
84
85
86
87
88#if defined(CONFIG_NETtel)
89#define FEC_FLASHMAC 0xf0006006
90#elif defined(CONFIG_GILBARCONAP) || defined(CONFIG_SCALES)
91#define FEC_FLASHMAC 0xf0006000
92#elif defined(CONFIG_CANCam)
93#define FEC_FLASHMAC 0xf0020000
94#elif defined (CONFIG_M5272C3)
95#define FEC_FLASHMAC (0xffe04000 + 4)
96#elif defined(CONFIG_MOD5272)
97#define FEC_FLASHMAC 0xffc0406b
98#else
99#define FEC_FLASHMAC 0
100#endif
101
102
103
104
105typedef struct {
106 uint mii_data;
107 void (*funct)(uint mii_reg, struct net_device *dev);
108} phy_cmd_t;
109
110typedef struct {
111 uint id;
112 char *name;
113
114 const phy_cmd_t *config;
115 const phy_cmd_t *startup;
116 const phy_cmd_t *ack_int;
117 const phy_cmd_t *shutdown;
118} phy_info_t;
119
120
121
122
123
124
125
126#define FEC_ENET_RX_PAGES 8
127#define FEC_ENET_RX_FRSIZE 2048
128#define FEC_ENET_RX_FRPPG (PAGE_SIZE / FEC_ENET_RX_FRSIZE)
129#define RX_RING_SIZE (FEC_ENET_RX_FRPPG * FEC_ENET_RX_PAGES)
130#define FEC_ENET_TX_FRSIZE 2048
131#define FEC_ENET_TX_FRPPG (PAGE_SIZE / FEC_ENET_TX_FRSIZE)
132#define TX_RING_SIZE 16
133#define TX_RING_MOD_MASK 15
134
135#if (((RX_RING_SIZE + TX_RING_SIZE) * 8) > PAGE_SIZE)
136#error "FEC: descriptor ring size constants too large"
137#endif
138
139
140
141#define FEC_ENET_HBERR ((uint)0x80000000)
142#define FEC_ENET_BABR ((uint)0x40000000)
143#define FEC_ENET_BABT ((uint)0x20000000)
144#define FEC_ENET_GRA ((uint)0x10000000)
145#define FEC_ENET_TXF ((uint)0x08000000)
146#define FEC_ENET_TXB ((uint)0x04000000)
147#define FEC_ENET_RXF ((uint)0x02000000)
148#define FEC_ENET_RXB ((uint)0x01000000)
149#define FEC_ENET_MII ((uint)0x00800000)
150#define FEC_ENET_EBERR ((uint)0x00400000)
151
152
153
154#define PKT_MAXBUF_SIZE 1518
155#define PKT_MINBUF_SIZE 64
156#define PKT_MAXBLR_SIZE 1520
157
158
159
160
161
162
163
164#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
165 defined(CONFIG_M520x) || defined(CONFIG_M532x)
166#define OPT_FRAME_SIZE (PKT_MAXBUF_SIZE << 16)
167#else
168#define OPT_FRAME_SIZE 0
169#endif
170
171
172
173
174
175
176
177
178
179struct fec_enet_private {
180
181 volatile fec_t *hwp;
182
183 struct net_device *netdev;
184
185
186 unsigned char *tx_bounce[TX_RING_SIZE];
187 struct sk_buff* tx_skbuff[TX_RING_SIZE];
188 ushort skb_cur;
189 ushort skb_dirty;
190
191
192
193 cbd_t *rx_bd_base;
194 cbd_t *tx_bd_base;
195 cbd_t *cur_rx, *cur_tx;
196 cbd_t *dirty_tx;
197 uint tx_full;
198
199 spinlock_t hw_lock;
200
201 spinlock_t mii_lock;
202
203 uint phy_id;
204 uint phy_id_done;
205 uint phy_status;
206 uint phy_speed;
207 phy_info_t const *phy;
208 struct work_struct phy_task;
209
210 uint sequence_done;
211 uint mii_phy_task_queued;
212
213 uint phy_addr;
214
215 int index;
216 int opened;
217 int link;
218 int old_link;
219 int full_duplex;
220};
221
222static int fec_enet_open(struct net_device *dev);
223static int fec_enet_start_xmit(struct sk_buff *skb, struct net_device *dev);
224static void fec_enet_mii(struct net_device *dev);
225static irqreturn_t fec_enet_interrupt(int irq, void * dev_id);
226static void fec_enet_tx(struct net_device *dev);
227static void fec_enet_rx(struct net_device *dev);
228static int fec_enet_close(struct net_device *dev);
229static void set_multicast_list(struct net_device *dev);
230static void fec_restart(struct net_device *dev, int duplex);
231static void fec_stop(struct net_device *dev);
232static void fec_set_mac_address(struct net_device *dev);
233
234
235
236
237
238
239typedef struct mii_list {
240 uint mii_regval;
241 void (*mii_func)(uint val, struct net_device *dev);
242 struct mii_list *mii_next;
243} mii_list_t;
244
245#define NMII 20
246static mii_list_t mii_cmds[NMII];
247static mii_list_t *mii_free;
248static mii_list_t *mii_head;
249static mii_list_t *mii_tail;
250
251static int mii_queue(struct net_device *dev, int request,
252 void (*func)(uint, struct net_device *));
253
254
255
256#define mk_mii_read(REG) (0x60020000 | ((REG & 0x1f) << 18))
257#define mk_mii_write(REG, VAL) (0x50020000 | ((REG & 0x1f) << 18) | \
258 (VAL & 0xffff))
259#define mk_mii_end 0
260
261
262
263#define TX_TIMEOUT (2*HZ)
264
265
266
267
268#define MII_REG_CR 0
269#define MII_REG_SR 1
270#define MII_REG_PHYIR1 2
271#define MII_REG_PHYIR2 3
272#define MII_REG_ANAR 4
273#define MII_REG_ANLPAR 5
274#define MII_REG_ANER 6
275#define MII_REG_ANNPTR 7
276#define MII_REG_ANLPRNPR 8
277
278
279
280#define PHY_CONF_ANE 0x0001
281#define PHY_CONF_LOOP 0x0002
282#define PHY_CONF_SPMASK 0x00f0
283#define PHY_CONF_10HDX 0x0010
284#define PHY_CONF_10FDX 0x0020
285#define PHY_CONF_100HDX 0x0040
286#define PHY_CONF_100FDX 0x0080
287
288#define PHY_STAT_LINK 0x0100
289#define PHY_STAT_FAULT 0x0200
290#define PHY_STAT_ANC 0x0400
291#define PHY_STAT_SPMASK 0xf000
292#define PHY_STAT_10HDX 0x1000
293#define PHY_STAT_10FDX 0x2000
294#define PHY_STAT_100HDX 0x4000
295#define PHY_STAT_100FDX 0x8000
296
297
298static int
299fec_enet_start_xmit(struct sk_buff *skb, struct net_device *dev)
300{
301 struct fec_enet_private *fep;
302 volatile fec_t *fecp;
303 volatile cbd_t *bdp;
304 unsigned short status;
305 unsigned long flags;
306
307 fep = netdev_priv(dev);
308 fecp = (volatile fec_t*)dev->base_addr;
309
310 if (!fep->link) {
311
312 return 1;
313 }
314
315 spin_lock_irqsave(&fep->hw_lock, flags);
316
317 bdp = fep->cur_tx;
318
319 status = bdp->cbd_sc;
320#ifndef final_version
321 if (status & BD_ENET_TX_READY) {
322
323
324
325 printk("%s: tx queue full!.\n", dev->name);
326 spin_unlock_irqrestore(&fep->hw_lock, flags);
327 return 1;
328 }
329#endif
330
331
332
333 status &= ~BD_ENET_TX_STATS;
334
335
336
337 bdp->cbd_bufaddr = __pa(skb->data);
338 bdp->cbd_datlen = skb->len;
339
340
341
342
343
344
345 if (bdp->cbd_bufaddr & 0x3) {
346 unsigned int index;
347 index = bdp - fep->tx_bd_base;
348 memcpy(fep->tx_bounce[index], (void *) bdp->cbd_bufaddr, bdp->cbd_datlen);
349 bdp->cbd_bufaddr = __pa(fep->tx_bounce[index]);
350 }
351
352
353
354 fep->tx_skbuff[fep->skb_cur] = skb;
355
356 dev->stats.tx_bytes += skb->len;
357 fep->skb_cur = (fep->skb_cur+1) & TX_RING_MOD_MASK;
358
359
360
361
362 flush_dcache_range((unsigned long)skb->data,
363 (unsigned long)skb->data + skb->len);
364
365
366
367
368
369 status |= (BD_ENET_TX_READY | BD_ENET_TX_INTR
370 | BD_ENET_TX_LAST | BD_ENET_TX_TC);
371 bdp->cbd_sc = status;
372
373 dev->trans_start = jiffies;
374
375
376 fecp->fec_x_des_active = 0;
377
378
379
380 if (status & BD_ENET_TX_WRAP) {
381 bdp = fep->tx_bd_base;
382 } else {
383 bdp++;
384 }
385
386 if (bdp == fep->dirty_tx) {
387 fep->tx_full = 1;
388 netif_stop_queue(dev);
389 }
390
391 fep->cur_tx = (cbd_t *)bdp;
392
393 spin_unlock_irqrestore(&fep->hw_lock, flags);
394
395 return 0;
396}
397
398static void
399fec_timeout(struct net_device *dev)
400{
401 struct fec_enet_private *fep = netdev_priv(dev);
402
403 printk("%s: transmit timed out.\n", dev->name);
404 dev->stats.tx_errors++;
405#ifndef final_version
406 {
407 int i;
408 cbd_t *bdp;
409
410 printk("Ring data dump: cur_tx %lx%s, dirty_tx %lx cur_rx: %lx\n",
411 (unsigned long)fep->cur_tx, fep->tx_full ? " (full)" : "",
412 (unsigned long)fep->dirty_tx,
413 (unsigned long)fep->cur_rx);
414
415 bdp = fep->tx_bd_base;
416 printk(" tx: %u buffers\n", TX_RING_SIZE);
417 for (i = 0 ; i < TX_RING_SIZE; i++) {
418 printk(" %08x: %04x %04x %08x\n",
419 (uint) bdp,
420 bdp->cbd_sc,
421 bdp->cbd_datlen,
422 (int) bdp->cbd_bufaddr);
423 bdp++;
424 }
425
426 bdp = fep->rx_bd_base;
427 printk(" rx: %lu buffers\n", (unsigned long) RX_RING_SIZE);
428 for (i = 0 ; i < RX_RING_SIZE; i++) {
429 printk(" %08x: %04x %04x %08x\n",
430 (uint) bdp,
431 bdp->cbd_sc,
432 bdp->cbd_datlen,
433 (int) bdp->cbd_bufaddr);
434 bdp++;
435 }
436 }
437#endif
438 fec_restart(dev, fep->full_duplex);
439 netif_wake_queue(dev);
440}
441
442
443
444
445static irqreturn_t
446fec_enet_interrupt(int irq, void * dev_id)
447{
448 struct net_device *dev = dev_id;
449 volatile fec_t *fecp;
450 uint int_events;
451 irqreturn_t ret = IRQ_NONE;
452
453 fecp = (volatile fec_t*)dev->base_addr;
454
455
456
457 do {
458 int_events = fecp->fec_ievent;
459 fecp->fec_ievent = int_events;
460
461
462
463 if (int_events & FEC_ENET_RXF) {
464 ret = IRQ_HANDLED;
465 fec_enet_rx(dev);
466 }
467
468
469
470
471
472 if (int_events & FEC_ENET_TXF) {
473 ret = IRQ_HANDLED;
474 fec_enet_tx(dev);
475 }
476
477 if (int_events & FEC_ENET_MII) {
478 ret = IRQ_HANDLED;
479 fec_enet_mii(dev);
480 }
481
482 } while (int_events);
483
484 return ret;
485}
486
487
488static void
489fec_enet_tx(struct net_device *dev)
490{
491 struct fec_enet_private *fep;
492 volatile cbd_t *bdp;
493 unsigned short status;
494 struct sk_buff *skb;
495
496 fep = netdev_priv(dev);
497 spin_lock_irq(&fep->hw_lock);
498 bdp = fep->dirty_tx;
499
500 while (((status = bdp->cbd_sc) & BD_ENET_TX_READY) == 0) {
501 if (bdp == fep->cur_tx && fep->tx_full == 0) break;
502
503 skb = fep->tx_skbuff[fep->skb_dirty];
504
505 if (status & (BD_ENET_TX_HB | BD_ENET_TX_LC |
506 BD_ENET_TX_RL | BD_ENET_TX_UN |
507 BD_ENET_TX_CSL)) {
508 dev->stats.tx_errors++;
509 if (status & BD_ENET_TX_HB)
510 dev->stats.tx_heartbeat_errors++;
511 if (status & BD_ENET_TX_LC)
512 dev->stats.tx_window_errors++;
513 if (status & BD_ENET_TX_RL)
514 dev->stats.tx_aborted_errors++;
515 if (status & BD_ENET_TX_UN)
516 dev->stats.tx_fifo_errors++;
517 if (status & BD_ENET_TX_CSL)
518 dev->stats.tx_carrier_errors++;
519 } else {
520 dev->stats.tx_packets++;
521 }
522
523#ifndef final_version
524 if (status & BD_ENET_TX_READY)
525 printk("HEY! Enet xmit interrupt and TX_READY.\n");
526#endif
527
528
529
530 if (status & BD_ENET_TX_DEF)
531 dev->stats.collisions++;
532
533
534
535 dev_kfree_skb_any(skb);
536 fep->tx_skbuff[fep->skb_dirty] = NULL;
537 fep->skb_dirty = (fep->skb_dirty + 1) & TX_RING_MOD_MASK;
538
539
540
541 if (status & BD_ENET_TX_WRAP)
542 bdp = fep->tx_bd_base;
543 else
544 bdp++;
545
546
547
548
549 if (fep->tx_full) {
550 fep->tx_full = 0;
551 if (netif_queue_stopped(dev))
552 netif_wake_queue(dev);
553 }
554 }
555 fep->dirty_tx = (cbd_t *)bdp;
556 spin_unlock_irq(&fep->hw_lock);
557}
558
559
560
561
562
563
564
565static void
566fec_enet_rx(struct net_device *dev)
567{
568 struct fec_enet_private *fep;
569 volatile fec_t *fecp;
570 volatile cbd_t *bdp;
571 unsigned short status;
572 struct sk_buff *skb;
573 ushort pkt_len;
574 __u8 *data;
575
576#ifdef CONFIG_M532x
577 flush_cache_all();
578#endif
579
580 fep = netdev_priv(dev);
581 fecp = (volatile fec_t*)dev->base_addr;
582
583 spin_lock_irq(&fep->hw_lock);
584
585
586
587
588 bdp = fep->cur_rx;
589
590while (!((status = bdp->cbd_sc) & BD_ENET_RX_EMPTY)) {
591
592#ifndef final_version
593
594
595
596 if ((status & BD_ENET_RX_LAST) == 0)
597 printk("FEC ENET: rcv is not +last\n");
598#endif
599
600 if (!fep->opened)
601 goto rx_processing_done;
602
603
604 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_NO |
605 BD_ENET_RX_CR | BD_ENET_RX_OV)) {
606 dev->stats.rx_errors++;
607 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH)) {
608
609 dev->stats.rx_length_errors++;
610 }
611 if (status & BD_ENET_RX_NO)
612 dev->stats.rx_frame_errors++;
613 if (status & BD_ENET_RX_CR)
614 dev->stats.rx_crc_errors++;
615 if (status & BD_ENET_RX_OV)
616 dev->stats.rx_fifo_errors++;
617 }
618
619
620
621
622
623 if (status & BD_ENET_RX_CL) {
624 dev->stats.rx_errors++;
625 dev->stats.rx_frame_errors++;
626 goto rx_processing_done;
627 }
628
629
630
631 dev->stats.rx_packets++;
632 pkt_len = bdp->cbd_datlen;
633 dev->stats.rx_bytes += pkt_len;
634 data = (__u8*)__va(bdp->cbd_bufaddr);
635
636
637
638
639
640
641 skb = dev_alloc_skb(pkt_len-4);
642
643 if (skb == NULL) {
644 printk("%s: Memory squeeze, dropping packet.\n", dev->name);
645 dev->stats.rx_dropped++;
646 } else {
647 skb_put(skb,pkt_len-4);
648 skb_copy_to_linear_data(skb, data, pkt_len-4);
649 skb->protocol=eth_type_trans(skb,dev);
650 netif_rx(skb);
651 }
652 rx_processing_done:
653
654
655
656 status &= ~BD_ENET_RX_STATS;
657
658
659
660 status |= BD_ENET_RX_EMPTY;
661 bdp->cbd_sc = status;
662
663
664
665 if (status & BD_ENET_RX_WRAP)
666 bdp = fep->rx_bd_base;
667 else
668 bdp++;
669
670#if 1
671
672
673
674
675 fecp->fec_r_des_active = 0;
676#endif
677 }
678 fep->cur_rx = (cbd_t *)bdp;
679
680#if 0
681
682
683
684
685
686
687
688 fecp->fec_r_des_active = 0;
689#endif
690
691 spin_unlock_irq(&fep->hw_lock);
692}
693
694
695
696static void
697fec_enet_mii(struct net_device *dev)
698{
699 struct fec_enet_private *fep;
700 volatile fec_t *ep;
701 mii_list_t *mip;
702 uint mii_reg;
703
704 fep = netdev_priv(dev);
705 spin_lock_irq(&fep->mii_lock);
706
707 ep = fep->hwp;
708 mii_reg = ep->fec_mii_data;
709
710 if ((mip = mii_head) == NULL) {
711 printk("MII and no head!\n");
712 goto unlock;
713 }
714
715 if (mip->mii_func != NULL)
716 (*(mip->mii_func))(mii_reg, dev);
717
718 mii_head = mip->mii_next;
719 mip->mii_next = mii_free;
720 mii_free = mip;
721
722 if ((mip = mii_head) != NULL)
723 ep->fec_mii_data = mip->mii_regval;
724
725unlock:
726 spin_unlock_irq(&fep->mii_lock);
727}
728
729static int
730mii_queue(struct net_device *dev, int regval, void (*func)(uint, struct net_device *))
731{
732 struct fec_enet_private *fep;
733 unsigned long flags;
734 mii_list_t *mip;
735 int retval;
736
737
738
739 fep = netdev_priv(dev);
740 spin_lock_irqsave(&fep->mii_lock, flags);
741
742 regval |= fep->phy_addr << 23;
743 retval = 0;
744
745 if ((mip = mii_free) != NULL) {
746 mii_free = mip->mii_next;
747 mip->mii_regval = regval;
748 mip->mii_func = func;
749 mip->mii_next = NULL;
750 if (mii_head) {
751 mii_tail->mii_next = mip;
752 mii_tail = mip;
753 } else {
754 mii_head = mii_tail = mip;
755 fep->hwp->fec_mii_data = regval;
756 }
757 } else {
758 retval = 1;
759 }
760
761 spin_unlock_irqrestore(&fep->mii_lock, flags);
762 return retval;
763}
764
765static void mii_do_cmd(struct net_device *dev, const phy_cmd_t *c)
766{
767 if(!c)
768 return;
769
770 for (; c->mii_data != mk_mii_end; c++)
771 mii_queue(dev, c->mii_data, c->funct);
772}
773
774static void mii_parse_sr(uint mii_reg, struct net_device *dev)
775{
776 struct fec_enet_private *fep = netdev_priv(dev);
777 volatile uint *s = &(fep->phy_status);
778 uint status;
779
780 status = *s & ~(PHY_STAT_LINK | PHY_STAT_FAULT | PHY_STAT_ANC);
781
782 if (mii_reg & 0x0004)
783 status |= PHY_STAT_LINK;
784 if (mii_reg & 0x0010)
785 status |= PHY_STAT_FAULT;
786 if (mii_reg & 0x0020)
787 status |= PHY_STAT_ANC;
788 *s = status;
789}
790
791static void mii_parse_cr(uint mii_reg, struct net_device *dev)
792{
793 struct fec_enet_private *fep = netdev_priv(dev);
794 volatile uint *s = &(fep->phy_status);
795 uint status;
796
797 status = *s & ~(PHY_CONF_ANE | PHY_CONF_LOOP);
798
799 if (mii_reg & 0x1000)
800 status |= PHY_CONF_ANE;
801 if (mii_reg & 0x4000)
802 status |= PHY_CONF_LOOP;
803 *s = status;
804}
805
806static void mii_parse_anar(uint mii_reg, struct net_device *dev)
807{
808 struct fec_enet_private *fep = netdev_priv(dev);
809 volatile uint *s = &(fep->phy_status);
810 uint status;
811
812 status = *s & ~(PHY_CONF_SPMASK);
813
814 if (mii_reg & 0x0020)
815 status |= PHY_CONF_10HDX;
816 if (mii_reg & 0x0040)
817 status |= PHY_CONF_10FDX;
818 if (mii_reg & 0x0080)
819 status |= PHY_CONF_100HDX;
820 if (mii_reg & 0x00100)
821 status |= PHY_CONF_100FDX;
822 *s = status;
823}
824
825
826
827
828#define MII_LXT970_MIRROR 16
829#define MII_LXT970_IER 17
830#define MII_LXT970_ISR 18
831#define MII_LXT970_CONFIG 19
832#define MII_LXT970_CSR 20
833
834static void mii_parse_lxt970_csr(uint mii_reg, struct net_device *dev)
835{
836 struct fec_enet_private *fep = netdev_priv(dev);
837 volatile uint *s = &(fep->phy_status);
838 uint status;
839
840 status = *s & ~(PHY_STAT_SPMASK);
841 if (mii_reg & 0x0800) {
842 if (mii_reg & 0x1000)
843 status |= PHY_STAT_100FDX;
844 else
845 status |= PHY_STAT_100HDX;
846 } else {
847 if (mii_reg & 0x1000)
848 status |= PHY_STAT_10FDX;
849 else
850 status |= PHY_STAT_10HDX;
851 }
852 *s = status;
853}
854
855static phy_cmd_t const phy_cmd_lxt970_config[] = {
856 { mk_mii_read(MII_REG_CR), mii_parse_cr },
857 { mk_mii_read(MII_REG_ANAR), mii_parse_anar },
858 { mk_mii_end, }
859 };
860static phy_cmd_t const phy_cmd_lxt970_startup[] = {
861 { mk_mii_write(MII_LXT970_IER, 0x0002), NULL },
862 { mk_mii_write(MII_REG_CR, 0x1200), NULL },
863 { mk_mii_end, }
864 };
865static phy_cmd_t const phy_cmd_lxt970_ack_int[] = {
866
867 { mk_mii_read(MII_REG_SR), mii_parse_sr },
868 { mk_mii_read(MII_LXT970_ISR), NULL },
869
870
871 { mk_mii_read(MII_LXT970_CSR), mii_parse_lxt970_csr },
872 { mk_mii_end, }
873 };
874static phy_cmd_t const phy_cmd_lxt970_shutdown[] = {
875 { mk_mii_write(MII_LXT970_IER, 0x0000), NULL },
876 { mk_mii_end, }
877 };
878static phy_info_t const phy_info_lxt970 = {
879 .id = 0x07810000,
880 .name = "LXT970",
881 .config = phy_cmd_lxt970_config,
882 .startup = phy_cmd_lxt970_startup,
883 .ack_int = phy_cmd_lxt970_ack_int,
884 .shutdown = phy_cmd_lxt970_shutdown
885};
886
887
888
889
890
891
892#define MII_LXT971_PCR 16
893#define MII_LXT971_SR2 17
894#define MII_LXT971_IER 18
895#define MII_LXT971_ISR 19
896#define MII_LXT971_LCR 20
897#define MII_LXT971_TCR 30
898
899
900
901
902
903
904
905static void mii_parse_lxt971_sr2(uint mii_reg, struct net_device *dev)
906{
907 struct fec_enet_private *fep = netdev_priv(dev);
908 volatile uint *s = &(fep->phy_status);
909 uint status;
910
911 status = *s & ~(PHY_STAT_SPMASK | PHY_STAT_LINK | PHY_STAT_ANC);
912
913 if (mii_reg & 0x0400) {
914 fep->link = 1;
915 status |= PHY_STAT_LINK;
916 } else {
917 fep->link = 0;
918 }
919 if (mii_reg & 0x0080)
920 status |= PHY_STAT_ANC;
921 if (mii_reg & 0x4000) {
922 if (mii_reg & 0x0200)
923 status |= PHY_STAT_100FDX;
924 else
925 status |= PHY_STAT_100HDX;
926 } else {
927 if (mii_reg & 0x0200)
928 status |= PHY_STAT_10FDX;
929 else
930 status |= PHY_STAT_10HDX;
931 }
932 if (mii_reg & 0x0008)
933 status |= PHY_STAT_FAULT;
934
935 *s = status;
936}
937
938static phy_cmd_t const phy_cmd_lxt971_config[] = {
939
940
941 { mk_mii_read(MII_REG_CR), mii_parse_cr },
942 { mk_mii_read(MII_REG_ANAR), mii_parse_anar },
943 { mk_mii_read(MII_LXT971_SR2), mii_parse_lxt971_sr2 },
944 { mk_mii_end, }
945 };
946static phy_cmd_t const phy_cmd_lxt971_startup[] = {
947 { mk_mii_write(MII_LXT971_IER, 0x00f2), NULL },
948 { mk_mii_write(MII_REG_CR, 0x1200), NULL },
949 { mk_mii_write(MII_LXT971_LCR, 0xd422), NULL },
950
951
952
953 { mk_mii_read(MII_REG_SR), mii_parse_sr },
954 { mk_mii_end, }
955 };
956static phy_cmd_t const phy_cmd_lxt971_ack_int[] = {
957
958 { mk_mii_read(MII_LXT971_ISR), NULL },
959
960 { mk_mii_read(MII_REG_SR), mii_parse_sr },
961 { mk_mii_read(MII_LXT971_SR2), mii_parse_lxt971_sr2 },
962 { mk_mii_end, }
963 };
964static phy_cmd_t const phy_cmd_lxt971_shutdown[] = {
965 { mk_mii_write(MII_LXT971_IER, 0x0000), NULL },
966 { mk_mii_end, }
967 };
968static phy_info_t const phy_info_lxt971 = {
969 .id = 0x0001378e,
970 .name = "LXT971",
971 .config = phy_cmd_lxt971_config,
972 .startup = phy_cmd_lxt971_startup,
973 .ack_int = phy_cmd_lxt971_ack_int,
974 .shutdown = phy_cmd_lxt971_shutdown
975};
976
977
978
979
980
981
982#define MII_QS6612_MCR 17
983#define MII_QS6612_FTR 27
984#define MII_QS6612_MCO 28
985#define MII_QS6612_ISR 29
986#define MII_QS6612_IMR 30
987#define MII_QS6612_PCR 31
988
989static void mii_parse_qs6612_pcr(uint mii_reg, struct net_device *dev)
990{
991 struct fec_enet_private *fep = netdev_priv(dev);
992 volatile uint *s = &(fep->phy_status);
993 uint status;
994
995 status = *s & ~(PHY_STAT_SPMASK);
996
997 switch((mii_reg >> 2) & 7) {
998 case 1: status |= PHY_STAT_10HDX; break;
999 case 2: status |= PHY_STAT_100HDX; break;
1000 case 5: status |= PHY_STAT_10FDX; break;
1001 case 6: status |= PHY_STAT_100FDX; break;
1002}
1003
1004 *s = status;
1005}
1006
1007static phy_cmd_t const phy_cmd_qs6612_config[] = {
1008
1009
1010
1011 { mk_mii_write(MII_QS6612_PCR, 0x0dc0), NULL },
1012
1013
1014 { mk_mii_read(MII_REG_CR), mii_parse_cr },
1015 { mk_mii_read(MII_REG_ANAR), mii_parse_anar },
1016 { mk_mii_end, }
1017 };
1018static phy_cmd_t const phy_cmd_qs6612_startup[] = {
1019 { mk_mii_write(MII_QS6612_IMR, 0x003a), NULL },
1020 { mk_mii_write(MII_REG_CR, 0x1200), NULL },
1021 { mk_mii_end, }
1022 };
1023static phy_cmd_t const phy_cmd_qs6612_ack_int[] = {
1024
1025 { mk_mii_read(MII_QS6612_ISR), NULL },
1026 { mk_mii_read(MII_REG_SR), mii_parse_sr },
1027 { mk_mii_read(MII_REG_ANER), NULL },
1028
1029
1030 { mk_mii_read(MII_QS6612_PCR), mii_parse_qs6612_pcr },
1031 { mk_mii_end, }
1032 };
1033static phy_cmd_t const phy_cmd_qs6612_shutdown[] = {
1034 { mk_mii_write(MII_QS6612_IMR, 0x0000), NULL },
1035 { mk_mii_end, }
1036 };
1037static phy_info_t const phy_info_qs6612 = {
1038 .id = 0x00181440,
1039 .name = "QS6612",
1040 .config = phy_cmd_qs6612_config,
1041 .startup = phy_cmd_qs6612_startup,
1042 .ack_int = phy_cmd_qs6612_ack_int,
1043 .shutdown = phy_cmd_qs6612_shutdown
1044};
1045
1046
1047
1048
1049
1050
1051#define MII_AM79C874_MFR 16
1052#define MII_AM79C874_ICSR 17
1053#define MII_AM79C874_DR 18
1054#define MII_AM79C874_PMLR 19
1055#define MII_AM79C874_MCR 21
1056#define MII_AM79C874_DC 23
1057#define MII_AM79C874_REC 24
1058
1059static void mii_parse_am79c874_dr(uint mii_reg, struct net_device *dev)
1060{
1061 struct fec_enet_private *fep = netdev_priv(dev);
1062 volatile uint *s = &(fep->phy_status);
1063 uint status;
1064
1065 status = *s & ~(PHY_STAT_SPMASK | PHY_STAT_ANC);
1066
1067 if (mii_reg & 0x0080)
1068 status |= PHY_STAT_ANC;
1069 if (mii_reg & 0x0400)
1070 status |= ((mii_reg & 0x0800) ? PHY_STAT_100FDX : PHY_STAT_100HDX);
1071 else
1072 status |= ((mii_reg & 0x0800) ? PHY_STAT_10FDX : PHY_STAT_10HDX);
1073
1074 *s = status;
1075}
1076
1077static phy_cmd_t const phy_cmd_am79c874_config[] = {
1078 { mk_mii_read(MII_REG_CR), mii_parse_cr },
1079 { mk_mii_read(MII_REG_ANAR), mii_parse_anar },
1080 { mk_mii_read(MII_AM79C874_DR), mii_parse_am79c874_dr },
1081 { mk_mii_end, }
1082 };
1083static phy_cmd_t const phy_cmd_am79c874_startup[] = {
1084 { mk_mii_write(MII_AM79C874_ICSR, 0xff00), NULL },
1085 { mk_mii_write(MII_REG_CR, 0x1200), NULL },
1086 { mk_mii_read(MII_REG_SR), mii_parse_sr },
1087 { mk_mii_end, }
1088 };
1089static phy_cmd_t const phy_cmd_am79c874_ack_int[] = {
1090
1091 { mk_mii_read(MII_REG_SR), mii_parse_sr },
1092 { mk_mii_read(MII_AM79C874_DR), mii_parse_am79c874_dr },
1093
1094 { mk_mii_read(MII_AM79C874_ICSR), NULL },
1095 { mk_mii_end, }
1096 };
1097static phy_cmd_t const phy_cmd_am79c874_shutdown[] = {
1098 { mk_mii_write(MII_AM79C874_ICSR, 0x0000), NULL },
1099 { mk_mii_end, }
1100 };
1101static phy_info_t const phy_info_am79c874 = {
1102 .id = 0x00022561,
1103 .name = "AM79C874",
1104 .config = phy_cmd_am79c874_config,
1105 .startup = phy_cmd_am79c874_startup,
1106 .ack_int = phy_cmd_am79c874_ack_int,
1107 .shutdown = phy_cmd_am79c874_shutdown
1108};
1109
1110
1111
1112
1113
1114
1115
1116#define MII_KS8721BL_RXERCR 21
1117#define MII_KS8721BL_ICSR 22
1118#define MII_KS8721BL_PHYCR 31
1119
1120static phy_cmd_t const phy_cmd_ks8721bl_config[] = {
1121 { mk_mii_read(MII_REG_CR), mii_parse_cr },
1122 { mk_mii_read(MII_REG_ANAR), mii_parse_anar },
1123 { mk_mii_end, }
1124 };
1125static phy_cmd_t const phy_cmd_ks8721bl_startup[] = {
1126 { mk_mii_write(MII_KS8721BL_ICSR, 0xff00), NULL },
1127 { mk_mii_write(MII_REG_CR, 0x1200), NULL },
1128 { mk_mii_read(MII_REG_SR), mii_parse_sr },
1129 { mk_mii_end, }
1130 };
1131static phy_cmd_t const phy_cmd_ks8721bl_ack_int[] = {
1132
1133 { mk_mii_read(MII_REG_SR), mii_parse_sr },
1134
1135 { mk_mii_read(MII_KS8721BL_ICSR), NULL },
1136 { mk_mii_end, }
1137 };
1138static phy_cmd_t const phy_cmd_ks8721bl_shutdown[] = {
1139 { mk_mii_write(MII_KS8721BL_ICSR, 0x0000), NULL },
1140 { mk_mii_end, }
1141 };
1142static phy_info_t const phy_info_ks8721bl = {
1143 .id = 0x00022161,
1144 .name = "KS8721BL",
1145 .config = phy_cmd_ks8721bl_config,
1146 .startup = phy_cmd_ks8721bl_startup,
1147 .ack_int = phy_cmd_ks8721bl_ack_int,
1148 .shutdown = phy_cmd_ks8721bl_shutdown
1149};
1150
1151
1152
1153
1154#define MII_DP8384X_PHYSTST 16
1155
1156static void mii_parse_dp8384x_sr2(uint mii_reg, struct net_device *dev)
1157{
1158 struct fec_enet_private *fep = netdev_priv(dev);
1159 volatile uint *s = &(fep->phy_status);
1160
1161 *s &= ~(PHY_STAT_SPMASK | PHY_STAT_LINK | PHY_STAT_ANC);
1162
1163
1164 if (mii_reg & 0x0001) {
1165 fep->link = 1;
1166 *s |= PHY_STAT_LINK;
1167 } else
1168 fep->link = 0;
1169
1170 if (mii_reg & 0x0010)
1171 *s |= PHY_STAT_ANC;
1172 if (mii_reg & 0x0002) {
1173 if (mii_reg & 0x0004)
1174 *s |= PHY_STAT_10FDX;
1175 else
1176 *s |= PHY_STAT_10HDX;
1177 } else {
1178 if (mii_reg & 0x0004)
1179 *s |= PHY_STAT_100FDX;
1180 else
1181 *s |= PHY_STAT_100HDX;
1182 }
1183 if (mii_reg & 0x0008)
1184 *s |= PHY_STAT_FAULT;
1185}
1186
1187static phy_info_t phy_info_dp83848= {
1188 0x020005c9,
1189 "DP83848",
1190
1191 (const phy_cmd_t []) {
1192 { mk_mii_read(MII_REG_CR), mii_parse_cr },
1193 { mk_mii_read(MII_REG_ANAR), mii_parse_anar },
1194 { mk_mii_read(MII_DP8384X_PHYSTST), mii_parse_dp8384x_sr2 },
1195 { mk_mii_end, }
1196 },
1197 (const phy_cmd_t []) {
1198 { mk_mii_write(MII_REG_CR, 0x1200), NULL },
1199 { mk_mii_read(MII_REG_SR), mii_parse_sr },
1200 { mk_mii_end, }
1201 },
1202 (const phy_cmd_t []) {
1203 { mk_mii_end, }
1204 },
1205 (const phy_cmd_t []) {
1206 { mk_mii_end, }
1207 },
1208};
1209
1210
1211
1212static phy_info_t const * const phy_info[] = {
1213 &phy_info_lxt970,
1214 &phy_info_lxt971,
1215 &phy_info_qs6612,
1216 &phy_info_am79c874,
1217 &phy_info_ks8721bl,
1218 &phy_info_dp83848,
1219 NULL
1220};
1221
1222
1223#ifdef HAVE_mii_link_interrupt
1224static irqreturn_t
1225mii_link_interrupt(int irq, void * dev_id);
1226#endif
1227
1228#if defined(CONFIG_M5272)
1229
1230
1231
1232static void __inline__ fec_request_intrs(struct net_device *dev)
1233{
1234 volatile unsigned long *icrp;
1235 static const struct idesc {
1236 char *name;
1237 unsigned short irq;
1238 irq_handler_t handler;
1239 } *idp, id[] = {
1240 { "fec(RX)", 86, fec_enet_interrupt },
1241 { "fec(TX)", 87, fec_enet_interrupt },
1242 { "fec(OTHER)", 88, fec_enet_interrupt },
1243 { "fec(MII)", 66, mii_link_interrupt },
1244 { NULL },
1245 };
1246
1247
1248 for (idp = id; idp->name; idp++) {
1249 if (request_irq(idp->irq, idp->handler, IRQF_DISABLED, idp->name, dev) != 0)
1250 printk("FEC: Could not allocate %s IRQ(%d)!\n", idp->name, idp->irq);
1251 }
1252
1253
1254 icrp = (volatile unsigned long *) (MCF_MBAR + MCFSIM_ICR3);
1255 *icrp = 0x00000ddd;
1256 icrp = (volatile unsigned long *) (MCF_MBAR + MCFSIM_ICR1);
1257 *icrp = 0x0d000000;
1258}
1259
1260static void __inline__ fec_set_mii(struct net_device *dev, struct fec_enet_private *fep)
1261{
1262 volatile fec_t *fecp;
1263
1264 fecp = fep->hwp;
1265 fecp->fec_r_cntrl = OPT_FRAME_SIZE | 0x04;
1266 fecp->fec_x_cntrl = 0x00;
1267
1268
1269
1270
1271
1272 fep->phy_speed = ((((MCF_CLK / 4) / (2500000 / 10)) + 5) / 10) * 2;
1273 fecp->fec_mii_speed = fep->phy_speed;
1274
1275 fec_restart(dev, 0);
1276}
1277
1278static void __inline__ fec_get_mac(struct net_device *dev)
1279{
1280 struct fec_enet_private *fep = netdev_priv(dev);
1281 volatile fec_t *fecp;
1282 unsigned char *iap, tmpaddr[ETH_ALEN];
1283
1284 fecp = fep->hwp;
1285
1286 if (FEC_FLASHMAC) {
1287
1288
1289
1290
1291 iap = (unsigned char *)FEC_FLASHMAC;
1292 if ((iap[0] == 0) && (iap[1] == 0) && (iap[2] == 0) &&
1293 (iap[3] == 0) && (iap[4] == 0) && (iap[5] == 0))
1294 iap = fec_mac_default;
1295 if ((iap[0] == 0xff) && (iap[1] == 0xff) && (iap[2] == 0xff) &&
1296 (iap[3] == 0xff) && (iap[4] == 0xff) && (iap[5] == 0xff))
1297 iap = fec_mac_default;
1298 } else {
1299 *((unsigned long *) &tmpaddr[0]) = fecp->fec_addr_low;
1300 *((unsigned short *) &tmpaddr[4]) = (fecp->fec_addr_high >> 16);
1301 iap = &tmpaddr[0];
1302 }
1303
1304 memcpy(dev->dev_addr, iap, ETH_ALEN);
1305
1306
1307 if (iap == fec_mac_default)
1308 dev->dev_addr[ETH_ALEN-1] = fec_mac_default[ETH_ALEN-1] + fep->index;
1309}
1310
1311static void __inline__ fec_enable_phy_intr(void)
1312{
1313}
1314
1315static void __inline__ fec_disable_phy_intr(void)
1316{
1317 volatile unsigned long *icrp;
1318 icrp = (volatile unsigned long *) (MCF_MBAR + MCFSIM_ICR1);
1319 *icrp = 0x08000000;
1320}
1321
1322static void __inline__ fec_phy_ack_intr(void)
1323{
1324 volatile unsigned long *icrp;
1325
1326 icrp = (volatile unsigned long *) (MCF_MBAR + MCFSIM_ICR1);
1327 *icrp = 0x0d000000;
1328}
1329
1330static void __inline__ fec_localhw_setup(void)
1331{
1332}
1333
1334
1335
1336
1337static void __inline__ fec_uncache(unsigned long addr)
1338{
1339}
1340
1341
1342
1343#elif defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x)
1344
1345
1346
1347
1348
1349static void __inline__ fec_request_intrs(struct net_device *dev)
1350{
1351 struct fec_enet_private *fep;
1352 int b;
1353 static const struct idesc {
1354 char *name;
1355 unsigned short irq;
1356 } *idp, id[] = {
1357 { "fec(TXF)", 23 },
1358 { "fec(RXF)", 27 },
1359 { "fec(MII)", 29 },
1360 { NULL },
1361 };
1362
1363 fep = netdev_priv(dev);
1364 b = (fep->index) ? 128 : 64;
1365
1366
1367 for (idp = id; idp->name; idp++) {
1368 if (request_irq(b+idp->irq, fec_enet_interrupt, IRQF_DISABLED, idp->name, dev) != 0)
1369 printk("FEC: Could not allocate %s IRQ(%d)!\n", idp->name, b+idp->irq);
1370 }
1371
1372
1373 {
1374 volatile unsigned char *icrp;
1375 volatile unsigned long *imrp;
1376 int i, ilip;
1377
1378 b = (fep->index) ? MCFICM_INTC1 : MCFICM_INTC0;
1379 icrp = (volatile unsigned char *) (MCF_IPSBAR + b +
1380 MCFINTC_ICR0);
1381 for (i = 23, ilip = 0x28; (i < 36); i++)
1382 icrp[i] = ilip--;
1383
1384 imrp = (volatile unsigned long *) (MCF_IPSBAR + b +
1385 MCFINTC_IMRH);
1386 *imrp &= ~0x0000000f;
1387 imrp = (volatile unsigned long *) (MCF_IPSBAR + b +
1388 MCFINTC_IMRL);
1389 *imrp &= ~0xff800001;
1390 }
1391
1392#if defined(CONFIG_M528x)
1393
1394 {
1395 volatile u16 *gpio_paspar;
1396 volatile u8 *gpio_pehlpar;
1397
1398 gpio_paspar = (volatile u16 *) (MCF_IPSBAR + 0x100056);
1399 gpio_pehlpar = (volatile u16 *) (MCF_IPSBAR + 0x100058);
1400 *gpio_paspar |= 0x0f00;
1401 *gpio_pehlpar = 0xc0;
1402 }
1403#endif
1404
1405#if defined(CONFIG_M527x)
1406
1407 {
1408 volatile u8 *gpio_par_fec;
1409 volatile u16 *gpio_par_feci2c;
1410
1411 gpio_par_feci2c = (volatile u16 *)(MCF_IPSBAR + 0x100082);
1412
1413 gpio_par_fec = (volatile u8 *)(MCF_IPSBAR + 0x100078);
1414
1415 *gpio_par_feci2c |= 0x0f00;
1416 *gpio_par_fec |= 0xc0;
1417
1418#if defined(CONFIG_FEC2)
1419
1420 gpio_par_fec = (volatile u8 *)(MCF_IPSBAR + 0x100079);
1421
1422 *gpio_par_feci2c |= 0x00a0;
1423 *gpio_par_fec |= 0xc0;
1424#endif
1425 }
1426#endif
1427}
1428
1429static void __inline__ fec_set_mii(struct net_device *dev, struct fec_enet_private *fep)
1430{
1431 volatile fec_t *fecp;
1432
1433 fecp = fep->hwp;
1434 fecp->fec_r_cntrl = OPT_FRAME_SIZE | 0x04;
1435 fecp->fec_x_cntrl = 0x00;
1436
1437
1438
1439
1440
1441 fep->phy_speed = ((((MCF_CLK / 2) / (2500000 / 10)) + 5) / 10) * 2;
1442 fecp->fec_mii_speed = fep->phy_speed;
1443
1444 fec_restart(dev, 0);
1445}
1446
1447static void __inline__ fec_get_mac(struct net_device *dev)
1448{
1449 struct fec_enet_private *fep = netdev_priv(dev);
1450 volatile fec_t *fecp;
1451 unsigned char *iap, tmpaddr[ETH_ALEN];
1452
1453 fecp = fep->hwp;
1454
1455 if (FEC_FLASHMAC) {
1456
1457
1458
1459
1460 iap = FEC_FLASHMAC;
1461 if ((iap[0] == 0) && (iap[1] == 0) && (iap[2] == 0) &&
1462 (iap[3] == 0) && (iap[4] == 0) && (iap[5] == 0))
1463 iap = fec_mac_default;
1464 if ((iap[0] == 0xff) && (iap[1] == 0xff) && (iap[2] == 0xff) &&
1465 (iap[3] == 0xff) && (iap[4] == 0xff) && (iap[5] == 0xff))
1466 iap = fec_mac_default;
1467 } else {
1468 *((unsigned long *) &tmpaddr[0]) = fecp->fec_addr_low;
1469 *((unsigned short *) &tmpaddr[4]) = (fecp->fec_addr_high >> 16);
1470 iap = &tmpaddr[0];
1471 }
1472
1473 memcpy(dev->dev_addr, iap, ETH_ALEN);
1474
1475
1476 if (iap == fec_mac_default)
1477 dev->dev_addr[ETH_ALEN-1] = fec_mac_default[ETH_ALEN-1] + fep->index;
1478}
1479
1480static void __inline__ fec_enable_phy_intr(void)
1481{
1482}
1483
1484static void __inline__ fec_disable_phy_intr(void)
1485{
1486}
1487
1488static void __inline__ fec_phy_ack_intr(void)
1489{
1490}
1491
1492static void __inline__ fec_localhw_setup(void)
1493{
1494}
1495
1496
1497
1498
1499static void __inline__ fec_uncache(unsigned long addr)
1500{
1501}
1502
1503
1504
1505#elif defined(CONFIG_M520x)
1506
1507
1508
1509
1510static void __inline__ fec_request_intrs(struct net_device *dev)
1511{
1512 struct fec_enet_private *fep;
1513 int b;
1514 static const struct idesc {
1515 char *name;
1516 unsigned short irq;
1517 } *idp, id[] = {
1518 { "fec(TXF)", 23 },
1519 { "fec(RXF)", 27 },
1520 { "fec(MII)", 29 },
1521 { NULL },
1522 };
1523
1524 fep = netdev_priv(dev);
1525 b = 64 + 13;
1526
1527
1528 for (idp = id; idp->name; idp++) {
1529 if (request_irq(b+idp->irq, fec_enet_interrupt, IRQF_DISABLED, idp->name,dev) != 0)
1530 printk("FEC: Could not allocate %s IRQ(%d)!\n", idp->name, b+idp->irq);
1531 }
1532
1533
1534 {
1535 volatile unsigned char *icrp;
1536 volatile unsigned long *imrp;
1537
1538 icrp = (volatile unsigned char *) (MCF_IPSBAR + MCFICM_INTC0 +
1539 MCFINTC_ICR0);
1540 for (b = 36; (b < 49); b++)
1541 icrp[b] = 0x04;
1542 imrp = (volatile unsigned long *) (MCF_IPSBAR + MCFICM_INTC0 +
1543 MCFINTC_IMRH);
1544 *imrp &= ~0x0001FFF0;
1545 }
1546 *(volatile unsigned char *)(MCF_IPSBAR + MCF_GPIO_PAR_FEC) |= 0xf0;
1547 *(volatile unsigned char *)(MCF_IPSBAR + MCF_GPIO_PAR_FECI2C) |= 0x0f;
1548}
1549
1550static void __inline__ fec_set_mii(struct net_device *dev, struct fec_enet_private *fep)
1551{
1552 volatile fec_t *fecp;
1553
1554 fecp = fep->hwp;
1555 fecp->fec_r_cntrl = OPT_FRAME_SIZE | 0x04;
1556 fecp->fec_x_cntrl = 0x00;
1557
1558
1559
1560
1561
1562 fep->phy_speed = ((((MCF_CLK / 2) / (2500000 / 10)) + 5) / 10) * 2;
1563 fecp->fec_mii_speed = fep->phy_speed;
1564
1565 fec_restart(dev, 0);
1566}
1567
1568static void __inline__ fec_get_mac(struct net_device *dev)
1569{
1570 struct fec_enet_private *fep = netdev_priv(dev);
1571 volatile fec_t *fecp;
1572 unsigned char *iap, tmpaddr[ETH_ALEN];
1573
1574 fecp = fep->hwp;
1575
1576 if (FEC_FLASHMAC) {
1577
1578
1579
1580
1581 iap = FEC_FLASHMAC;
1582 if ((iap[0] == 0) && (iap[1] == 0) && (iap[2] == 0) &&
1583 (iap[3] == 0) && (iap[4] == 0) && (iap[5] == 0))
1584 iap = fec_mac_default;
1585 if ((iap[0] == 0xff) && (iap[1] == 0xff) && (iap[2] == 0xff) &&
1586 (iap[3] == 0xff) && (iap[4] == 0xff) && (iap[5] == 0xff))
1587 iap = fec_mac_default;
1588 } else {
1589 *((unsigned long *) &tmpaddr[0]) = fecp->fec_addr_low;
1590 *((unsigned short *) &tmpaddr[4]) = (fecp->fec_addr_high >> 16);
1591 iap = &tmpaddr[0];
1592 }
1593
1594 memcpy(dev->dev_addr, iap, ETH_ALEN);
1595
1596
1597 if (iap == fec_mac_default)
1598 dev->dev_addr[ETH_ALEN-1] = fec_mac_default[ETH_ALEN-1] + fep->index;
1599}
1600
1601static void __inline__ fec_enable_phy_intr(void)
1602{
1603}
1604
1605static void __inline__ fec_disable_phy_intr(void)
1606{
1607}
1608
1609static void __inline__ fec_phy_ack_intr(void)
1610{
1611}
1612
1613static void __inline__ fec_localhw_setup(void)
1614{
1615}
1616
1617static void __inline__ fec_uncache(unsigned long addr)
1618{
1619}
1620
1621
1622
1623#elif defined(CONFIG_M532x)
1624
1625
1626
1627static void __inline__ fec_request_intrs(struct net_device *dev)
1628{
1629 struct fec_enet_private *fep;
1630 int b;
1631 static const struct idesc {
1632 char *name;
1633 unsigned short irq;
1634 } *idp, id[] = {
1635 { "fec(TXF)", 36 },
1636 { "fec(RXF)", 40 },
1637 { "fec(MII)", 42 },
1638 { NULL },
1639 };
1640
1641 fep = netdev_priv(dev);
1642 b = (fep->index) ? 128 : 64;
1643
1644
1645 for (idp = id; idp->name; idp++) {
1646 if (request_irq(b+idp->irq, fec_enet_interrupt, IRQF_DISABLED, idp->name,dev) != 0)
1647 printk("FEC: Could not allocate %s IRQ(%d)!\n",
1648 idp->name, b+idp->irq);
1649 }
1650
1651
1652 MCF_INTC0_ICR36 = 0x2;
1653 MCF_INTC0_ICR37 = 0x2;
1654 MCF_INTC0_ICR38 = 0x2;
1655 MCF_INTC0_ICR39 = 0x2;
1656 MCF_INTC0_ICR40 = 0x2;
1657 MCF_INTC0_ICR41 = 0x2;
1658 MCF_INTC0_ICR42 = 0x2;
1659 MCF_INTC0_ICR43 = 0x2;
1660 MCF_INTC0_ICR44 = 0x2;
1661 MCF_INTC0_ICR45 = 0x2;
1662 MCF_INTC0_ICR46 = 0x2;
1663 MCF_INTC0_ICR47 = 0x2;
1664 MCF_INTC0_ICR48 = 0x2;
1665
1666 MCF_INTC0_IMRH &= ~(
1667 MCF_INTC_IMRH_INT_MASK36 |
1668 MCF_INTC_IMRH_INT_MASK37 |
1669 MCF_INTC_IMRH_INT_MASK38 |
1670 MCF_INTC_IMRH_INT_MASK39 |
1671 MCF_INTC_IMRH_INT_MASK40 |
1672 MCF_INTC_IMRH_INT_MASK41 |
1673 MCF_INTC_IMRH_INT_MASK42 |
1674 MCF_INTC_IMRH_INT_MASK43 |
1675 MCF_INTC_IMRH_INT_MASK44 |
1676 MCF_INTC_IMRH_INT_MASK45 |
1677 MCF_INTC_IMRH_INT_MASK46 |
1678 MCF_INTC_IMRH_INT_MASK47 |
1679 MCF_INTC_IMRH_INT_MASK48 );
1680
1681
1682 MCF_GPIO_PAR_FECI2C |= (0 |
1683 MCF_GPIO_PAR_FECI2C_PAR_MDC_EMDC |
1684 MCF_GPIO_PAR_FECI2C_PAR_MDIO_EMDIO);
1685 MCF_GPIO_PAR_FEC = (0 |
1686 MCF_GPIO_PAR_FEC_PAR_FEC_7W_FEC |
1687 MCF_GPIO_PAR_FEC_PAR_FEC_MII_FEC);
1688}
1689
1690static void __inline__ fec_set_mii(struct net_device *dev, struct fec_enet_private *fep)
1691{
1692 volatile fec_t *fecp;
1693
1694 fecp = fep->hwp;
1695 fecp->fec_r_cntrl = OPT_FRAME_SIZE | 0x04;
1696 fecp->fec_x_cntrl = 0x00;
1697
1698
1699
1700
1701 fep->phy_speed = (MCF_CLK / 3) / (2500000 * 2 ) * 2;
1702 fecp->fec_mii_speed = fep->phy_speed;
1703
1704 fec_restart(dev, 0);
1705}
1706
1707static void __inline__ fec_get_mac(struct net_device *dev)
1708{
1709 struct fec_enet_private *fep = netdev_priv(dev);
1710 volatile fec_t *fecp;
1711 unsigned char *iap, tmpaddr[ETH_ALEN];
1712
1713 fecp = fep->hwp;
1714
1715 if (FEC_FLASHMAC) {
1716
1717
1718
1719
1720 iap = FEC_FLASHMAC;
1721 if ((iap[0] == 0) && (iap[1] == 0) && (iap[2] == 0) &&
1722 (iap[3] == 0) && (iap[4] == 0) && (iap[5] == 0))
1723 iap = fec_mac_default;
1724 if ((iap[0] == 0xff) && (iap[1] == 0xff) && (iap[2] == 0xff) &&
1725 (iap[3] == 0xff) && (iap[4] == 0xff) && (iap[5] == 0xff))
1726 iap = fec_mac_default;
1727 } else {
1728 *((unsigned long *) &tmpaddr[0]) = fecp->fec_addr_low;
1729 *((unsigned short *) &tmpaddr[4]) = (fecp->fec_addr_high >> 16);
1730 iap = &tmpaddr[0];
1731 }
1732
1733 memcpy(dev->dev_addr, iap, ETH_ALEN);
1734
1735
1736 if (iap == fec_mac_default)
1737 dev->dev_addr[ETH_ALEN-1] = fec_mac_default[ETH_ALEN-1] + fep->index;
1738}
1739
1740static void __inline__ fec_enable_phy_intr(void)
1741{
1742}
1743
1744static void __inline__ fec_disable_phy_intr(void)
1745{
1746}
1747
1748static void __inline__ fec_phy_ack_intr(void)
1749{
1750}
1751
1752static void __inline__ fec_localhw_setup(void)
1753{
1754}
1755
1756
1757
1758
1759static void __inline__ fec_uncache(unsigned long addr)
1760{
1761}
1762
1763
1764
1765
1766#else
1767
1768
1769
1770
1771static void __inline__ fec_request_intrs(struct net_device *dev)
1772{
1773 volatile immap_t *immap;
1774
1775 immap = (immap_t *)IMAP_ADDR;
1776
1777 if (request_8xxirq(FEC_INTERRUPT, fec_enet_interrupt, 0, "fec", dev) != 0)
1778 panic("Could not allocate FEC IRQ!");
1779}
1780
1781static void __inline__ fec_get_mac(struct net_device *dev)
1782{
1783 bd_t *bd;
1784
1785 bd = (bd_t *)__res;
1786 memcpy(dev->dev_addr, bd->bi_enetaddr, ETH_ALEN);
1787}
1788
1789static void __inline__ fec_set_mii(struct net_device *dev, struct fec_enet_private *fep)
1790{
1791 extern uint _get_IMMR(void);
1792 volatile immap_t *immap;
1793 volatile fec_t *fecp;
1794
1795 fecp = fep->hwp;
1796 immap = (immap_t *)IMAP_ADDR;
1797
1798
1799
1800 immap->im_ioport.iop_pdpar = 0x1fff;
1801
1802
1803
1804 if ((_get_IMMR() & 0xffff) < 0x0501)
1805 immap->im_ioport.iop_pddir = 0x1c58;
1806 else
1807 immap->im_ioport.iop_pddir = 0x1fff;
1808
1809
1810
1811 fecp->fec_mii_speed = fep->phy_speed =
1812 ((bd->bi_busfreq * 1000000) / 2500000) & 0x7e;
1813}
1814
1815static void __inline__ fec_enable_phy_intr(void)
1816{
1817 volatile fec_t *fecp;
1818
1819 fecp = fep->hwp;
1820
1821
1822
1823 fecp->fec_ivec = (FEC_INTERRUPT/2) << 29;
1824}
1825
1826static void __inline__ fec_disable_phy_intr(void)
1827{
1828}
1829
1830static void __inline__ fec_phy_ack_intr(void)
1831{
1832}
1833
1834static void __inline__ fec_localhw_setup(void)
1835{
1836 volatile fec_t *fecp;
1837
1838 fecp = fep->hwp;
1839 fecp->fec_r_hash = PKT_MAXBUF_SIZE;
1840
1841
1842 fecp->fec_fun_code = 0x78000000;
1843}
1844
1845static void __inline__ fec_uncache(unsigned long addr)
1846{
1847 pte_t *pte;
1848 pte = va_to_pte(mem_addr);
1849 pte_val(*pte) |= _PAGE_NO_CACHE;
1850 flush_tlb_page(init_mm.mmap, mem_addr);
1851}
1852
1853#endif
1854
1855
1856
1857static void mii_display_status(struct net_device *dev)
1858{
1859 struct fec_enet_private *fep = netdev_priv(dev);
1860 volatile uint *s = &(fep->phy_status);
1861
1862 if (!fep->link && !fep->old_link) {
1863
1864 return;
1865 }
1866
1867 printk("%s: status: ", dev->name);
1868
1869 if (!fep->link) {
1870 printk("link down");
1871 } else {
1872 printk("link up");
1873
1874 switch(*s & PHY_STAT_SPMASK) {
1875 case PHY_STAT_100FDX: printk(", 100MBit Full Duplex"); break;
1876 case PHY_STAT_100HDX: printk(", 100MBit Half Duplex"); break;
1877 case PHY_STAT_10FDX: printk(", 10MBit Full Duplex"); break;
1878 case PHY_STAT_10HDX: printk(", 10MBit Half Duplex"); break;
1879 default:
1880 printk(", Unknown speed/duplex");
1881 }
1882
1883 if (*s & PHY_STAT_ANC)
1884 printk(", auto-negotiation complete");
1885 }
1886
1887 if (*s & PHY_STAT_FAULT)
1888 printk(", remote fault");
1889
1890 printk(".\n");
1891}
1892
1893static void mii_display_config(struct work_struct *work)
1894{
1895 struct fec_enet_private *fep = container_of(work, struct fec_enet_private, phy_task);
1896 struct net_device *dev = fep->netdev;
1897 uint status = fep->phy_status;
1898
1899
1900
1901
1902
1903 fep->mii_phy_task_queued = 0;
1904 printk("%s: config: auto-negotiation ", dev->name);
1905
1906 if (status & PHY_CONF_ANE)
1907 printk("on");
1908 else
1909 printk("off");
1910
1911 if (status & PHY_CONF_100FDX)
1912 printk(", 100FDX");
1913 if (status & PHY_CONF_100HDX)
1914 printk(", 100HDX");
1915 if (status & PHY_CONF_10FDX)
1916 printk(", 10FDX");
1917 if (status & PHY_CONF_10HDX)
1918 printk(", 10HDX");
1919 if (!(status & PHY_CONF_SPMASK))
1920 printk(", No speed/duplex selected?");
1921
1922 if (status & PHY_CONF_LOOP)
1923 printk(", loopback enabled");
1924
1925 printk(".\n");
1926
1927 fep->sequence_done = 1;
1928}
1929
1930static void mii_relink(struct work_struct *work)
1931{
1932 struct fec_enet_private *fep = container_of(work, struct fec_enet_private, phy_task);
1933 struct net_device *dev = fep->netdev;
1934 int duplex;
1935
1936
1937
1938
1939
1940 fep->mii_phy_task_queued = 0;
1941 fep->link = (fep->phy_status & PHY_STAT_LINK) ? 1 : 0;
1942 mii_display_status(dev);
1943 fep->old_link = fep->link;
1944
1945 if (fep->link) {
1946 duplex = 0;
1947 if (fep->phy_status
1948 & (PHY_STAT_100FDX | PHY_STAT_10FDX))
1949 duplex = 1;
1950 fec_restart(dev, duplex);
1951 } else
1952 fec_stop(dev);
1953
1954#if 0
1955 enable_irq(fep->mii_irq);
1956#endif
1957
1958}
1959
1960
1961static void mii_queue_relink(uint mii_reg, struct net_device *dev)
1962{
1963 struct fec_enet_private *fep = netdev_priv(dev);
1964
1965
1966
1967
1968
1969
1970
1971
1972 if (fep->mii_phy_task_queued)
1973 return;
1974
1975 fep->mii_phy_task_queued = 1;
1976 INIT_WORK(&fep->phy_task, mii_relink);
1977 schedule_work(&fep->phy_task);
1978}
1979
1980
1981static void mii_queue_config(uint mii_reg, struct net_device *dev)
1982{
1983 struct fec_enet_private *fep = netdev_priv(dev);
1984
1985 if (fep->mii_phy_task_queued)
1986 return;
1987
1988 fep->mii_phy_task_queued = 1;
1989 INIT_WORK(&fep->phy_task, mii_display_config);
1990 schedule_work(&fep->phy_task);
1991}
1992
1993phy_cmd_t const phy_cmd_relink[] = {
1994 { mk_mii_read(MII_REG_CR), mii_queue_relink },
1995 { mk_mii_end, }
1996 };
1997phy_cmd_t const phy_cmd_config[] = {
1998 { mk_mii_read(MII_REG_CR), mii_queue_config },
1999 { mk_mii_end, }
2000 };
2001
2002
2003
2004static void
2005mii_discover_phy3(uint mii_reg, struct net_device *dev)
2006{
2007 struct fec_enet_private *fep;
2008 int i;
2009
2010 fep = netdev_priv(dev);
2011 fep->phy_id |= (mii_reg & 0xffff);
2012 printk("fec: PHY @ 0x%x, ID 0x%08x", fep->phy_addr, fep->phy_id);
2013
2014 for(i = 0; phy_info[i]; i++) {
2015 if(phy_info[i]->id == (fep->phy_id >> 4))
2016 break;
2017 }
2018
2019 if (phy_info[i])
2020 printk(" -- %s\n", phy_info[i]->name);
2021 else
2022 printk(" -- unknown PHY!\n");
2023
2024 fep->phy = phy_info[i];
2025 fep->phy_id_done = 1;
2026}
2027
2028
2029
2030
2031static void
2032mii_discover_phy(uint mii_reg, struct net_device *dev)
2033{
2034 struct fec_enet_private *fep;
2035 volatile fec_t *fecp;
2036 uint phytype;
2037
2038 fep = netdev_priv(dev);
2039 fecp = fep->hwp;
2040
2041 if (fep->phy_addr < 32) {
2042 if ((phytype = (mii_reg & 0xffff)) != 0xffff && phytype != 0) {
2043
2044
2045
2046 fep->phy_id = phytype << 16;
2047 mii_queue(dev, mk_mii_read(MII_REG_PHYIR2),
2048 mii_discover_phy3);
2049 } else {
2050 fep->phy_addr++;
2051 mii_queue(dev, mk_mii_read(MII_REG_PHYIR1),
2052 mii_discover_phy);
2053 }
2054 } else {
2055 printk("FEC: No PHY device found.\n");
2056
2057 fecp->fec_mii_speed = fep->phy_speed = 0;
2058 fec_disable_phy_intr();
2059 }
2060}
2061
2062
2063
2064#ifdef HAVE_mii_link_interrupt
2065static irqreturn_t
2066mii_link_interrupt(int irq, void * dev_id)
2067{
2068 struct net_device *dev = dev_id;
2069 struct fec_enet_private *fep = netdev_priv(dev);
2070
2071 fec_phy_ack_intr();
2072
2073#if 0
2074 disable_irq(fep->mii_irq);
2075#endif
2076
2077 mii_do_cmd(dev, fep->phy->ack_int);
2078 mii_do_cmd(dev, phy_cmd_relink);
2079
2080 return IRQ_HANDLED;
2081}
2082#endif
2083
2084static int
2085fec_enet_open(struct net_device *dev)
2086{
2087 struct fec_enet_private *fep = netdev_priv(dev);
2088
2089
2090
2091
2092 fec_set_mac_address(dev);
2093
2094 fep->sequence_done = 0;
2095 fep->link = 0;
2096
2097 if (fep->phy) {
2098 mii_do_cmd(dev, fep->phy->ack_int);
2099 mii_do_cmd(dev, fep->phy->config);
2100 mii_do_cmd(dev, phy_cmd_config);
2101
2102
2103
2104
2105
2106
2107
2108
2109 while(!fep->sequence_done)
2110 schedule();
2111
2112 mii_do_cmd(dev, fep->phy->startup);
2113
2114
2115
2116
2117
2118 fep->link = 1;
2119 } else {
2120 fep->link = 1;
2121
2122 fec_restart(dev, 1);
2123 }
2124
2125 netif_start_queue(dev);
2126 fep->opened = 1;
2127 return 0;
2128}
2129
2130static int
2131fec_enet_close(struct net_device *dev)
2132{
2133 struct fec_enet_private *fep = netdev_priv(dev);
2134
2135
2136
2137 fep->opened = 0;
2138 netif_stop_queue(dev);
2139 fec_stop(dev);
2140
2141 return 0;
2142}
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154#define HASH_BITS 6
2155#define CRC32_POLY 0xEDB88320
2156
2157static void set_multicast_list(struct net_device *dev)
2158{
2159 struct fec_enet_private *fep;
2160 volatile fec_t *ep;
2161 struct dev_mc_list *dmi;
2162 unsigned int i, j, bit, data, crc;
2163 unsigned char hash;
2164
2165 fep = netdev_priv(dev);
2166 ep = fep->hwp;
2167
2168 if (dev->flags&IFF_PROMISC) {
2169 ep->fec_r_cntrl |= 0x0008;
2170 } else {
2171
2172 ep->fec_r_cntrl &= ~0x0008;
2173
2174 if (dev->flags & IFF_ALLMULTI) {
2175
2176
2177
2178 ep->fec_grp_hash_table_high = 0xffffffff;
2179 ep->fec_grp_hash_table_low = 0xffffffff;
2180 } else {
2181
2182
2183 ep->fec_grp_hash_table_high = 0;
2184 ep->fec_grp_hash_table_low = 0;
2185
2186 dmi = dev->mc_list;
2187
2188 for (j = 0; j < dev->mc_count; j++, dmi = dmi->next)
2189 {
2190
2191
2192 if (!(dmi->dmi_addr[0] & 1))
2193 continue;
2194
2195
2196
2197 crc = 0xffffffff;
2198
2199 for (i = 0; i < dmi->dmi_addrlen; i++)
2200 {
2201 data = dmi->dmi_addr[i];
2202 for (bit = 0; bit < 8; bit++, data >>= 1)
2203 {
2204 crc = (crc >> 1) ^
2205 (((crc ^ data) & 1) ? CRC32_POLY : 0);
2206 }
2207 }
2208
2209
2210
2211
2212 hash = (crc >> (32 - HASH_BITS)) & 0x3f;
2213
2214 if (hash > 31)
2215 ep->fec_grp_hash_table_high |= 1 << (hash - 32);
2216 else
2217 ep->fec_grp_hash_table_low |= 1 << hash;
2218 }
2219 }
2220 }
2221}
2222
2223
2224
2225static void
2226fec_set_mac_address(struct net_device *dev)
2227{
2228 volatile fec_t *fecp;
2229
2230 fecp = ((struct fec_enet_private *)netdev_priv(dev))->hwp;
2231
2232
2233 fecp->fec_addr_low = dev->dev_addr[3] | (dev->dev_addr[2] << 8) |
2234 (dev->dev_addr[1] << 16) | (dev->dev_addr[0] << 24);
2235 fecp->fec_addr_high = (dev->dev_addr[5] << 16) |
2236 (dev->dev_addr[4] << 24);
2237
2238}
2239
2240
2241
2242
2243
2244
2245int __init fec_enet_init(struct net_device *dev)
2246{
2247 struct fec_enet_private *fep = netdev_priv(dev);
2248 unsigned long mem_addr;
2249 volatile cbd_t *bdp;
2250 cbd_t *cbd_base;
2251 volatile fec_t *fecp;
2252 int i, j;
2253 static int index = 0;
2254
2255
2256 if (index >= FEC_MAX_PORTS)
2257 return -ENXIO;
2258
2259
2260
2261 mem_addr = __get_free_page(GFP_KERNEL);
2262 if (mem_addr == 0) {
2263 printk("FEC: allocate descriptor memory failed?\n");
2264 return -ENOMEM;
2265 }
2266
2267 spin_lock_init(&fep->hw_lock);
2268 spin_lock_init(&fep->mii_lock);
2269
2270
2271
2272 fecp = (volatile fec_t *) fec_hw[index];
2273
2274 fep->index = index;
2275 fep->hwp = fecp;
2276 fep->netdev = dev;
2277
2278
2279
2280 fecp->fec_ecntrl = 1;
2281 udelay(10);
2282
2283
2284
2285
2286
2287
2288
2289 fec_get_mac(dev);
2290
2291 cbd_base = (cbd_t *)mem_addr;
2292
2293
2294 fec_uncache(mem_addr);
2295
2296
2297
2298 fep->rx_bd_base = cbd_base;
2299 fep->tx_bd_base = cbd_base + RX_RING_SIZE;
2300
2301 fep->dirty_tx = fep->cur_tx = fep->tx_bd_base;
2302 fep->cur_rx = fep->rx_bd_base;
2303
2304 fep->skb_cur = fep->skb_dirty = 0;
2305
2306
2307
2308 bdp = fep->rx_bd_base;
2309 for (i=0; i<FEC_ENET_RX_PAGES; i++) {
2310
2311
2312
2313 mem_addr = __get_free_page(GFP_KERNEL);
2314
2315
2316 fec_uncache(mem_addr);
2317
2318
2319
2320 for (j=0; j<FEC_ENET_RX_FRPPG; j++) {
2321 bdp->cbd_sc = BD_ENET_RX_EMPTY;
2322 bdp->cbd_bufaddr = __pa(mem_addr);
2323 mem_addr += FEC_ENET_RX_FRSIZE;
2324 bdp++;
2325 }
2326 }
2327
2328
2329
2330 bdp--;
2331 bdp->cbd_sc |= BD_SC_WRAP;
2332
2333
2334
2335 bdp = fep->tx_bd_base;
2336 for (i=0, j=FEC_ENET_TX_FRPPG; i<TX_RING_SIZE; i++) {
2337 if (j >= FEC_ENET_TX_FRPPG) {
2338 mem_addr = __get_free_page(GFP_KERNEL);
2339 j = 1;
2340 } else {
2341 mem_addr += FEC_ENET_TX_FRSIZE;
2342 j++;
2343 }
2344 fep->tx_bounce[i] = (unsigned char *) mem_addr;
2345
2346
2347
2348 bdp->cbd_sc = 0;
2349 bdp->cbd_bufaddr = 0;
2350 bdp++;
2351 }
2352
2353
2354
2355 bdp--;
2356 bdp->cbd_sc |= BD_SC_WRAP;
2357
2358
2359
2360 fecp->fec_r_des_start = __pa((uint)(fep->rx_bd_base));
2361 fecp->fec_x_des_start = __pa((uint)(fep->tx_bd_base));
2362
2363
2364
2365
2366 fec_request_intrs(dev);
2367
2368 fecp->fec_grp_hash_table_high = 0;
2369 fecp->fec_grp_hash_table_low = 0;
2370 fecp->fec_r_buff_size = PKT_MAXBLR_SIZE;
2371 fecp->fec_ecntrl = 2;
2372 fecp->fec_r_des_active = 0;
2373#ifndef CONFIG_M5272
2374 fecp->fec_hash_table_high = 0;
2375 fecp->fec_hash_table_low = 0;
2376#endif
2377
2378 dev->base_addr = (unsigned long)fecp;
2379
2380
2381 dev->open = fec_enet_open;
2382 dev->hard_start_xmit = fec_enet_start_xmit;
2383 dev->tx_timeout = fec_timeout;
2384 dev->watchdog_timeo = TX_TIMEOUT;
2385 dev->stop = fec_enet_close;
2386 dev->set_multicast_list = set_multicast_list;
2387
2388 for (i=0; i<NMII-1; i++)
2389 mii_cmds[i].mii_next = &mii_cmds[i+1];
2390 mii_free = mii_cmds;
2391
2392
2393 fec_set_mii(dev, fep);
2394
2395
2396 fecp->fec_ievent = 0xffc00000;
2397 fecp->fec_imask = (FEC_ENET_TXF | FEC_ENET_RXF | FEC_ENET_MII);
2398
2399
2400
2401
2402 fep->phy_id_done = 0;
2403 fep->phy_addr = 0;
2404 mii_queue(dev, mk_mii_read(MII_REG_PHYIR1), mii_discover_phy);
2405
2406 index++;
2407 return 0;
2408}
2409
2410
2411
2412
2413
2414static void
2415fec_restart(struct net_device *dev, int duplex)
2416{
2417 struct fec_enet_private *fep;
2418 volatile cbd_t *bdp;
2419 volatile fec_t *fecp;
2420 int i;
2421
2422 fep = netdev_priv(dev);
2423 fecp = fep->hwp;
2424
2425
2426
2427 fecp->fec_ecntrl = 1;
2428 udelay(10);
2429
2430
2431
2432 fecp->fec_ievent = 0xffc00000;
2433 fec_enable_phy_intr();
2434
2435
2436
2437 fec_set_mac_address(dev);
2438
2439
2440
2441 fecp->fec_grp_hash_table_high = 0;
2442 fecp->fec_grp_hash_table_low = 0;
2443
2444
2445
2446 fecp->fec_r_buff_size = PKT_MAXBLR_SIZE;
2447
2448 fec_localhw_setup();
2449
2450
2451
2452 fecp->fec_r_des_start = __pa((uint)(fep->rx_bd_base));
2453 fecp->fec_x_des_start = __pa((uint)(fep->tx_bd_base));
2454
2455 fep->dirty_tx = fep->cur_tx = fep->tx_bd_base;
2456 fep->cur_rx = fep->rx_bd_base;
2457
2458
2459
2460 fep->skb_cur = fep->skb_dirty = 0;
2461 for (i=0; i<=TX_RING_MOD_MASK; i++) {
2462 if (fep->tx_skbuff[i] != NULL) {
2463 dev_kfree_skb_any(fep->tx_skbuff[i]);
2464 fep->tx_skbuff[i] = NULL;
2465 }
2466 }
2467
2468
2469
2470 bdp = fep->rx_bd_base;
2471 for (i=0; i<RX_RING_SIZE; i++) {
2472
2473
2474
2475 bdp->cbd_sc = BD_ENET_RX_EMPTY;
2476 bdp++;
2477 }
2478
2479
2480
2481 bdp--;
2482 bdp->cbd_sc |= BD_SC_WRAP;
2483
2484
2485
2486 bdp = fep->tx_bd_base;
2487 for (i=0; i<TX_RING_SIZE; i++) {
2488
2489
2490
2491 bdp->cbd_sc = 0;
2492 bdp->cbd_bufaddr = 0;
2493 bdp++;
2494 }
2495
2496
2497
2498 bdp--;
2499 bdp->cbd_sc |= BD_SC_WRAP;
2500
2501
2502
2503 if (duplex) {
2504 fecp->fec_r_cntrl = OPT_FRAME_SIZE | 0x04;
2505 fecp->fec_x_cntrl = 0x04;
2506 } else {
2507
2508 fecp->fec_r_cntrl = OPT_FRAME_SIZE | 0x06;
2509 fecp->fec_x_cntrl = 0x00;
2510 }
2511 fep->full_duplex = duplex;
2512
2513
2514
2515 fecp->fec_mii_speed = fep->phy_speed;
2516
2517
2518
2519 fecp->fec_ecntrl = 2;
2520 fecp->fec_r_des_active = 0;
2521
2522
2523
2524 fecp->fec_imask = (FEC_ENET_TXF | FEC_ENET_RXF | FEC_ENET_MII);
2525}
2526
2527static void
2528fec_stop(struct net_device *dev)
2529{
2530 volatile fec_t *fecp;
2531 struct fec_enet_private *fep;
2532
2533 fep = netdev_priv(dev);
2534 fecp = fep->hwp;
2535
2536
2537
2538
2539 if (fep->link)
2540 {
2541 fecp->fec_x_cntrl = 0x01;
2542 udelay(10);
2543 if (!(fecp->fec_ievent & FEC_ENET_GRA))
2544 printk("fec_stop : Graceful transmit stop did not complete !\n");
2545 }
2546
2547
2548
2549 fecp->fec_ecntrl = 1;
2550 udelay(10);
2551
2552
2553
2554 fecp->fec_ievent = FEC_ENET_MII;
2555 fec_enable_phy_intr();
2556
2557 fecp->fec_imask = FEC_ENET_MII;
2558 fecp->fec_mii_speed = fep->phy_speed;
2559}
2560
2561static int __init fec_enet_module_init(void)
2562{
2563 struct net_device *dev;
2564 int i, err;
2565
2566 printk("FEC ENET Version 0.2\n");
2567
2568 for (i = 0; (i < FEC_MAX_PORTS); i++) {
2569 dev = alloc_etherdev(sizeof(struct fec_enet_private));
2570 if (!dev)
2571 return -ENOMEM;
2572 err = fec_enet_init(dev);
2573 if (err) {
2574 free_netdev(dev);
2575 continue;
2576 }
2577 if (register_netdev(dev) != 0) {
2578
2579 free_netdev(dev);
2580 return -EIO;
2581 }
2582
2583 printk("%s: ethernet %pM\n", dev->name, dev->dev_addr);
2584 }
2585 return 0;
2586}
2587
2588module_init(fec_enet_module_init);
2589
2590MODULE_LICENSE("GPL");
2591