blob: a17dc6af30c33211955a08cc10fc4c57eb875b30 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Fast Ethernet Controller (FEC) driver for Motorola MPC8xx.
3 * Copyright (c) 1997 Dan Malek (dmalek@jlc.net)
4 *
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10005 * Right now, I am very wasteful with the buffers. I allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * pages and then divide them into 2K frame buffers. This way I know I
7 * have buffers large enough to hold one frame within one buffer descriptor.
8 * Once I get this working, I will use 64 or 128 byte CPM buffers, which
9 * will be much more memory efficient and will easily handle lots of
10 * small packets.
11 *
12 * Much better multiple PHY support by Magnus Damm.
13 * Copyright (c) 2000 Ericsson Radio Systems AB.
14 *
Greg Ungerer562d2f82005-11-07 14:09:50 +100015 * Support for FEC controller of ColdFire processors.
16 * Copyright (c) 2001-2005 Greg Ungerer (gerg@snapgear.com)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +100017 *
18 * Bug fixes and cleanup by Philippe De Muyter (phdm@macqel.be)
Philippe De Muyter677177c2006-06-27 13:05:33 +100019 * Copyright (c) 2004-2006 Macq Electronique SA.
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#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>
Sascha Hauer6f501b12009-01-28 23:03:05 +000039#include <linux/io.h>
40#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Greg Ungerer080853a2007-07-30 16:28:46 +100042#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/coldfire.h>
44#include <asm/mcfsim.h>
Sascha Hauer6f501b12009-01-28 23:03:05 +000045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include "fec.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#if defined(CONFIG_FEC2)
49#define FEC_MAX_PORTS 2
50#else
51#define FEC_MAX_PORTS 1
52#endif
53
Greg Ungerer87f4abb2008-06-06 15:55:36 +100054#if defined(CONFIG_M5272)
Sebastian Siewiorc1d96152008-05-01 14:04:02 +100055#define HAVE_mii_link_interrupt
56#endif
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/*
59 * Define the fixed address of the FEC hardware.
60 */
61static unsigned int fec_hw[] = {
62#if defined(CONFIG_M5272)
63 (MCF_MBAR + 0x840),
64#elif defined(CONFIG_M527x)
65 (MCF_MBAR + 0x1000),
66 (MCF_MBAR + 0x1800),
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +100067#elif defined(CONFIG_M523x) || defined(CONFIG_M528x)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 (MCF_MBAR + 0x1000),
Greg Ungerer562d2f82005-11-07 14:09:50 +100069#elif defined(CONFIG_M520x)
70 (MCF_MBAR+0x30000),
Matt Waddel6b265292006-06-27 13:10:56 +100071#elif defined(CONFIG_M532x)
72 (MCF_MBAR+0xfc030000),
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#endif
74};
75
76static unsigned char fec_mac_default[] = {
77 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
78};
79
80/*
81 * Some hardware gets it MAC address out of local flash memory.
82 * if this is non-zero then assume it is the address to get MAC from.
83 */
84#if defined(CONFIG_NETtel)
85#define FEC_FLASHMAC 0xf0006006
86#elif defined(CONFIG_GILBARCONAP) || defined(CONFIG_SCALES)
87#define FEC_FLASHMAC 0xf0006000
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#elif defined(CONFIG_CANCam)
89#define FEC_FLASHMAC 0xf0020000
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +100090#elif defined (CONFIG_M5272C3)
91#define FEC_FLASHMAC (0xffe04000 + 4)
92#elif defined(CONFIG_MOD5272)
93#define FEC_FLASHMAC 0xffc0406b
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#else
95#define FEC_FLASHMAC 0
96#endif
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/* Forward declarations of some structures to support different PHYs
99*/
100
101typedef struct {
102 uint mii_data;
103 void (*funct)(uint mii_reg, struct net_device *dev);
104} phy_cmd_t;
105
106typedef struct {
107 uint id;
108 char *name;
109
110 const phy_cmd_t *config;
111 const phy_cmd_t *startup;
112 const phy_cmd_t *ack_int;
113 const phy_cmd_t *shutdown;
114} phy_info_t;
115
116/* The number of Tx and Rx buffers. These are allocated from the page
117 * pool. The code may assume these are power of two, so it it best
118 * to keep them that size.
119 * We don't need to allocate pages for the transmitter. We just use
120 * the skbuffer directly.
121 */
122#define FEC_ENET_RX_PAGES 8
123#define FEC_ENET_RX_FRSIZE 2048
124#define FEC_ENET_RX_FRPPG (PAGE_SIZE / FEC_ENET_RX_FRSIZE)
125#define RX_RING_SIZE (FEC_ENET_RX_FRPPG * FEC_ENET_RX_PAGES)
126#define FEC_ENET_TX_FRSIZE 2048
127#define FEC_ENET_TX_FRPPG (PAGE_SIZE / FEC_ENET_TX_FRSIZE)
128#define TX_RING_SIZE 16 /* Must be power of two */
129#define TX_RING_MOD_MASK 15 /* for this to work */
130
Greg Ungerer562d2f82005-11-07 14:09:50 +1000131#if (((RX_RING_SIZE + TX_RING_SIZE) * 8) > PAGE_SIZE)
Matt Waddel6b265292006-06-27 13:10:56 +1000132#error "FEC: descriptor ring size constants too large"
Greg Ungerer562d2f82005-11-07 14:09:50 +1000133#endif
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135/* Interrupt events/masks.
136*/
137#define FEC_ENET_HBERR ((uint)0x80000000) /* Heartbeat error */
138#define FEC_ENET_BABR ((uint)0x40000000) /* Babbling receiver */
139#define FEC_ENET_BABT ((uint)0x20000000) /* Babbling transmitter */
140#define FEC_ENET_GRA ((uint)0x10000000) /* Graceful stop complete */
141#define FEC_ENET_TXF ((uint)0x08000000) /* Full frame transmitted */
142#define FEC_ENET_TXB ((uint)0x04000000) /* A buffer was transmitted */
143#define FEC_ENET_RXF ((uint)0x02000000) /* Full frame received */
144#define FEC_ENET_RXB ((uint)0x01000000) /* A buffer was received */
145#define FEC_ENET_MII ((uint)0x00800000) /* MII interrupt */
146#define FEC_ENET_EBERR ((uint)0x00400000) /* SDMA bus error */
147
148/* The FEC stores dest/src/type, data, and checksum for receive packets.
149 */
150#define PKT_MAXBUF_SIZE 1518
151#define PKT_MINBUF_SIZE 64
152#define PKT_MAXBLR_SIZE 1520
153
154
155/*
Matt Waddel6b265292006-06-27 13:10:56 +1000156 * The 5270/5271/5280/5282/532x RX control register also contains maximum frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 * size bits. Other FEC hardware does not, so we need to take that into
158 * account when setting it.
159 */
Greg Ungerer562d2f82005-11-07 14:09:50 +1000160#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
Matt Waddel6b265292006-06-27 13:10:56 +1000161 defined(CONFIG_M520x) || defined(CONFIG_M532x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#define OPT_FRAME_SIZE (PKT_MAXBUF_SIZE << 16)
163#else
164#define OPT_FRAME_SIZE 0
165#endif
166
167/* The FEC buffer descriptors track the ring buffers. The rx_bd_base and
168 * tx_bd_base always point to the base of the buffer descriptors. The
169 * cur_rx and cur_tx point to the currently available buffer.
170 * The dirty_tx tracks the current buffer that is being sent by the
171 * controller. The cur_tx and dirty_tx are equal under both completely
172 * empty and completely full conditions. The empty/ready indicator in
173 * the buffer descriptor determines the actual condition.
174 */
175struct fec_enet_private {
176 /* Hardware registers of the FEC device */
177 volatile fec_t *hwp;
178
Greg Ungerercb84d6e2007-07-30 16:29:09 +1000179 struct net_device *netdev;
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 /* The saved address of a sent-in-place packet/buffer, for skfree(). */
182 unsigned char *tx_bounce[TX_RING_SIZE];
183 struct sk_buff* tx_skbuff[TX_RING_SIZE];
184 ushort skb_cur;
185 ushort skb_dirty;
186
187 /* CPM dual port RAM relative addresses.
188 */
Sascha Hauer4661e752009-01-28 23:03:07 +0000189 dma_addr_t bd_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 cbd_t *rx_bd_base; /* Address of Rx and Tx buffers. */
191 cbd_t *tx_bd_base;
192 cbd_t *cur_rx, *cur_tx; /* The next free ring entry */
193 cbd_t *dirty_tx; /* The ring entries to be free()ed. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 uint tx_full;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000195 /* hold while accessing the HW like ringbuffer for tx/rx but not MAC */
196 spinlock_t hw_lock;
197 /* hold while accessing the mii_list_t() elements */
198 spinlock_t mii_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 uint phy_id;
201 uint phy_id_done;
202 uint phy_status;
203 uint phy_speed;
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000204 phy_info_t const *phy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 struct work_struct phy_task;
206
207 uint sequence_done;
208 uint mii_phy_task_queued;
209
210 uint phy_addr;
211
212 int index;
213 int opened;
214 int link;
215 int old_link;
216 int full_duplex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217};
218
219static int fec_enet_open(struct net_device *dev);
220static int fec_enet_start_xmit(struct sk_buff *skb, struct net_device *dev);
221static void fec_enet_mii(struct net_device *dev);
David Howells7d12e782006-10-05 14:55:46 +0100222static irqreturn_t fec_enet_interrupt(int irq, void * dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223static void fec_enet_tx(struct net_device *dev);
224static void fec_enet_rx(struct net_device *dev);
225static int fec_enet_close(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226static void set_multicast_list(struct net_device *dev);
227static void fec_restart(struct net_device *dev, int duplex);
228static void fec_stop(struct net_device *dev);
229static void fec_set_mac_address(struct net_device *dev);
230
231
232/* MII processing. We keep this as simple as possible. Requests are
233 * placed on the list (if there is room). When the request is finished
234 * by the MII, an optional function may be called.
235 */
236typedef struct mii_list {
237 uint mii_regval;
238 void (*mii_func)(uint val, struct net_device *dev);
239 struct mii_list *mii_next;
240} mii_list_t;
241
242#define NMII 20
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000243static mii_list_t mii_cmds[NMII];
244static mii_list_t *mii_free;
245static mii_list_t *mii_head;
246static mii_list_t *mii_tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400248static int mii_queue(struct net_device *dev, int request,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 void (*func)(uint, struct net_device *));
250
251/* Make MII read/write commands for the FEC.
252*/
253#define mk_mii_read(REG) (0x60020000 | ((REG & 0x1f) << 18))
254#define mk_mii_write(REG, VAL) (0x50020000 | ((REG & 0x1f) << 18) | \
255 (VAL & 0xffff))
256#define mk_mii_end 0
257
258/* Transmitter timeout.
259*/
260#define TX_TIMEOUT (2*HZ)
261
262/* Register definitions for the PHY.
263*/
264
265#define MII_REG_CR 0 /* Control Register */
266#define MII_REG_SR 1 /* Status Register */
267#define MII_REG_PHYIR1 2 /* PHY Identification Register 1 */
268#define MII_REG_PHYIR2 3 /* PHY Identification Register 2 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400269#define MII_REG_ANAR 4 /* A-N Advertisement Register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270#define MII_REG_ANLPAR 5 /* A-N Link Partner Ability Register */
271#define MII_REG_ANER 6 /* A-N Expansion Register */
272#define MII_REG_ANNPTR 7 /* A-N Next Page Transmit Register */
273#define MII_REG_ANLPRNPR 8 /* A-N Link Partner Received Next Page Reg. */
274
275/* values for phy_status */
276
277#define PHY_CONF_ANE 0x0001 /* 1 auto-negotiation enabled */
278#define PHY_CONF_LOOP 0x0002 /* 1 loopback mode enabled */
279#define PHY_CONF_SPMASK 0x00f0 /* mask for speed */
280#define PHY_CONF_10HDX 0x0010 /* 10 Mbit half duplex supported */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400281#define PHY_CONF_10FDX 0x0020 /* 10 Mbit full duplex supported */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282#define PHY_CONF_100HDX 0x0040 /* 100 Mbit half duplex supported */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400283#define PHY_CONF_100FDX 0x0080 /* 100 Mbit full duplex supported */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285#define PHY_STAT_LINK 0x0100 /* 1 up - 0 down */
286#define PHY_STAT_FAULT 0x0200 /* 1 remote fault */
287#define PHY_STAT_ANC 0x0400 /* 1 auto-negotiation complete */
288#define PHY_STAT_SPMASK 0xf000 /* mask for speed */
289#define PHY_STAT_10HDX 0x1000 /* 10 Mbit half duplex selected */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400290#define PHY_STAT_10FDX 0x2000 /* 10 Mbit full duplex selected */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291#define PHY_STAT_100HDX 0x4000 /* 100 Mbit half duplex selected */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400292#define PHY_STAT_100FDX 0x8000 /* 100 Mbit full duplex selected */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294
295static int
296fec_enet_start_xmit(struct sk_buff *skb, struct net_device *dev)
297{
298 struct fec_enet_private *fep;
299 volatile fec_t *fecp;
300 volatile cbd_t *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000301 unsigned short status;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000302 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 fep = netdev_priv(dev);
305 fecp = (volatile fec_t*)dev->base_addr;
306
307 if (!fep->link) {
308 /* Link is down or autonegotiation is in progress. */
309 return 1;
310 }
311
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000312 spin_lock_irqsave(&fep->hw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 /* Fill in a Tx ring entry */
314 bdp = fep->cur_tx;
315
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000316 status = bdp->cbd_sc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317#ifndef final_version
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000318 if (status & BD_ENET_TX_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 /* Ooops. All transmit buffers are full. Bail out.
320 * This should not happen, since dev->tbusy should be set.
321 */
322 printk("%s: tx queue full!.\n", dev->name);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000323 spin_unlock_irqrestore(&fep->hw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return 1;
325 }
326#endif
327
328 /* Clear all of the status flags.
329 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000330 status &= ~BD_ENET_TX_STATS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 /* Set buffer length and buffer pointer.
333 */
334 bdp->cbd_bufaddr = __pa(skb->data);
335 bdp->cbd_datlen = skb->len;
336
337 /*
338 * On some FEC implementations data must be aligned on
339 * 4-byte boundaries. Use bounce buffers to copy data
340 * and get it aligned. Ugh.
341 */
342 if (bdp->cbd_bufaddr & 0x3) {
343 unsigned int index;
344 index = bdp - fep->tx_bd_base;
Sascha Hauer6989f512009-01-28 23:03:06 +0000345 memcpy(fep->tx_bounce[index], (void *)skb->data, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 bdp->cbd_bufaddr = __pa(fep->tx_bounce[index]);
347 }
348
349 /* Save skb pointer.
350 */
351 fep->tx_skbuff[fep->skb_cur] = skb;
352
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700353 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 fep->skb_cur = (fep->skb_cur+1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 /* Push the data cache so the CPM does not get stale memory
357 * data.
358 */
Sascha Hauerccdc4f12009-01-28 23:03:09 +0000359 dma_sync_single(NULL, bdp->cbd_bufaddr,
360 bdp->cbd_datlen, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000362 /* Send it on its way. Tell FEC it's ready, interrupt when done,
363 * it's the last BD of the frame, and to put the CRC on the end.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 */
365
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000366 status |= (BD_ENET_TX_READY | BD_ENET_TX_INTR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 | BD_ENET_TX_LAST | BD_ENET_TX_TC);
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000368 bdp->cbd_sc = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 dev->trans_start = jiffies;
371
372 /* Trigger transmission start */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000373 fecp->fec_x_des_active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 /* If this was the last BD in the ring, start at the beginning again.
376 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000377 if (status & BD_ENET_TX_WRAP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 bdp = fep->tx_bd_base;
379 } else {
380 bdp++;
381 }
382
383 if (bdp == fep->dirty_tx) {
384 fep->tx_full = 1;
385 netif_stop_queue(dev);
386 }
387
388 fep->cur_tx = (cbd_t *)bdp;
389
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000390 spin_unlock_irqrestore(&fep->hw_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 return 0;
393}
394
395static void
396fec_timeout(struct net_device *dev)
397{
398 struct fec_enet_private *fep = netdev_priv(dev);
399
400 printk("%s: transmit timed out.\n", dev->name);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700401 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402#ifndef final_version
403 {
404 int i;
405 cbd_t *bdp;
406
407 printk("Ring data dump: cur_tx %lx%s, dirty_tx %lx cur_rx: %lx\n",
408 (unsigned long)fep->cur_tx, fep->tx_full ? " (full)" : "",
409 (unsigned long)fep->dirty_tx,
410 (unsigned long)fep->cur_rx);
411
412 bdp = fep->tx_bd_base;
413 printk(" tx: %u buffers\n", TX_RING_SIZE);
414 for (i = 0 ; i < TX_RING_SIZE; i++) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400415 printk(" %08x: %04x %04x %08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 (uint) bdp,
417 bdp->cbd_sc,
418 bdp->cbd_datlen,
419 (int) bdp->cbd_bufaddr);
420 bdp++;
421 }
422
423 bdp = fep->rx_bd_base;
424 printk(" rx: %lu buffers\n", (unsigned long) RX_RING_SIZE);
425 for (i = 0 ; i < RX_RING_SIZE; i++) {
426 printk(" %08x: %04x %04x %08x\n",
427 (uint) bdp,
428 bdp->cbd_sc,
429 bdp->cbd_datlen,
430 (int) bdp->cbd_bufaddr);
431 bdp++;
432 }
433 }
434#endif
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000435 fec_restart(dev, fep->full_duplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 netif_wake_queue(dev);
437}
438
439/* The interrupt handler.
440 * This is called from the MPC core interrupt.
441 */
442static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +0100443fec_enet_interrupt(int irq, void * dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 struct net_device *dev = dev_id;
446 volatile fec_t *fecp;
447 uint int_events;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000448 irqreturn_t ret = IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 fecp = (volatile fec_t*)dev->base_addr;
451
452 /* Get the interrupt events that caused us to be here.
453 */
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000454 do {
455 int_events = fecp->fec_ievent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 fecp->fec_ievent = int_events;
457
458 /* Handle receive event in its own function.
459 */
460 if (int_events & FEC_ENET_RXF) {
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000461 ret = IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 fec_enet_rx(dev);
463 }
464
465 /* Transmit OK, or non-fatal error. Update the buffer
466 descriptors. FEC handles all errors, we just discover
467 them as part of the transmit process.
468 */
469 if (int_events & FEC_ENET_TXF) {
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000470 ret = IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 fec_enet_tx(dev);
472 }
473
474 if (int_events & FEC_ENET_MII) {
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000475 ret = IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 fec_enet_mii(dev);
477 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400478
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000479 } while (int_events);
480
481 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
484
485static void
486fec_enet_tx(struct net_device *dev)
487{
488 struct fec_enet_private *fep;
489 volatile cbd_t *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000490 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 struct sk_buff *skb;
492
493 fep = netdev_priv(dev);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000494 spin_lock_irq(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 bdp = fep->dirty_tx;
496
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000497 while (((status = bdp->cbd_sc) & BD_ENET_TX_READY) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (bdp == fep->cur_tx && fep->tx_full == 0) break;
499
500 skb = fep->tx_skbuff[fep->skb_dirty];
501 /* Check for errors. */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000502 if (status & (BD_ENET_TX_HB | BD_ENET_TX_LC |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 BD_ENET_TX_RL | BD_ENET_TX_UN |
504 BD_ENET_TX_CSL)) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700505 dev->stats.tx_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000506 if (status & BD_ENET_TX_HB) /* No heartbeat */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700507 dev->stats.tx_heartbeat_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000508 if (status & BD_ENET_TX_LC) /* Late collision */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700509 dev->stats.tx_window_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000510 if (status & BD_ENET_TX_RL) /* Retrans limit */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700511 dev->stats.tx_aborted_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000512 if (status & BD_ENET_TX_UN) /* Underrun */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700513 dev->stats.tx_fifo_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000514 if (status & BD_ENET_TX_CSL) /* Carrier lost */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700515 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 } else {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700517 dev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519
520#ifndef final_version
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000521 if (status & BD_ENET_TX_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 printk("HEY! Enet xmit interrupt and TX_READY.\n");
523#endif
524 /* Deferred means some collisions occurred during transmit,
525 * but we eventually sent the packet OK.
526 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000527 if (status & BD_ENET_TX_DEF)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700528 dev->stats.collisions++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 /* Free the sk buffer associated with this last transmit.
531 */
532 dev_kfree_skb_any(skb);
533 fep->tx_skbuff[fep->skb_dirty] = NULL;
534 fep->skb_dirty = (fep->skb_dirty + 1) & TX_RING_MOD_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 /* Update pointer to next buffer descriptor to be transmitted.
537 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000538 if (status & BD_ENET_TX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 bdp = fep->tx_bd_base;
540 else
541 bdp++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 /* Since we have freed up a buffer, the ring is no longer
544 * full.
545 */
546 if (fep->tx_full) {
547 fep->tx_full = 0;
548 if (netif_queue_stopped(dev))
549 netif_wake_queue(dev);
550 }
551 }
552 fep->dirty_tx = (cbd_t *)bdp;
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000553 spin_unlock_irq(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
555
556
557/* During a receive, the cur_rx points to the current incoming buffer.
558 * When we update through the ring, if the next incoming buffer has
559 * not been given to the system, we just set the empty indicator,
560 * effectively tossing the packet.
561 */
562static void
563fec_enet_rx(struct net_device *dev)
564{
565 struct fec_enet_private *fep;
566 volatile fec_t *fecp;
567 volatile cbd_t *bdp;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000568 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 struct sk_buff *skb;
570 ushort pkt_len;
571 __u8 *data;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400572
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000573#ifdef CONFIG_M532x
574 flush_cache_all();
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400575#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 fep = netdev_priv(dev);
578 fecp = (volatile fec_t*)dev->base_addr;
579
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000580 spin_lock_irq(&fep->hw_lock);
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 /* First, grab all of the stats for the incoming packet.
583 * These get messed up if we get called due to a busy condition.
584 */
585 bdp = fep->cur_rx;
586
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000587while (!((status = bdp->cbd_sc) & BD_ENET_RX_EMPTY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589#ifndef final_version
590 /* Since we have allocated space to hold a complete frame,
591 * the last indicator should be set.
592 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000593 if ((status & BD_ENET_RX_LAST) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 printk("FEC ENET: rcv is not +last\n");
595#endif
596
597 if (!fep->opened)
598 goto rx_processing_done;
599
600 /* Check for errors. */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000601 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_NO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 BD_ENET_RX_CR | BD_ENET_RX_OV)) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700603 dev->stats.rx_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000604 if (status & (BD_ENET_RX_LG | BD_ENET_RX_SH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 /* Frame too long or too short. */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700606 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000608 if (status & BD_ENET_RX_NO) /* Frame alignment */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700609 dev->stats.rx_frame_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000610 if (status & BD_ENET_RX_CR) /* CRC Error */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700611 dev->stats.rx_crc_errors++;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000612 if (status & BD_ENET_RX_OV) /* FIFO overrun */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700613 dev->stats.rx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
615
616 /* Report late collisions as a frame error.
617 * On this error, the BD is closed, but we don't know what we
618 * have in the buffer. So, just drop this frame on the floor.
619 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000620 if (status & BD_ENET_RX_CL) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700621 dev->stats.rx_errors++;
622 dev->stats.rx_frame_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 goto rx_processing_done;
624 }
625
626 /* Process the incoming frame.
627 */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700628 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 pkt_len = bdp->cbd_datlen;
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700630 dev->stats.rx_bytes += pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 data = (__u8*)__va(bdp->cbd_bufaddr);
632
Sascha Hauerccdc4f12009-01-28 23:03:09 +0000633 dma_sync_single(NULL, (unsigned long)__pa(data),
634 pkt_len - 4, DMA_FROM_DEVICE);
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 /* This does 16 byte alignment, exactly what we need.
637 * The packet length includes FCS, but we don't want to
638 * include that when passing upstream as it messes up
639 * bridging applications.
640 */
641 skb = dev_alloc_skb(pkt_len-4);
642
643 if (skb == NULL) {
644 printk("%s: Memory squeeze, dropping packet.\n", dev->name);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700645 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 skb_put(skb,pkt_len-4); /* Make room */
David S. Miller8c7b7fa2007-07-10 22:08:12 -0700648 skb_copy_to_linear_data(skb, data, pkt_len-4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 skb->protocol=eth_type_trans(skb,dev);
650 netif_rx(skb);
651 }
652 rx_processing_done:
653
654 /* Clear the status flags for this buffer.
655 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000656 status &= ~BD_ENET_RX_STATS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 /* Mark the buffer empty.
659 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000660 status |= BD_ENET_RX_EMPTY;
661 bdp->cbd_sc = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 /* Update BD pointer to next entry.
664 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000665 if (status & BD_ENET_RX_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 bdp = fep->rx_bd_base;
667 else
668 bdp++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670#if 1
671 /* Doing this here will keep the FEC running while we process
672 * incoming frames. On a heavily loaded network, we should be
673 * able to keep up at the expense of system resources.
674 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000675 fecp->fec_r_des_active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676#endif
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000677 } /* while (!((status = bdp->cbd_sc) & BD_ENET_RX_EMPTY)) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 fep->cur_rx = (cbd_t *)bdp;
679
680#if 0
681 /* Doing this here will allow us to process all frames in the
682 * ring before the FEC is allowed to put more there. On a heavily
683 * loaded network, some frames may be lost. Unfortunately, this
684 * increases the interrupt overhead since we can potentially work
685 * our way back to the interrupt return only to come right back
686 * here.
687 */
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000688 fecp->fec_r_des_active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689#endif
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000690
691 spin_unlock_irq(&fep->hw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
694
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000695/* called from interrupt context */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696static 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);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000705 spin_lock_irq(&fep->mii_lock);
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 ep = fep->hwp;
708 mii_reg = ep->fec_mii_data;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if ((mip = mii_head) == NULL) {
711 printk("MII and no head!\n");
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000712 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
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;
Greg Ungerer0e702ab2006-06-27 13:19:33 +1000724
725unlock:
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000726 spin_unlock_irq(&fep->mii_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
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 /* Add PHY address to register command.
738 */
739 fep = netdev_priv(dev);
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000740 spin_lock_irqsave(&fep->mii_lock, flags);
741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 regval |= fep->phy_addr << 23;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 retval = 0;
744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 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;
Philippe De Muyterf909b1e2007-10-23 14:37:54 +1000753 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 mii_head = mii_tail = mip;
755 fep->hwp->fec_mii_data = regval;
756 }
Philippe De Muyterf909b1e2007-10-23 14:37:54 +1000757 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 retval = 1;
759 }
760
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +1000761 spin_unlock_irqrestore(&fep->mii_lock, flags);
762 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
765static void mii_do_cmd(struct net_device *dev, const phy_cmd_t *c)
766{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if(!c)
768 return;
769
Philippe De Muyterbe6cb662007-10-23 14:37:54 +1000770 for (; c->mii_data != mk_mii_end; c++)
771 mii_queue(dev, c->mii_data, c->funct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
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);
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000778 uint status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000780 status = *s & ~(PHY_STAT_LINK | PHY_STAT_FAULT | PHY_STAT_ANC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 if (mii_reg & 0x0004)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000783 status |= PHY_STAT_LINK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (mii_reg & 0x0010)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000785 status |= PHY_STAT_FAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (mii_reg & 0x0020)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000787 status |= PHY_STAT_ANC;
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000788 *s = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789}
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);
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000795 uint status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000797 status = *s & ~(PHY_CONF_ANE | PHY_CONF_LOOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 if (mii_reg & 0x1000)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000800 status |= PHY_CONF_ANE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (mii_reg & 0x4000)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000802 status |= PHY_CONF_LOOP;
803 *s = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
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);
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000810 uint status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000812 status = *s & ~(PHY_CONF_SPMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 if (mii_reg & 0x0020)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000815 status |= PHY_CONF_10HDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (mii_reg & 0x0040)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000817 status |= PHY_CONF_10FDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 if (mii_reg & 0x0080)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000819 status |= PHY_CONF_100HDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 if (mii_reg & 0x00100)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000821 status |= PHY_CONF_100FDX;
822 *s = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
824
825/* ------------------------------------------------------------------------- */
826/* The Level one LXT970 is used by many boards */
827
828#define MII_LXT970_MIRROR 16 /* Mirror register */
829#define MII_LXT970_IER 17 /* Interrupt Enable Register */
830#define MII_LXT970_ISR 18 /* Interrupt Status Register */
831#define MII_LXT970_CONFIG 19 /* Configuration Register */
832#define MII_LXT970_CSR 20 /* Chip Status Register */
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);
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000838 uint status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000840 status = *s & ~(PHY_STAT_SPMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 if (mii_reg & 0x0800) {
842 if (mii_reg & 0x1000)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000843 status |= PHY_STAT_100FDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 else
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000845 status |= PHY_STAT_100HDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 } else {
847 if (mii_reg & 0x1000)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000848 status |= PHY_STAT_10FDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 else
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000850 status |= PHY_STAT_10HDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000852 *s = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853}
854
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000855static phy_cmd_t const phy_cmd_lxt970_config[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 { mk_mii_read(MII_REG_CR), mii_parse_cr },
857 { mk_mii_read(MII_REG_ANAR), mii_parse_anar },
858 { mk_mii_end, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000859 };
860static phy_cmd_t const phy_cmd_lxt970_startup[] = { /* enable interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 { mk_mii_write(MII_LXT970_IER, 0x0002), NULL },
862 { mk_mii_write(MII_REG_CR, 0x1200), NULL }, /* autonegotiate */
863 { mk_mii_end, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000864 };
865static phy_cmd_t const phy_cmd_lxt970_ack_int[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 /* read SR and ISR to acknowledge */
867 { mk_mii_read(MII_REG_SR), mii_parse_sr },
868 { mk_mii_read(MII_LXT970_ISR), NULL },
869
870 /* find out the current status */
871 { mk_mii_read(MII_LXT970_CSR), mii_parse_lxt970_csr },
872 { mk_mii_end, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000873 };
874static phy_cmd_t const phy_cmd_lxt970_shutdown[] = { /* disable interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 { mk_mii_write(MII_LXT970_IER, 0x0000), NULL },
876 { mk_mii_end, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000877 };
878static phy_info_t const phy_info_lxt970 = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400879 .id = 0x07810000,
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000880 .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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885};
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887/* ------------------------------------------------------------------------- */
888/* The Level one LXT971 is used on some of my custom boards */
889
890/* register definitions for the 971 */
891
892#define MII_LXT971_PCR 16 /* Port Control Register */
893#define MII_LXT971_SR2 17 /* Status Register 2 */
894#define MII_LXT971_IER 18 /* Interrupt Enable Register */
895#define MII_LXT971_ISR 19 /* Interrupt Status Register */
896#define MII_LXT971_LCR 20 /* LED Control Register */
897#define MII_LXT971_TCR 30 /* Transmit Control Register */
898
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400899/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 * I had some nice ideas of running the MDIO faster...
901 * The 971 should support 8MHz and I tried it, but things acted really
902 * weird, so 2.5 MHz ought to be enough for anyone...
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);
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000909 uint status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000911 status = *s & ~(PHY_STAT_SPMASK | PHY_STAT_LINK | PHY_STAT_ANC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 if (mii_reg & 0x0400) {
914 fep->link = 1;
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000915 status |= PHY_STAT_LINK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 } else {
917 fep->link = 0;
918 }
919 if (mii_reg & 0x0080)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000920 status |= PHY_STAT_ANC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (mii_reg & 0x4000) {
922 if (mii_reg & 0x0200)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000923 status |= PHY_STAT_100FDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 else
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000925 status |= PHY_STAT_100HDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 } else {
927 if (mii_reg & 0x0200)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000928 status |= PHY_STAT_10FDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 else
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000930 status |= PHY_STAT_10HDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 }
932 if (mii_reg & 0x0008)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000933 status |= PHY_STAT_FAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000935 *s = status;
936}
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400937
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000938static phy_cmd_t const phy_cmd_lxt971_config[] = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400939 /* limit to 10MBit because my prototype board
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 * doesn't work with 100. */
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, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000945 };
946static phy_cmd_t const phy_cmd_lxt971_startup[] = { /* enable interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 { mk_mii_write(MII_LXT971_IER, 0x00f2), NULL },
948 { mk_mii_write(MII_REG_CR, 0x1200), NULL }, /* autonegotiate */
949 { mk_mii_write(MII_LXT971_LCR, 0xd422), NULL }, /* LED config */
950 /* Somehow does the 971 tell me that the link is down
951 * the first read after power-up.
952 * read here to get a valid value in ack_int */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400953 { mk_mii_read(MII_REG_SR), mii_parse_sr },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 { mk_mii_end, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000955 };
956static phy_cmd_t const phy_cmd_lxt971_ack_int[] = {
957 /* acknowledge the int before reading status ! */
958 { mk_mii_read(MII_LXT971_ISR), NULL },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 /* find out the current status */
960 { mk_mii_read(MII_REG_SR), mii_parse_sr },
961 { mk_mii_read(MII_LXT971_SR2), mii_parse_lxt971_sr2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 { mk_mii_end, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000963 };
964static phy_cmd_t const phy_cmd_lxt971_shutdown[] = { /* disable interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 { mk_mii_write(MII_LXT971_IER, 0x0000), NULL },
966 { mk_mii_end, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000967 };
968static phy_info_t const phy_info_lxt971 = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400969 .id = 0x0001378e,
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000970 .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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975};
976
977/* ------------------------------------------------------------------------- */
978/* The Quality Semiconductor QS6612 is used on the RPX CLLF */
979
980/* register definitions */
981
982#define MII_QS6612_MCR 17 /* Mode Control Register */
983#define MII_QS6612_FTR 27 /* Factory Test Register */
984#define MII_QS6612_MCO 28 /* Misc. Control Register */
985#define MII_QS6612_ISR 29 /* Interrupt Source Register */
986#define MII_QS6612_IMR 30 /* Interrupt Mask Register */
987#define MII_QS6612_PCR 31 /* 100BaseTx PHY Control Reg. */
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);
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000993 uint status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000995 status = *s & ~(PHY_STAT_SPMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997 switch((mii_reg >> 2) & 7) {
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +1000998 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002}
1003
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001004 *s = status;
1005}
1006
1007static phy_cmd_t const phy_cmd_qs6612_config[] = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001008 /* The PHY powers up isolated on the RPX,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 * so send a command to allow operation.
1010 */
1011 { mk_mii_write(MII_QS6612_PCR, 0x0dc0), NULL },
1012
1013 /* parse cr and anar to get some info */
1014 { mk_mii_read(MII_REG_CR), mii_parse_cr },
1015 { mk_mii_read(MII_REG_ANAR), mii_parse_anar },
1016 { mk_mii_end, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001017 };
1018static phy_cmd_t const phy_cmd_qs6612_startup[] = { /* enable interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 { mk_mii_write(MII_QS6612_IMR, 0x003a), NULL },
1020 { mk_mii_write(MII_REG_CR, 0x1200), NULL }, /* autonegotiate */
1021 { mk_mii_end, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001022 };
1023static phy_cmd_t const phy_cmd_qs6612_ack_int[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 /* we need to read ISR, SR and ANER to acknowledge */
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 /* read pcr to get info */
1030 { mk_mii_read(MII_QS6612_PCR), mii_parse_qs6612_pcr },
1031 { mk_mii_end, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001032 };
1033static phy_cmd_t const phy_cmd_qs6612_shutdown[] = { /* disable interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 { mk_mii_write(MII_QS6612_IMR, 0x0000), NULL },
1035 { mk_mii_end, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001036 };
1037static phy_info_t const phy_info_qs6612 = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001038 .id = 0x00181440,
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001039 .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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044};
1045
1046/* ------------------------------------------------------------------------- */
1047/* AMD AM79C874 phy */
1048
1049/* register definitions for the 874 */
1050
1051#define MII_AM79C874_MFR 16 /* Miscellaneous Feature Register */
1052#define MII_AM79C874_ICSR 17 /* Interrupt/Status Register */
1053#define MII_AM79C874_DR 18 /* Diagnostic Register */
1054#define MII_AM79C874_PMLR 19 /* Power and Loopback Register */
1055#define MII_AM79C874_MCR 21 /* ModeControl Register */
1056#define MII_AM79C874_DC 23 /* Disconnect Counter */
1057#define MII_AM79C874_REC 24 /* Recieve Error Counter */
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);
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001063 uint status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001065 status = *s & ~(PHY_STAT_SPMASK | PHY_STAT_ANC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067 if (mii_reg & 0x0080)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001068 status |= PHY_STAT_ANC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (mii_reg & 0x0400)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001070 status |= ((mii_reg & 0x0800) ? PHY_STAT_100FDX : PHY_STAT_100HDX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 else
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001072 status |= ((mii_reg & 0x0800) ? PHY_STAT_10FDX : PHY_STAT_10HDX);
1073
1074 *s = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075}
1076
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001077static phy_cmd_t const phy_cmd_am79c874_config[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 { 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, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001082 };
1083static phy_cmd_t const phy_cmd_am79c874_startup[] = { /* enable interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 { mk_mii_write(MII_AM79C874_ICSR, 0xff00), NULL },
1085 { mk_mii_write(MII_REG_CR, 0x1200), NULL }, /* autonegotiate */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001086 { mk_mii_read(MII_REG_SR), mii_parse_sr },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 { mk_mii_end, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001088 };
1089static phy_cmd_t const phy_cmd_am79c874_ack_int[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 /* find out the current status */
1091 { mk_mii_read(MII_REG_SR), mii_parse_sr },
1092 { mk_mii_read(MII_AM79C874_DR), mii_parse_am79c874_dr },
1093 /* we only need to read ISR to acknowledge */
1094 { mk_mii_read(MII_AM79C874_ICSR), NULL },
1095 { mk_mii_end, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001096 };
1097static phy_cmd_t const phy_cmd_am79c874_shutdown[] = { /* disable interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 { mk_mii_write(MII_AM79C874_ICSR, 0x0000), NULL },
1099 { mk_mii_end, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001100 };
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108};
1109
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111/* ------------------------------------------------------------------------- */
1112/* Kendin KS8721BL phy */
1113
1114/* register definitions for the 8721 */
1115
1116#define MII_KS8721BL_RXERCR 21
Sascha Hauer43268dc2009-01-28 23:03:08 +00001117#define MII_KS8721BL_ICSR 27
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118#define MII_KS8721BL_PHYCR 31
1119
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001120static phy_cmd_t const phy_cmd_ks8721bl_config[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 { mk_mii_read(MII_REG_CR), mii_parse_cr },
1122 { mk_mii_read(MII_REG_ANAR), mii_parse_anar },
1123 { mk_mii_end, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001124 };
1125static phy_cmd_t const phy_cmd_ks8721bl_startup[] = { /* enable interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 { mk_mii_write(MII_KS8721BL_ICSR, 0xff00), NULL },
1127 { mk_mii_write(MII_REG_CR, 0x1200), NULL }, /* autonegotiate */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001128 { mk_mii_read(MII_REG_SR), mii_parse_sr },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 { mk_mii_end, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001130 };
1131static phy_cmd_t const phy_cmd_ks8721bl_ack_int[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 /* find out the current status */
1133 { mk_mii_read(MII_REG_SR), mii_parse_sr },
1134 /* we only need to read ISR to acknowledge */
1135 { mk_mii_read(MII_KS8721BL_ICSR), NULL },
1136 { mk_mii_end, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001137 };
1138static phy_cmd_t const phy_cmd_ks8721bl_shutdown[] = { /* disable interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 { mk_mii_write(MII_KS8721BL_ICSR, 0x0000), NULL },
1140 { mk_mii_end, }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001141 };
1142static phy_info_t const phy_info_ks8721bl = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001143 .id = 0x00022161,
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001144 .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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149};
1150
1151/* ------------------------------------------------------------------------- */
Greg Ungerer562d2f82005-11-07 14:09:50 +10001152/* register definitions for the DP83848 */
1153
1154#define MII_DP8384X_PHYSTST 16 /* PHY Status Register */
1155
1156static void mii_parse_dp8384x_sr2(uint mii_reg, struct net_device *dev)
1157{
Wang Chen4cf16532008-11-12 23:38:14 -08001158 struct fec_enet_private *fep = netdev_priv(dev);
Greg Ungerer562d2f82005-11-07 14:09:50 +10001159 volatile uint *s = &(fep->phy_status);
1160
1161 *s &= ~(PHY_STAT_SPMASK | PHY_STAT_LINK | PHY_STAT_ANC);
1162
1163 /* Link up */
1164 if (mii_reg & 0x0001) {
1165 fep->link = 1;
1166 *s |= PHY_STAT_LINK;
1167 } else
1168 fep->link = 0;
1169 /* Status of link */
1170 if (mii_reg & 0x0010) /* Autonegotioation complete */
1171 *s |= PHY_STAT_ANC;
1172 if (mii_reg & 0x0002) { /* 10MBps? */
1173 if (mii_reg & 0x0004) /* Full Duplex? */
1174 *s |= PHY_STAT_10FDX;
1175 else
1176 *s |= PHY_STAT_10HDX;
1177 } else { /* 100 Mbps? */
1178 if (mii_reg & 0x0004) /* Full Duplex? */
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 []) { /* config */
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 []) { /* startup - enable interrupts */
1198 { mk_mii_write(MII_REG_CR, 0x1200), NULL }, /* autonegotiate */
1199 { mk_mii_read(MII_REG_SR), mii_parse_sr },
1200 { mk_mii_end, }
1201 },
1202 (const phy_cmd_t []) { /* ack_int - never happens, no interrupt */
1203 { mk_mii_end, }
1204 },
1205 (const phy_cmd_t []) { /* shutdown */
1206 { mk_mii_end, }
1207 },
1208};
1209
1210/* ------------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001212static phy_info_t const * const phy_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 &phy_info_lxt970,
1214 &phy_info_lxt971,
1215 &phy_info_qs6612,
1216 &phy_info_am79c874,
1217 &phy_info_ks8721bl,
Greg Ungerer562d2f82005-11-07 14:09:50 +10001218 &phy_info_dp83848,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 NULL
1220};
1221
1222/* ------------------------------------------------------------------------- */
Sebastian Siewiorc1d96152008-05-01 14:04:02 +10001223#ifdef HAVE_mii_link_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +01001225mii_link_interrupt(int irq, void * dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226#endif
1227
1228#if defined(CONFIG_M5272)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229/*
1230 * Code specific to Coldfire 5272 setup.
1231 */
1232static void __inline__ fec_request_intrs(struct net_device *dev)
1233{
1234 volatile unsigned long *icrp;
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001235 static const struct idesc {
1236 char *name;
1237 unsigned short irq;
David Howells7d12e782006-10-05 14:55:46 +01001238 irq_handler_t handler;
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001239 } *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 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247 /* Setup interrupt handlers. */
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001248 for (idp = id; idp->name; idp++) {
Greg Ungerer0a504772008-03-04 16:52:01 +10001249 if (request_irq(idp->irq, idp->handler, IRQF_DISABLED, idp->name, dev) != 0)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001250 printk("FEC: Could not allocate %s IRQ(%d)!\n", idp->name, idp->irq);
1251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 /* Unmask interrupt at ColdFire 5272 SIM */
1254 icrp = (volatile unsigned long *) (MCF_MBAR + MCFSIM_ICR3);
1255 *icrp = 0x00000ddd;
1256 icrp = (volatile unsigned long *) (MCF_MBAR + MCFSIM_ICR1);
Greg Ungererf861d622007-07-30 16:29:16 +10001257 *icrp = 0x0d000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258}
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 * Set MII speed to 2.5 MHz
1270 * See 5272 manual section 11.5.8: MSCR
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;
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001282 unsigned char *iap, tmpaddr[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 fecp = fep->hwp;
1285
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001286 if (FEC_FLASHMAC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 /*
1288 * Get MAC address from FLASH.
1289 * If it is all 1's or 0's, use the default.
1290 */
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001291 iap = (unsigned char *)FEC_FLASHMAC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 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
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001304 memcpy(dev->dev_addr, iap, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306 /* Adjust MAC if using default MAC address */
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001307 if (iap == fec_mac_default)
1308 dev->dev_addr[ETH_ALEN-1] = fec_mac_default[ETH_ALEN-1] + fep->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309}
1310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311static void __inline__ fec_disable_phy_intr(void)
1312{
1313 volatile unsigned long *icrp;
1314 icrp = (volatile unsigned long *) (MCF_MBAR + MCFSIM_ICR1);
Greg Ungererf861d622007-07-30 16:29:16 +10001315 *icrp = 0x08000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316}
1317
1318static void __inline__ fec_phy_ack_intr(void)
1319{
1320 volatile unsigned long *icrp;
1321 /* Acknowledge the interrupt */
1322 icrp = (volatile unsigned long *) (MCF_MBAR + MCFSIM_ICR1);
Greg Ungererf861d622007-07-30 16:29:16 +10001323 *icrp = 0x0d000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324}
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326/* ------------------------------------------------------------------------- */
1327
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001328#elif defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330/*
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001331 * Code specific to Coldfire 5230/5231/5232/5234/5235,
1332 * the 5270/5271/5274/5275 and 5280/5282 setups.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 */
1334static void __inline__ fec_request_intrs(struct net_device *dev)
1335{
1336 struct fec_enet_private *fep;
1337 int b;
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001338 static const struct idesc {
1339 char *name;
1340 unsigned short irq;
1341 } *idp, id[] = {
1342 { "fec(TXF)", 23 },
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001343 { "fec(RXF)", 27 },
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001344 { "fec(MII)", 29 },
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001345 { NULL },
1346 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 fep = netdev_priv(dev);
1349 b = (fep->index) ? 128 : 64;
1350
1351 /* Setup interrupt handlers. */
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001352 for (idp = id; idp->name; idp++) {
Greg Ungerer0a504772008-03-04 16:52:01 +10001353 if (request_irq(b+idp->irq, fec_enet_interrupt, IRQF_DISABLED, idp->name, dev) != 0)
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001354 printk("FEC: Could not allocate %s IRQ(%d)!\n", idp->name, b+idp->irq);
1355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 /* Unmask interrupts at ColdFire 5280/5282 interrupt controller */
1358 {
1359 volatile unsigned char *icrp;
1360 volatile unsigned long *imrp;
Willson Callan83901fc2006-06-27 13:13:44 +10001361 int i, ilip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363 b = (fep->index) ? MCFICM_INTC1 : MCFICM_INTC0;
1364 icrp = (volatile unsigned char *) (MCF_IPSBAR + b +
1365 MCFINTC_ICR0);
Willson Callan83901fc2006-06-27 13:13:44 +10001366 for (i = 23, ilip = 0x28; (i < 36); i++)
1367 icrp[i] = ilip--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
1369 imrp = (volatile unsigned long *) (MCF_IPSBAR + b +
1370 MCFINTC_IMRH);
1371 *imrp &= ~0x0000000f;
1372 imrp = (volatile unsigned long *) (MCF_IPSBAR + b +
1373 MCFINTC_IMRL);
1374 *imrp &= ~0xff800001;
1375 }
1376
1377#if defined(CONFIG_M528x)
1378 /* Set up gpio outputs for MII lines */
1379 {
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001380 volatile u16 *gpio_paspar;
1381 volatile u8 *gpio_pehlpar;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001382
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001383 gpio_paspar = (volatile u16 *) (MCF_IPSBAR + 0x100056);
1384 gpio_pehlpar = (volatile u16 *) (MCF_IPSBAR + 0x100058);
1385 *gpio_paspar |= 0x0f00;
1386 *gpio_pehlpar = 0xc0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 }
1388#endif
Mike Cruseb8a94b32007-07-30 16:29:29 +10001389
1390#if defined(CONFIG_M527x)
1391 /* Set up gpio outputs for MII lines */
1392 {
1393 volatile u8 *gpio_par_fec;
1394 volatile u16 *gpio_par_feci2c;
1395
1396 gpio_par_feci2c = (volatile u16 *)(MCF_IPSBAR + 0x100082);
1397 /* Set up gpio outputs for FEC0 MII lines */
1398 gpio_par_fec = (volatile u8 *)(MCF_IPSBAR + 0x100078);
1399
1400 *gpio_par_feci2c |= 0x0f00;
1401 *gpio_par_fec |= 0xc0;
1402
1403#if defined(CONFIG_FEC2)
1404 /* Set up gpio outputs for FEC1 MII lines */
1405 gpio_par_fec = (volatile u8 *)(MCF_IPSBAR + 0x100079);
1406
1407 *gpio_par_feci2c |= 0x00a0;
1408 *gpio_par_fec |= 0xc0;
1409#endif /* CONFIG_FEC2 */
1410 }
1411#endif /* CONFIG_M527x */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
1413
1414static void __inline__ fec_set_mii(struct net_device *dev, struct fec_enet_private *fep)
1415{
1416 volatile fec_t *fecp;
1417
1418 fecp = fep->hwp;
1419 fecp->fec_r_cntrl = OPT_FRAME_SIZE | 0x04;
1420 fecp->fec_x_cntrl = 0x00;
1421
1422 /*
1423 * Set MII speed to 2.5 MHz
1424 * See 5282 manual section 17.5.4.7: MSCR
1425 */
1426 fep->phy_speed = ((((MCF_CLK / 2) / (2500000 / 10)) + 5) / 10) * 2;
1427 fecp->fec_mii_speed = fep->phy_speed;
1428
1429 fec_restart(dev, 0);
1430}
1431
1432static void __inline__ fec_get_mac(struct net_device *dev)
1433{
1434 struct fec_enet_private *fep = netdev_priv(dev);
1435 volatile fec_t *fecp;
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001436 unsigned char *iap, tmpaddr[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438 fecp = fep->hwp;
1439
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001440 if (FEC_FLASHMAC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 /*
1442 * Get MAC address from FLASH.
1443 * If it is all 1's or 0's, use the default.
1444 */
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001445 iap = FEC_FLASHMAC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 if ((iap[0] == 0) && (iap[1] == 0) && (iap[2] == 0) &&
1447 (iap[3] == 0) && (iap[4] == 0) && (iap[5] == 0))
1448 iap = fec_mac_default;
1449 if ((iap[0] == 0xff) && (iap[1] == 0xff) && (iap[2] == 0xff) &&
1450 (iap[3] == 0xff) && (iap[4] == 0xff) && (iap[5] == 0xff))
1451 iap = fec_mac_default;
1452 } else {
1453 *((unsigned long *) &tmpaddr[0]) = fecp->fec_addr_low;
1454 *((unsigned short *) &tmpaddr[4]) = (fecp->fec_addr_high >> 16);
1455 iap = &tmpaddr[0];
1456 }
1457
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001458 memcpy(dev->dev_addr, iap, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
1460 /* Adjust MAC if using default MAC address */
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001461 if (iap == fec_mac_default)
1462 dev->dev_addr[ETH_ALEN-1] = fec_mac_default[ETH_ALEN-1] + fep->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463}
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465static void __inline__ fec_disable_phy_intr(void)
1466{
1467}
1468
1469static void __inline__ fec_phy_ack_intr(void)
1470{
1471}
1472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473/* ------------------------------------------------------------------------- */
1474
Greg Ungerer562d2f82005-11-07 14:09:50 +10001475#elif defined(CONFIG_M520x)
1476
1477/*
1478 * Code specific to Coldfire 520x
1479 */
1480static void __inline__ fec_request_intrs(struct net_device *dev)
1481{
1482 struct fec_enet_private *fep;
1483 int b;
1484 static const struct idesc {
1485 char *name;
1486 unsigned short irq;
1487 } *idp, id[] = {
1488 { "fec(TXF)", 23 },
Greg Ungerer562d2f82005-11-07 14:09:50 +10001489 { "fec(RXF)", 27 },
Greg Ungerer562d2f82005-11-07 14:09:50 +10001490 { "fec(MII)", 29 },
Greg Ungerer562d2f82005-11-07 14:09:50 +10001491 { NULL },
1492 };
1493
1494 fep = netdev_priv(dev);
1495 b = 64 + 13;
1496
1497 /* Setup interrupt handlers. */
1498 for (idp = id; idp->name; idp++) {
Greg Ungerer0a504772008-03-04 16:52:01 +10001499 if (request_irq(b+idp->irq, fec_enet_interrupt, IRQF_DISABLED, idp->name,dev) != 0)
Greg Ungerer562d2f82005-11-07 14:09:50 +10001500 printk("FEC: Could not allocate %s IRQ(%d)!\n", idp->name, b+idp->irq);
1501 }
1502
1503 /* Unmask interrupts at ColdFire interrupt controller */
1504 {
1505 volatile unsigned char *icrp;
1506 volatile unsigned long *imrp;
1507
1508 icrp = (volatile unsigned char *) (MCF_IPSBAR + MCFICM_INTC0 +
1509 MCFINTC_ICR0);
1510 for (b = 36; (b < 49); b++)
1511 icrp[b] = 0x04;
1512 imrp = (volatile unsigned long *) (MCF_IPSBAR + MCFICM_INTC0 +
1513 MCFINTC_IMRH);
1514 *imrp &= ~0x0001FFF0;
1515 }
1516 *(volatile unsigned char *)(MCF_IPSBAR + MCF_GPIO_PAR_FEC) |= 0xf0;
1517 *(volatile unsigned char *)(MCF_IPSBAR + MCF_GPIO_PAR_FECI2C) |= 0x0f;
1518}
1519
1520static void __inline__ fec_set_mii(struct net_device *dev, struct fec_enet_private *fep)
1521{
1522 volatile fec_t *fecp;
1523
1524 fecp = fep->hwp;
1525 fecp->fec_r_cntrl = OPT_FRAME_SIZE | 0x04;
1526 fecp->fec_x_cntrl = 0x00;
1527
1528 /*
1529 * Set MII speed to 2.5 MHz
1530 * See 5282 manual section 17.5.4.7: MSCR
1531 */
1532 fep->phy_speed = ((((MCF_CLK / 2) / (2500000 / 10)) + 5) / 10) * 2;
1533 fecp->fec_mii_speed = fep->phy_speed;
1534
1535 fec_restart(dev, 0);
1536}
1537
1538static void __inline__ fec_get_mac(struct net_device *dev)
1539{
1540 struct fec_enet_private *fep = netdev_priv(dev);
1541 volatile fec_t *fecp;
1542 unsigned char *iap, tmpaddr[ETH_ALEN];
1543
1544 fecp = fep->hwp;
1545
1546 if (FEC_FLASHMAC) {
1547 /*
1548 * Get MAC address from FLASH.
1549 * If it is all 1's or 0's, use the default.
1550 */
1551 iap = FEC_FLASHMAC;
1552 if ((iap[0] == 0) && (iap[1] == 0) && (iap[2] == 0) &&
1553 (iap[3] == 0) && (iap[4] == 0) && (iap[5] == 0))
1554 iap = fec_mac_default;
1555 if ((iap[0] == 0xff) && (iap[1] == 0xff) && (iap[2] == 0xff) &&
1556 (iap[3] == 0xff) && (iap[4] == 0xff) && (iap[5] == 0xff))
1557 iap = fec_mac_default;
1558 } else {
1559 *((unsigned long *) &tmpaddr[0]) = fecp->fec_addr_low;
1560 *((unsigned short *) &tmpaddr[4]) = (fecp->fec_addr_high >> 16);
1561 iap = &tmpaddr[0];
1562 }
1563
1564 memcpy(dev->dev_addr, iap, ETH_ALEN);
1565
1566 /* Adjust MAC if using default MAC address */
1567 if (iap == fec_mac_default)
1568 dev->dev_addr[ETH_ALEN-1] = fec_mac_default[ETH_ALEN-1] + fep->index;
1569}
1570
Greg Ungerer562d2f82005-11-07 14:09:50 +10001571static void __inline__ fec_disable_phy_intr(void)
1572{
1573}
1574
1575static void __inline__ fec_phy_ack_intr(void)
1576{
1577}
1578
Greg Ungerer562d2f82005-11-07 14:09:50 +10001579/* ------------------------------------------------------------------------- */
1580
Matt Waddel6b265292006-06-27 13:10:56 +10001581#elif defined(CONFIG_M532x)
1582/*
1583 * Code specific for M532x
1584 */
1585static void __inline__ fec_request_intrs(struct net_device *dev)
1586{
1587 struct fec_enet_private *fep;
1588 int b;
1589 static const struct idesc {
1590 char *name;
1591 unsigned short irq;
1592 } *idp, id[] = {
1593 { "fec(TXF)", 36 },
Matt Waddel6b265292006-06-27 13:10:56 +10001594 { "fec(RXF)", 40 },
Matt Waddel6b265292006-06-27 13:10:56 +10001595 { "fec(MII)", 42 },
Matt Waddel6b265292006-06-27 13:10:56 +10001596 { NULL },
1597 };
1598
1599 fep = netdev_priv(dev);
1600 b = (fep->index) ? 128 : 64;
1601
1602 /* Setup interrupt handlers. */
1603 for (idp = id; idp->name; idp++) {
Greg Ungerer0a504772008-03-04 16:52:01 +10001604 if (request_irq(b+idp->irq, fec_enet_interrupt, IRQF_DISABLED, idp->name,dev) != 0)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001605 printk("FEC: Could not allocate %s IRQ(%d)!\n",
Matt Waddel6b265292006-06-27 13:10:56 +10001606 idp->name, b+idp->irq);
1607 }
1608
1609 /* Unmask interrupts */
1610 MCF_INTC0_ICR36 = 0x2;
1611 MCF_INTC0_ICR37 = 0x2;
1612 MCF_INTC0_ICR38 = 0x2;
1613 MCF_INTC0_ICR39 = 0x2;
1614 MCF_INTC0_ICR40 = 0x2;
1615 MCF_INTC0_ICR41 = 0x2;
1616 MCF_INTC0_ICR42 = 0x2;
1617 MCF_INTC0_ICR43 = 0x2;
1618 MCF_INTC0_ICR44 = 0x2;
1619 MCF_INTC0_ICR45 = 0x2;
1620 MCF_INTC0_ICR46 = 0x2;
1621 MCF_INTC0_ICR47 = 0x2;
1622 MCF_INTC0_ICR48 = 0x2;
1623
1624 MCF_INTC0_IMRH &= ~(
1625 MCF_INTC_IMRH_INT_MASK36 |
1626 MCF_INTC_IMRH_INT_MASK37 |
1627 MCF_INTC_IMRH_INT_MASK38 |
1628 MCF_INTC_IMRH_INT_MASK39 |
1629 MCF_INTC_IMRH_INT_MASK40 |
1630 MCF_INTC_IMRH_INT_MASK41 |
1631 MCF_INTC_IMRH_INT_MASK42 |
1632 MCF_INTC_IMRH_INT_MASK43 |
1633 MCF_INTC_IMRH_INT_MASK44 |
1634 MCF_INTC_IMRH_INT_MASK45 |
1635 MCF_INTC_IMRH_INT_MASK46 |
1636 MCF_INTC_IMRH_INT_MASK47 |
1637 MCF_INTC_IMRH_INT_MASK48 );
1638
1639 /* Set up gpio outputs for MII lines */
1640 MCF_GPIO_PAR_FECI2C |= (0 |
1641 MCF_GPIO_PAR_FECI2C_PAR_MDC_EMDC |
1642 MCF_GPIO_PAR_FECI2C_PAR_MDIO_EMDIO);
1643 MCF_GPIO_PAR_FEC = (0 |
1644 MCF_GPIO_PAR_FEC_PAR_FEC_7W_FEC |
1645 MCF_GPIO_PAR_FEC_PAR_FEC_MII_FEC);
1646}
1647
1648static void __inline__ fec_set_mii(struct net_device *dev, struct fec_enet_private *fep)
1649{
1650 volatile fec_t *fecp;
1651
1652 fecp = fep->hwp;
1653 fecp->fec_r_cntrl = OPT_FRAME_SIZE | 0x04;
1654 fecp->fec_x_cntrl = 0x00;
1655
1656 /*
1657 * Set MII speed to 2.5 MHz
1658 */
1659 fep->phy_speed = ((((MCF_CLK / 2) / (2500000 / 10)) + 5) / 10) * 2;
1660 fecp->fec_mii_speed = fep->phy_speed;
1661
1662 fec_restart(dev, 0);
1663}
1664
1665static void __inline__ fec_get_mac(struct net_device *dev)
1666{
1667 struct fec_enet_private *fep = netdev_priv(dev);
1668 volatile fec_t *fecp;
1669 unsigned char *iap, tmpaddr[ETH_ALEN];
1670
1671 fecp = fep->hwp;
1672
1673 if (FEC_FLASHMAC) {
1674 /*
1675 * Get MAC address from FLASH.
1676 * If it is all 1's or 0's, use the default.
1677 */
1678 iap = FEC_FLASHMAC;
1679 if ((iap[0] == 0) && (iap[1] == 0) && (iap[2] == 0) &&
1680 (iap[3] == 0) && (iap[4] == 0) && (iap[5] == 0))
1681 iap = fec_mac_default;
1682 if ((iap[0] == 0xff) && (iap[1] == 0xff) && (iap[2] == 0xff) &&
1683 (iap[3] == 0xff) && (iap[4] == 0xff) && (iap[5] == 0xff))
1684 iap = fec_mac_default;
1685 } else {
1686 *((unsigned long *) &tmpaddr[0]) = fecp->fec_addr_low;
1687 *((unsigned short *) &tmpaddr[4]) = (fecp->fec_addr_high >> 16);
1688 iap = &tmpaddr[0];
1689 }
1690
1691 memcpy(dev->dev_addr, iap, ETH_ALEN);
1692
1693 /* Adjust MAC if using default MAC address */
1694 if (iap == fec_mac_default)
1695 dev->dev_addr[ETH_ALEN-1] = fec_mac_default[ETH_ALEN-1] + fep->index;
1696}
1697
Matt Waddel6b265292006-06-27 13:10:56 +10001698static void __inline__ fec_disable_phy_intr(void)
1699{
1700}
1701
1702static void __inline__ fec_phy_ack_intr(void)
1703{
1704}
1705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706#endif
1707
1708/* ------------------------------------------------------------------------- */
1709
1710static void mii_display_status(struct net_device *dev)
1711{
1712 struct fec_enet_private *fep = netdev_priv(dev);
1713 volatile uint *s = &(fep->phy_status);
1714
1715 if (!fep->link && !fep->old_link) {
1716 /* Link is still down - don't print anything */
1717 return;
1718 }
1719
1720 printk("%s: status: ", dev->name);
1721
1722 if (!fep->link) {
1723 printk("link down");
1724 } else {
1725 printk("link up");
1726
1727 switch(*s & PHY_STAT_SPMASK) {
1728 case PHY_STAT_100FDX: printk(", 100MBit Full Duplex"); break;
1729 case PHY_STAT_100HDX: printk(", 100MBit Half Duplex"); break;
1730 case PHY_STAT_10FDX: printk(", 10MBit Full Duplex"); break;
1731 case PHY_STAT_10HDX: printk(", 10MBit Half Duplex"); break;
1732 default:
1733 printk(", Unknown speed/duplex");
1734 }
1735
1736 if (*s & PHY_STAT_ANC)
1737 printk(", auto-negotiation complete");
1738 }
1739
1740 if (*s & PHY_STAT_FAULT)
1741 printk(", remote fault");
1742
1743 printk(".\n");
1744}
1745
Greg Ungerercb84d6e2007-07-30 16:29:09 +10001746static void mii_display_config(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747{
Greg Ungerercb84d6e2007-07-30 16:29:09 +10001748 struct fec_enet_private *fep = container_of(work, struct fec_enet_private, phy_task);
1749 struct net_device *dev = fep->netdev;
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001750 uint status = fep->phy_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
1752 /*
1753 ** When we get here, phy_task is already removed from
1754 ** the workqueue. It is thus safe to allow to reuse it.
1755 */
1756 fep->mii_phy_task_queued = 0;
1757 printk("%s: config: auto-negotiation ", dev->name);
1758
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001759 if (status & PHY_CONF_ANE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 printk("on");
1761 else
1762 printk("off");
1763
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001764 if (status & PHY_CONF_100FDX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 printk(", 100FDX");
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001766 if (status & PHY_CONF_100HDX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 printk(", 100HDX");
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001768 if (status & PHY_CONF_10FDX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 printk(", 10FDX");
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001770 if (status & PHY_CONF_10HDX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 printk(", 10HDX");
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001772 if (!(status & PHY_CONF_SPMASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 printk(", No speed/duplex selected?");
1774
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001775 if (status & PHY_CONF_LOOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 printk(", loopback enabled");
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 printk(".\n");
1779
1780 fep->sequence_done = 1;
1781}
1782
Greg Ungerercb84d6e2007-07-30 16:29:09 +10001783static void mii_relink(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784{
Greg Ungerercb84d6e2007-07-30 16:29:09 +10001785 struct fec_enet_private *fep = container_of(work, struct fec_enet_private, phy_task);
1786 struct net_device *dev = fep->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 int duplex;
1788
1789 /*
1790 ** When we get here, phy_task is already removed from
1791 ** the workqueue. It is thus safe to allow to reuse it.
1792 */
1793 fep->mii_phy_task_queued = 0;
1794 fep->link = (fep->phy_status & PHY_STAT_LINK) ? 1 : 0;
1795 mii_display_status(dev);
1796 fep->old_link = fep->link;
1797
1798 if (fep->link) {
1799 duplex = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001800 if (fep->phy_status
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 & (PHY_STAT_100FDX | PHY_STAT_10FDX))
1802 duplex = 1;
1803 fec_restart(dev, duplex);
Philippe De Muyterf909b1e2007-10-23 14:37:54 +10001804 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 fec_stop(dev);
1806
1807#if 0
1808 enable_irq(fep->mii_irq);
1809#endif
1810
1811}
1812
1813/* mii_queue_relink is called in interrupt context from mii_link_interrupt */
1814static void mii_queue_relink(uint mii_reg, struct net_device *dev)
1815{
1816 struct fec_enet_private *fep = netdev_priv(dev);
1817
1818 /*
1819 ** We cannot queue phy_task twice in the workqueue. It
1820 ** would cause an endless loop in the workqueue.
1821 ** Fortunately, if the last mii_relink entry has not yet been
1822 ** executed now, it will do the job for the current interrupt,
1823 ** which is just what we want.
1824 */
1825 if (fep->mii_phy_task_queued)
1826 return;
1827
1828 fep->mii_phy_task_queued = 1;
Greg Ungerercb84d6e2007-07-30 16:29:09 +10001829 INIT_WORK(&fep->phy_task, mii_relink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 schedule_work(&fep->phy_task);
1831}
1832
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001833/* mii_queue_config is called in interrupt context from fec_enet_mii */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834static void mii_queue_config(uint mii_reg, struct net_device *dev)
1835{
1836 struct fec_enet_private *fep = netdev_priv(dev);
1837
1838 if (fep->mii_phy_task_queued)
1839 return;
1840
1841 fep->mii_phy_task_queued = 1;
Greg Ungerercb84d6e2007-07-30 16:29:09 +10001842 INIT_WORK(&fep->phy_task, mii_display_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 schedule_work(&fep->phy_task);
1844}
1845
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10001846phy_cmd_t const phy_cmd_relink[] = {
1847 { mk_mii_read(MII_REG_CR), mii_queue_relink },
1848 { mk_mii_end, }
1849 };
1850phy_cmd_t const phy_cmd_config[] = {
1851 { mk_mii_read(MII_REG_CR), mii_queue_config },
1852 { mk_mii_end, }
1853 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
1855/* Read remainder of PHY ID.
1856*/
1857static void
1858mii_discover_phy3(uint mii_reg, struct net_device *dev)
1859{
1860 struct fec_enet_private *fep;
1861 int i;
1862
1863 fep = netdev_priv(dev);
1864 fep->phy_id |= (mii_reg & 0xffff);
1865 printk("fec: PHY @ 0x%x, ID 0x%08x", fep->phy_addr, fep->phy_id);
1866
1867 for(i = 0; phy_info[i]; i++) {
1868 if(phy_info[i]->id == (fep->phy_id >> 4))
1869 break;
1870 }
1871
1872 if (phy_info[i])
1873 printk(" -- %s\n", phy_info[i]->name);
1874 else
1875 printk(" -- unknown PHY!\n");
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 fep->phy = phy_info[i];
1878 fep->phy_id_done = 1;
1879}
1880
1881/* Scan all of the MII PHY addresses looking for someone to respond
1882 * with a valid ID. This usually happens quickly.
1883 */
1884static void
1885mii_discover_phy(uint mii_reg, struct net_device *dev)
1886{
1887 struct fec_enet_private *fep;
1888 volatile fec_t *fecp;
1889 uint phytype;
1890
1891 fep = netdev_priv(dev);
1892 fecp = fep->hwp;
1893
1894 if (fep->phy_addr < 32) {
1895 if ((phytype = (mii_reg & 0xffff)) != 0xffff && phytype != 0) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001896
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 /* Got first part of ID, now get remainder.
1898 */
1899 fep->phy_id = phytype << 16;
1900 mii_queue(dev, mk_mii_read(MII_REG_PHYIR2),
1901 mii_discover_phy3);
Philippe De Muyterf909b1e2007-10-23 14:37:54 +10001902 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 fep->phy_addr++;
1904 mii_queue(dev, mk_mii_read(MII_REG_PHYIR1),
1905 mii_discover_phy);
1906 }
1907 } else {
1908 printk("FEC: No PHY device found.\n");
1909 /* Disable external MII interface */
1910 fecp->fec_mii_speed = fep->phy_speed = 0;
1911 fec_disable_phy_intr();
1912 }
1913}
1914
1915/* This interrupt occurs when the PHY detects a link change.
1916*/
Sebastian Siewiorc1d96152008-05-01 14:04:02 +10001917#ifdef HAVE_mii_link_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +01001919mii_link_interrupt(int irq, void * dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920{
1921 struct net_device *dev = dev_id;
1922 struct fec_enet_private *fep = netdev_priv(dev);
1923
1924 fec_phy_ack_intr();
1925
1926#if 0
1927 disable_irq(fep->mii_irq); /* disable now, enable later */
1928#endif
1929
1930 mii_do_cmd(dev, fep->phy->ack_int);
1931 mii_do_cmd(dev, phy_cmd_relink); /* restart and display status */
1932
1933 return IRQ_HANDLED;
1934}
Sebastian Siewiorc1d96152008-05-01 14:04:02 +10001935#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
1937static int
1938fec_enet_open(struct net_device *dev)
1939{
1940 struct fec_enet_private *fep = netdev_priv(dev);
1941
1942 /* I should reset the ring buffers here, but I don't yet know
1943 * a simple way to do that.
1944 */
1945 fec_set_mac_address(dev);
1946
1947 fep->sequence_done = 0;
1948 fep->link = 0;
1949
1950 if (fep->phy) {
1951 mii_do_cmd(dev, fep->phy->ack_int);
1952 mii_do_cmd(dev, fep->phy->config);
1953 mii_do_cmd(dev, phy_cmd_config); /* display configuration */
1954
Matt Waddel6b265292006-06-27 13:10:56 +10001955 /* Poll until the PHY tells us its configuration
1956 * (not link state).
1957 * Request is initiated by mii_do_cmd above, but answer
1958 * comes by interrupt.
1959 * This should take about 25 usec per register at 2.5 MHz,
1960 * and we read approximately 5 registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 */
1962 while(!fep->sequence_done)
1963 schedule();
1964
1965 mii_do_cmd(dev, fep->phy->startup);
1966
1967 /* Set the initial link state to true. A lot of hardware
1968 * based on this device does not implement a PHY interrupt,
1969 * so we are never notified of link change.
1970 */
1971 fep->link = 1;
1972 } else {
1973 fep->link = 1; /* lets just try it and see */
1974 /* no phy, go full duplex, it's most likely a hub chip */
1975 fec_restart(dev, 1);
1976 }
1977
1978 netif_start_queue(dev);
1979 fep->opened = 1;
1980 return 0; /* Success */
1981}
1982
1983static int
1984fec_enet_close(struct net_device *dev)
1985{
1986 struct fec_enet_private *fep = netdev_priv(dev);
1987
1988 /* Don't know what to do yet.
1989 */
1990 fep->opened = 0;
1991 netif_stop_queue(dev);
1992 fec_stop(dev);
1993
1994 return 0;
1995}
1996
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997/* Set or clear the multicast filter for this adaptor.
1998 * Skeleton taken from sunlance driver.
1999 * The CPM Ethernet implementation allows Multicast as well as individual
2000 * MAC address filtering. Some of the drivers check to make sure it is
2001 * a group multicast address, and discard those that are not. I guess I
2002 * will do the same for now, but just remove the test if you want
2003 * individual filtering as well (do the upper net layers want or support
2004 * this kind of feature?).
2005 */
2006
2007#define HASH_BITS 6 /* #bits in hash */
2008#define CRC32_POLY 0xEDB88320
2009
2010static void set_multicast_list(struct net_device *dev)
2011{
2012 struct fec_enet_private *fep;
2013 volatile fec_t *ep;
2014 struct dev_mc_list *dmi;
2015 unsigned int i, j, bit, data, crc;
2016 unsigned char hash;
2017
2018 fep = netdev_priv(dev);
2019 ep = fep->hwp;
2020
2021 if (dev->flags&IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 ep->fec_r_cntrl |= 0x0008;
2023 } else {
2024
2025 ep->fec_r_cntrl &= ~0x0008;
2026
2027 if (dev->flags & IFF_ALLMULTI) {
2028 /* Catch all multicast addresses, so set the
2029 * filter to all 1's.
2030 */
Greg Ungerercc462f72008-05-01 13:35:34 +10002031 ep->fec_grp_hash_table_high = 0xffffffff;
2032 ep->fec_grp_hash_table_low = 0xffffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 } else {
2034 /* Clear filter and add the addresses in hash register.
2035 */
Greg Ungerercc462f72008-05-01 13:35:34 +10002036 ep->fec_grp_hash_table_high = 0;
2037 ep->fec_grp_hash_table_low = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002038
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 dmi = dev->mc_list;
2040
2041 for (j = 0; j < dev->mc_count; j++, dmi = dmi->next)
2042 {
2043 /* Only support group multicast for now.
2044 */
2045 if (!(dmi->dmi_addr[0] & 1))
2046 continue;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 /* calculate crc32 value of mac address
2049 */
2050 crc = 0xffffffff;
2051
2052 for (i = 0; i < dmi->dmi_addrlen; i++)
2053 {
2054 data = dmi->dmi_addr[i];
2055 for (bit = 0; bit < 8; bit++, data >>= 1)
2056 {
2057 crc = (crc >> 1) ^
2058 (((crc ^ data) & 1) ? CRC32_POLY : 0);
2059 }
2060 }
2061
2062 /* only upper 6 bits (HASH_BITS) are used
2063 which point to specific bit in he hash registers
2064 */
2065 hash = (crc >> (32 - HASH_BITS)) & 0x3f;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 if (hash > 31)
Greg Ungerercc462f72008-05-01 13:35:34 +10002068 ep->fec_grp_hash_table_high |= 1 << (hash - 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 else
Greg Ungerercc462f72008-05-01 13:35:34 +10002070 ep->fec_grp_hash_table_low |= 1 << hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 }
2072 }
2073 }
2074}
2075
2076/* Set a MAC change in hardware.
2077 */
2078static void
2079fec_set_mac_address(struct net_device *dev)
2080{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 volatile fec_t *fecp;
2082
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10002083 fecp = ((struct fec_enet_private *)netdev_priv(dev))->hwp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
2085 /* Set station address. */
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10002086 fecp->fec_addr_low = dev->dev_addr[3] | (dev->dev_addr[2] << 8) |
2087 (dev->dev_addr[1] << 16) | (dev->dev_addr[0] << 24);
2088 fecp->fec_addr_high = (dev->dev_addr[5] << 16) |
2089 (dev->dev_addr[4] << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
2091}
2092
2093/* Initialize the FEC Ethernet on 860T (or ColdFire 5272).
2094 */
2095 /*
2096 * XXX: We need to clean up on failure exits here.
2097 */
2098int __init fec_enet_init(struct net_device *dev)
2099{
2100 struct fec_enet_private *fep = netdev_priv(dev);
2101 unsigned long mem_addr;
2102 volatile cbd_t *bdp;
2103 cbd_t *cbd_base;
2104 volatile fec_t *fecp;
2105 int i, j;
2106 static int index = 0;
2107
2108 /* Only allow us to be probed once. */
2109 if (index >= FEC_MAX_PORTS)
2110 return -ENXIO;
2111
Greg Ungerer562d2f82005-11-07 14:09:50 +10002112 /* Allocate memory for buffer descriptors.
2113 */
Sascha Hauer4661e752009-01-28 23:03:07 +00002114 mem_addr = (unsigned long)dma_alloc_coherent(NULL, PAGE_SIZE,
2115 &fep->bd_dma, GFP_KERNEL);
Greg Ungerer562d2f82005-11-07 14:09:50 +10002116 if (mem_addr == 0) {
2117 printk("FEC: allocate descriptor memory failed?\n");
2118 return -ENOMEM;
2119 }
2120
Sebastian Siewior3b2b74c2008-05-01 14:08:12 +10002121 spin_lock_init(&fep->hw_lock);
2122 spin_lock_init(&fep->mii_lock);
2123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 /* Create an Ethernet device instance.
2125 */
2126 fecp = (volatile fec_t *) fec_hw[index];
2127
2128 fep->index = index;
2129 fep->hwp = fecp;
Greg Ungerercb84d6e2007-07-30 16:29:09 +10002130 fep->netdev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
2132 /* Whack a reset. We should wait for this.
2133 */
2134 fecp->fec_ecntrl = 1;
2135 udelay(10);
2136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 /* Set the Ethernet address. If using multiple Enets on the 8xx,
2138 * this needs some work to get unique addresses.
2139 *
2140 * This is our default MAC address unless the user changes
2141 * it via eth_mac_addr (our dev->set_mac_addr handler).
2142 */
2143 fec_get_mac(dev);
2144
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 cbd_base = (cbd_t *)mem_addr;
2146 /* XXX: missing check for allocation failure */
2147
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 /* Set receive and transmit descriptor base.
2149 */
2150 fep->rx_bd_base = cbd_base;
2151 fep->tx_bd_base = cbd_base + RX_RING_SIZE;
2152
2153 fep->dirty_tx = fep->cur_tx = fep->tx_bd_base;
2154 fep->cur_rx = fep->rx_bd_base;
2155
2156 fep->skb_cur = fep->skb_dirty = 0;
2157
2158 /* Initialize the receive buffer descriptors.
2159 */
2160 bdp = fep->rx_bd_base;
2161 for (i=0; i<FEC_ENET_RX_PAGES; i++) {
2162
2163 /* Allocate a page.
2164 */
2165 mem_addr = __get_free_page(GFP_KERNEL);
2166 /* XXX: missing check for allocation failure */
2167
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 /* Initialize the BD for every fragment in the page.
2169 */
2170 for (j=0; j<FEC_ENET_RX_FRPPG; j++) {
2171 bdp->cbd_sc = BD_ENET_RX_EMPTY;
2172 bdp->cbd_bufaddr = __pa(mem_addr);
2173 mem_addr += FEC_ENET_RX_FRSIZE;
2174 bdp++;
2175 }
2176 }
2177
2178 /* Set the last buffer to wrap.
2179 */
2180 bdp--;
2181 bdp->cbd_sc |= BD_SC_WRAP;
2182
2183 /* ...and the same for transmmit.
2184 */
2185 bdp = fep->tx_bd_base;
2186 for (i=0, j=FEC_ENET_TX_FRPPG; i<TX_RING_SIZE; i++) {
2187 if (j >= FEC_ENET_TX_FRPPG) {
2188 mem_addr = __get_free_page(GFP_KERNEL);
2189 j = 1;
2190 } else {
2191 mem_addr += FEC_ENET_TX_FRSIZE;
2192 j++;
2193 }
2194 fep->tx_bounce[i] = (unsigned char *) mem_addr;
2195
2196 /* Initialize the BD for every fragment in the page.
2197 */
2198 bdp->cbd_sc = 0;
2199 bdp->cbd_bufaddr = 0;
2200 bdp++;
2201 }
2202
2203 /* Set the last buffer to wrap.
2204 */
2205 bdp--;
2206 bdp->cbd_sc |= BD_SC_WRAP;
2207
2208 /* Set receive and transmit descriptor base.
2209 */
Sascha Hauer4661e752009-01-28 23:03:07 +00002210 fecp->fec_r_des_start = fep->bd_dma;
2211 fecp->fec_x_des_start = (unsigned long)fep->bd_dma + sizeof(cbd_t)
2212 * RX_RING_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
2214 /* Install our interrupt handlers. This varies depending on
2215 * the architecture.
2216 */
2217 fec_request_intrs(dev);
2218
Greg Ungerercc462f72008-05-01 13:35:34 +10002219 fecp->fec_grp_hash_table_high = 0;
2220 fecp->fec_grp_hash_table_low = 0;
Greg Ungerer562d2f82005-11-07 14:09:50 +10002221 fecp->fec_r_buff_size = PKT_MAXBLR_SIZE;
2222 fecp->fec_ecntrl = 2;
Matt Waddel6b265292006-06-27 13:10:56 +10002223 fecp->fec_r_des_active = 0;
Greg Ungerercc462f72008-05-01 13:35:34 +10002224#ifndef CONFIG_M5272
2225 fecp->fec_hash_table_high = 0;
2226 fecp->fec_hash_table_low = 0;
2227#endif
Greg Ungerer562d2f82005-11-07 14:09:50 +10002228
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 dev->base_addr = (unsigned long)fecp;
2230
2231 /* The FEC Ethernet specific entries in the device structure. */
2232 dev->open = fec_enet_open;
2233 dev->hard_start_xmit = fec_enet_start_xmit;
2234 dev->tx_timeout = fec_timeout;
2235 dev->watchdog_timeo = TX_TIMEOUT;
2236 dev->stop = fec_enet_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 dev->set_multicast_list = set_multicast_list;
2238
2239 for (i=0; i<NMII-1; i++)
2240 mii_cmds[i].mii_next = &mii_cmds[i+1];
2241 mii_free = mii_cmds;
2242
2243 /* setup MII interface */
2244 fec_set_mii(dev, fep);
2245
Matt Waddel6b265292006-06-27 13:10:56 +10002246 /* Clear and enable interrupts */
2247 fecp->fec_ievent = 0xffc00000;
Greg Ungerer398ec922008-05-01 13:47:09 +10002248 fecp->fec_imask = (FEC_ENET_TXF | FEC_ENET_RXF | FEC_ENET_MII);
Matt Waddel6b265292006-06-27 13:10:56 +10002249
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 /* Queue up command to detect the PHY and initialize the
2251 * remainder of the interface.
2252 */
2253 fep->phy_id_done = 0;
2254 fep->phy_addr = 0;
2255 mii_queue(dev, mk_mii_read(MII_REG_PHYIR1), mii_discover_phy);
2256
2257 index++;
2258 return 0;
2259}
2260
2261/* This function is called to start or restart the FEC during a link
2262 * change. This only happens when switching between half and full
2263 * duplex.
2264 */
2265static void
2266fec_restart(struct net_device *dev, int duplex)
2267{
2268 struct fec_enet_private *fep;
2269 volatile cbd_t *bdp;
2270 volatile fec_t *fecp;
2271 int i;
2272
2273 fep = netdev_priv(dev);
2274 fecp = fep->hwp;
2275
2276 /* Whack a reset. We should wait for this.
2277 */
2278 fecp->fec_ecntrl = 1;
2279 udelay(10);
2280
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 /* Clear any outstanding interrupt.
2282 */
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10002283 fecp->fec_ievent = 0xffc00000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
2285 /* Set station address.
2286 */
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10002287 fec_set_mac_address(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
2289 /* Reset all multicast.
2290 */
Greg Ungerercc462f72008-05-01 13:35:34 +10002291 fecp->fec_grp_hash_table_high = 0;
2292 fecp->fec_grp_hash_table_low = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
2294 /* Set maximum receive buffer size.
2295 */
2296 fecp->fec_r_buff_size = PKT_MAXBLR_SIZE;
2297
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 /* Set receive and transmit descriptor base.
2299 */
Sascha Hauer4661e752009-01-28 23:03:07 +00002300 fecp->fec_r_des_start = fep->bd_dma;
2301 fecp->fec_x_des_start = (unsigned long)fep->bd_dma + sizeof(cbd_t)
2302 * RX_RING_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
2304 fep->dirty_tx = fep->cur_tx = fep->tx_bd_base;
2305 fep->cur_rx = fep->rx_bd_base;
2306
2307 /* Reset SKB transmit buffers.
2308 */
2309 fep->skb_cur = fep->skb_dirty = 0;
2310 for (i=0; i<=TX_RING_MOD_MASK; i++) {
2311 if (fep->tx_skbuff[i] != NULL) {
2312 dev_kfree_skb_any(fep->tx_skbuff[i]);
2313 fep->tx_skbuff[i] = NULL;
2314 }
2315 }
2316
2317 /* Initialize the receive buffer descriptors.
2318 */
2319 bdp = fep->rx_bd_base;
2320 for (i=0; i<RX_RING_SIZE; i++) {
2321
2322 /* Initialize the BD for every fragment in the page.
2323 */
2324 bdp->cbd_sc = BD_ENET_RX_EMPTY;
2325 bdp++;
2326 }
2327
2328 /* Set the last buffer to wrap.
2329 */
2330 bdp--;
2331 bdp->cbd_sc |= BD_SC_WRAP;
2332
2333 /* ...and the same for transmmit.
2334 */
2335 bdp = fep->tx_bd_base;
2336 for (i=0; i<TX_RING_SIZE; i++) {
2337
2338 /* Initialize the BD for every fragment in the page.
2339 */
2340 bdp->cbd_sc = 0;
2341 bdp->cbd_bufaddr = 0;
2342 bdp++;
2343 }
2344
2345 /* Set the last buffer to wrap.
2346 */
2347 bdp--;
2348 bdp->cbd_sc |= BD_SC_WRAP;
2349
2350 /* Enable MII mode.
2351 */
2352 if (duplex) {
2353 fecp->fec_r_cntrl = OPT_FRAME_SIZE | 0x04;/* MII enable */
2354 fecp->fec_x_cntrl = 0x04; /* FD enable */
Philippe De Muyterf909b1e2007-10-23 14:37:54 +10002355 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 /* MII enable|No Rcv on Xmit */
2357 fecp->fec_r_cntrl = OPT_FRAME_SIZE | 0x06;
2358 fecp->fec_x_cntrl = 0x00;
2359 }
2360 fep->full_duplex = duplex;
2361
2362 /* Set MII speed.
2363 */
2364 fecp->fec_mii_speed = fep->phy_speed;
2365
2366 /* And last, enable the transmit and receive processing.
2367 */
2368 fecp->fec_ecntrl = 2;
Matt Waddel6b265292006-06-27 13:10:56 +10002369 fecp->fec_r_des_active = 0;
2370
2371 /* Enable interrupts we wish to service.
2372 */
Greg Ungerer398ec922008-05-01 13:47:09 +10002373 fecp->fec_imask = (FEC_ENET_TXF | FEC_ENET_RXF | FEC_ENET_MII);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374}
2375
2376static void
2377fec_stop(struct net_device *dev)
2378{
2379 volatile fec_t *fecp;
2380 struct fec_enet_private *fep;
2381
2382 fep = netdev_priv(dev);
2383 fecp = fep->hwp;
2384
Philippe De Muyter677177c2006-06-27 13:05:33 +10002385 /*
2386 ** We cannot expect a graceful transmit stop without link !!!
2387 */
2388 if (fep->link)
2389 {
2390 fecp->fec_x_cntrl = 0x01; /* Graceful transmit stop */
2391 udelay(10);
2392 if (!(fecp->fec_ievent & FEC_ENET_GRA))
2393 printk("fec_stop : Graceful transmit stop did not complete !\n");
2394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
2396 /* Whack a reset. We should wait for this.
2397 */
2398 fecp->fec_ecntrl = 1;
2399 udelay(10);
2400
2401 /* Clear outstanding MII command interrupts.
2402 */
2403 fecp->fec_ievent = FEC_ENET_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
2405 fecp->fec_imask = FEC_ENET_MII;
2406 fecp->fec_mii_speed = fep->phy_speed;
2407}
2408
2409static int __init fec_enet_module_init(void)
2410{
2411 struct net_device *dev;
Sebastian Siewiorc1d96152008-05-01 14:04:02 +10002412 int i, err;
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10002413
2414 printk("FEC ENET Version 0.2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
2416 for (i = 0; (i < FEC_MAX_PORTS); i++) {
2417 dev = alloc_etherdev(sizeof(struct fec_enet_private));
2418 if (!dev)
2419 return -ENOMEM;
2420 err = fec_enet_init(dev);
2421 if (err) {
2422 free_netdev(dev);
2423 continue;
2424 }
2425 if (register_netdev(dev) != 0) {
2426 /* XXX: missing cleanup here */
2427 free_netdev(dev);
2428 return -EIO;
2429 }
Greg Ungerer7dd6a2a2005-09-12 11:18:10 +10002430
Johannes Berge1749612008-10-27 15:59:26 -07002431 printk("%s: ethernet %pM\n", dev->name, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 }
2433 return 0;
2434}
2435
2436module_init(fec_enet_module_init);
2437
2438MODULE_LICENSE("GPL");