1 // SPDX-License-Identifier: GPL-2.0-or-later
3 A FORE Systems 200E-series driver for ATM on Linux.
4 Christophe Lizzi (lizzi@cnam.fr), October 1999-March 2003.
6 Based on the PCA-200E driver from Uwe Dannowski (Uwe.Dannowski@inf.tu-dresden.de).
8 This driver simultaneously supports PCA-200E and SBA-200E adapters
9 on i386, alpha (untested), powerpc, sparc and sparc64 architectures.
14 #include <linux/kernel.h>
15 #include <linux/slab.h>
16 #include <linux/init.h>
17 #include <linux/capability.h>
18 #include <linux/interrupt.h>
19 #include <linux/bitops.h>
20 #include <linux/pci.h>
21 #include <linux/module.h>
22 #include <linux/atmdev.h>
23 #include <linux/sonet.h>
24 #include <linux/dma-mapping.h>
25 #include <linux/delay.h>
26 #include <linux/firmware.h>
27 #include <linux/pgtable.h>
29 #include <asm/string.h>
33 #include <asm/byteorder.h>
34 #include <linux/uaccess.h>
35 #include <linux/atomic.h>
39 #include <linux/platform_device.h>
40 #include <asm/idprom.h>
41 #include <asm/openprom.h>
42 #include <asm/oplib.h>
45 #if defined(CONFIG_ATM_FORE200E_USE_TASKLET) /* defer interrupt work to a tasklet */
46 #define FORE200E_USE_TASKLET
49 #if 0 /* enable the debugging code of the buffer supply queues */
50 #define FORE200E_BSQ_DEBUG
53 #if 1 /* ensure correct handling of 52-byte AAL0 SDUs expected by atmdump-like apps */
54 #define FORE200E_52BYTE_AAL0_SDU
60 #define FORE200E_VERSION "0.3e"
62 #define FORE200E "fore200e: "
64 #if 0 /* override .config */
65 #define CONFIG_ATM_FORE200E_DEBUG 1
67 #if defined(CONFIG_ATM_FORE200E_DEBUG) && (CONFIG_ATM_FORE200E_DEBUG > 0)
68 #define DPRINTK(level, format, args...) do { if (CONFIG_ATM_FORE200E_DEBUG >= (level)) \
69 printk(FORE200E format, ##args); } while (0)
71 #define DPRINTK(level, format, args...) do {} while (0)
75 #define FORE200E_ALIGN(addr, alignment) \
76 ((((unsigned long)(addr) + (alignment - 1)) & ~(alignment - 1)) - (unsigned long)(addr))
78 #define FORE200E_DMA_INDEX(dma_addr, type, index) ((dma_addr) + (index) * sizeof(type))
80 #define FORE200E_INDEX(virt_addr, type, index) (&((type *)(virt_addr))[ index ])
82 #define FORE200E_NEXT_ENTRY(index, modulo) (index = ((index) + 1) % (modulo))
85 #define ASSERT(expr) if (!(expr)) { \
86 printk(FORE200E "assertion failed! %s[%d]: %s\n", \
87 __func__, __LINE__, #expr); \
88 panic(FORE200E "%s", __func__); \
91 #define ASSERT(expr) do {} while (0)
95 static const struct atmdev_ops fore200e_ops
;
97 MODULE_AUTHOR("Christophe Lizzi - credits to Uwe Dannowski and Heikki Vatiainen");
98 MODULE_DESCRIPTION("FORE Systems 200E-series ATM driver - version " FORE200E_VERSION
);
100 static const int fore200e_rx_buf_nbr
[ BUFFER_SCHEME_NBR
][ BUFFER_MAGN_NBR
] = {
101 { BUFFER_S1_NBR
, BUFFER_L1_NBR
},
102 { BUFFER_S2_NBR
, BUFFER_L2_NBR
}
105 static const int fore200e_rx_buf_size
[ BUFFER_SCHEME_NBR
][ BUFFER_MAGN_NBR
] = {
106 { BUFFER_S1_SIZE
, BUFFER_L1_SIZE
},
107 { BUFFER_S2_SIZE
, BUFFER_L2_SIZE
}
111 #if defined(CONFIG_ATM_FORE200E_DEBUG) && (CONFIG_ATM_FORE200E_DEBUG > 0)
112 static const char* fore200e_traffic_class
[] = { "NONE", "UBR", "CBR", "VBR", "ABR", "ANY" };
116 #if 0 /* currently unused */
118 fore200e_fore2atm_aal(enum fore200e_aal aal
)
121 case FORE200E_AAL0
: return ATM_AAL0
;
122 case FORE200E_AAL34
: return ATM_AAL34
;
123 case FORE200E_AAL5
: return ATM_AAL5
;
131 static enum fore200e_aal
132 fore200e_atm2fore_aal(int aal
)
135 case ATM_AAL0
: return FORE200E_AAL0
;
136 case ATM_AAL34
: return FORE200E_AAL34
;
139 case ATM_AAL5
: return FORE200E_AAL5
;
147 fore200e_irq_itoa(int irq
)
150 sprintf(str
, "%d", irq
);
155 /* allocate and align a chunk of memory intended to hold the data behing exchanged
156 between the driver and the adapter (using streaming DVMA) */
159 fore200e_chunk_alloc(struct fore200e
* fore200e
, struct chunk
* chunk
, int size
, int alignment
, int direction
)
161 unsigned long offset
= 0;
163 if (alignment
<= sizeof(int))
166 chunk
->alloc_size
= size
+ alignment
;
167 chunk
->direction
= direction
;
169 chunk
->alloc_addr
= kzalloc(chunk
->alloc_size
, GFP_KERNEL
);
170 if (chunk
->alloc_addr
== NULL
)
174 offset
= FORE200E_ALIGN(chunk
->alloc_addr
, alignment
);
176 chunk
->align_addr
= chunk
->alloc_addr
+ offset
;
178 chunk
->dma_addr
= dma_map_single(fore200e
->dev
, chunk
->align_addr
,
180 if (dma_mapping_error(fore200e
->dev
, chunk
->dma_addr
)) {
181 kfree(chunk
->alloc_addr
);
188 /* free a chunk of memory */
191 fore200e_chunk_free(struct fore200e
* fore200e
, struct chunk
* chunk
)
193 dma_unmap_single(fore200e
->dev
, chunk
->dma_addr
, chunk
->dma_size
,
195 kfree(chunk
->alloc_addr
);
199 * Allocate a DMA consistent chunk of memory intended to act as a communication
200 * mechanism (to hold descriptors, status, queues, etc.) shared by the driver
204 fore200e_dma_chunk_alloc(struct fore200e
*fore200e
, struct chunk
*chunk
,
205 int size
, int nbr
, int alignment
)
207 /* returned chunks are page-aligned */
208 chunk
->alloc_size
= size
* nbr
;
209 chunk
->alloc_addr
= dma_alloc_coherent(fore200e
->dev
, chunk
->alloc_size
,
210 &chunk
->dma_addr
, GFP_KERNEL
);
211 if (!chunk
->alloc_addr
)
213 chunk
->align_addr
= chunk
->alloc_addr
;
218 * Free a DMA consistent chunk of memory.
221 fore200e_dma_chunk_free(struct fore200e
* fore200e
, struct chunk
* chunk
)
223 dma_free_coherent(fore200e
->dev
, chunk
->alloc_size
, chunk
->alloc_addr
,
228 fore200e_spin(int msecs
)
230 unsigned long timeout
= jiffies
+ msecs_to_jiffies(msecs
);
231 while (time_before(jiffies
, timeout
));
236 fore200e_poll(struct fore200e
* fore200e
, volatile u32
* addr
, u32 val
, int msecs
)
238 unsigned long timeout
= jiffies
+ msecs_to_jiffies(msecs
);
243 if ((ok
= (*addr
== val
)) || (*addr
& STATUS_ERROR
))
246 } while (time_before(jiffies
, timeout
));
250 printk(FORE200E
"cmd polling failed, got status 0x%08x, expected 0x%08x\n",
260 fore200e_io_poll(struct fore200e
* fore200e
, volatile u32 __iomem
*addr
, u32 val
, int msecs
)
262 unsigned long timeout
= jiffies
+ msecs_to_jiffies(msecs
);
266 if ((ok
= (fore200e
->bus
->read(addr
) == val
)))
269 } while (time_before(jiffies
, timeout
));
273 printk(FORE200E
"I/O polling failed, got status 0x%08x, expected 0x%08x\n",
274 fore200e
->bus
->read(addr
), val
);
283 fore200e_free_rx_buf(struct fore200e
* fore200e
)
285 int scheme
, magn
, nbr
;
286 struct buffer
* buffer
;
288 for (scheme
= 0; scheme
< BUFFER_SCHEME_NBR
; scheme
++) {
289 for (magn
= 0; magn
< BUFFER_MAGN_NBR
; magn
++) {
291 if ((buffer
= fore200e
->host_bsq
[ scheme
][ magn
].buffer
) != NULL
) {
293 for (nbr
= 0; nbr
< fore200e_rx_buf_nbr
[ scheme
][ magn
]; nbr
++) {
295 struct chunk
* data
= &buffer
[ nbr
].data
;
297 if (data
->alloc_addr
!= NULL
)
298 fore200e_chunk_free(fore200e
, data
);
307 fore200e_uninit_bs_queue(struct fore200e
* fore200e
)
311 for (scheme
= 0; scheme
< BUFFER_SCHEME_NBR
; scheme
++) {
312 for (magn
= 0; magn
< BUFFER_MAGN_NBR
; magn
++) {
314 struct chunk
* status
= &fore200e
->host_bsq
[ scheme
][ magn
].status
;
315 struct chunk
* rbd_block
= &fore200e
->host_bsq
[ scheme
][ magn
].rbd_block
;
317 if (status
->alloc_addr
)
318 fore200e_dma_chunk_free(fore200e
, status
);
320 if (rbd_block
->alloc_addr
)
321 fore200e_dma_chunk_free(fore200e
, rbd_block
);
328 fore200e_reset(struct fore200e
* fore200e
, int diag
)
332 fore200e
->cp_monitor
= fore200e
->virt_base
+ FORE200E_CP_MONITOR_OFFSET
;
334 fore200e
->bus
->write(BSTAT_COLD_START
, &fore200e
->cp_monitor
->bstat
);
336 fore200e
->bus
->reset(fore200e
);
339 ok
= fore200e_io_poll(fore200e
, &fore200e
->cp_monitor
->bstat
, BSTAT_SELFTEST_OK
, 1000);
342 printk(FORE200E
"device %s self-test failed\n", fore200e
->name
);
346 printk(FORE200E
"device %s self-test passed\n", fore200e
->name
);
348 fore200e
->state
= FORE200E_STATE_RESET
;
356 fore200e_shutdown(struct fore200e
* fore200e
)
358 printk(FORE200E
"removing device %s at 0x%lx, IRQ %s\n",
359 fore200e
->name
, fore200e
->phys_base
,
360 fore200e_irq_itoa(fore200e
->irq
));
362 if (fore200e
->state
> FORE200E_STATE_RESET
) {
363 /* first, reset the board to prevent further interrupts or data transfers */
364 fore200e_reset(fore200e
, 0);
367 /* then, release all allocated resources */
368 switch(fore200e
->state
) {
370 case FORE200E_STATE_COMPLETE
:
371 kfree(fore200e
->stats
);
374 case FORE200E_STATE_IRQ
:
375 free_irq(fore200e
->irq
, fore200e
->atm_dev
);
378 case FORE200E_STATE_ALLOC_BUF
:
379 fore200e_free_rx_buf(fore200e
);
382 case FORE200E_STATE_INIT_BSQ
:
383 fore200e_uninit_bs_queue(fore200e
);
386 case FORE200E_STATE_INIT_RXQ
:
387 fore200e_dma_chunk_free(fore200e
, &fore200e
->host_rxq
.status
);
388 fore200e_dma_chunk_free(fore200e
, &fore200e
->host_rxq
.rpd
);
391 case FORE200E_STATE_INIT_TXQ
:
392 fore200e_dma_chunk_free(fore200e
, &fore200e
->host_txq
.status
);
393 fore200e_dma_chunk_free(fore200e
, &fore200e
->host_txq
.tpd
);
396 case FORE200E_STATE_INIT_CMDQ
:
397 fore200e_dma_chunk_free(fore200e
, &fore200e
->host_cmdq
.status
);
400 case FORE200E_STATE_INITIALIZE
:
401 /* nothing to do for that state */
403 case FORE200E_STATE_START_FW
:
404 /* nothing to do for that state */
406 case FORE200E_STATE_RESET
:
407 /* nothing to do for that state */
409 case FORE200E_STATE_MAP
:
410 fore200e
->bus
->unmap(fore200e
);
413 case FORE200E_STATE_CONFIGURE
:
414 /* nothing to do for that state */
416 case FORE200E_STATE_REGISTER
:
417 /* XXX shouldn't we *start* by deregistering the device? */
418 atm_dev_deregister(fore200e
->atm_dev
);
421 case FORE200E_STATE_BLANK
:
422 /* nothing to do for that state */
430 static u32
fore200e_pca_read(volatile u32 __iomem
*addr
)
432 /* on big-endian hosts, the board is configured to convert
433 the endianess of slave RAM accesses */
434 return le32_to_cpu(readl(addr
));
438 static void fore200e_pca_write(u32 val
, volatile u32 __iomem
*addr
)
440 /* on big-endian hosts, the board is configured to convert
441 the endianess of slave RAM accesses */
442 writel(cpu_to_le32(val
), addr
);
446 fore200e_pca_irq_check(struct fore200e
* fore200e
)
448 /* this is a 1 bit register */
449 int irq_posted
= readl(fore200e
->regs
.pca
.psr
);
451 #if defined(CONFIG_ATM_FORE200E_DEBUG) && (CONFIG_ATM_FORE200E_DEBUG == 2)
452 if (irq_posted
&& (readl(fore200e
->regs
.pca
.hcr
) & PCA200E_HCR_OUTFULL
)) {
453 DPRINTK(2,"FIFO OUT full, device %d\n", fore200e
->atm_dev
->number
);
462 fore200e_pca_irq_ack(struct fore200e
* fore200e
)
464 writel(PCA200E_HCR_CLRINTR
, fore200e
->regs
.pca
.hcr
);
469 fore200e_pca_reset(struct fore200e
* fore200e
)
471 writel(PCA200E_HCR_RESET
, fore200e
->regs
.pca
.hcr
);
473 writel(0, fore200e
->regs
.pca
.hcr
);
477 static int fore200e_pca_map(struct fore200e
* fore200e
)
479 DPRINTK(2, "device %s being mapped in memory\n", fore200e
->name
);
481 fore200e
->virt_base
= ioremap(fore200e
->phys_base
, PCA200E_IOSPACE_LENGTH
);
483 if (fore200e
->virt_base
== NULL
) {
484 printk(FORE200E
"can't map device %s\n", fore200e
->name
);
488 DPRINTK(1, "device %s mapped to 0x%p\n", fore200e
->name
, fore200e
->virt_base
);
490 /* gain access to the PCA specific registers */
491 fore200e
->regs
.pca
.hcr
= fore200e
->virt_base
+ PCA200E_HCR_OFFSET
;
492 fore200e
->regs
.pca
.imr
= fore200e
->virt_base
+ PCA200E_IMR_OFFSET
;
493 fore200e
->regs
.pca
.psr
= fore200e
->virt_base
+ PCA200E_PSR_OFFSET
;
495 fore200e
->state
= FORE200E_STATE_MAP
;
501 fore200e_pca_unmap(struct fore200e
* fore200e
)
503 DPRINTK(2, "device %s being unmapped from memory\n", fore200e
->name
);
505 if (fore200e
->virt_base
!= NULL
)
506 iounmap(fore200e
->virt_base
);
510 static int fore200e_pca_configure(struct fore200e
*fore200e
)
512 struct pci_dev
*pci_dev
= to_pci_dev(fore200e
->dev
);
513 u8 master_ctrl
, latency
;
515 DPRINTK(2, "device %s being configured\n", fore200e
->name
);
517 if ((pci_dev
->irq
== 0) || (pci_dev
->irq
== 0xFF)) {
518 printk(FORE200E
"incorrect IRQ setting - misconfigured PCI-PCI bridge?\n");
522 pci_read_config_byte(pci_dev
, PCA200E_PCI_MASTER_CTRL
, &master_ctrl
);
524 master_ctrl
= master_ctrl
525 #if defined(__BIG_ENDIAN)
526 /* request the PCA board to convert the endianess of slave RAM accesses */
527 | PCA200E_CTRL_CONVERT_ENDIAN
530 | PCA200E_CTRL_DIS_CACHE_RD
531 | PCA200E_CTRL_DIS_WRT_INVAL
532 | PCA200E_CTRL_ENA_CONT_REQ_MODE
533 | PCA200E_CTRL_2_CACHE_WRT_INVAL
535 | PCA200E_CTRL_LARGE_PCI_BURSTS
;
537 pci_write_config_byte(pci_dev
, PCA200E_PCI_MASTER_CTRL
, master_ctrl
);
539 /* raise latency from 32 (default) to 192, as this seems to prevent NIC
540 lockups (under heavy rx loads) due to continuous 'FIFO OUT full' condition.
541 this may impact the performances of other PCI devices on the same bus, though */
543 pci_write_config_byte(pci_dev
, PCI_LATENCY_TIMER
, latency
);
545 fore200e
->state
= FORE200E_STATE_CONFIGURE
;
551 fore200e_pca_prom_read(struct fore200e
* fore200e
, struct prom_data
* prom
)
553 struct host_cmdq
* cmdq
= &fore200e
->host_cmdq
;
554 struct host_cmdq_entry
* entry
= &cmdq
->host_entry
[ cmdq
->head
];
555 struct prom_opcode opcode
;
559 FORE200E_NEXT_ENTRY(cmdq
->head
, QUEUE_SIZE_CMD
);
561 opcode
.opcode
= OPCODE_GET_PROM
;
564 prom_dma
= dma_map_single(fore200e
->dev
, prom
, sizeof(struct prom_data
),
566 if (dma_mapping_error(fore200e
->dev
, prom_dma
))
569 fore200e
->bus
->write(prom_dma
, &entry
->cp_entry
->cmd
.prom_block
.prom_haddr
);
571 *entry
->status
= STATUS_PENDING
;
573 fore200e
->bus
->write(*(u32
*)&opcode
, (u32 __iomem
*)&entry
->cp_entry
->cmd
.prom_block
.opcode
);
575 ok
= fore200e_poll(fore200e
, entry
->status
, STATUS_COMPLETE
, 400);
577 *entry
->status
= STATUS_FREE
;
579 dma_unmap_single(fore200e
->dev
, prom_dma
, sizeof(struct prom_data
), DMA_FROM_DEVICE
);
582 printk(FORE200E
"unable to get PROM data from device %s\n", fore200e
->name
);
586 #if defined(__BIG_ENDIAN)
588 #define swap_here(addr) (*((u32*)(addr)) = swab32( *((u32*)(addr)) ))
590 /* MAC address is stored as little-endian */
591 swap_here(&prom
->mac_addr
[0]);
592 swap_here(&prom
->mac_addr
[4]);
600 fore200e_pca_proc_read(struct fore200e
* fore200e
, char *page
)
602 struct pci_dev
*pci_dev
= to_pci_dev(fore200e
->dev
);
604 return sprintf(page
, " PCI bus/slot/function:\t%d/%d/%d\n",
605 pci_dev
->bus
->number
, PCI_SLOT(pci_dev
->devfn
), PCI_FUNC(pci_dev
->devfn
));
608 static const struct fore200e_bus fore200e_pci_ops
= {
609 .model_name
= "PCA-200E",
610 .proc_name
= "pca200e",
611 .descr_alignment
= 32,
612 .buffer_alignment
= 4,
613 .status_alignment
= 32,
614 .read
= fore200e_pca_read
,
615 .write
= fore200e_pca_write
,
616 .configure
= fore200e_pca_configure
,
617 .map
= fore200e_pca_map
,
618 .reset
= fore200e_pca_reset
,
619 .prom_read
= fore200e_pca_prom_read
,
620 .unmap
= fore200e_pca_unmap
,
621 .irq_check
= fore200e_pca_irq_check
,
622 .irq_ack
= fore200e_pca_irq_ack
,
623 .proc_read
= fore200e_pca_proc_read
,
625 #endif /* CONFIG_PCI */
629 static u32
fore200e_sba_read(volatile u32 __iomem
*addr
)
631 return sbus_readl(addr
);
634 static void fore200e_sba_write(u32 val
, volatile u32 __iomem
*addr
)
636 sbus_writel(val
, addr
);
639 static void fore200e_sba_irq_enable(struct fore200e
*fore200e
)
641 u32 hcr
= fore200e
->bus
->read(fore200e
->regs
.sba
.hcr
) & SBA200E_HCR_STICKY
;
642 fore200e
->bus
->write(hcr
| SBA200E_HCR_INTR_ENA
, fore200e
->regs
.sba
.hcr
);
645 static int fore200e_sba_irq_check(struct fore200e
*fore200e
)
647 return fore200e
->bus
->read(fore200e
->regs
.sba
.hcr
) & SBA200E_HCR_INTR_REQ
;
650 static void fore200e_sba_irq_ack(struct fore200e
*fore200e
)
652 u32 hcr
= fore200e
->bus
->read(fore200e
->regs
.sba
.hcr
) & SBA200E_HCR_STICKY
;
653 fore200e
->bus
->write(hcr
| SBA200E_HCR_INTR_CLR
, fore200e
->regs
.sba
.hcr
);
656 static void fore200e_sba_reset(struct fore200e
*fore200e
)
658 fore200e
->bus
->write(SBA200E_HCR_RESET
, fore200e
->regs
.sba
.hcr
);
660 fore200e
->bus
->write(0, fore200e
->regs
.sba
.hcr
);
663 static int __init
fore200e_sba_map(struct fore200e
*fore200e
)
665 struct platform_device
*op
= to_platform_device(fore200e
->dev
);
668 /* gain access to the SBA specific registers */
669 fore200e
->regs
.sba
.hcr
= of_ioremap(&op
->resource
[0], 0, SBA200E_HCR_LENGTH
, "SBA HCR");
670 fore200e
->regs
.sba
.bsr
= of_ioremap(&op
->resource
[1], 0, SBA200E_BSR_LENGTH
, "SBA BSR");
671 fore200e
->regs
.sba
.isr
= of_ioremap(&op
->resource
[2], 0, SBA200E_ISR_LENGTH
, "SBA ISR");
672 fore200e
->virt_base
= of_ioremap(&op
->resource
[3], 0, SBA200E_RAM_LENGTH
, "SBA RAM");
674 if (!fore200e
->virt_base
) {
675 printk(FORE200E
"unable to map RAM of device %s\n", fore200e
->name
);
679 DPRINTK(1, "device %s mapped to 0x%p\n", fore200e
->name
, fore200e
->virt_base
);
681 fore200e
->bus
->write(0x02, fore200e
->regs
.sba
.isr
); /* XXX hardwired interrupt level */
683 /* get the supported DVMA burst sizes */
684 bursts
= of_getintprop_default(op
->dev
.of_node
->parent
, "burst-sizes", 0x00);
686 if (sbus_can_dma_64bit())
687 sbus_set_sbus64(&op
->dev
, bursts
);
689 fore200e
->state
= FORE200E_STATE_MAP
;
693 static void fore200e_sba_unmap(struct fore200e
*fore200e
)
695 struct platform_device
*op
= to_platform_device(fore200e
->dev
);
697 of_iounmap(&op
->resource
[0], fore200e
->regs
.sba
.hcr
, SBA200E_HCR_LENGTH
);
698 of_iounmap(&op
->resource
[1], fore200e
->regs
.sba
.bsr
, SBA200E_BSR_LENGTH
);
699 of_iounmap(&op
->resource
[2], fore200e
->regs
.sba
.isr
, SBA200E_ISR_LENGTH
);
700 of_iounmap(&op
->resource
[3], fore200e
->virt_base
, SBA200E_RAM_LENGTH
);
703 static int __init
fore200e_sba_configure(struct fore200e
*fore200e
)
705 fore200e
->state
= FORE200E_STATE_CONFIGURE
;
709 static int __init
fore200e_sba_prom_read(struct fore200e
*fore200e
, struct prom_data
*prom
)
711 struct platform_device
*op
= to_platform_device(fore200e
->dev
);
715 prop
= of_get_property(op
->dev
.of_node
, "madaddrlo2", &len
);
718 memcpy(&prom
->mac_addr
[4], prop
, 4);
720 prop
= of_get_property(op
->dev
.of_node
, "madaddrhi4", &len
);
723 memcpy(&prom
->mac_addr
[2], prop
, 4);
725 prom
->serial_number
= of_getintprop_default(op
->dev
.of_node
,
727 prom
->hw_revision
= of_getintprop_default(op
->dev
.of_node
,
733 static int fore200e_sba_proc_read(struct fore200e
*fore200e
, char *page
)
735 struct platform_device
*op
= to_platform_device(fore200e
->dev
);
736 const struct linux_prom_registers
*regs
;
738 regs
= of_get_property(op
->dev
.of_node
, "reg", NULL
);
740 return sprintf(page
, " SBUS slot/device:\t\t%d/'%pOFn'\n",
741 (regs
? regs
->which_io
: 0), op
->dev
.of_node
);
744 static const struct fore200e_bus fore200e_sbus_ops
= {
745 .model_name
= "SBA-200E",
746 .proc_name
= "sba200e",
747 .descr_alignment
= 32,
748 .buffer_alignment
= 64,
749 .status_alignment
= 32,
750 .read
= fore200e_sba_read
,
751 .write
= fore200e_sba_write
,
752 .configure
= fore200e_sba_configure
,
753 .map
= fore200e_sba_map
,
754 .reset
= fore200e_sba_reset
,
755 .prom_read
= fore200e_sba_prom_read
,
756 .unmap
= fore200e_sba_unmap
,
757 .irq_enable
= fore200e_sba_irq_enable
,
758 .irq_check
= fore200e_sba_irq_check
,
759 .irq_ack
= fore200e_sba_irq_ack
,
760 .proc_read
= fore200e_sba_proc_read
,
762 #endif /* CONFIG_SBUS */
765 fore200e_tx_irq(struct fore200e
* fore200e
)
767 struct host_txq
* txq
= &fore200e
->host_txq
;
768 struct host_txq_entry
* entry
;
770 struct fore200e_vc_map
* vc_map
;
772 if (fore200e
->host_txq
.txing
== 0)
777 entry
= &txq
->host_entry
[ txq
->tail
];
779 if ((*entry
->status
& STATUS_COMPLETE
) == 0) {
783 DPRINTK(3, "TX COMPLETED: entry = %p [tail = %d], vc_map = %p, skb = %p\n",
784 entry
, txq
->tail
, entry
->vc_map
, entry
->skb
);
786 /* free copy of misaligned data */
789 /* remove DMA mapping */
790 dma_unmap_single(fore200e
->dev
, entry
->tpd
->tsd
[ 0 ].buffer
, entry
->tpd
->tsd
[ 0 ].length
,
793 vc_map
= entry
->vc_map
;
795 /* vcc closed since the time the entry was submitted for tx? */
796 if ((vc_map
->vcc
== NULL
) ||
797 (test_bit(ATM_VF_READY
, &vc_map
->vcc
->flags
) == 0)) {
799 DPRINTK(1, "no ready vcc found for PDU sent on device %d\n",
800 fore200e
->atm_dev
->number
);
802 dev_kfree_skb_any(entry
->skb
);
807 /* vcc closed then immediately re-opened? */
808 if (vc_map
->incarn
!= entry
->incarn
) {
810 /* when a vcc is closed, some PDUs may be still pending in the tx queue.
811 if the same vcc is immediately re-opened, those pending PDUs must
812 not be popped after the completion of their emission, as they refer
813 to the prior incarnation of that vcc. otherwise, sk_atm(vcc)->sk_wmem_alloc
814 would be decremented by the size of the (unrelated) skb, possibly
815 leading to a negative sk->sk_wmem_alloc count, ultimately freezing the vcc.
816 we thus bind the tx entry to the current incarnation of the vcc
817 when the entry is submitted for tx. When the tx later completes,
818 if the incarnation number of the tx entry does not match the one
819 of the vcc, then this implies that the vcc has been closed then re-opened.
820 we thus just drop the skb here. */
822 DPRINTK(1, "vcc closed-then-re-opened; dropping PDU sent on device %d\n",
823 fore200e
->atm_dev
->number
);
825 dev_kfree_skb_any(entry
->skb
);
831 /* notify tx completion */
833 vcc
->pop(vcc
, entry
->skb
);
836 dev_kfree_skb_any(entry
->skb
);
839 /* check error condition */
840 if (*entry
->status
& STATUS_ERROR
)
841 atomic_inc(&vcc
->stats
->tx_err
);
843 atomic_inc(&vcc
->stats
->tx
);
847 *entry
->status
= STATUS_FREE
;
849 fore200e
->host_txq
.txing
--;
851 FORE200E_NEXT_ENTRY(txq
->tail
, QUEUE_SIZE_TX
);
856 #ifdef FORE200E_BSQ_DEBUG
857 int bsq_audit(int where
, struct host_bsq
* bsq
, int scheme
, int magn
)
859 struct buffer
* buffer
;
862 buffer
= bsq
->freebuf
;
865 if (buffer
->supplied
) {
866 printk(FORE200E
"bsq_audit(%d): queue %d.%d, buffer %ld supplied but in free list!\n",
867 where
, scheme
, magn
, buffer
->index
);
870 if (buffer
->magn
!= magn
) {
871 printk(FORE200E
"bsq_audit(%d): queue %d.%d, buffer %ld, unexpected magn = %d\n",
872 where
, scheme
, magn
, buffer
->index
, buffer
->magn
);
875 if (buffer
->scheme
!= scheme
) {
876 printk(FORE200E
"bsq_audit(%d): queue %d.%d, buffer %ld, unexpected scheme = %d\n",
877 where
, scheme
, magn
, buffer
->index
, buffer
->scheme
);
880 if ((buffer
->index
< 0) || (buffer
->index
>= fore200e_rx_buf_nbr
[ scheme
][ magn
])) {
881 printk(FORE200E
"bsq_audit(%d): queue %d.%d, out of range buffer index = %ld !\n",
882 where
, scheme
, magn
, buffer
->index
);
886 buffer
= buffer
->next
;
889 if (count
!= bsq
->freebuf_count
) {
890 printk(FORE200E
"bsq_audit(%d): queue %d.%d, %d bufs in free list, but freebuf_count = %d\n",
891 where
, scheme
, magn
, count
, bsq
->freebuf_count
);
899 fore200e_supply(struct fore200e
* fore200e
)
903 struct host_bsq
* bsq
;
904 struct host_bsq_entry
* entry
;
905 struct buffer
* buffer
;
907 for (scheme
= 0; scheme
< BUFFER_SCHEME_NBR
; scheme
++) {
908 for (magn
= 0; magn
< BUFFER_MAGN_NBR
; magn
++) {
910 bsq
= &fore200e
->host_bsq
[ scheme
][ magn
];
912 #ifdef FORE200E_BSQ_DEBUG
913 bsq_audit(1, bsq
, scheme
, magn
);
915 while (bsq
->freebuf_count
>= RBD_BLK_SIZE
) {
917 DPRINTK(2, "supplying %d rx buffers to queue %d / %d, freebuf_count = %d\n",
918 RBD_BLK_SIZE
, scheme
, magn
, bsq
->freebuf_count
);
920 entry
= &bsq
->host_entry
[ bsq
->head
];
922 for (i
= 0; i
< RBD_BLK_SIZE
; i
++) {
924 /* take the first buffer in the free buffer list */
925 buffer
= bsq
->freebuf
;
927 printk(FORE200E
"no more free bufs in queue %d.%d, but freebuf_count = %d\n",
928 scheme
, magn
, bsq
->freebuf_count
);
931 bsq
->freebuf
= buffer
->next
;
933 #ifdef FORE200E_BSQ_DEBUG
934 if (buffer
->supplied
)
935 printk(FORE200E
"queue %d.%d, buffer %lu already supplied\n",
936 scheme
, magn
, buffer
->index
);
937 buffer
->supplied
= 1;
939 entry
->rbd_block
->rbd
[ i
].buffer_haddr
= buffer
->data
.dma_addr
;
940 entry
->rbd_block
->rbd
[ i
].handle
= FORE200E_BUF2HDL(buffer
);
943 FORE200E_NEXT_ENTRY(bsq
->head
, QUEUE_SIZE_BS
);
945 /* decrease accordingly the number of free rx buffers */
946 bsq
->freebuf_count
-= RBD_BLK_SIZE
;
948 *entry
->status
= STATUS_PENDING
;
949 fore200e
->bus
->write(entry
->rbd_block_dma
, &entry
->cp_entry
->rbd_block_haddr
);
957 fore200e_push_rpd(struct fore200e
* fore200e
, struct atm_vcc
* vcc
, struct rpd
* rpd
)
960 struct buffer
* buffer
;
961 struct fore200e_vcc
* fore200e_vcc
;
963 #ifdef FORE200E_52BYTE_AAL0_SDU
969 fore200e_vcc
= FORE200E_VCC(vcc
);
970 ASSERT(fore200e_vcc
);
972 #ifdef FORE200E_52BYTE_AAL0_SDU
973 if ((vcc
->qos
.aal
== ATM_AAL0
) && (vcc
->qos
.rxtp
.max_sdu
== ATM_AAL0_SDU
)) {
975 cell_header
= (rpd
->atm_header
.gfc
<< ATM_HDR_GFC_SHIFT
) |
976 (rpd
->atm_header
.vpi
<< ATM_HDR_VPI_SHIFT
) |
977 (rpd
->atm_header
.vci
<< ATM_HDR_VCI_SHIFT
) |
978 (rpd
->atm_header
.plt
<< ATM_HDR_PTI_SHIFT
) |
984 /* compute total PDU length */
985 for (i
= 0; i
< rpd
->nseg
; i
++)
986 pdu_len
+= rpd
->rsd
[ i
].length
;
988 skb
= alloc_skb(pdu_len
, GFP_ATOMIC
);
990 DPRINTK(2, "unable to alloc new skb, rx PDU length = %d\n", pdu_len
);
992 atomic_inc(&vcc
->stats
->rx_drop
);
996 __net_timestamp(skb
);
998 #ifdef FORE200E_52BYTE_AAL0_SDU
1000 *((u32
*)skb_put(skb
, 4)) = cell_header
;
1004 /* reassemble segments */
1005 for (i
= 0; i
< rpd
->nseg
; i
++) {
1007 /* rebuild rx buffer address from rsd handle */
1008 buffer
= FORE200E_HDL2BUF(rpd
->rsd
[ i
].handle
);
1010 /* Make device DMA transfer visible to CPU. */
1011 dma_sync_single_for_cpu(fore200e
->dev
, buffer
->data
.dma_addr
,
1012 rpd
->rsd
[i
].length
, DMA_FROM_DEVICE
);
1014 skb_put_data(skb
, buffer
->data
.align_addr
, rpd
->rsd
[i
].length
);
1016 /* Now let the device get at it again. */
1017 dma_sync_single_for_device(fore200e
->dev
, buffer
->data
.dma_addr
,
1018 rpd
->rsd
[i
].length
, DMA_FROM_DEVICE
);
1021 DPRINTK(3, "rx skb: len = %d, truesize = %d\n", skb
->len
, skb
->truesize
);
1023 if (pdu_len
< fore200e_vcc
->rx_min_pdu
)
1024 fore200e_vcc
->rx_min_pdu
= pdu_len
;
1025 if (pdu_len
> fore200e_vcc
->rx_max_pdu
)
1026 fore200e_vcc
->rx_max_pdu
= pdu_len
;
1027 fore200e_vcc
->rx_pdu
++;
1030 if (atm_charge(vcc
, skb
->truesize
) == 0) {
1032 DPRINTK(2, "receive buffers saturated for %d.%d.%d - PDU dropped\n",
1033 vcc
->itf
, vcc
->vpi
, vcc
->vci
);
1035 dev_kfree_skb_any(skb
);
1037 atomic_inc(&vcc
->stats
->rx_drop
);
1041 vcc
->push(vcc
, skb
);
1042 atomic_inc(&vcc
->stats
->rx
);
1049 fore200e_collect_rpd(struct fore200e
* fore200e
, struct rpd
* rpd
)
1051 struct host_bsq
* bsq
;
1052 struct buffer
* buffer
;
1055 for (i
= 0; i
< rpd
->nseg
; i
++) {
1057 /* rebuild rx buffer address from rsd handle */
1058 buffer
= FORE200E_HDL2BUF(rpd
->rsd
[ i
].handle
);
1060 bsq
= &fore200e
->host_bsq
[ buffer
->scheme
][ buffer
->magn
];
1062 #ifdef FORE200E_BSQ_DEBUG
1063 bsq_audit(2, bsq
, buffer
->scheme
, buffer
->magn
);
1065 if (buffer
->supplied
== 0)
1066 printk(FORE200E
"queue %d.%d, buffer %ld was not supplied\n",
1067 buffer
->scheme
, buffer
->magn
, buffer
->index
);
1068 buffer
->supplied
= 0;
1071 /* re-insert the buffer into the free buffer list */
1072 buffer
->next
= bsq
->freebuf
;
1073 bsq
->freebuf
= buffer
;
1075 /* then increment the number of free rx buffers */
1076 bsq
->freebuf_count
++;
1082 fore200e_rx_irq(struct fore200e
* fore200e
)
1084 struct host_rxq
* rxq
= &fore200e
->host_rxq
;
1085 struct host_rxq_entry
* entry
;
1086 struct atm_vcc
* vcc
;
1087 struct fore200e_vc_map
* vc_map
;
1091 entry
= &rxq
->host_entry
[ rxq
->head
];
1093 /* no more received PDUs */
1094 if ((*entry
->status
& STATUS_COMPLETE
) == 0)
1097 vc_map
= FORE200E_VC_MAP(fore200e
, entry
->rpd
->atm_header
.vpi
, entry
->rpd
->atm_header
.vci
);
1099 if ((vc_map
->vcc
== NULL
) ||
1100 (test_bit(ATM_VF_READY
, &vc_map
->vcc
->flags
) == 0)) {
1102 DPRINTK(1, "no ready VC found for PDU received on %d.%d.%d\n",
1103 fore200e
->atm_dev
->number
,
1104 entry
->rpd
->atm_header
.vpi
, entry
->rpd
->atm_header
.vci
);
1110 if ((*entry
->status
& STATUS_ERROR
) == 0) {
1112 fore200e_push_rpd(fore200e
, vcc
, entry
->rpd
);
1115 DPRINTK(2, "damaged PDU on %d.%d.%d\n",
1116 fore200e
->atm_dev
->number
,
1117 entry
->rpd
->atm_header
.vpi
, entry
->rpd
->atm_header
.vci
);
1118 atomic_inc(&vcc
->stats
->rx_err
);
1122 FORE200E_NEXT_ENTRY(rxq
->head
, QUEUE_SIZE_RX
);
1124 fore200e_collect_rpd(fore200e
, entry
->rpd
);
1126 /* rewrite the rpd address to ack the received PDU */
1127 fore200e
->bus
->write(entry
->rpd_dma
, &entry
->cp_entry
->rpd_haddr
);
1128 *entry
->status
= STATUS_FREE
;
1130 fore200e_supply(fore200e
);
1135 #ifndef FORE200E_USE_TASKLET
1137 fore200e_irq(struct fore200e
* fore200e
)
1139 unsigned long flags
;
1141 spin_lock_irqsave(&fore200e
->q_lock
, flags
);
1142 fore200e_rx_irq(fore200e
);
1143 spin_unlock_irqrestore(&fore200e
->q_lock
, flags
);
1145 spin_lock_irqsave(&fore200e
->q_lock
, flags
);
1146 fore200e_tx_irq(fore200e
);
1147 spin_unlock_irqrestore(&fore200e
->q_lock
, flags
);
1153 fore200e_interrupt(int irq
, void* dev
)
1155 struct fore200e
* fore200e
= FORE200E_DEV((struct atm_dev
*)dev
);
1157 if (fore200e
->bus
->irq_check(fore200e
) == 0) {
1159 DPRINTK(3, "interrupt NOT triggered by device %d\n", fore200e
->atm_dev
->number
);
1162 DPRINTK(3, "interrupt triggered by device %d\n", fore200e
->atm_dev
->number
);
1164 #ifdef FORE200E_USE_TASKLET
1165 tasklet_schedule(&fore200e
->tx_tasklet
);
1166 tasklet_schedule(&fore200e
->rx_tasklet
);
1168 fore200e_irq(fore200e
);
1171 fore200e
->bus
->irq_ack(fore200e
);
1176 #ifdef FORE200E_USE_TASKLET
1178 fore200e_tx_tasklet(unsigned long data
)
1180 struct fore200e
* fore200e
= (struct fore200e
*) data
;
1181 unsigned long flags
;
1183 DPRINTK(3, "tx tasklet scheduled for device %d\n", fore200e
->atm_dev
->number
);
1185 spin_lock_irqsave(&fore200e
->q_lock
, flags
);
1186 fore200e_tx_irq(fore200e
);
1187 spin_unlock_irqrestore(&fore200e
->q_lock
, flags
);
1192 fore200e_rx_tasklet(unsigned long data
)
1194 struct fore200e
* fore200e
= (struct fore200e
*) data
;
1195 unsigned long flags
;
1197 DPRINTK(3, "rx tasklet scheduled for device %d\n", fore200e
->atm_dev
->number
);
1199 spin_lock_irqsave(&fore200e
->q_lock
, flags
);
1200 fore200e_rx_irq((struct fore200e
*) data
);
1201 spin_unlock_irqrestore(&fore200e
->q_lock
, flags
);
1207 fore200e_select_scheme(struct atm_vcc
* vcc
)
1209 /* fairly balance the VCs over (identical) buffer schemes */
1210 int scheme
= vcc
->vci
% 2 ? BUFFER_SCHEME_ONE
: BUFFER_SCHEME_TWO
;
1212 DPRINTK(1, "VC %d.%d.%d uses buffer scheme %d\n",
1213 vcc
->itf
, vcc
->vpi
, vcc
->vci
, scheme
);
1220 fore200e_activate_vcin(struct fore200e
* fore200e
, int activate
, struct atm_vcc
* vcc
, int mtu
)
1222 struct host_cmdq
* cmdq
= &fore200e
->host_cmdq
;
1223 struct host_cmdq_entry
* entry
= &cmdq
->host_entry
[ cmdq
->head
];
1224 struct activate_opcode activ_opcode
;
1225 struct deactivate_opcode deactiv_opcode
;
1228 enum fore200e_aal aal
= fore200e_atm2fore_aal(vcc
->qos
.aal
);
1230 FORE200E_NEXT_ENTRY(cmdq
->head
, QUEUE_SIZE_CMD
);
1233 FORE200E_VCC(vcc
)->scheme
= fore200e_select_scheme(vcc
);
1235 activ_opcode
.opcode
= OPCODE_ACTIVATE_VCIN
;
1236 activ_opcode
.aal
= aal
;
1237 activ_opcode
.scheme
= FORE200E_VCC(vcc
)->scheme
;
1238 activ_opcode
.pad
= 0;
1241 deactiv_opcode
.opcode
= OPCODE_DEACTIVATE_VCIN
;
1242 deactiv_opcode
.pad
= 0;
1245 vpvc
.vci
= vcc
->vci
;
1246 vpvc
.vpi
= vcc
->vpi
;
1248 *entry
->status
= STATUS_PENDING
;
1252 #ifdef FORE200E_52BYTE_AAL0_SDU
1255 /* the MTU is not used by the cp, except in the case of AAL0 */
1256 fore200e
->bus
->write(mtu
, &entry
->cp_entry
->cmd
.activate_block
.mtu
);
1257 fore200e
->bus
->write(*(u32
*)&vpvc
, (u32 __iomem
*)&entry
->cp_entry
->cmd
.activate_block
.vpvc
);
1258 fore200e
->bus
->write(*(u32
*)&activ_opcode
, (u32 __iomem
*)&entry
->cp_entry
->cmd
.activate_block
.opcode
);
1261 fore200e
->bus
->write(*(u32
*)&vpvc
, (u32 __iomem
*)&entry
->cp_entry
->cmd
.deactivate_block
.vpvc
);
1262 fore200e
->bus
->write(*(u32
*)&deactiv_opcode
, (u32 __iomem
*)&entry
->cp_entry
->cmd
.deactivate_block
.opcode
);
1265 ok
= fore200e_poll(fore200e
, entry
->status
, STATUS_COMPLETE
, 400);
1267 *entry
->status
= STATUS_FREE
;
1270 printk(FORE200E
"unable to %s VC %d.%d.%d\n",
1271 activate
? "open" : "close", vcc
->itf
, vcc
->vpi
, vcc
->vci
);
1275 DPRINTK(1, "VC %d.%d.%d %sed\n", vcc
->itf
, vcc
->vpi
, vcc
->vci
,
1276 activate
? "open" : "clos");
1282 #define FORE200E_MAX_BACK2BACK_CELLS 255 /* XXX depends on CDVT */
1285 fore200e_rate_ctrl(struct atm_qos
* qos
, struct tpd_rate
* rate
)
1287 if (qos
->txtp
.max_pcr
< ATM_OC3_PCR
) {
1289 /* compute the data cells to idle cells ratio from the tx PCR */
1290 rate
->data_cells
= qos
->txtp
.max_pcr
* FORE200E_MAX_BACK2BACK_CELLS
/ ATM_OC3_PCR
;
1291 rate
->idle_cells
= FORE200E_MAX_BACK2BACK_CELLS
- rate
->data_cells
;
1294 /* disable rate control */
1295 rate
->data_cells
= rate
->idle_cells
= 0;
1301 fore200e_open(struct atm_vcc
*vcc
)
1303 struct fore200e
* fore200e
= FORE200E_DEV(vcc
->dev
);
1304 struct fore200e_vcc
* fore200e_vcc
;
1305 struct fore200e_vc_map
* vc_map
;
1306 unsigned long flags
;
1308 short vpi
= vcc
->vpi
;
1310 ASSERT((vpi
>= 0) && (vpi
< 1<<FORE200E_VPI_BITS
));
1311 ASSERT((vci
>= 0) && (vci
< 1<<FORE200E_VCI_BITS
));
1313 spin_lock_irqsave(&fore200e
->q_lock
, flags
);
1315 vc_map
= FORE200E_VC_MAP(fore200e
, vpi
, vci
);
1318 spin_unlock_irqrestore(&fore200e
->q_lock
, flags
);
1320 printk(FORE200E
"VC %d.%d.%d already in use\n",
1321 fore200e
->atm_dev
->number
, vpi
, vci
);
1328 spin_unlock_irqrestore(&fore200e
->q_lock
, flags
);
1330 fore200e_vcc
= kzalloc(sizeof(struct fore200e_vcc
), GFP_ATOMIC
);
1331 if (fore200e_vcc
== NULL
) {
1336 DPRINTK(2, "opening %d.%d.%d:%d QoS = (tx: cl=%s, pcr=%d-%d, cdv=%d, max_sdu=%d; "
1337 "rx: cl=%s, pcr=%d-%d, cdv=%d, max_sdu=%d)\n",
1338 vcc
->itf
, vcc
->vpi
, vcc
->vci
, fore200e_atm2fore_aal(vcc
->qos
.aal
),
1339 fore200e_traffic_class
[ vcc
->qos
.txtp
.traffic_class
],
1340 vcc
->qos
.txtp
.min_pcr
, vcc
->qos
.txtp
.max_pcr
, vcc
->qos
.txtp
.max_cdv
, vcc
->qos
.txtp
.max_sdu
,
1341 fore200e_traffic_class
[ vcc
->qos
.rxtp
.traffic_class
],
1342 vcc
->qos
.rxtp
.min_pcr
, vcc
->qos
.rxtp
.max_pcr
, vcc
->qos
.rxtp
.max_cdv
, vcc
->qos
.rxtp
.max_sdu
);
1344 /* pseudo-CBR bandwidth requested? */
1345 if ((vcc
->qos
.txtp
.traffic_class
== ATM_CBR
) && (vcc
->qos
.txtp
.max_pcr
> 0)) {
1347 mutex_lock(&fore200e
->rate_mtx
);
1348 if (fore200e
->available_cell_rate
< vcc
->qos
.txtp
.max_pcr
) {
1349 mutex_unlock(&fore200e
->rate_mtx
);
1351 kfree(fore200e_vcc
);
1356 /* reserve bandwidth */
1357 fore200e
->available_cell_rate
-= vcc
->qos
.txtp
.max_pcr
;
1358 mutex_unlock(&fore200e
->rate_mtx
);
1361 vcc
->itf
= vcc
->dev
->number
;
1363 set_bit(ATM_VF_PARTIAL
,&vcc
->flags
);
1364 set_bit(ATM_VF_ADDR
, &vcc
->flags
);
1366 vcc
->dev_data
= fore200e_vcc
;
1368 if (fore200e_activate_vcin(fore200e
, 1, vcc
, vcc
->qos
.rxtp
.max_sdu
) < 0) {
1372 clear_bit(ATM_VF_ADDR
, &vcc
->flags
);
1373 clear_bit(ATM_VF_PARTIAL
,&vcc
->flags
);
1375 vcc
->dev_data
= NULL
;
1377 fore200e
->available_cell_rate
+= vcc
->qos
.txtp
.max_pcr
;
1379 kfree(fore200e_vcc
);
1383 /* compute rate control parameters */
1384 if ((vcc
->qos
.txtp
.traffic_class
== ATM_CBR
) && (vcc
->qos
.txtp
.max_pcr
> 0)) {
1386 fore200e_rate_ctrl(&vcc
->qos
, &fore200e_vcc
->rate
);
1387 set_bit(ATM_VF_HASQOS
, &vcc
->flags
);
1389 DPRINTK(3, "tx on %d.%d.%d:%d, tx PCR = %d, rx PCR = %d, data_cells = %u, idle_cells = %u\n",
1390 vcc
->itf
, vcc
->vpi
, vcc
->vci
, fore200e_atm2fore_aal(vcc
->qos
.aal
),
1391 vcc
->qos
.txtp
.max_pcr
, vcc
->qos
.rxtp
.max_pcr
,
1392 fore200e_vcc
->rate
.data_cells
, fore200e_vcc
->rate
.idle_cells
);
1395 fore200e_vcc
->tx_min_pdu
= fore200e_vcc
->rx_min_pdu
= MAX_PDU_SIZE
+ 1;
1396 fore200e_vcc
->tx_max_pdu
= fore200e_vcc
->rx_max_pdu
= 0;
1397 fore200e_vcc
->tx_pdu
= fore200e_vcc
->rx_pdu
= 0;
1399 /* new incarnation of the vcc */
1400 vc_map
->incarn
= ++fore200e
->incarn_count
;
1402 /* VC unusable before this flag is set */
1403 set_bit(ATM_VF_READY
, &vcc
->flags
);
1410 fore200e_close(struct atm_vcc
* vcc
)
1412 struct fore200e_vcc
* fore200e_vcc
;
1413 struct fore200e
* fore200e
;
1414 struct fore200e_vc_map
* vc_map
;
1415 unsigned long flags
;
1418 fore200e
= FORE200E_DEV(vcc
->dev
);
1420 ASSERT((vcc
->vpi
>= 0) && (vcc
->vpi
< 1<<FORE200E_VPI_BITS
));
1421 ASSERT((vcc
->vci
>= 0) && (vcc
->vci
< 1<<FORE200E_VCI_BITS
));
1423 DPRINTK(2, "closing %d.%d.%d:%d\n", vcc
->itf
, vcc
->vpi
, vcc
->vci
, fore200e_atm2fore_aal(vcc
->qos
.aal
));
1425 clear_bit(ATM_VF_READY
, &vcc
->flags
);
1427 fore200e_activate_vcin(fore200e
, 0, vcc
, 0);
1429 spin_lock_irqsave(&fore200e
->q_lock
, flags
);
1431 vc_map
= FORE200E_VC_MAP(fore200e
, vcc
->vpi
, vcc
->vci
);
1433 /* the vc is no longer considered as "in use" by fore200e_open() */
1436 vcc
->itf
= vcc
->vci
= vcc
->vpi
= 0;
1438 fore200e_vcc
= FORE200E_VCC(vcc
);
1439 vcc
->dev_data
= NULL
;
1441 spin_unlock_irqrestore(&fore200e
->q_lock
, flags
);
1443 /* release reserved bandwidth, if any */
1444 if ((vcc
->qos
.txtp
.traffic_class
== ATM_CBR
) && (vcc
->qos
.txtp
.max_pcr
> 0)) {
1446 mutex_lock(&fore200e
->rate_mtx
);
1447 fore200e
->available_cell_rate
+= vcc
->qos
.txtp
.max_pcr
;
1448 mutex_unlock(&fore200e
->rate_mtx
);
1450 clear_bit(ATM_VF_HASQOS
, &vcc
->flags
);
1453 clear_bit(ATM_VF_ADDR
, &vcc
->flags
);
1454 clear_bit(ATM_VF_PARTIAL
,&vcc
->flags
);
1456 ASSERT(fore200e_vcc
);
1457 kfree(fore200e_vcc
);
1462 fore200e_send(struct atm_vcc
*vcc
, struct sk_buff
*skb
)
1464 struct fore200e
* fore200e
;
1465 struct fore200e_vcc
* fore200e_vcc
;
1466 struct fore200e_vc_map
* vc_map
;
1467 struct host_txq
* txq
;
1468 struct host_txq_entry
* entry
;
1470 struct tpd_haddr tpd_haddr
;
1471 int retry
= CONFIG_ATM_FORE200E_TX_RETRY
;
1473 int tx_len
= skb
->len
;
1474 u32
* cell_header
= NULL
;
1475 unsigned char* skb_data
;
1477 unsigned char* data
;
1478 unsigned long flags
;
1483 fore200e
= FORE200E_DEV(vcc
->dev
);
1484 fore200e_vcc
= FORE200E_VCC(vcc
);
1489 txq
= &fore200e
->host_txq
;
1493 if (!test_bit(ATM_VF_READY
, &vcc
->flags
)) {
1494 DPRINTK(1, "VC %d.%d.%d not ready for tx\n", vcc
->itf
, vcc
->vpi
, vcc
->vpi
);
1495 dev_kfree_skb_any(skb
);
1499 #ifdef FORE200E_52BYTE_AAL0_SDU
1500 if ((vcc
->qos
.aal
== ATM_AAL0
) && (vcc
->qos
.txtp
.max_sdu
== ATM_AAL0_SDU
)) {
1501 cell_header
= (u32
*) skb
->data
;
1502 skb_data
= skb
->data
+ 4; /* skip 4-byte cell header */
1503 skb_len
= tx_len
= skb
->len
- 4;
1505 DPRINTK(3, "user-supplied cell header = 0x%08x\n", *cell_header
);
1510 skb_data
= skb
->data
;
1514 if (((unsigned long)skb_data
) & 0x3) {
1516 DPRINTK(2, "misaligned tx PDU on device %s\n", fore200e
->name
);
1521 if ((vcc
->qos
.aal
== ATM_AAL0
) && (skb_len
% ATM_CELL_PAYLOAD
)) {
1523 /* this simply NUKES the PCA board */
1524 DPRINTK(2, "incomplete tx AAL0 PDU on device %s\n", fore200e
->name
);
1526 tx_len
= ((skb_len
/ ATM_CELL_PAYLOAD
) + 1) * ATM_CELL_PAYLOAD
;
1530 data
= kmalloc(tx_len
, GFP_ATOMIC
);
1536 dev_kfree_skb_any(skb
);
1541 memcpy(data
, skb_data
, skb_len
);
1542 if (skb_len
< tx_len
)
1543 memset(data
+ skb_len
, 0x00, tx_len
- skb_len
);
1549 vc_map
= FORE200E_VC_MAP(fore200e
, vcc
->vpi
, vcc
->vci
);
1550 ASSERT(vc_map
->vcc
== vcc
);
1554 spin_lock_irqsave(&fore200e
->q_lock
, flags
);
1556 entry
= &txq
->host_entry
[ txq
->head
];
1558 if ((*entry
->status
!= STATUS_FREE
) || (txq
->txing
>= QUEUE_SIZE_TX
- 2)) {
1560 /* try to free completed tx queue entries */
1561 fore200e_tx_irq(fore200e
);
1563 if (*entry
->status
!= STATUS_FREE
) {
1565 spin_unlock_irqrestore(&fore200e
->q_lock
, flags
);
1567 /* retry once again? */
1573 atomic_inc(&vcc
->stats
->tx_err
);
1576 DPRINTK(2, "tx queue of device %s is saturated, PDU dropped - heartbeat is %08x\n",
1577 fore200e
->name
, fore200e
->cp_queues
->heartbeat
);
1582 dev_kfree_skb_any(skb
);
1592 entry
->incarn
= vc_map
->incarn
;
1593 entry
->vc_map
= vc_map
;
1595 entry
->data
= tx_copy
? data
: NULL
;
1598 tpd
->tsd
[ 0 ].buffer
= dma_map_single(fore200e
->dev
, data
, tx_len
,
1600 if (dma_mapping_error(fore200e
->dev
, tpd
->tsd
[0].buffer
)) {
1603 spin_unlock_irqrestore(&fore200e
->q_lock
, flags
);
1606 tpd
->tsd
[ 0 ].length
= tx_len
;
1608 FORE200E_NEXT_ENTRY(txq
->head
, QUEUE_SIZE_TX
);
1611 /* The dma_map call above implies a dma_sync so the device can use it,
1612 * thus no explicit dma_sync call is necessary here.
1615 DPRINTK(3, "tx on %d.%d.%d:%d, len = %u (%u)\n",
1616 vcc
->itf
, vcc
->vpi
, vcc
->vci
, fore200e_atm2fore_aal(vcc
->qos
.aal
),
1617 tpd
->tsd
[0].length
, skb_len
);
1619 if (skb_len
< fore200e_vcc
->tx_min_pdu
)
1620 fore200e_vcc
->tx_min_pdu
= skb_len
;
1621 if (skb_len
> fore200e_vcc
->tx_max_pdu
)
1622 fore200e_vcc
->tx_max_pdu
= skb_len
;
1623 fore200e_vcc
->tx_pdu
++;
1625 /* set tx rate control information */
1626 tpd
->rate
.data_cells
= fore200e_vcc
->rate
.data_cells
;
1627 tpd
->rate
.idle_cells
= fore200e_vcc
->rate
.idle_cells
;
1630 tpd
->atm_header
.clp
= (*cell_header
& ATM_HDR_CLP
);
1631 tpd
->atm_header
.plt
= (*cell_header
& ATM_HDR_PTI_MASK
) >> ATM_HDR_PTI_SHIFT
;
1632 tpd
->atm_header
.vci
= (*cell_header
& ATM_HDR_VCI_MASK
) >> ATM_HDR_VCI_SHIFT
;
1633 tpd
->atm_header
.vpi
= (*cell_header
& ATM_HDR_VPI_MASK
) >> ATM_HDR_VPI_SHIFT
;
1634 tpd
->atm_header
.gfc
= (*cell_header
& ATM_HDR_GFC_MASK
) >> ATM_HDR_GFC_SHIFT
;
1637 /* set the ATM header, common to all cells conveying the PDU */
1638 tpd
->atm_header
.clp
= 0;
1639 tpd
->atm_header
.plt
= 0;
1640 tpd
->atm_header
.vci
= vcc
->vci
;
1641 tpd
->atm_header
.vpi
= vcc
->vpi
;
1642 tpd
->atm_header
.gfc
= 0;
1645 tpd
->spec
.length
= tx_len
;
1647 tpd
->spec
.aal
= fore200e_atm2fore_aal(vcc
->qos
.aal
);
1650 tpd_haddr
.size
= sizeof(struct tpd
) / (1<<TPD_HADDR_SHIFT
); /* size is expressed in 32 byte blocks */
1652 tpd_haddr
.haddr
= entry
->tpd_dma
>> TPD_HADDR_SHIFT
; /* shift the address, as we are in a bitfield */
1654 *entry
->status
= STATUS_PENDING
;
1655 fore200e
->bus
->write(*(u32
*)&tpd_haddr
, (u32 __iomem
*)&entry
->cp_entry
->tpd_haddr
);
1657 spin_unlock_irqrestore(&fore200e
->q_lock
, flags
);
1664 fore200e_getstats(struct fore200e
* fore200e
)
1666 struct host_cmdq
* cmdq
= &fore200e
->host_cmdq
;
1667 struct host_cmdq_entry
* entry
= &cmdq
->host_entry
[ cmdq
->head
];
1668 struct stats_opcode opcode
;
1672 if (fore200e
->stats
== NULL
) {
1673 fore200e
->stats
= kzalloc(sizeof(struct stats
), GFP_KERNEL
);
1674 if (fore200e
->stats
== NULL
)
1678 stats_dma_addr
= dma_map_single(fore200e
->dev
, fore200e
->stats
,
1679 sizeof(struct stats
), DMA_FROM_DEVICE
);
1680 if (dma_mapping_error(fore200e
->dev
, stats_dma_addr
))
1683 FORE200E_NEXT_ENTRY(cmdq
->head
, QUEUE_SIZE_CMD
);
1685 opcode
.opcode
= OPCODE_GET_STATS
;
1688 fore200e
->bus
->write(stats_dma_addr
, &entry
->cp_entry
->cmd
.stats_block
.stats_haddr
);
1690 *entry
->status
= STATUS_PENDING
;
1692 fore200e
->bus
->write(*(u32
*)&opcode
, (u32 __iomem
*)&entry
->cp_entry
->cmd
.stats_block
.opcode
);
1694 ok
= fore200e_poll(fore200e
, entry
->status
, STATUS_COMPLETE
, 400);
1696 *entry
->status
= STATUS_FREE
;
1698 dma_unmap_single(fore200e
->dev
, stats_dma_addr
, sizeof(struct stats
), DMA_FROM_DEVICE
);
1701 printk(FORE200E
"unable to get statistics from device %s\n", fore200e
->name
);
1708 #if 0 /* currently unused */
1710 fore200e_get_oc3(struct fore200e
* fore200e
, struct oc3_regs
* regs
)
1712 struct host_cmdq
* cmdq
= &fore200e
->host_cmdq
;
1713 struct host_cmdq_entry
* entry
= &cmdq
->host_entry
[ cmdq
->head
];
1714 struct oc3_opcode opcode
;
1716 u32 oc3_regs_dma_addr
;
1718 oc3_regs_dma_addr
= fore200e
->bus
->dma_map(fore200e
, regs
, sizeof(struct oc3_regs
), DMA_FROM_DEVICE
);
1720 FORE200E_NEXT_ENTRY(cmdq
->head
, QUEUE_SIZE_CMD
);
1722 opcode
.opcode
= OPCODE_GET_OC3
;
1727 fore200e
->bus
->write(oc3_regs_dma_addr
, &entry
->cp_entry
->cmd
.oc3_block
.regs_haddr
);
1729 *entry
->status
= STATUS_PENDING
;
1731 fore200e
->bus
->write(*(u32
*)&opcode
, (u32
*)&entry
->cp_entry
->cmd
.oc3_block
.opcode
);
1733 ok
= fore200e_poll(fore200e
, entry
->status
, STATUS_COMPLETE
, 400);
1735 *entry
->status
= STATUS_FREE
;
1737 fore200e
->bus
->dma_unmap(fore200e
, oc3_regs_dma_addr
, sizeof(struct oc3_regs
), DMA_FROM_DEVICE
);
1740 printk(FORE200E
"unable to get OC-3 regs of device %s\n", fore200e
->name
);
1750 fore200e_set_oc3(struct fore200e
* fore200e
, u32 reg
, u32 value
, u32 mask
)
1752 struct host_cmdq
* cmdq
= &fore200e
->host_cmdq
;
1753 struct host_cmdq_entry
* entry
= &cmdq
->host_entry
[ cmdq
->head
];
1754 struct oc3_opcode opcode
;
1757 DPRINTK(2, "set OC-3 reg = 0x%02x, value = 0x%02x, mask = 0x%02x\n", reg
, value
, mask
);
1759 FORE200E_NEXT_ENTRY(cmdq
->head
, QUEUE_SIZE_CMD
);
1761 opcode
.opcode
= OPCODE_SET_OC3
;
1763 opcode
.value
= value
;
1766 fore200e
->bus
->write(0, &entry
->cp_entry
->cmd
.oc3_block
.regs_haddr
);
1768 *entry
->status
= STATUS_PENDING
;
1770 fore200e
->bus
->write(*(u32
*)&opcode
, (u32 __iomem
*)&entry
->cp_entry
->cmd
.oc3_block
.opcode
);
1772 ok
= fore200e_poll(fore200e
, entry
->status
, STATUS_COMPLETE
, 400);
1774 *entry
->status
= STATUS_FREE
;
1777 printk(FORE200E
"unable to set OC-3 reg 0x%02x of device %s\n", reg
, fore200e
->name
);
1786 fore200e_setloop(struct fore200e
* fore200e
, int loop_mode
)
1788 u32 mct_value
, mct_mask
;
1791 if (!capable(CAP_NET_ADMIN
))
1794 switch (loop_mode
) {
1798 mct_mask
= SUNI_MCT_DLE
| SUNI_MCT_LLE
;
1801 case ATM_LM_LOC_PHY
:
1802 mct_value
= mct_mask
= SUNI_MCT_DLE
;
1805 case ATM_LM_RMT_PHY
:
1806 mct_value
= mct_mask
= SUNI_MCT_LLE
;
1813 error
= fore200e_set_oc3(fore200e
, SUNI_MCT
, mct_value
, mct_mask
);
1815 fore200e
->loop_mode
= loop_mode
;
1822 fore200e_fetch_stats(struct fore200e
* fore200e
, struct sonet_stats __user
*arg
)
1824 struct sonet_stats tmp
;
1826 if (fore200e_getstats(fore200e
) < 0)
1829 tmp
.section_bip
= be32_to_cpu(fore200e
->stats
->oc3
.section_bip8_errors
);
1830 tmp
.line_bip
= be32_to_cpu(fore200e
->stats
->oc3
.line_bip24_errors
);
1831 tmp
.path_bip
= be32_to_cpu(fore200e
->stats
->oc3
.path_bip8_errors
);
1832 tmp
.line_febe
= be32_to_cpu(fore200e
->stats
->oc3
.line_febe_errors
);
1833 tmp
.path_febe
= be32_to_cpu(fore200e
->stats
->oc3
.path_febe_errors
);
1834 tmp
.corr_hcs
= be32_to_cpu(fore200e
->stats
->oc3
.corr_hcs_errors
);
1835 tmp
.uncorr_hcs
= be32_to_cpu(fore200e
->stats
->oc3
.ucorr_hcs_errors
);
1836 tmp
.tx_cells
= be32_to_cpu(fore200e
->stats
->aal0
.cells_transmitted
) +
1837 be32_to_cpu(fore200e
->stats
->aal34
.cells_transmitted
) +
1838 be32_to_cpu(fore200e
->stats
->aal5
.cells_transmitted
);
1839 tmp
.rx_cells
= be32_to_cpu(fore200e
->stats
->aal0
.cells_received
) +
1840 be32_to_cpu(fore200e
->stats
->aal34
.cells_received
) +
1841 be32_to_cpu(fore200e
->stats
->aal5
.cells_received
);
1844 return copy_to_user(arg
, &tmp
, sizeof(struct sonet_stats
)) ? -EFAULT
: 0;
1851 fore200e_ioctl(struct atm_dev
* dev
, unsigned int cmd
, void __user
* arg
)
1853 struct fore200e
* fore200e
= FORE200E_DEV(dev
);
1855 DPRINTK(2, "ioctl cmd = 0x%x (%u), arg = 0x%p (%lu)\n", cmd
, cmd
, arg
, (unsigned long)arg
);
1860 return fore200e_fetch_stats(fore200e
, (struct sonet_stats __user
*)arg
);
1863 return put_user(0, (int __user
*)arg
) ? -EFAULT
: 0;
1866 return fore200e_setloop(fore200e
, (int)(unsigned long)arg
);
1869 return put_user(fore200e
->loop_mode
, (int __user
*)arg
) ? -EFAULT
: 0;
1872 return put_user(ATM_LM_LOC_PHY
| ATM_LM_RMT_PHY
, (int __user
*)arg
) ? -EFAULT
: 0;
1875 return -ENOSYS
; /* not implemented */
1880 fore200e_change_qos(struct atm_vcc
* vcc
,struct atm_qos
* qos
, int flags
)
1882 struct fore200e_vcc
* fore200e_vcc
= FORE200E_VCC(vcc
);
1883 struct fore200e
* fore200e
= FORE200E_DEV(vcc
->dev
);
1885 if (!test_bit(ATM_VF_READY
, &vcc
->flags
)) {
1886 DPRINTK(1, "VC %d.%d.%d not ready for QoS change\n", vcc
->itf
, vcc
->vpi
, vcc
->vpi
);
1890 DPRINTK(2, "change_qos %d.%d.%d, "
1891 "(tx: cl=%s, pcr=%d-%d, cdv=%d, max_sdu=%d; "
1892 "rx: cl=%s, pcr=%d-%d, cdv=%d, max_sdu=%d), flags = 0x%x\n"
1893 "available_cell_rate = %u",
1894 vcc
->itf
, vcc
->vpi
, vcc
->vci
,
1895 fore200e_traffic_class
[ qos
->txtp
.traffic_class
],
1896 qos
->txtp
.min_pcr
, qos
->txtp
.max_pcr
, qos
->txtp
.max_cdv
, qos
->txtp
.max_sdu
,
1897 fore200e_traffic_class
[ qos
->rxtp
.traffic_class
],
1898 qos
->rxtp
.min_pcr
, qos
->rxtp
.max_pcr
, qos
->rxtp
.max_cdv
, qos
->rxtp
.max_sdu
,
1899 flags
, fore200e
->available_cell_rate
);
1901 if ((qos
->txtp
.traffic_class
== ATM_CBR
) && (qos
->txtp
.max_pcr
> 0)) {
1903 mutex_lock(&fore200e
->rate_mtx
);
1904 if (fore200e
->available_cell_rate
+ vcc
->qos
.txtp
.max_pcr
< qos
->txtp
.max_pcr
) {
1905 mutex_unlock(&fore200e
->rate_mtx
);
1909 fore200e
->available_cell_rate
+= vcc
->qos
.txtp
.max_pcr
;
1910 fore200e
->available_cell_rate
-= qos
->txtp
.max_pcr
;
1912 mutex_unlock(&fore200e
->rate_mtx
);
1914 memcpy(&vcc
->qos
, qos
, sizeof(struct atm_qos
));
1916 /* update rate control parameters */
1917 fore200e_rate_ctrl(qos
, &fore200e_vcc
->rate
);
1919 set_bit(ATM_VF_HASQOS
, &vcc
->flags
);
1928 static int fore200e_irq_request(struct fore200e
*fore200e
)
1930 if (request_irq(fore200e
->irq
, fore200e_interrupt
, IRQF_SHARED
, fore200e
->name
, fore200e
->atm_dev
) < 0) {
1932 printk(FORE200E
"unable to reserve IRQ %s for device %s\n",
1933 fore200e_irq_itoa(fore200e
->irq
), fore200e
->name
);
1937 printk(FORE200E
"IRQ %s reserved for device %s\n",
1938 fore200e_irq_itoa(fore200e
->irq
), fore200e
->name
);
1940 #ifdef FORE200E_USE_TASKLET
1941 tasklet_init(&fore200e
->tx_tasklet
, fore200e_tx_tasklet
, (unsigned long)fore200e
);
1942 tasklet_init(&fore200e
->rx_tasklet
, fore200e_rx_tasklet
, (unsigned long)fore200e
);
1945 fore200e
->state
= FORE200E_STATE_IRQ
;
1950 static int fore200e_get_esi(struct fore200e
*fore200e
)
1952 struct prom_data
* prom
= kzalloc(sizeof(struct prom_data
), GFP_KERNEL
);
1958 ok
= fore200e
->bus
->prom_read(fore200e
, prom
);
1964 printk(FORE200E
"device %s, rev. %c, S/N: %d, ESI: %pM\n",
1966 (prom
->hw_revision
& 0xFF) + '@', /* probably meaningless with SBA boards */
1967 prom
->serial_number
& 0xFFFF, &prom
->mac_addr
[2]);
1969 for (i
= 0; i
< ESI_LEN
; i
++) {
1970 fore200e
->esi
[ i
] = fore200e
->atm_dev
->esi
[ i
] = prom
->mac_addr
[ i
+ 2 ];
1979 static int fore200e_alloc_rx_buf(struct fore200e
*fore200e
)
1981 int scheme
, magn
, nbr
, size
, i
;
1983 struct host_bsq
* bsq
;
1984 struct buffer
* buffer
;
1986 for (scheme
= 0; scheme
< BUFFER_SCHEME_NBR
; scheme
++) {
1987 for (magn
= 0; magn
< BUFFER_MAGN_NBR
; magn
++) {
1989 bsq
= &fore200e
->host_bsq
[ scheme
][ magn
];
1991 nbr
= fore200e_rx_buf_nbr
[ scheme
][ magn
];
1992 size
= fore200e_rx_buf_size
[ scheme
][ magn
];
1994 DPRINTK(2, "rx buffers %d / %d are being allocated\n", scheme
, magn
);
1996 /* allocate the array of receive buffers */
1997 buffer
= bsq
->buffer
= kcalloc(nbr
, sizeof(struct buffer
),
2003 bsq
->freebuf
= NULL
;
2005 for (i
= 0; i
< nbr
; i
++) {
2007 buffer
[ i
].scheme
= scheme
;
2008 buffer
[ i
].magn
= magn
;
2009 #ifdef FORE200E_BSQ_DEBUG
2010 buffer
[ i
].index
= i
;
2011 buffer
[ i
].supplied
= 0;
2014 /* allocate the receive buffer body */
2015 if (fore200e_chunk_alloc(fore200e
,
2016 &buffer
[ i
].data
, size
, fore200e
->bus
->buffer_alignment
,
2017 DMA_FROM_DEVICE
) < 0) {
2020 fore200e_chunk_free(fore200e
, &buffer
[ --i
].data
);
2026 /* insert the buffer into the free buffer list */
2027 buffer
[ i
].next
= bsq
->freebuf
;
2028 bsq
->freebuf
= &buffer
[ i
];
2030 /* all the buffers are free, initially */
2031 bsq
->freebuf_count
= nbr
;
2033 #ifdef FORE200E_BSQ_DEBUG
2034 bsq_audit(3, bsq
, scheme
, magn
);
2039 fore200e
->state
= FORE200E_STATE_ALLOC_BUF
;
2044 static int fore200e_init_bs_queue(struct fore200e
*fore200e
)
2046 int scheme
, magn
, i
;
2048 struct host_bsq
* bsq
;
2049 struct cp_bsq_entry __iomem
* cp_entry
;
2051 for (scheme
= 0; scheme
< BUFFER_SCHEME_NBR
; scheme
++) {
2052 for (magn
= 0; magn
< BUFFER_MAGN_NBR
; magn
++) {
2054 DPRINTK(2, "buffer supply queue %d / %d is being initialized\n", scheme
, magn
);
2056 bsq
= &fore200e
->host_bsq
[ scheme
][ magn
];
2058 /* allocate and align the array of status words */
2059 if (fore200e_dma_chunk_alloc(fore200e
,
2061 sizeof(enum status
),
2063 fore200e
->bus
->status_alignment
) < 0) {
2067 /* allocate and align the array of receive buffer descriptors */
2068 if (fore200e_dma_chunk_alloc(fore200e
,
2070 sizeof(struct rbd_block
),
2072 fore200e
->bus
->descr_alignment
) < 0) {
2074 fore200e_dma_chunk_free(fore200e
, &bsq
->status
);
2078 /* get the base address of the cp resident buffer supply queue entries */
2079 cp_entry
= fore200e
->virt_base
+
2080 fore200e
->bus
->read(&fore200e
->cp_queues
->cp_bsq
[ scheme
][ magn
]);
2082 /* fill the host resident and cp resident buffer supply queue entries */
2083 for (i
= 0; i
< QUEUE_SIZE_BS
; i
++) {
2085 bsq
->host_entry
[ i
].status
=
2086 FORE200E_INDEX(bsq
->status
.align_addr
, enum status
, i
);
2087 bsq
->host_entry
[ i
].rbd_block
=
2088 FORE200E_INDEX(bsq
->rbd_block
.align_addr
, struct rbd_block
, i
);
2089 bsq
->host_entry
[ i
].rbd_block_dma
=
2090 FORE200E_DMA_INDEX(bsq
->rbd_block
.dma_addr
, struct rbd_block
, i
);
2091 bsq
->host_entry
[ i
].cp_entry
= &cp_entry
[ i
];
2093 *bsq
->host_entry
[ i
].status
= STATUS_FREE
;
2095 fore200e
->bus
->write(FORE200E_DMA_INDEX(bsq
->status
.dma_addr
, enum status
, i
),
2096 &cp_entry
[ i
].status_haddr
);
2101 fore200e
->state
= FORE200E_STATE_INIT_BSQ
;
2106 static int fore200e_init_rx_queue(struct fore200e
*fore200e
)
2108 struct host_rxq
* rxq
= &fore200e
->host_rxq
;
2109 struct cp_rxq_entry __iomem
* cp_entry
;
2112 DPRINTK(2, "receive queue is being initialized\n");
2114 /* allocate and align the array of status words */
2115 if (fore200e_dma_chunk_alloc(fore200e
,
2117 sizeof(enum status
),
2119 fore200e
->bus
->status_alignment
) < 0) {
2123 /* allocate and align the array of receive PDU descriptors */
2124 if (fore200e_dma_chunk_alloc(fore200e
,
2128 fore200e
->bus
->descr_alignment
) < 0) {
2130 fore200e_dma_chunk_free(fore200e
, &rxq
->status
);
2134 /* get the base address of the cp resident rx queue entries */
2135 cp_entry
= fore200e
->virt_base
+ fore200e
->bus
->read(&fore200e
->cp_queues
->cp_rxq
);
2137 /* fill the host resident and cp resident rx entries */
2138 for (i
=0; i
< QUEUE_SIZE_RX
; i
++) {
2140 rxq
->host_entry
[ i
].status
=
2141 FORE200E_INDEX(rxq
->status
.align_addr
, enum status
, i
);
2142 rxq
->host_entry
[ i
].rpd
=
2143 FORE200E_INDEX(rxq
->rpd
.align_addr
, struct rpd
, i
);
2144 rxq
->host_entry
[ i
].rpd_dma
=
2145 FORE200E_DMA_INDEX(rxq
->rpd
.dma_addr
, struct rpd
, i
);
2146 rxq
->host_entry
[ i
].cp_entry
= &cp_entry
[ i
];
2148 *rxq
->host_entry
[ i
].status
= STATUS_FREE
;
2150 fore200e
->bus
->write(FORE200E_DMA_INDEX(rxq
->status
.dma_addr
, enum status
, i
),
2151 &cp_entry
[ i
].status_haddr
);
2153 fore200e
->bus
->write(FORE200E_DMA_INDEX(rxq
->rpd
.dma_addr
, struct rpd
, i
),
2154 &cp_entry
[ i
].rpd_haddr
);
2157 /* set the head entry of the queue */
2160 fore200e
->state
= FORE200E_STATE_INIT_RXQ
;
2165 static int fore200e_init_tx_queue(struct fore200e
*fore200e
)
2167 struct host_txq
* txq
= &fore200e
->host_txq
;
2168 struct cp_txq_entry __iomem
* cp_entry
;
2171 DPRINTK(2, "transmit queue is being initialized\n");
2173 /* allocate and align the array of status words */
2174 if (fore200e_dma_chunk_alloc(fore200e
,
2176 sizeof(enum status
),
2178 fore200e
->bus
->status_alignment
) < 0) {
2182 /* allocate and align the array of transmit PDU descriptors */
2183 if (fore200e_dma_chunk_alloc(fore200e
,
2187 fore200e
->bus
->descr_alignment
) < 0) {
2189 fore200e_dma_chunk_free(fore200e
, &txq
->status
);
2193 /* get the base address of the cp resident tx queue entries */
2194 cp_entry
= fore200e
->virt_base
+ fore200e
->bus
->read(&fore200e
->cp_queues
->cp_txq
);
2196 /* fill the host resident and cp resident tx entries */
2197 for (i
=0; i
< QUEUE_SIZE_TX
; i
++) {
2199 txq
->host_entry
[ i
].status
=
2200 FORE200E_INDEX(txq
->status
.align_addr
, enum status
, i
);
2201 txq
->host_entry
[ i
].tpd
=
2202 FORE200E_INDEX(txq
->tpd
.align_addr
, struct tpd
, i
);
2203 txq
->host_entry
[ i
].tpd_dma
=
2204 FORE200E_DMA_INDEX(txq
->tpd
.dma_addr
, struct tpd
, i
);
2205 txq
->host_entry
[ i
].cp_entry
= &cp_entry
[ i
];
2207 *txq
->host_entry
[ i
].status
= STATUS_FREE
;
2209 fore200e
->bus
->write(FORE200E_DMA_INDEX(txq
->status
.dma_addr
, enum status
, i
),
2210 &cp_entry
[ i
].status_haddr
);
2212 /* although there is a one-to-one mapping of tx queue entries and tpds,
2213 we do not write here the DMA (physical) base address of each tpd into
2214 the related cp resident entry, because the cp relies on this write
2215 operation to detect that a new pdu has been submitted for tx */
2218 /* set the head and tail entries of the queue */
2222 fore200e
->state
= FORE200E_STATE_INIT_TXQ
;
2227 static int fore200e_init_cmd_queue(struct fore200e
*fore200e
)
2229 struct host_cmdq
* cmdq
= &fore200e
->host_cmdq
;
2230 struct cp_cmdq_entry __iomem
* cp_entry
;
2233 DPRINTK(2, "command queue is being initialized\n");
2235 /* allocate and align the array of status words */
2236 if (fore200e_dma_chunk_alloc(fore200e
,
2238 sizeof(enum status
),
2240 fore200e
->bus
->status_alignment
) < 0) {
2244 /* get the base address of the cp resident cmd queue entries */
2245 cp_entry
= fore200e
->virt_base
+ fore200e
->bus
->read(&fore200e
->cp_queues
->cp_cmdq
);
2247 /* fill the host resident and cp resident cmd entries */
2248 for (i
=0; i
< QUEUE_SIZE_CMD
; i
++) {
2250 cmdq
->host_entry
[ i
].status
=
2251 FORE200E_INDEX(cmdq
->status
.align_addr
, enum status
, i
);
2252 cmdq
->host_entry
[ i
].cp_entry
= &cp_entry
[ i
];
2254 *cmdq
->host_entry
[ i
].status
= STATUS_FREE
;
2256 fore200e
->bus
->write(FORE200E_DMA_INDEX(cmdq
->status
.dma_addr
, enum status
, i
),
2257 &cp_entry
[ i
].status_haddr
);
2260 /* set the head entry of the queue */
2263 fore200e
->state
= FORE200E_STATE_INIT_CMDQ
;
2268 static void fore200e_param_bs_queue(struct fore200e
*fore200e
,
2269 enum buffer_scheme scheme
,
2270 enum buffer_magn magn
, int queue_length
,
2271 int pool_size
, int supply_blksize
)
2273 struct bs_spec __iomem
* bs_spec
= &fore200e
->cp_queues
->init
.bs_spec
[ scheme
][ magn
];
2275 fore200e
->bus
->write(queue_length
, &bs_spec
->queue_length
);
2276 fore200e
->bus
->write(fore200e_rx_buf_size
[ scheme
][ magn
], &bs_spec
->buffer_size
);
2277 fore200e
->bus
->write(pool_size
, &bs_spec
->pool_size
);
2278 fore200e
->bus
->write(supply_blksize
, &bs_spec
->supply_blksize
);
2282 static int fore200e_initialize(struct fore200e
*fore200e
)
2284 struct cp_queues __iomem
* cpq
;
2285 int ok
, scheme
, magn
;
2287 DPRINTK(2, "device %s being initialized\n", fore200e
->name
);
2289 mutex_init(&fore200e
->rate_mtx
);
2290 spin_lock_init(&fore200e
->q_lock
);
2292 cpq
= fore200e
->cp_queues
= fore200e
->virt_base
+ FORE200E_CP_QUEUES_OFFSET
;
2294 /* enable cp to host interrupts */
2295 fore200e
->bus
->write(1, &cpq
->imask
);
2297 if (fore200e
->bus
->irq_enable
)
2298 fore200e
->bus
->irq_enable(fore200e
);
2300 fore200e
->bus
->write(NBR_CONNECT
, &cpq
->init
.num_connect
);
2302 fore200e
->bus
->write(QUEUE_SIZE_CMD
, &cpq
->init
.cmd_queue_len
);
2303 fore200e
->bus
->write(QUEUE_SIZE_RX
, &cpq
->init
.rx_queue_len
);
2304 fore200e
->bus
->write(QUEUE_SIZE_TX
, &cpq
->init
.tx_queue_len
);
2306 fore200e
->bus
->write(RSD_EXTENSION
, &cpq
->init
.rsd_extension
);
2307 fore200e
->bus
->write(TSD_EXTENSION
, &cpq
->init
.tsd_extension
);
2309 for (scheme
= 0; scheme
< BUFFER_SCHEME_NBR
; scheme
++)
2310 for (magn
= 0; magn
< BUFFER_MAGN_NBR
; magn
++)
2311 fore200e_param_bs_queue(fore200e
, scheme
, magn
,
2313 fore200e_rx_buf_nbr
[ scheme
][ magn
],
2316 /* issue the initialize command */
2317 fore200e
->bus
->write(STATUS_PENDING
, &cpq
->init
.status
);
2318 fore200e
->bus
->write(OPCODE_INITIALIZE
, &cpq
->init
.opcode
);
2320 ok
= fore200e_io_poll(fore200e
, &cpq
->init
.status
, STATUS_COMPLETE
, 3000);
2322 printk(FORE200E
"device %s initialization failed\n", fore200e
->name
);
2326 printk(FORE200E
"device %s initialized\n", fore200e
->name
);
2328 fore200e
->state
= FORE200E_STATE_INITIALIZE
;
2333 static void fore200e_monitor_putc(struct fore200e
*fore200e
, char c
)
2335 struct cp_monitor __iomem
* monitor
= fore200e
->cp_monitor
;
2340 fore200e
->bus
->write(((u32
) c
) | FORE200E_CP_MONITOR_UART_AVAIL
, &monitor
->soft_uart
.send
);
2344 static int fore200e_monitor_getc(struct fore200e
*fore200e
)
2346 struct cp_monitor __iomem
* monitor
= fore200e
->cp_monitor
;
2347 unsigned long timeout
= jiffies
+ msecs_to_jiffies(50);
2350 while (time_before(jiffies
, timeout
)) {
2352 c
= (int) fore200e
->bus
->read(&monitor
->soft_uart
.recv
);
2354 if (c
& FORE200E_CP_MONITOR_UART_AVAIL
) {
2356 fore200e
->bus
->write(FORE200E_CP_MONITOR_UART_FREE
, &monitor
->soft_uart
.recv
);
2358 printk("%c", c
& 0xFF);
2368 static void fore200e_monitor_puts(struct fore200e
*fore200e
, char *str
)
2372 /* the i960 monitor doesn't accept any new character if it has something to say */
2373 while (fore200e_monitor_getc(fore200e
) >= 0);
2375 fore200e_monitor_putc(fore200e
, *str
++);
2378 while (fore200e_monitor_getc(fore200e
) >= 0);
2381 #ifdef __LITTLE_ENDIAN
2382 #define FW_EXT ".bin"
2384 #define FW_EXT "_ecd.bin2"
2387 static int fore200e_load_and_start_fw(struct fore200e
*fore200e
)
2389 const struct firmware
*firmware
;
2390 const struct fw_header
*fw_header
;
2391 const __le32
*fw_data
;
2393 u32 __iomem
*load_addr
;
2397 sprintf(buf
, "%s%s", fore200e
->bus
->proc_name
, FW_EXT
);
2398 if ((err
= request_firmware(&firmware
, buf
, fore200e
->dev
)) < 0) {
2399 printk(FORE200E
"problem loading firmware image %s\n", fore200e
->bus
->model_name
);
2403 fw_data
= (const __le32
*)firmware
->data
;
2404 fw_size
= firmware
->size
/ sizeof(u32
);
2405 fw_header
= (const struct fw_header
*)firmware
->data
;
2406 load_addr
= fore200e
->virt_base
+ le32_to_cpu(fw_header
->load_offset
);
2408 DPRINTK(2, "device %s firmware being loaded at 0x%p (%d words)\n",
2409 fore200e
->name
, load_addr
, fw_size
);
2411 if (le32_to_cpu(fw_header
->magic
) != FW_HEADER_MAGIC
) {
2412 printk(FORE200E
"corrupted %s firmware image\n", fore200e
->bus
->model_name
);
2416 for (; fw_size
--; fw_data
++, load_addr
++)
2417 fore200e
->bus
->write(le32_to_cpu(*fw_data
), load_addr
);
2419 DPRINTK(2, "device %s firmware being started\n", fore200e
->name
);
2421 #if defined(__sparc_v9__)
2422 /* reported to be required by SBA cards on some sparc64 hosts */
2426 sprintf(buf
, "\rgo %x\r", le32_to_cpu(fw_header
->start_offset
));
2427 fore200e_monitor_puts(fore200e
, buf
);
2429 if (fore200e_io_poll(fore200e
, &fore200e
->cp_monitor
->bstat
, BSTAT_CP_RUNNING
, 1000) == 0) {
2430 printk(FORE200E
"device %s firmware didn't start\n", fore200e
->name
);
2434 printk(FORE200E
"device %s firmware started\n", fore200e
->name
);
2436 fore200e
->state
= FORE200E_STATE_START_FW
;
2440 release_firmware(firmware
);
2445 static int fore200e_register(struct fore200e
*fore200e
, struct device
*parent
)
2447 struct atm_dev
* atm_dev
;
2449 DPRINTK(2, "device %s being registered\n", fore200e
->name
);
2451 atm_dev
= atm_dev_register(fore200e
->bus
->proc_name
, parent
, &fore200e_ops
,
2453 if (atm_dev
== NULL
) {
2454 printk(FORE200E
"unable to register device %s\n", fore200e
->name
);
2458 atm_dev
->dev_data
= fore200e
;
2459 fore200e
->atm_dev
= atm_dev
;
2461 atm_dev
->ci_range
.vpi_bits
= FORE200E_VPI_BITS
;
2462 atm_dev
->ci_range
.vci_bits
= FORE200E_VCI_BITS
;
2464 fore200e
->available_cell_rate
= ATM_OC3_PCR
;
2466 fore200e
->state
= FORE200E_STATE_REGISTER
;
2471 static int fore200e_init(struct fore200e
*fore200e
, struct device
*parent
)
2473 if (fore200e_register(fore200e
, parent
) < 0)
2476 if (fore200e
->bus
->configure(fore200e
) < 0)
2479 if (fore200e
->bus
->map(fore200e
) < 0)
2482 if (fore200e_reset(fore200e
, 1) < 0)
2485 if (fore200e_load_and_start_fw(fore200e
) < 0)
2488 if (fore200e_initialize(fore200e
) < 0)
2491 if (fore200e_init_cmd_queue(fore200e
) < 0)
2494 if (fore200e_init_tx_queue(fore200e
) < 0)
2497 if (fore200e_init_rx_queue(fore200e
) < 0)
2500 if (fore200e_init_bs_queue(fore200e
) < 0)
2503 if (fore200e_alloc_rx_buf(fore200e
) < 0)
2506 if (fore200e_get_esi(fore200e
) < 0)
2509 if (fore200e_irq_request(fore200e
) < 0)
2512 fore200e_supply(fore200e
);
2514 /* all done, board initialization is now complete */
2515 fore200e
->state
= FORE200E_STATE_COMPLETE
;
2520 static int fore200e_sba_probe(struct platform_device
*op
)
2522 struct fore200e
*fore200e
;
2523 static int index
= 0;
2526 fore200e
= kzalloc(sizeof(struct fore200e
), GFP_KERNEL
);
2530 fore200e
->bus
= &fore200e_sbus_ops
;
2531 fore200e
->dev
= &op
->dev
;
2532 fore200e
->irq
= op
->archdata
.irqs
[0];
2533 fore200e
->phys_base
= op
->resource
[0].start
;
2535 sprintf(fore200e
->name
, "SBA-200E-%d", index
);
2537 err
= fore200e_init(fore200e
, &op
->dev
);
2539 fore200e_shutdown(fore200e
);
2545 dev_set_drvdata(&op
->dev
, fore200e
);
2550 static void fore200e_sba_remove(struct platform_device
*op
)
2552 struct fore200e
*fore200e
= dev_get_drvdata(&op
->dev
);
2554 fore200e_shutdown(fore200e
);
2558 static const struct of_device_id fore200e_sba_match
[] = {
2560 .name
= SBA200E_PROM_NAME
,
2564 MODULE_DEVICE_TABLE(of
, fore200e_sba_match
);
2566 static struct platform_driver fore200e_sba_driver
= {
2568 .name
= "fore_200e",
2569 .of_match_table
= fore200e_sba_match
,
2571 .probe
= fore200e_sba_probe
,
2572 .remove
= fore200e_sba_remove
,
2577 static int fore200e_pca_detect(struct pci_dev
*pci_dev
,
2578 const struct pci_device_id
*pci_ent
)
2580 struct fore200e
* fore200e
;
2582 static int index
= 0;
2584 if (pci_enable_device(pci_dev
)) {
2589 if (dma_set_mask_and_coherent(&pci_dev
->dev
, DMA_BIT_MASK(32))) {
2594 fore200e
= kzalloc(sizeof(struct fore200e
), GFP_KERNEL
);
2595 if (fore200e
== NULL
) {
2600 fore200e
->bus
= &fore200e_pci_ops
;
2601 fore200e
->dev
= &pci_dev
->dev
;
2602 fore200e
->irq
= pci_dev
->irq
;
2603 fore200e
->phys_base
= pci_resource_start(pci_dev
, 0);
2605 sprintf(fore200e
->name
, "PCA-200E-%d", index
- 1);
2607 pci_set_master(pci_dev
);
2609 printk(FORE200E
"device PCA-200E found at 0x%lx, IRQ %s\n",
2610 fore200e
->phys_base
, fore200e_irq_itoa(fore200e
->irq
));
2612 sprintf(fore200e
->name
, "PCA-200E-%d", index
);
2614 err
= fore200e_init(fore200e
, &pci_dev
->dev
);
2616 fore200e_shutdown(fore200e
);
2621 pci_set_drvdata(pci_dev
, fore200e
);
2629 pci_disable_device(pci_dev
);
2634 static void fore200e_pca_remove_one(struct pci_dev
*pci_dev
)
2636 struct fore200e
*fore200e
;
2638 fore200e
= pci_get_drvdata(pci_dev
);
2640 fore200e_shutdown(fore200e
);
2642 pci_disable_device(pci_dev
);
2646 static const struct pci_device_id fore200e_pca_tbl
[] = {
2647 { PCI_VENDOR_ID_FORE
, PCI_DEVICE_ID_FORE_PCA200E
, PCI_ANY_ID
, PCI_ANY_ID
},
2651 MODULE_DEVICE_TABLE(pci
, fore200e_pca_tbl
);
2653 static struct pci_driver fore200e_pca_driver
= {
2654 .name
= "fore_200e",
2655 .probe
= fore200e_pca_detect
,
2656 .remove
= fore200e_pca_remove_one
,
2657 .id_table
= fore200e_pca_tbl
,
2661 static int __init
fore200e_module_init(void)
2665 printk(FORE200E
"FORE Systems 200E-series ATM driver - version " FORE200E_VERSION
"\n");
2668 err
= platform_driver_register(&fore200e_sba_driver
);
2674 err
= pci_register_driver(&fore200e_pca_driver
);
2679 platform_driver_unregister(&fore200e_sba_driver
);
2685 static void __exit
fore200e_module_cleanup(void)
2688 pci_unregister_driver(&fore200e_pca_driver
);
2691 platform_driver_unregister(&fore200e_sba_driver
);
2696 fore200e_proc_read(struct atm_dev
*dev
, loff_t
* pos
, char* page
)
2698 struct fore200e
* fore200e
= FORE200E_DEV(dev
);
2699 struct fore200e_vcc
* fore200e_vcc
;
2700 struct atm_vcc
* vcc
;
2701 int i
, len
, left
= *pos
;
2702 unsigned long flags
;
2706 if (fore200e_getstats(fore200e
) < 0)
2709 len
= sprintf(page
,"\n"
2711 " internal name:\t\t%s\n", fore200e
->name
);
2713 /* print bus-specific information */
2714 if (fore200e
->bus
->proc_read
)
2715 len
+= fore200e
->bus
->proc_read(fore200e
, page
+ len
);
2717 len
+= sprintf(page
+ len
,
2718 " interrupt line:\t\t%s\n"
2719 " physical base address:\t0x%p\n"
2720 " virtual base address:\t0x%p\n"
2721 " factory address (ESI):\t%pM\n"
2722 " board serial number:\t\t%d\n\n",
2723 fore200e_irq_itoa(fore200e
->irq
),
2724 (void*)fore200e
->phys_base
,
2725 fore200e
->virt_base
,
2727 fore200e
->esi
[4] * 256 + fore200e
->esi
[5]);
2733 return sprintf(page
,
2734 " free small bufs, scheme 1:\t%d\n"
2735 " free large bufs, scheme 1:\t%d\n"
2736 " free small bufs, scheme 2:\t%d\n"
2737 " free large bufs, scheme 2:\t%d\n",
2738 fore200e
->host_bsq
[ BUFFER_SCHEME_ONE
][ BUFFER_MAGN_SMALL
].freebuf_count
,
2739 fore200e
->host_bsq
[ BUFFER_SCHEME_ONE
][ BUFFER_MAGN_LARGE
].freebuf_count
,
2740 fore200e
->host_bsq
[ BUFFER_SCHEME_TWO
][ BUFFER_MAGN_SMALL
].freebuf_count
,
2741 fore200e
->host_bsq
[ BUFFER_SCHEME_TWO
][ BUFFER_MAGN_LARGE
].freebuf_count
);
2744 u32 hb
= fore200e
->bus
->read(&fore200e
->cp_queues
->heartbeat
);
2746 len
= sprintf(page
,"\n\n"
2747 " cell processor:\n"
2748 " heartbeat state:\t\t");
2750 if (hb
>> 16 != 0xDEAD)
2751 len
+= sprintf(page
+ len
, "0x%08x\n", hb
);
2753 len
+= sprintf(page
+ len
, "*** FATAL ERROR %04x ***\n", hb
& 0xFFFF);
2759 static const char* media_name
[] = {
2760 "unshielded twisted pair",
2761 "multimode optical fiber ST",
2762 "multimode optical fiber SC",
2763 "single-mode optical fiber ST",
2764 "single-mode optical fiber SC",
2768 static const char* oc3_mode
[] = {
2770 "diagnostic loopback",
2775 u32 fw_release
= fore200e
->bus
->read(&fore200e
->cp_queues
->fw_release
);
2776 u32 mon960_release
= fore200e
->bus
->read(&fore200e
->cp_queues
->mon960_release
);
2777 u32 oc3_revision
= fore200e
->bus
->read(&fore200e
->cp_queues
->oc3_revision
);
2778 u32 media_index
= FORE200E_MEDIA_INDEX(fore200e
->bus
->read(&fore200e
->cp_queues
->media_type
));
2781 if (media_index
> 4)
2784 switch (fore200e
->loop_mode
) {
2785 case ATM_LM_NONE
: oc3_index
= 0;
2787 case ATM_LM_LOC_PHY
: oc3_index
= 1;
2789 case ATM_LM_RMT_PHY
: oc3_index
= 2;
2791 default: oc3_index
= 3;
2794 return sprintf(page
,
2795 " firmware release:\t\t%d.%d.%d\n"
2796 " monitor release:\t\t%d.%d\n"
2797 " media type:\t\t\t%s\n"
2798 " OC-3 revision:\t\t0x%x\n"
2799 " OC-3 mode:\t\t\t%s",
2800 fw_release
>> 16, fw_release
<< 16 >> 24, fw_release
<< 24 >> 24,
2801 mon960_release
>> 16, mon960_release
<< 16 >> 16,
2802 media_name
[ media_index
],
2804 oc3_mode
[ oc3_index
]);
2808 struct cp_monitor __iomem
* cp_monitor
= fore200e
->cp_monitor
;
2810 return sprintf(page
,
2813 " version number:\t\t%d\n"
2814 " boot status word:\t\t0x%08x\n",
2815 fore200e
->bus
->read(&cp_monitor
->mon_version
),
2816 fore200e
->bus
->read(&cp_monitor
->bstat
));
2820 return sprintf(page
,
2822 " device statistics:\n"
2824 " crc_header_errors:\t\t%10u\n"
2825 " framing_errors:\t\t%10u\n",
2826 be32_to_cpu(fore200e
->stats
->phy
.crc_header_errors
),
2827 be32_to_cpu(fore200e
->stats
->phy
.framing_errors
));
2830 return sprintf(page
, "\n"
2832 " section_bip8_errors:\t%10u\n"
2833 " path_bip8_errors:\t\t%10u\n"
2834 " line_bip24_errors:\t\t%10u\n"
2835 " line_febe_errors:\t\t%10u\n"
2836 " path_febe_errors:\t\t%10u\n"
2837 " corr_hcs_errors:\t\t%10u\n"
2838 " ucorr_hcs_errors:\t\t%10u\n",
2839 be32_to_cpu(fore200e
->stats
->oc3
.section_bip8_errors
),
2840 be32_to_cpu(fore200e
->stats
->oc3
.path_bip8_errors
),
2841 be32_to_cpu(fore200e
->stats
->oc3
.line_bip24_errors
),
2842 be32_to_cpu(fore200e
->stats
->oc3
.line_febe_errors
),
2843 be32_to_cpu(fore200e
->stats
->oc3
.path_febe_errors
),
2844 be32_to_cpu(fore200e
->stats
->oc3
.corr_hcs_errors
),
2845 be32_to_cpu(fore200e
->stats
->oc3
.ucorr_hcs_errors
));
2848 return sprintf(page
,"\n"
2849 " ATM:\t\t\t\t cells\n"
2852 " vpi out of range:\t\t%10u\n"
2853 " vpi no conn:\t\t%10u\n"
2854 " vci out of range:\t\t%10u\n"
2855 " vci no conn:\t\t%10u\n",
2856 be32_to_cpu(fore200e
->stats
->atm
.cells_transmitted
),
2857 be32_to_cpu(fore200e
->stats
->atm
.cells_received
),
2858 be32_to_cpu(fore200e
->stats
->atm
.vpi_bad_range
),
2859 be32_to_cpu(fore200e
->stats
->atm
.vpi_no_conn
),
2860 be32_to_cpu(fore200e
->stats
->atm
.vci_bad_range
),
2861 be32_to_cpu(fore200e
->stats
->atm
.vci_no_conn
));
2864 return sprintf(page
,"\n"
2865 " AAL0:\t\t\t cells\n"
2868 " dropped:\t\t\t%10u\n",
2869 be32_to_cpu(fore200e
->stats
->aal0
.cells_transmitted
),
2870 be32_to_cpu(fore200e
->stats
->aal0
.cells_received
),
2871 be32_to_cpu(fore200e
->stats
->aal0
.cells_dropped
));
2874 return sprintf(page
,"\n"
2876 " SAR sublayer:\t\t cells\n"
2879 " dropped:\t\t\t%10u\n"
2880 " CRC errors:\t\t%10u\n"
2881 " protocol errors:\t\t%10u\n\n"
2882 " CS sublayer:\t\t PDUs\n"
2885 " dropped:\t\t\t%10u\n"
2886 " protocol errors:\t\t%10u\n",
2887 be32_to_cpu(fore200e
->stats
->aal34
.cells_transmitted
),
2888 be32_to_cpu(fore200e
->stats
->aal34
.cells_received
),
2889 be32_to_cpu(fore200e
->stats
->aal34
.cells_dropped
),
2890 be32_to_cpu(fore200e
->stats
->aal34
.cells_crc_errors
),
2891 be32_to_cpu(fore200e
->stats
->aal34
.cells_protocol_errors
),
2892 be32_to_cpu(fore200e
->stats
->aal34
.cspdus_transmitted
),
2893 be32_to_cpu(fore200e
->stats
->aal34
.cspdus_received
),
2894 be32_to_cpu(fore200e
->stats
->aal34
.cspdus_dropped
),
2895 be32_to_cpu(fore200e
->stats
->aal34
.cspdus_protocol_errors
));
2898 return sprintf(page
,"\n"
2900 " SAR sublayer:\t\t cells\n"
2903 " dropped:\t\t\t%10u\n"
2904 " congestions:\t\t%10u\n\n"
2905 " CS sublayer:\t\t PDUs\n"
2908 " dropped:\t\t\t%10u\n"
2909 " CRC errors:\t\t%10u\n"
2910 " protocol errors:\t\t%10u\n",
2911 be32_to_cpu(fore200e
->stats
->aal5
.cells_transmitted
),
2912 be32_to_cpu(fore200e
->stats
->aal5
.cells_received
),
2913 be32_to_cpu(fore200e
->stats
->aal5
.cells_dropped
),
2914 be32_to_cpu(fore200e
->stats
->aal5
.congestion_experienced
),
2915 be32_to_cpu(fore200e
->stats
->aal5
.cspdus_transmitted
),
2916 be32_to_cpu(fore200e
->stats
->aal5
.cspdus_received
),
2917 be32_to_cpu(fore200e
->stats
->aal5
.cspdus_dropped
),
2918 be32_to_cpu(fore200e
->stats
->aal5
.cspdus_crc_errors
),
2919 be32_to_cpu(fore200e
->stats
->aal5
.cspdus_protocol_errors
));
2922 return sprintf(page
,"\n"
2923 " AUX:\t\t allocation failures\n"
2924 " small b1:\t\t\t%10u\n"
2925 " large b1:\t\t\t%10u\n"
2926 " small b2:\t\t\t%10u\n"
2927 " large b2:\t\t\t%10u\n"
2928 " RX PDUs:\t\t\t%10u\n"
2929 " TX PDUs:\t\t\t%10lu\n",
2930 be32_to_cpu(fore200e
->stats
->aux
.small_b1_failed
),
2931 be32_to_cpu(fore200e
->stats
->aux
.large_b1_failed
),
2932 be32_to_cpu(fore200e
->stats
->aux
.small_b2_failed
),
2933 be32_to_cpu(fore200e
->stats
->aux
.large_b2_failed
),
2934 be32_to_cpu(fore200e
->stats
->aux
.rpd_alloc_failed
),
2938 return sprintf(page
,"\n"
2939 " receive carrier:\t\t\t%s\n",
2940 fore200e
->stats
->aux
.receive_carrier
? "ON" : "OFF!");
2943 return sprintf(page
,"\n"
2944 " VCCs:\n address VPI VCI AAL "
2945 "TX PDUs TX min/max size RX PDUs RX min/max size\n");
2948 for (i
= 0; i
< NBR_CONNECT
; i
++) {
2950 vcc
= fore200e
->vc_map
[i
].vcc
;
2955 spin_lock_irqsave(&fore200e
->q_lock
, flags
);
2957 if (vcc
&& test_bit(ATM_VF_READY
, &vcc
->flags
) && !left
--) {
2959 fore200e_vcc
= FORE200E_VCC(vcc
);
2960 ASSERT(fore200e_vcc
);
2963 " %pK %03d %05d %1d %09lu %05d/%05d %09lu %05d/%05d\n",
2965 vcc
->vpi
, vcc
->vci
, fore200e_atm2fore_aal(vcc
->qos
.aal
),
2966 fore200e_vcc
->tx_pdu
,
2967 fore200e_vcc
->tx_min_pdu
> 0xFFFF ? 0 : fore200e_vcc
->tx_min_pdu
,
2968 fore200e_vcc
->tx_max_pdu
,
2969 fore200e_vcc
->rx_pdu
,
2970 fore200e_vcc
->rx_min_pdu
> 0xFFFF ? 0 : fore200e_vcc
->rx_min_pdu
,
2971 fore200e_vcc
->rx_max_pdu
);
2973 spin_unlock_irqrestore(&fore200e
->q_lock
, flags
);
2977 spin_unlock_irqrestore(&fore200e
->q_lock
, flags
);
2983 module_init(fore200e_module_init
);
2984 module_exit(fore200e_module_cleanup
);
2987 static const struct atmdev_ops fore200e_ops
= {
2988 .open
= fore200e_open
,
2989 .close
= fore200e_close
,
2990 .ioctl
= fore200e_ioctl
,
2991 .send
= fore200e_send
,
2992 .change_qos
= fore200e_change_qos
,
2993 .proc_read
= fore200e_proc_read
,
2994 .owner
= THIS_MODULE
2997 MODULE_LICENSE("GPL");
2999 #ifdef __LITTLE_ENDIAN__
3000 MODULE_FIRMWARE("pca200e.bin");
3002 MODULE_FIRMWARE("pca200e_ecd.bin2");
3004 #endif /* CONFIG_PCI */
3006 MODULE_FIRMWARE("sba200e_ecd.bin2");