1 // SPDX-License-Identifier: GPL-2.0
2 /* sunqe.c: Sparc QuadEthernet 10baseT SBUS card driver.
3 * Once again I am out to prove that every ethernet
4 * controller out there can be most efficiently programmed
5 * if you make it look like a LANCE.
7 * Copyright (C) 1996, 1999, 2003, 2006, 2008 David S. Miller (davem@davemloft.net)
10 #include <linux/module.h>
11 #include <linux/kernel.h>
12 #include <linux/types.h>
13 #include <linux/errno.h>
14 #include <linux/fcntl.h>
15 #include <linux/interrupt.h>
16 #include <linux/ioport.h>
18 #include <linux/slab.h>
19 #include <linux/string.h>
20 #include <linux/delay.h>
21 #include <linux/init.h>
22 #include <linux/crc32.h>
23 #include <linux/netdevice.h>
24 #include <linux/etherdevice.h>
25 #include <linux/skbuff.h>
26 #include <linux/ethtool.h>
27 #include <linux/bitops.h>
28 #include <linux/dma-mapping.h>
30 #include <linux/of_device.h>
34 #include <asm/byteorder.h>
35 #include <asm/idprom.h>
36 #include <asm/openprom.h>
37 #include <asm/oplib.h>
38 #include <asm/auxio.h>
39 #include <asm/pgtable.h>
44 #define DRV_NAME "sunqe"
45 #define DRV_VERSION "4.1"
46 #define DRV_RELDATE "August 27, 2008"
47 #define DRV_AUTHOR "David S. Miller (davem@davemloft.net)"
49 static char version
[] =
50 DRV_NAME
".c:v" DRV_VERSION
" " DRV_RELDATE
" " DRV_AUTHOR
"\n";
52 MODULE_VERSION(DRV_VERSION
);
53 MODULE_AUTHOR(DRV_AUTHOR
);
54 MODULE_DESCRIPTION("Sun QuadEthernet 10baseT SBUS card driver");
55 MODULE_LICENSE("GPL");
57 static struct sunqec
*root_qec_dev
;
59 static void qe_set_multicast(struct net_device
*dev
);
61 #define QEC_RESET_TRIES 200
63 static inline int qec_global_reset(void __iomem
*gregs
)
65 int tries
= QEC_RESET_TRIES
;
67 sbus_writel(GLOB_CTRL_RESET
, gregs
+ GLOB_CTRL
);
69 u32 tmp
= sbus_readl(gregs
+ GLOB_CTRL
);
70 if (tmp
& GLOB_CTRL_RESET
) {
78 printk(KERN_ERR
"QuadEther: AIEEE cannot reset the QEC!\n");
82 #define MACE_RESET_RETRIES 200
83 #define QE_RESET_RETRIES 200
85 static inline int qe_stop(struct sunqe
*qep
)
87 void __iomem
*cregs
= qep
->qcregs
;
88 void __iomem
*mregs
= qep
->mregs
;
91 /* Reset the MACE, then the QEC channel. */
92 sbus_writeb(MREGS_BCONFIG_RESET
, mregs
+ MREGS_BCONFIG
);
93 tries
= MACE_RESET_RETRIES
;
95 u8 tmp
= sbus_readb(mregs
+ MREGS_BCONFIG
);
96 if (tmp
& MREGS_BCONFIG_RESET
) {
103 printk(KERN_ERR
"QuadEther: AIEEE cannot reset the MACE!\n");
107 sbus_writel(CREG_CTRL_RESET
, cregs
+ CREG_CTRL
);
108 tries
= QE_RESET_RETRIES
;
110 u32 tmp
= sbus_readl(cregs
+ CREG_CTRL
);
111 if (tmp
& CREG_CTRL_RESET
) {
118 printk(KERN_ERR
"QuadEther: Cannot reset QE channel!\n");
124 static void qe_init_rings(struct sunqe
*qep
)
126 struct qe_init_block
*qb
= qep
->qe_block
;
127 struct sunqe_buffers
*qbufs
= qep
->buffers
;
128 __u32 qbufs_dvma
= (__u32
)qep
->buffers_dvma
;
131 qep
->rx_new
= qep
->rx_old
= qep
->tx_new
= qep
->tx_old
= 0;
132 memset(qb
, 0, sizeof(struct qe_init_block
));
133 memset(qbufs
, 0, sizeof(struct sunqe_buffers
));
134 for (i
= 0; i
< RX_RING_SIZE
; i
++) {
135 qb
->qe_rxd
[i
].rx_addr
= qbufs_dvma
+ qebuf_offset(rx_buf
, i
);
136 qb
->qe_rxd
[i
].rx_flags
=
137 (RXD_OWN
| ((RXD_PKT_SZ
) & RXD_LENGTH
));
141 static int qe_init(struct sunqe
*qep
, int from_irq
)
143 struct sunqec
*qecp
= qep
->parent
;
144 void __iomem
*cregs
= qep
->qcregs
;
145 void __iomem
*mregs
= qep
->mregs
;
146 void __iomem
*gregs
= qecp
->gregs
;
147 unsigned char *e
= &qep
->dev
->dev_addr
[0];
148 __u32 qblk_dvma
= (__u32
)qep
->qblock_dvma
;
156 /* Setup initial rx/tx init block pointers. */
157 sbus_writel(qblk_dvma
+ qib_offset(qe_rxd
, 0), cregs
+ CREG_RXDS
);
158 sbus_writel(qblk_dvma
+ qib_offset(qe_txd
, 0), cregs
+ CREG_TXDS
);
160 /* Enable/mask the various irq's. */
161 sbus_writel(0, cregs
+ CREG_RIMASK
);
162 sbus_writel(1, cregs
+ CREG_TIMASK
);
164 sbus_writel(0, cregs
+ CREG_QMASK
);
165 sbus_writel(CREG_MMASK_RXCOLL
, cregs
+ CREG_MMASK
);
167 /* Setup the FIFO pointers into QEC local memory. */
168 tmp
= qep
->channel
* sbus_readl(gregs
+ GLOB_MSIZE
);
169 sbus_writel(tmp
, cregs
+ CREG_RXRBUFPTR
);
170 sbus_writel(tmp
, cregs
+ CREG_RXWBUFPTR
);
172 tmp
= sbus_readl(cregs
+ CREG_RXRBUFPTR
) +
173 sbus_readl(gregs
+ GLOB_RSIZE
);
174 sbus_writel(tmp
, cregs
+ CREG_TXRBUFPTR
);
175 sbus_writel(tmp
, cregs
+ CREG_TXWBUFPTR
);
177 /* Clear the channel collision counter. */
178 sbus_writel(0, cregs
+ CREG_CCNT
);
180 /* For 10baseT, inter frame space nor throttle seems to be necessary. */
181 sbus_writel(0, cregs
+ CREG_PIPG
);
183 /* Now dork with the AMD MACE. */
184 sbus_writeb(MREGS_PHYCONFIG_AUTO
, mregs
+ MREGS_PHYCONFIG
);
185 sbus_writeb(MREGS_TXFCNTL_AUTOPAD
, mregs
+ MREGS_TXFCNTL
);
186 sbus_writeb(0, mregs
+ MREGS_RXFCNTL
);
188 /* The QEC dma's the rx'd packets from local memory out to main memory,
189 * and therefore it interrupts when the packet reception is "complete".
190 * So don't listen for the MACE talking about it.
192 sbus_writeb(MREGS_IMASK_COLL
| MREGS_IMASK_RXIRQ
, mregs
+ MREGS_IMASK
);
193 sbus_writeb(MREGS_BCONFIG_BSWAP
| MREGS_BCONFIG_64TS
, mregs
+ MREGS_BCONFIG
);
194 sbus_writeb((MREGS_FCONFIG_TXF16
| MREGS_FCONFIG_RXF32
|
195 MREGS_FCONFIG_RFWU
| MREGS_FCONFIG_TFWU
),
196 mregs
+ MREGS_FCONFIG
);
198 /* Only usable interface on QuadEther is twisted pair. */
199 sbus_writeb(MREGS_PLSCONFIG_TP
, mregs
+ MREGS_PLSCONFIG
);
201 /* Tell MACE we are changing the ether address. */
202 sbus_writeb(MREGS_IACONFIG_ACHNGE
| MREGS_IACONFIG_PARESET
,
203 mregs
+ MREGS_IACONFIG
);
204 while ((sbus_readb(mregs
+ MREGS_IACONFIG
) & MREGS_IACONFIG_ACHNGE
) != 0)
206 sbus_writeb(e
[0], mregs
+ MREGS_ETHADDR
);
207 sbus_writeb(e
[1], mregs
+ MREGS_ETHADDR
);
208 sbus_writeb(e
[2], mregs
+ MREGS_ETHADDR
);
209 sbus_writeb(e
[3], mregs
+ MREGS_ETHADDR
);
210 sbus_writeb(e
[4], mregs
+ MREGS_ETHADDR
);
211 sbus_writeb(e
[5], mregs
+ MREGS_ETHADDR
);
213 /* Clear out the address filter. */
214 sbus_writeb(MREGS_IACONFIG_ACHNGE
| MREGS_IACONFIG_LARESET
,
215 mregs
+ MREGS_IACONFIG
);
216 while ((sbus_readb(mregs
+ MREGS_IACONFIG
) & MREGS_IACONFIG_ACHNGE
) != 0)
218 for (i
= 0; i
< 8; i
++)
219 sbus_writeb(0, mregs
+ MREGS_FILTER
);
221 /* Address changes are now complete. */
222 sbus_writeb(0, mregs
+ MREGS_IACONFIG
);
226 /* Wait a little bit for the link to come up... */
228 if (!(sbus_readb(mregs
+ MREGS_PHYCONFIG
) & MREGS_PHYCONFIG_LTESTDIS
)) {
236 tmp
= sbus_readb(mregs
+ MREGS_PHYCONFIG
);
237 if ((tmp
& MREGS_PHYCONFIG_LSTAT
) != 0)
241 printk(KERN_NOTICE
"%s: Warning, link state is down.\n", qep
->dev
->name
);
244 /* Missed packet counter is cleared on a read. */
245 sbus_readb(mregs
+ MREGS_MPCNT
);
247 /* Reload multicast information, this will enable the receiver
250 qe_set_multicast(qep
->dev
);
252 /* QEC should now start to show interrupts. */
256 /* Grrr, certain error conditions completely lock up the AMD MACE,
257 * so when we get these we _must_ reset the chip.
259 static int qe_is_bolixed(struct sunqe
*qep
, u32 qe_status
)
261 struct net_device
*dev
= qep
->dev
;
262 int mace_hwbug_workaround
= 0;
264 if (qe_status
& CREG_STAT_EDEFER
) {
265 printk(KERN_ERR
"%s: Excessive transmit defers.\n", dev
->name
);
266 dev
->stats
.tx_errors
++;
269 if (qe_status
& CREG_STAT_CLOSS
) {
270 printk(KERN_ERR
"%s: Carrier lost, link down?\n", dev
->name
);
271 dev
->stats
.tx_errors
++;
272 dev
->stats
.tx_carrier_errors
++;
275 if (qe_status
& CREG_STAT_ERETRIES
) {
276 printk(KERN_ERR
"%s: Excessive transmit retries (more than 16).\n", dev
->name
);
277 dev
->stats
.tx_errors
++;
278 mace_hwbug_workaround
= 1;
281 if (qe_status
& CREG_STAT_LCOLL
) {
282 printk(KERN_ERR
"%s: Late transmit collision.\n", dev
->name
);
283 dev
->stats
.tx_errors
++;
284 dev
->stats
.collisions
++;
285 mace_hwbug_workaround
= 1;
288 if (qe_status
& CREG_STAT_FUFLOW
) {
289 printk(KERN_ERR
"%s: Transmit fifo underflow, driver bug.\n", dev
->name
);
290 dev
->stats
.tx_errors
++;
291 mace_hwbug_workaround
= 1;
294 if (qe_status
& CREG_STAT_JERROR
) {
295 printk(KERN_ERR
"%s: Jabber error.\n", dev
->name
);
298 if (qe_status
& CREG_STAT_BERROR
) {
299 printk(KERN_ERR
"%s: Babble error.\n", dev
->name
);
302 if (qe_status
& CREG_STAT_CCOFLOW
) {
303 dev
->stats
.tx_errors
+= 256;
304 dev
->stats
.collisions
+= 256;
307 if (qe_status
& CREG_STAT_TXDERROR
) {
308 printk(KERN_ERR
"%s: Transmit descriptor is bogus, driver bug.\n", dev
->name
);
309 dev
->stats
.tx_errors
++;
310 dev
->stats
.tx_aborted_errors
++;
311 mace_hwbug_workaround
= 1;
314 if (qe_status
& CREG_STAT_TXLERR
) {
315 printk(KERN_ERR
"%s: Transmit late error.\n", dev
->name
);
316 dev
->stats
.tx_errors
++;
317 mace_hwbug_workaround
= 1;
320 if (qe_status
& CREG_STAT_TXPERR
) {
321 printk(KERN_ERR
"%s: Transmit DMA parity error.\n", dev
->name
);
322 dev
->stats
.tx_errors
++;
323 dev
->stats
.tx_aborted_errors
++;
324 mace_hwbug_workaround
= 1;
327 if (qe_status
& CREG_STAT_TXSERR
) {
328 printk(KERN_ERR
"%s: Transmit DMA sbus error ack.\n", dev
->name
);
329 dev
->stats
.tx_errors
++;
330 dev
->stats
.tx_aborted_errors
++;
331 mace_hwbug_workaround
= 1;
334 if (qe_status
& CREG_STAT_RCCOFLOW
) {
335 dev
->stats
.rx_errors
+= 256;
336 dev
->stats
.collisions
+= 256;
339 if (qe_status
& CREG_STAT_RUOFLOW
) {
340 dev
->stats
.rx_errors
+= 256;
341 dev
->stats
.rx_over_errors
+= 256;
344 if (qe_status
& CREG_STAT_MCOFLOW
) {
345 dev
->stats
.rx_errors
+= 256;
346 dev
->stats
.rx_missed_errors
+= 256;
349 if (qe_status
& CREG_STAT_RXFOFLOW
) {
350 printk(KERN_ERR
"%s: Receive fifo overflow.\n", dev
->name
);
351 dev
->stats
.rx_errors
++;
352 dev
->stats
.rx_over_errors
++;
355 if (qe_status
& CREG_STAT_RLCOLL
) {
356 printk(KERN_ERR
"%s: Late receive collision.\n", dev
->name
);
357 dev
->stats
.rx_errors
++;
358 dev
->stats
.collisions
++;
361 if (qe_status
& CREG_STAT_FCOFLOW
) {
362 dev
->stats
.rx_errors
+= 256;
363 dev
->stats
.rx_frame_errors
+= 256;
366 if (qe_status
& CREG_STAT_CECOFLOW
) {
367 dev
->stats
.rx_errors
+= 256;
368 dev
->stats
.rx_crc_errors
+= 256;
371 if (qe_status
& CREG_STAT_RXDROP
) {
372 printk(KERN_ERR
"%s: Receive packet dropped.\n", dev
->name
);
373 dev
->stats
.rx_errors
++;
374 dev
->stats
.rx_dropped
++;
375 dev
->stats
.rx_missed_errors
++;
378 if (qe_status
& CREG_STAT_RXSMALL
) {
379 printk(KERN_ERR
"%s: Receive buffer too small, driver bug.\n", dev
->name
);
380 dev
->stats
.rx_errors
++;
381 dev
->stats
.rx_length_errors
++;
384 if (qe_status
& CREG_STAT_RXLERR
) {
385 printk(KERN_ERR
"%s: Receive late error.\n", dev
->name
);
386 dev
->stats
.rx_errors
++;
387 mace_hwbug_workaround
= 1;
390 if (qe_status
& CREG_STAT_RXPERR
) {
391 printk(KERN_ERR
"%s: Receive DMA parity error.\n", dev
->name
);
392 dev
->stats
.rx_errors
++;
393 dev
->stats
.rx_missed_errors
++;
394 mace_hwbug_workaround
= 1;
397 if (qe_status
& CREG_STAT_RXSERR
) {
398 printk(KERN_ERR
"%s: Receive DMA sbus error ack.\n", dev
->name
);
399 dev
->stats
.rx_errors
++;
400 dev
->stats
.rx_missed_errors
++;
401 mace_hwbug_workaround
= 1;
404 if (mace_hwbug_workaround
)
406 return mace_hwbug_workaround
;
409 /* Per-QE receive interrupt service routine. Just like on the happy meal
410 * we receive directly into skb's with a small packet copy water mark.
412 static void qe_rx(struct sunqe
*qep
)
414 struct qe_rxd
*rxbase
= &qep
->qe_block
->qe_rxd
[0];
415 struct net_device
*dev
= qep
->dev
;
417 struct sunqe_buffers
*qbufs
= qep
->buffers
;
418 __u32 qbufs_dvma
= (__u32
)qep
->buffers_dvma
;
419 int elem
= qep
->rx_new
;
422 this = &rxbase
[elem
];
423 while (!((flags
= this->rx_flags
) & RXD_OWN
)) {
425 unsigned char *this_qbuf
=
426 &qbufs
->rx_buf
[elem
& (RX_RING_SIZE
- 1)][0];
427 __u32 this_qbuf_dvma
= qbufs_dvma
+
428 qebuf_offset(rx_buf
, (elem
& (RX_RING_SIZE
- 1)));
429 struct qe_rxd
*end_rxd
=
430 &rxbase
[(elem
+RX_RING_SIZE
)&(RX_RING_MAXSIZE
-1)];
431 int len
= (flags
& RXD_LENGTH
) - 4; /* QE adds ether FCS size to len */
433 /* Check for errors. */
434 if (len
< ETH_ZLEN
) {
435 dev
->stats
.rx_errors
++;
436 dev
->stats
.rx_length_errors
++;
437 dev
->stats
.rx_dropped
++;
439 skb
= netdev_alloc_skb(dev
, len
+ 2);
441 dev
->stats
.rx_dropped
++;
445 skb_copy_to_linear_data(skb
, this_qbuf
,
447 skb
->protocol
= eth_type_trans(skb
, qep
->dev
);
449 dev
->stats
.rx_packets
++;
450 dev
->stats
.rx_bytes
+= len
;
453 end_rxd
->rx_addr
= this_qbuf_dvma
;
454 end_rxd
->rx_flags
= (RXD_OWN
| ((RXD_PKT_SZ
) & RXD_LENGTH
));
456 elem
= NEXT_RX(elem
);
457 this = &rxbase
[elem
];
462 static void qe_tx_reclaim(struct sunqe
*qep
);
464 /* Interrupts for all QE's get filtered out via the QEC master controller,
465 * so we just run through each qe and check to see who is signaling
466 * and thus needs to be serviced.
468 static irqreturn_t
qec_interrupt(int irq
, void *dev_id
)
470 struct sunqec
*qecp
= dev_id
;
474 /* Latch the status now. */
475 qec_status
= sbus_readl(qecp
->gregs
+ GLOB_STAT
);
476 while (channel
< 4) {
477 if (qec_status
& 0xf) {
478 struct sunqe
*qep
= qecp
->qes
[channel
];
481 qe_status
= sbus_readl(qep
->qcregs
+ CREG_STAT
);
482 if (qe_status
& CREG_STAT_ERRORS
) {
483 if (qe_is_bolixed(qep
, qe_status
))
486 if (qe_status
& CREG_STAT_RXIRQ
)
488 if (netif_queue_stopped(qep
->dev
) &&
489 (qe_status
& CREG_STAT_TXIRQ
)) {
490 spin_lock(&qep
->lock
);
492 if (TX_BUFFS_AVAIL(qep
) > 0) {
493 /* Wake net queue and return to
496 netif_wake_queue(qep
->dev
);
497 sbus_writel(1, qep
->qcregs
+ CREG_TIMASK
);
499 spin_unlock(&qep
->lock
);
511 static int qe_open(struct net_device
*dev
)
513 struct sunqe
*qep
= netdev_priv(dev
);
515 qep
->mconfig
= (MREGS_MCONFIG_TXENAB
|
516 MREGS_MCONFIG_RXENAB
|
517 MREGS_MCONFIG_MBAENAB
);
518 return qe_init(qep
, 0);
521 static int qe_close(struct net_device
*dev
)
523 struct sunqe
*qep
= netdev_priv(dev
);
529 /* Reclaim TX'd frames from the ring. This must always run under
530 * the IRQ protected qep->lock.
532 static void qe_tx_reclaim(struct sunqe
*qep
)
534 struct qe_txd
*txbase
= &qep
->qe_block
->qe_txd
[0];
535 int elem
= qep
->tx_old
;
537 while (elem
!= qep
->tx_new
) {
538 u32 flags
= txbase
[elem
].tx_flags
;
542 elem
= NEXT_TX(elem
);
547 static void qe_tx_timeout(struct net_device
*dev
, unsigned int txqueue
)
549 struct sunqe
*qep
= netdev_priv(dev
);
552 spin_lock_irq(&qep
->lock
);
554 /* Try to reclaim, if that frees up some tx
555 * entries, we're fine.
558 tx_full
= TX_BUFFS_AVAIL(qep
) <= 0;
560 spin_unlock_irq(&qep
->lock
);
565 printk(KERN_ERR
"%s: transmit timed out, resetting\n", dev
->name
);
569 netif_wake_queue(dev
);
572 /* Get a packet queued to go onto the wire. */
573 static netdev_tx_t
qe_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
575 struct sunqe
*qep
= netdev_priv(dev
);
576 struct sunqe_buffers
*qbufs
= qep
->buffers
;
577 __u32 txbuf_dvma
, qbufs_dvma
= (__u32
)qep
->buffers_dvma
;
578 unsigned char *txbuf
;
581 spin_lock_irq(&qep
->lock
);
588 txbuf
= &qbufs
->tx_buf
[entry
& (TX_RING_SIZE
- 1)][0];
589 txbuf_dvma
= qbufs_dvma
+
590 qebuf_offset(tx_buf
, (entry
& (TX_RING_SIZE
- 1)));
592 /* Avoid a race... */
593 qep
->qe_block
->qe_txd
[entry
].tx_flags
= TXD_UPDATE
;
595 skb_copy_from_linear_data(skb
, txbuf
, len
);
597 qep
->qe_block
->qe_txd
[entry
].tx_addr
= txbuf_dvma
;
598 qep
->qe_block
->qe_txd
[entry
].tx_flags
=
599 (TXD_OWN
| TXD_SOP
| TXD_EOP
| (len
& TXD_LENGTH
));
600 qep
->tx_new
= NEXT_TX(entry
);
603 sbus_writel(CREG_CTRL_TWAKEUP
, qep
->qcregs
+ CREG_CTRL
);
605 dev
->stats
.tx_packets
++;
606 dev
->stats
.tx_bytes
+= len
;
608 if (TX_BUFFS_AVAIL(qep
) <= 0) {
609 /* Halt the net queue and enable tx interrupts.
610 * When the tx queue empties the tx irq handler
611 * will wake up the queue and return us back to
612 * the lazy tx reclaim scheme.
614 netif_stop_queue(dev
);
615 sbus_writel(0, qep
->qcregs
+ CREG_TIMASK
);
617 spin_unlock_irq(&qep
->lock
);
624 static void qe_set_multicast(struct net_device
*dev
)
626 struct sunqe
*qep
= netdev_priv(dev
);
627 struct netdev_hw_addr
*ha
;
628 u8 new_mconfig
= qep
->mconfig
;
632 /* Lock out others. */
633 netif_stop_queue(dev
);
635 if ((dev
->flags
& IFF_ALLMULTI
) || (netdev_mc_count(dev
) > 64)) {
636 sbus_writeb(MREGS_IACONFIG_ACHNGE
| MREGS_IACONFIG_LARESET
,
637 qep
->mregs
+ MREGS_IACONFIG
);
638 while ((sbus_readb(qep
->mregs
+ MREGS_IACONFIG
) & MREGS_IACONFIG_ACHNGE
) != 0)
640 for (i
= 0; i
< 8; i
++)
641 sbus_writeb(0xff, qep
->mregs
+ MREGS_FILTER
);
642 sbus_writeb(0, qep
->mregs
+ MREGS_IACONFIG
);
643 } else if (dev
->flags
& IFF_PROMISC
) {
644 new_mconfig
|= MREGS_MCONFIG_PROMISC
;
647 u8
*hbytes
= (unsigned char *) &hash_table
[0];
649 memset(hash_table
, 0, sizeof(hash_table
));
650 netdev_for_each_mc_addr(ha
, dev
) {
651 crc
= ether_crc_le(6, ha
->addr
);
653 hash_table
[crc
>> 4] |= 1 << (crc
& 0xf);
655 /* Program the qe with the new filter value. */
656 sbus_writeb(MREGS_IACONFIG_ACHNGE
| MREGS_IACONFIG_LARESET
,
657 qep
->mregs
+ MREGS_IACONFIG
);
658 while ((sbus_readb(qep
->mregs
+ MREGS_IACONFIG
) & MREGS_IACONFIG_ACHNGE
) != 0)
660 for (i
= 0; i
< 8; i
++) {
662 sbus_writeb(tmp
, qep
->mregs
+ MREGS_FILTER
);
664 sbus_writeb(0, qep
->mregs
+ MREGS_IACONFIG
);
667 /* Any change of the logical address filter, the physical address,
668 * or enabling/disabling promiscuous mode causes the MACE to disable
669 * the receiver. So we must re-enable them here or else the MACE
670 * refuses to listen to anything on the network. Sheesh, took
671 * me a day or two to find this bug.
673 qep
->mconfig
= new_mconfig
;
674 sbus_writeb(qep
->mconfig
, qep
->mregs
+ MREGS_MCONFIG
);
676 /* Let us get going again. */
677 netif_wake_queue(dev
);
680 /* Ethtool support... */
681 static void qe_get_drvinfo(struct net_device
*dev
, struct ethtool_drvinfo
*info
)
683 const struct linux_prom_registers
*regs
;
684 struct sunqe
*qep
= netdev_priv(dev
);
685 struct platform_device
*op
;
687 strlcpy(info
->driver
, "sunqe", sizeof(info
->driver
));
688 strlcpy(info
->version
, "3.0", sizeof(info
->version
));
691 regs
= of_get_property(op
->dev
.of_node
, "reg", NULL
);
693 snprintf(info
->bus_info
, sizeof(info
->bus_info
), "SBUS:%d",
698 static u32
qe_get_link(struct net_device
*dev
)
700 struct sunqe
*qep
= netdev_priv(dev
);
701 void __iomem
*mregs
= qep
->mregs
;
704 spin_lock_irq(&qep
->lock
);
705 phyconfig
= sbus_readb(mregs
+ MREGS_PHYCONFIG
);
706 spin_unlock_irq(&qep
->lock
);
708 return phyconfig
& MREGS_PHYCONFIG_LSTAT
;
711 static const struct ethtool_ops qe_ethtool_ops
= {
712 .get_drvinfo
= qe_get_drvinfo
,
713 .get_link
= qe_get_link
,
716 /* This is only called once at boot time for each card probed. */
717 static void qec_init_once(struct sunqec
*qecp
, struct platform_device
*op
)
719 u8 bsizes
= qecp
->qec_bursts
;
721 if (sbus_can_burst64() && (bsizes
& DMA_BURST64
)) {
722 sbus_writel(GLOB_CTRL_B64
, qecp
->gregs
+ GLOB_CTRL
);
723 } else if (bsizes
& DMA_BURST32
) {
724 sbus_writel(GLOB_CTRL_B32
, qecp
->gregs
+ GLOB_CTRL
);
726 sbus_writel(GLOB_CTRL_B16
, qecp
->gregs
+ GLOB_CTRL
);
729 /* Packetsize only used in 100baseT BigMAC configurations,
730 * set it to zero just to be on the safe side.
732 sbus_writel(GLOB_PSIZE_2048
, qecp
->gregs
+ GLOB_PSIZE
);
734 /* Set the local memsize register, divided up to one piece per QE channel. */
735 sbus_writel((resource_size(&op
->resource
[1]) >> 2),
736 qecp
->gregs
+ GLOB_MSIZE
);
738 /* Divide up the local QEC memory amongst the 4 QE receiver and
739 * transmitter FIFOs. Basically it is (total / 2 / num_channels).
741 sbus_writel((resource_size(&op
->resource
[1]) >> 2) >> 1,
742 qecp
->gregs
+ GLOB_TSIZE
);
743 sbus_writel((resource_size(&op
->resource
[1]) >> 2) >> 1,
744 qecp
->gregs
+ GLOB_RSIZE
);
747 static u8
qec_get_burst(struct device_node
*dp
)
749 u8 bsizes
, bsizes_more
;
751 /* Find and set the burst sizes for the QEC, since it
752 * does the actual dma for all 4 channels.
754 bsizes
= of_getintprop_default(dp
, "burst-sizes", 0xff);
756 bsizes_more
= of_getintprop_default(dp
->parent
, "burst-sizes", 0xff);
758 if (bsizes_more
!= 0xff)
759 bsizes
&= bsizes_more
;
760 if (bsizes
== 0xff || (bsizes
& DMA_BURST16
) == 0 ||
761 (bsizes
& DMA_BURST32
)==0)
762 bsizes
= (DMA_BURST32
- 1);
767 static struct sunqec
*get_qec(struct platform_device
*child
)
769 struct platform_device
*op
= to_platform_device(child
->dev
.parent
);
772 qecp
= platform_get_drvdata(op
);
774 qecp
= kzalloc(sizeof(struct sunqec
), GFP_KERNEL
);
779 qecp
->gregs
= of_ioremap(&op
->resource
[0], 0,
781 "QEC Global Registers");
785 /* Make sure the QEC is in MACE mode. */
786 ctrl
= sbus_readl(qecp
->gregs
+ GLOB_CTRL
);
788 if (ctrl
!= GLOB_CTRL_MMODE
) {
789 printk(KERN_ERR
"qec: Not in MACE mode!\n");
793 if (qec_global_reset(qecp
->gregs
))
796 qecp
->qec_bursts
= qec_get_burst(op
->dev
.of_node
);
798 qec_init_once(qecp
, op
);
800 if (request_irq(op
->archdata
.irqs
[0], qec_interrupt
,
801 IRQF_SHARED
, "qec", (void *) qecp
)) {
802 printk(KERN_ERR
"qec: Can't register irq.\n");
806 platform_set_drvdata(op
, qecp
);
808 qecp
->next_module
= root_qec_dev
;
817 of_iounmap(&op
->resource
[0], qecp
->gregs
, GLOB_REG_SIZE
);
822 static const struct net_device_ops qec_ops
= {
824 .ndo_stop
= qe_close
,
825 .ndo_start_xmit
= qe_start_xmit
,
826 .ndo_set_rx_mode
= qe_set_multicast
,
827 .ndo_tx_timeout
= qe_tx_timeout
,
828 .ndo_set_mac_address
= eth_mac_addr
,
829 .ndo_validate_addr
= eth_validate_addr
,
832 static int qec_ether_init(struct platform_device
*op
)
834 static unsigned version_printed
;
835 struct net_device
*dev
;
840 if (version_printed
++ == 0)
841 printk(KERN_INFO
"%s", version
);
843 dev
= alloc_etherdev(sizeof(struct sunqe
));
847 memcpy(dev
->dev_addr
, idprom
->id_ethaddr
, ETH_ALEN
);
849 qe
= netdev_priv(dev
);
853 i
= of_getintprop_default(op
->dev
.of_node
, "channel#", -1);
857 spin_lock_init(&qe
->lock
);
863 qecp
->qes
[qe
->channel
] = qe
;
869 qe
->qcregs
= of_ioremap(&op
->resource
[0], 0,
870 CREG_REG_SIZE
, "QEC Channel Registers");
872 printk(KERN_ERR
"qe: Cannot map channel registers.\n");
876 qe
->mregs
= of_ioremap(&op
->resource
[1], 0,
877 MREGS_REG_SIZE
, "QE MACE Registers");
879 printk(KERN_ERR
"qe: Cannot map MACE registers.\n");
883 qe
->qe_block
= dma_alloc_coherent(&op
->dev
, PAGE_SIZE
,
884 &qe
->qblock_dvma
, GFP_ATOMIC
);
885 qe
->buffers
= dma_alloc_coherent(&op
->dev
, sizeof(struct sunqe_buffers
),
886 &qe
->buffers_dvma
, GFP_ATOMIC
);
887 if (qe
->qe_block
== NULL
|| qe
->qblock_dvma
== 0 ||
888 qe
->buffers
== NULL
|| qe
->buffers_dvma
== 0)
894 SET_NETDEV_DEV(dev
, &op
->dev
);
896 dev
->watchdog_timeo
= 5*HZ
;
897 dev
->irq
= op
->archdata
.irqs
[0];
899 dev
->ethtool_ops
= &qe_ethtool_ops
;
900 dev
->netdev_ops
= &qec_ops
;
902 res
= register_netdev(dev
);
906 platform_set_drvdata(op
, qe
);
908 printk(KERN_INFO
"%s: qe channel[%d] %pM\n", dev
->name
, qe
->channel
,
914 of_iounmap(&op
->resource
[0], qe
->qcregs
, CREG_REG_SIZE
);
916 of_iounmap(&op
->resource
[1], qe
->mregs
, MREGS_REG_SIZE
);
918 dma_free_coherent(&op
->dev
, PAGE_SIZE
,
919 qe
->qe_block
, qe
->qblock_dvma
);
921 dma_free_coherent(&op
->dev
,
922 sizeof(struct sunqe_buffers
),
931 static int qec_sbus_probe(struct platform_device
*op
)
933 return qec_ether_init(op
);
936 static int qec_sbus_remove(struct platform_device
*op
)
938 struct sunqe
*qp
= platform_get_drvdata(op
);
939 struct net_device
*net_dev
= qp
->dev
;
941 unregister_netdev(net_dev
);
943 of_iounmap(&op
->resource
[0], qp
->qcregs
, CREG_REG_SIZE
);
944 of_iounmap(&op
->resource
[1], qp
->mregs
, MREGS_REG_SIZE
);
945 dma_free_coherent(&op
->dev
, PAGE_SIZE
,
946 qp
->qe_block
, qp
->qblock_dvma
);
947 dma_free_coherent(&op
->dev
, sizeof(struct sunqe_buffers
),
948 qp
->buffers
, qp
->buffers_dvma
);
950 free_netdev(net_dev
);
955 static const struct of_device_id qec_sbus_match
[] = {
962 MODULE_DEVICE_TABLE(of
, qec_sbus_match
);
964 static struct platform_driver qec_sbus_driver
= {
967 .of_match_table
= qec_sbus_match
,
969 .probe
= qec_sbus_probe
,
970 .remove
= qec_sbus_remove
,
973 static int __init
qec_init(void)
975 return platform_driver_register(&qec_sbus_driver
);
978 static void __exit
qec_exit(void)
980 platform_driver_unregister(&qec_sbus_driver
);
982 while (root_qec_dev
) {
983 struct sunqec
*next
= root_qec_dev
->next_module
;
984 struct platform_device
*op
= root_qec_dev
->op
;
986 free_irq(op
->archdata
.irqs
[0], (void *) root_qec_dev
);
987 of_iounmap(&op
->resource
[0], root_qec_dev
->gregs
,
995 module_init(qec_init
);
996 module_exit(qec_exit
);