2 * drivers/net/ibm_emac/ibm_emac_mal.c
4 * Memory Access Layer (MAL) support
6 * Copyright (c) 2004, 2005 Zultys Technologies.
7 * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
9 * Based on original work by
10 * Benjamin Herrenschmidt <benh@kernel.crashing.org>,
11 * David Gibson <hermes@gibson.dropbear.id.au>,
13 * Armin Kuster <akuster@mvista.com>
14 * Copyright 2002 MontaVista Softare Inc.
16 * This program is free software; you can redistribute it and/or modify it
17 * under the terms of the GNU General Public License as published by the
18 * Free Software Foundation; either version 2 of the License, or (at your
19 * option) any later version.
22 #include <linux/module.h>
23 #include <linux/kernel.h>
24 #include <linux/errno.h>
25 #include <linux/netdevice.h>
26 #include <linux/init.h>
27 #include <linux/interrupt.h>
28 #include <linux/dma-mapping.h>
32 #include "ibm_emac_core.h"
33 #include "ibm_emac_mal.h"
34 #include "ibm_emac_debug.h"
36 int __init
mal_register_commac(struct ibm_ocp_mal
*mal
,
37 struct mal_commac
*commac
)
40 local_irq_save(flags
);
42 MAL_DBG("%d: reg(%08x, %08x)" NL
, mal
->def
->index
,
43 commac
->tx_chan_mask
, commac
->rx_chan_mask
);
45 /* Don't let multiple commacs claim the same channel(s) */
46 if ((mal
->tx_chan_mask
& commac
->tx_chan_mask
) ||
47 (mal
->rx_chan_mask
& commac
->rx_chan_mask
)) {
48 local_irq_restore(flags
);
49 printk(KERN_WARNING
"mal%d: COMMAC channels conflict!\n",
54 mal
->tx_chan_mask
|= commac
->tx_chan_mask
;
55 mal
->rx_chan_mask
|= commac
->rx_chan_mask
;
56 list_add(&commac
->list
, &mal
->list
);
58 local_irq_restore(flags
);
62 void mal_unregister_commac(struct ibm_ocp_mal
*mal
, struct mal_commac
*commac
)
65 local_irq_save(flags
);
67 MAL_DBG("%d: unreg(%08x, %08x)" NL
, mal
->def
->index
,
68 commac
->tx_chan_mask
, commac
->rx_chan_mask
);
70 mal
->tx_chan_mask
&= ~commac
->tx_chan_mask
;
71 mal
->rx_chan_mask
&= ~commac
->rx_chan_mask
;
72 list_del_init(&commac
->list
);
74 local_irq_restore(flags
);
77 int mal_set_rcbs(struct ibm_ocp_mal
*mal
, int channel
, unsigned long size
)
79 struct ocp_func_mal_data
*maldata
= mal
->def
->additions
;
80 BUG_ON(channel
< 0 || channel
>= maldata
->num_rx_chans
||
81 size
> MAL_MAX_RX_SIZE
);
83 MAL_DBG("%d: set_rbcs(%d, %lu)" NL
, mal
->def
->index
, channel
, size
);
87 "mal%d: incorrect RX size %lu for the channel %d\n",
88 mal
->def
->index
, size
, channel
);
92 set_mal_dcrn(mal
, MAL_RCBS(channel
), size
>> 4);
96 int mal_tx_bd_offset(struct ibm_ocp_mal
*mal
, int channel
)
98 struct ocp_func_mal_data
*maldata
= mal
->def
->additions
;
99 BUG_ON(channel
< 0 || channel
>= maldata
->num_tx_chans
);
100 return channel
* NUM_TX_BUFF
;
103 int mal_rx_bd_offset(struct ibm_ocp_mal
*mal
, int channel
)
105 struct ocp_func_mal_data
*maldata
= mal
->def
->additions
;
106 BUG_ON(channel
< 0 || channel
>= maldata
->num_rx_chans
);
107 return maldata
->num_tx_chans
* NUM_TX_BUFF
+ channel
* NUM_RX_BUFF
;
110 void mal_enable_tx_channel(struct ibm_ocp_mal
*mal
, int channel
)
113 MAL_DBG("%d: enable_tx(%d)" NL
, mal
->def
->index
, channel
);
114 set_mal_dcrn(mal
, MAL_TXCASR
,
115 get_mal_dcrn(mal
, MAL_TXCASR
) | MAL_CHAN_MASK(channel
));
119 void mal_disable_tx_channel(struct ibm_ocp_mal
*mal
, int channel
)
121 set_mal_dcrn(mal
, MAL_TXCARR
, MAL_CHAN_MASK(channel
));
122 MAL_DBG("%d: disable_tx(%d)" NL
, mal
->def
->index
, channel
);
125 void mal_enable_rx_channel(struct ibm_ocp_mal
*mal
, int channel
)
128 MAL_DBG("%d: enable_rx(%d)" NL
, mal
->def
->index
, channel
);
129 set_mal_dcrn(mal
, MAL_RXCASR
,
130 get_mal_dcrn(mal
, MAL_RXCASR
) | MAL_CHAN_MASK(channel
));
134 void mal_disable_rx_channel(struct ibm_ocp_mal
*mal
, int channel
)
136 set_mal_dcrn(mal
, MAL_RXCARR
, MAL_CHAN_MASK(channel
));
137 MAL_DBG("%d: disable_rx(%d)" NL
, mal
->def
->index
, channel
);
140 void mal_poll_add(struct ibm_ocp_mal
*mal
, struct mal_commac
*commac
)
143 MAL_DBG("%d: poll_add(%p)" NL
, mal
->def
->index
, commac
);
144 list_add_tail(&commac
->poll_list
, &mal
->poll_list
);
148 void mal_poll_del(struct ibm_ocp_mal
*mal
, struct mal_commac
*commac
)
151 MAL_DBG("%d: poll_del(%p)" NL
, mal
->def
->index
, commac
);
152 list_del(&commac
->poll_list
);
156 /* synchronized by mal_poll() */
157 static inline void mal_enable_eob_irq(struct ibm_ocp_mal
*mal
)
159 MAL_DBG2("%d: enable_irq" NL
, mal
->def
->index
);
160 set_mal_dcrn(mal
, MAL_CFG
, get_mal_dcrn(mal
, MAL_CFG
) | MAL_CFG_EOPIE
);
163 /* synchronized by __LINK_STATE_RX_SCHED bit in ndev->state */
164 static inline void mal_disable_eob_irq(struct ibm_ocp_mal
*mal
)
166 set_mal_dcrn(mal
, MAL_CFG
, get_mal_dcrn(mal
, MAL_CFG
) & ~MAL_CFG_EOPIE
);
167 MAL_DBG2("%d: disable_irq" NL
, mal
->def
->index
);
170 static irqreturn_t
mal_serr(int irq
, void *dev_instance
)
172 struct ibm_ocp_mal
*mal
= dev_instance
;
173 u32 esr
= get_mal_dcrn(mal
, MAL_ESR
);
175 /* Clear the error status register */
176 set_mal_dcrn(mal
, MAL_ESR
, esr
);
178 MAL_DBG("%d: SERR %08x" NL
, mal
->def
->index
, esr
);
180 if (esr
& MAL_ESR_EVB
) {
181 if (esr
& MAL_ESR_DE
) {
182 /* We ignore Descriptor error,
183 * TXDE or RXDE interrupt will be generated anyway.
188 if (esr
& MAL_ESR_PEIN
) {
189 /* PLB error, it's probably buggy hardware or
190 * incorrect physical address in BD (i.e. bug)
194 "mal%d: system error, PLB (ESR = 0x%08x)\n",
195 mal
->def
->index
, esr
);
199 /* OPB error, it's probably buggy hardware or incorrect EBC setup */
202 "mal%d: system error, OPB (ESR = 0x%08x)\n",
203 mal
->def
->index
, esr
);
208 static inline void mal_schedule_poll(struct ibm_ocp_mal
*mal
)
210 if (likely(napi_schedule_prep(&mal
->napi
))) {
211 MAL_DBG2("%d: schedule_poll" NL
, mal
->def
->index
);
212 mal_disable_eob_irq(mal
);
213 __napi_schedule(&mal
->napi
);
215 MAL_DBG2("%d: already in poll" NL
, mal
->def
->index
);
218 static irqreturn_t
mal_txeob(int irq
, void *dev_instance
)
220 struct ibm_ocp_mal
*mal
= dev_instance
;
221 u32 r
= get_mal_dcrn(mal
, MAL_TXEOBISR
);
222 MAL_DBG2("%d: txeob %08x" NL
, mal
->def
->index
, r
);
223 mal_schedule_poll(mal
);
224 set_mal_dcrn(mal
, MAL_TXEOBISR
, r
);
228 static irqreturn_t
mal_rxeob(int irq
, void *dev_instance
)
230 struct ibm_ocp_mal
*mal
= dev_instance
;
231 u32 r
= get_mal_dcrn(mal
, MAL_RXEOBISR
);
232 MAL_DBG2("%d: rxeob %08x" NL
, mal
->def
->index
, r
);
233 mal_schedule_poll(mal
);
234 set_mal_dcrn(mal
, MAL_RXEOBISR
, r
);
238 static irqreturn_t
mal_txde(int irq
, void *dev_instance
)
240 struct ibm_ocp_mal
*mal
= dev_instance
;
241 u32 deir
= get_mal_dcrn(mal
, MAL_TXDEIR
);
242 set_mal_dcrn(mal
, MAL_TXDEIR
, deir
);
244 MAL_DBG("%d: txde %08x" NL
, mal
->def
->index
, deir
);
248 "mal%d: TX descriptor error (TXDEIR = 0x%08x)\n",
249 mal
->def
->index
, deir
);
254 static irqreturn_t
mal_rxde(int irq
, void *dev_instance
)
256 struct ibm_ocp_mal
*mal
= dev_instance
;
258 u32 deir
= get_mal_dcrn(mal
, MAL_RXDEIR
);
260 MAL_DBG("%d: rxde %08x" NL
, mal
->def
->index
, deir
);
262 list_for_each(l
, &mal
->list
) {
263 struct mal_commac
*mc
= list_entry(l
, struct mal_commac
, list
);
264 if (deir
& mc
->rx_chan_mask
) {
266 mc
->ops
->rxde(mc
->dev
);
270 mal_schedule_poll(mal
);
271 set_mal_dcrn(mal
, MAL_RXDEIR
, deir
);
276 static int mal_poll(struct napi_struct
*napi
, int budget
)
278 struct ibm_ocp_mal
*mal
= container_of(napi
, struct ibm_ocp_mal
, napi
);
282 MAL_DBG2("%d: poll(%d) %d ->" NL
, mal
->def
->index
, *budget
,
285 /* Process TX skbs */
286 list_for_each(l
, &mal
->poll_list
) {
287 struct mal_commac
*mc
=
288 list_entry(l
, struct mal_commac
, poll_list
);
289 mc
->ops
->poll_tx(mc
->dev
);
293 * We _might_ need something more smart here to enforce polling fairness.
295 list_for_each(l
, &mal
->poll_list
) {
296 struct mal_commac
*mc
=
297 list_entry(l
, struct mal_commac
, poll_list
);
298 int n
= mc
->ops
->poll_rx(mc
->dev
, budget
);
303 goto more_work
; // XXX What if this is the last one ?
307 /* We need to disable IRQs to protect from RXDE IRQ here */
309 __napi_complete(napi
);
310 mal_enable_eob_irq(mal
);
313 /* Check for "rotting" packet(s) */
314 list_for_each(l
, &mal
->poll_list
) {
315 struct mal_commac
*mc
=
316 list_entry(l
, struct mal_commac
, poll_list
);
317 if (unlikely(mc
->ops
->peek_rx(mc
->dev
) || mc
->rx_stopped
)) {
318 MAL_DBG2("%d: rotting packet" NL
, mal
->def
->index
);
319 if (napi_reschedule(napi
))
320 mal_disable_eob_irq(mal
);
322 MAL_DBG2("%d: already in poll list" NL
,
330 mc
->ops
->poll_tx(mc
->dev
);
334 MAL_DBG2("%d: poll() %d <- %d" NL
, mal
->def
->index
, budget
, received
);
338 static void mal_reset(struct ibm_ocp_mal
*mal
)
341 MAL_DBG("%d: reset" NL
, mal
->def
->index
);
343 set_mal_dcrn(mal
, MAL_CFG
, MAL_CFG_SR
);
345 /* Wait for reset to complete (1 system clock) */
346 while ((get_mal_dcrn(mal
, MAL_CFG
) & MAL_CFG_SR
) && n
)
350 printk(KERN_ERR
"mal%d: reset timeout\n", mal
->def
->index
);
353 int mal_get_regs_len(struct ibm_ocp_mal
*mal
)
355 return sizeof(struct emac_ethtool_regs_subhdr
) +
356 sizeof(struct ibm_mal_regs
);
359 void *mal_dump_regs(struct ibm_ocp_mal
*mal
, void *buf
)
361 struct emac_ethtool_regs_subhdr
*hdr
= buf
;
362 struct ibm_mal_regs
*regs
= (struct ibm_mal_regs
*)(hdr
+ 1);
363 struct ocp_func_mal_data
*maldata
= mal
->def
->additions
;
366 hdr
->version
= MAL_VERSION
;
367 hdr
->index
= mal
->def
->index
;
369 regs
->tx_count
= maldata
->num_tx_chans
;
370 regs
->rx_count
= maldata
->num_rx_chans
;
372 regs
->cfg
= get_mal_dcrn(mal
, MAL_CFG
);
373 regs
->esr
= get_mal_dcrn(mal
, MAL_ESR
);
374 regs
->ier
= get_mal_dcrn(mal
, MAL_IER
);
375 regs
->tx_casr
= get_mal_dcrn(mal
, MAL_TXCASR
);
376 regs
->tx_carr
= get_mal_dcrn(mal
, MAL_TXCARR
);
377 regs
->tx_eobisr
= get_mal_dcrn(mal
, MAL_TXEOBISR
);
378 regs
->tx_deir
= get_mal_dcrn(mal
, MAL_TXDEIR
);
379 regs
->rx_casr
= get_mal_dcrn(mal
, MAL_RXCASR
);
380 regs
->rx_carr
= get_mal_dcrn(mal
, MAL_RXCARR
);
381 regs
->rx_eobisr
= get_mal_dcrn(mal
, MAL_RXEOBISR
);
382 regs
->rx_deir
= get_mal_dcrn(mal
, MAL_RXDEIR
);
384 for (i
= 0; i
< regs
->tx_count
; ++i
)
385 regs
->tx_ctpr
[i
] = get_mal_dcrn(mal
, MAL_TXCTPR(i
));
387 for (i
= 0; i
< regs
->rx_count
; ++i
) {
388 regs
->rx_ctpr
[i
] = get_mal_dcrn(mal
, MAL_RXCTPR(i
));
389 regs
->rcbs
[i
] = get_mal_dcrn(mal
, MAL_RCBS(i
));
394 static int __init
mal_probe(struct ocp_device
*ocpdev
)
396 struct ibm_ocp_mal
*mal
;
397 struct ocp_func_mal_data
*maldata
;
398 int err
= 0, i
, bd_size
;
400 MAL_DBG("%d: probe" NL
, ocpdev
->def
->index
);
402 maldata
= ocpdev
->def
->additions
;
403 if (maldata
== NULL
) {
404 printk(KERN_ERR
"mal%d: missing additional data!\n",
409 mal
= kzalloc(sizeof(struct ibm_ocp_mal
), GFP_KERNEL
);
412 "mal%d: out of memory allocating MAL structure!\n",
417 /* XXX This only works for native dcr for now */
418 mal
->dcrhost
= dcr_map(NULL
, maldata
->dcr_base
, 0);
420 mal
->def
= ocpdev
->def
;
422 INIT_LIST_HEAD(&mal
->poll_list
);
423 mal
->napi
.weight
= CONFIG_IBM_EMAC_POLL_WEIGHT
;
424 mal
->napi
.poll
= mal_poll
;
426 INIT_LIST_HEAD(&mal
->list
);
428 /* Load power-on reset defaults */
431 /* Set the MAL configuration register */
432 set_mal_dcrn(mal
, MAL_CFG
, MAL_CFG_DEFAULT
| MAL_CFG_PLBB
|
433 MAL_CFG_OPBBL
| MAL_CFG_LEA
);
435 mal_enable_eob_irq(mal
);
437 /* Allocate space for BD rings */
438 BUG_ON(maldata
->num_tx_chans
<= 0 || maldata
->num_tx_chans
> 32);
439 BUG_ON(maldata
->num_rx_chans
<= 0 || maldata
->num_rx_chans
> 32);
440 bd_size
= sizeof(struct mal_descriptor
) *
441 (NUM_TX_BUFF
* maldata
->num_tx_chans
+
442 NUM_RX_BUFF
* maldata
->num_rx_chans
);
444 dma_alloc_coherent(&ocpdev
->dev
, bd_size
, &mal
->bd_dma
, GFP_KERNEL
);
448 "mal%d: out of memory allocating RX/TX descriptors!\n",
453 memset(mal
->bd_virt
, 0, bd_size
);
455 for (i
= 0; i
< maldata
->num_tx_chans
; ++i
)
456 set_mal_dcrn(mal
, MAL_TXCTPR(i
), mal
->bd_dma
+
457 sizeof(struct mal_descriptor
) *
458 mal_tx_bd_offset(mal
, i
));
460 for (i
= 0; i
< maldata
->num_rx_chans
; ++i
)
461 set_mal_dcrn(mal
, MAL_RXCTPR(i
), mal
->bd_dma
+
462 sizeof(struct mal_descriptor
) *
463 mal_rx_bd_offset(mal
, i
));
465 err
= request_irq(maldata
->serr_irq
, mal_serr
, 0, "MAL SERR", mal
);
468 err
= request_irq(maldata
->txde_irq
, mal_txde
, 0, "MAL TX DE", mal
);
471 err
= request_irq(maldata
->txeob_irq
, mal_txeob
, 0, "MAL TX EOB", mal
);
474 err
= request_irq(maldata
->rxde_irq
, mal_rxde
, 0, "MAL RX DE", mal
);
477 err
= request_irq(maldata
->rxeob_irq
, mal_rxeob
, 0, "MAL RX EOB", mal
);
481 /* Enable all MAL SERR interrupt sources */
482 set_mal_dcrn(mal
, MAL_IER
, MAL_IER_EVENTS
);
484 /* Advertise this instance to the rest of the world */
485 ocp_set_drvdata(ocpdev
, mal
);
487 mal_dbg_register(mal
->def
->index
, mal
);
489 printk(KERN_INFO
"mal%d: initialized, %d TX channels, %d RX channels\n",
490 mal
->def
->index
, maldata
->num_tx_chans
, maldata
->num_rx_chans
);
494 free_irq(maldata
->rxde_irq
, mal
);
496 free_irq(maldata
->txeob_irq
, mal
);
498 free_irq(maldata
->txde_irq
, mal
);
500 free_irq(maldata
->serr_irq
, mal
);
502 dma_free_coherent(&ocpdev
->dev
, bd_size
, mal
->bd_virt
, mal
->bd_dma
);
508 static void __exit
mal_remove(struct ocp_device
*ocpdev
)
510 struct ibm_ocp_mal
*mal
= ocp_get_drvdata(ocpdev
);
511 struct ocp_func_mal_data
*maldata
= mal
->def
->additions
;
513 MAL_DBG("%d: remove" NL
, mal
->def
->index
);
515 /* Synchronize with scheduled polling */
516 napi_disable(&mal
->napi
);
518 if (!list_empty(&mal
->list
)) {
519 /* This is *very* bad */
521 "mal%d: commac list is not empty on remove!\n",
525 ocp_set_drvdata(ocpdev
, NULL
);
527 free_irq(maldata
->serr_irq
, mal
);
528 free_irq(maldata
->txde_irq
, mal
);
529 free_irq(maldata
->txeob_irq
, mal
);
530 free_irq(maldata
->rxde_irq
, mal
);
531 free_irq(maldata
->rxeob_irq
, mal
);
535 mal_dbg_register(mal
->def
->index
, NULL
);
537 dma_free_coherent(&ocpdev
->dev
,
538 sizeof(struct mal_descriptor
) *
539 (NUM_TX_BUFF
* maldata
->num_tx_chans
+
540 NUM_RX_BUFF
* maldata
->num_rx_chans
), mal
->bd_virt
,
546 /* Structure for a device driver */
547 static struct ocp_device_id mal_ids
[] = {
548 { .vendor
= OCP_VENDOR_IBM
, .function
= OCP_FUNC_MAL
},
549 { .vendor
= OCP_VENDOR_INVALID
}
552 static struct ocp_driver mal_driver
= {
557 .remove
= mal_remove
,
560 int __init
mal_init(void)
562 MAL_DBG(": init" NL
);
563 return ocp_register_driver(&mal_driver
);
566 void __exit
mal_exit(void)
568 MAL_DBG(": exit" NL
);
569 ocp_unregister_driver(&mal_driver
);