2 * Driver for the Solos PCI ADSL2+ card, designed to support Linux by
3 * Traverse Technologies -- http://www.traverse.com.au/
4 * Xrio Limited -- http://www.xrio.com/
7 * Copyright © 2008 Traverse Technologies
8 * Copyright © 2008 Intel Corporation
10 * Authors: Nathan Williams <nathan@traverse.com.au>
11 * David Woodhouse <dwmw2@infradead.org>
12 * Treker Chen <treker@xrio.com>
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * version 2, as published by the Free Software Foundation.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
27 #include <linux/interrupt.h>
28 #include <linux/module.h>
29 #include <linux/kernel.h>
30 #include <linux/errno.h>
31 #include <linux/ioport.h>
32 #include <linux/types.h>
33 #include <linux/pci.h>
34 #include <linux/atm.h>
35 #include <linux/atmdev.h>
36 #include <linux/skbuff.h>
37 #include <linux/sysfs.h>
38 #include <linux/device.h>
39 #include <linux/kobject.h>
40 #include <linux/firmware.h>
41 #include <linux/ctype.h>
42 #include <linux/swab.h>
43 #include <linux/slab.h>
45 #define VERSION "1.04"
46 #define DRIVER_VERSION 0x01
47 #define PTAG "solos-pci"
49 #define CONFIG_RAM_SIZE 128
50 #define FLAGS_ADDR 0x7C
51 #define IRQ_EN_ADDR 0x78
53 #define IRQ_CLEAR 0x70
54 #define WRITE_FLASH 0x6C
56 #define FLASH_BLOCK 0x64
57 #define FLASH_BUSY 0x60
58 #define FPGA_MODE 0x5C
59 #define FLASH_MODE 0x58
60 #define GPIO_STATUS 0x54
61 #define DRIVER_VER 0x50
62 #define TX_DMA_ADDR(port) (0x40 + (4 * (port)))
63 #define RX_DMA_ADDR(port) (0x30 + (4 * (port)))
65 #define DATA_RAM_SIZE 32768
67 #define OLD_BUF_SIZE 4096 /* For FPGA versions <= 2*/
68 /* Old boards use ATMEL AD45DB161D flash */
69 #define ATMEL_FPGA_PAGE 528 /* FPGA flash page size*/
70 #define ATMEL_SOLOS_PAGE 512 /* Solos flash page size*/
71 #define ATMEL_FPGA_BLOCK (ATMEL_FPGA_PAGE * 8) /* FPGA block size*/
72 #define ATMEL_SOLOS_BLOCK (ATMEL_SOLOS_PAGE * 8) /* Solos block size*/
73 /* Current boards use M25P/M25PE SPI flash */
74 #define SPI_FLASH_BLOCK (256 * 64)
76 #define RX_BUF(card, nr) ((card->buffers) + (nr)*(card->buffer_size)*2)
77 #define TX_BUF(card, nr) ((card->buffers) + (nr)*(card->buffer_size)*2 + (card->buffer_size))
78 #define FLASH_BUF ((card->buffers) + 4*(card->buffer_size)*2)
80 #define RX_DMA_SIZE 2048
82 #define FPGA_VERSION(a,b) (((a) << 8) + (b))
83 #define LEGACY_BUFFERS 2
84 #define DMA_SUPPORTED 4
87 static int atmdebug
= 0;
88 static int firmware_upgrade
= 0;
89 static int fpga_upgrade
= 0;
90 static int db_firmware_upgrade
= 0;
91 static int db_fpga_upgrade
= 0;
100 struct solos_skb_cb
{
106 #define SKB_CB(skb) ((struct solos_skb_cb *)skb->cb)
109 #define PKT_COMMAND 1
115 void __iomem
*config_regs
;
116 void __iomem
*buffers
;
120 struct atm_dev
*atmdev
[4];
121 struct tasklet_struct tlet
;
123 spinlock_t tx_queue_lock
;
124 spinlock_t cli_queue_lock
;
125 spinlock_t param_queue_lock
;
126 struct list_head param_queue
;
127 struct sk_buff_head tx_queue
[4];
128 struct sk_buff_head cli_queue
[4];
129 struct sk_buff
*tx_skb
[4];
130 struct sk_buff
*rx_skb
[4];
131 unsigned char *dma_bounce
;
132 wait_queue_head_t param_wq
;
133 wait_queue_head_t fw_wq
;
143 struct list_head list
;
146 struct sk_buff
*response
;
149 #define SOLOS_CHAN(atmdev) ((int)(unsigned long)(atmdev)->phy_data)
151 MODULE_AUTHOR("Traverse Technologies <support@traverse.com.au>");
152 MODULE_DESCRIPTION("Solos PCI driver");
153 MODULE_VERSION(VERSION
);
154 MODULE_LICENSE("GPL");
155 MODULE_FIRMWARE("solos-FPGA.bin");
156 MODULE_FIRMWARE("solos-Firmware.bin");
157 MODULE_FIRMWARE("solos-db-FPGA.bin");
158 MODULE_PARM_DESC(reset
, "Reset Solos chips on startup");
159 MODULE_PARM_DESC(atmdebug
, "Print ATM data");
160 MODULE_PARM_DESC(firmware_upgrade
, "Initiate Solos firmware upgrade");
161 MODULE_PARM_DESC(fpga_upgrade
, "Initiate FPGA upgrade");
162 MODULE_PARM_DESC(db_firmware_upgrade
, "Initiate daughter board Solos firmware upgrade");
163 MODULE_PARM_DESC(db_fpga_upgrade
, "Initiate daughter board FPGA upgrade");
164 module_param(reset
, int, 0444);
165 module_param(atmdebug
, int, 0644);
166 module_param(firmware_upgrade
, int, 0444);
167 module_param(fpga_upgrade
, int, 0444);
168 module_param(db_firmware_upgrade
, int, 0444);
169 module_param(db_fpga_upgrade
, int, 0444);
171 static void fpga_queue(struct solos_card
*card
, int port
, struct sk_buff
*skb
,
172 struct atm_vcc
*vcc
);
173 static uint32_t fpga_tx(struct solos_card
*);
174 static irqreturn_t
solos_irq(int irq
, void *dev_id
);
175 static struct atm_vcc
* find_vcc(struct atm_dev
*dev
, short vpi
, int vci
);
176 static int atm_init(struct solos_card
*, struct device
*);
177 static void atm_remove(struct solos_card
*);
178 static int send_command(struct solos_card
*card
, int dev
, const char *buf
, size_t size
);
179 static void solos_bh(unsigned long);
180 static int print_buffer(struct sk_buff
*buf
);
182 static inline void solos_pop(struct atm_vcc
*vcc
, struct sk_buff
*skb
)
187 dev_kfree_skb_any(skb
);
190 static ssize_t
solos_param_show(struct device
*dev
, struct device_attribute
*attr
,
193 struct atm_dev
*atmdev
= container_of(dev
, struct atm_dev
, class_dev
);
194 struct solos_card
*card
= atmdev
->dev_data
;
195 struct solos_param prm
;
197 struct pkt_hdr
*header
;
200 buflen
= strlen(attr
->attr
.name
) + 10;
202 skb
= alloc_skb(sizeof(*header
) + buflen
, GFP_KERNEL
);
204 dev_warn(&card
->dev
->dev
, "Failed to allocate sk_buff in solos_param_show()\n");
208 header
= skb_put(skb
, sizeof(*header
));
210 buflen
= snprintf((void *)&header
[1], buflen
- 1,
211 "L%05d\n%s\n", current
->pid
, attr
->attr
.name
);
212 skb_put(skb
, buflen
);
214 header
->size
= cpu_to_le16(buflen
);
215 header
->vpi
= cpu_to_le16(0);
216 header
->vci
= cpu_to_le16(0);
217 header
->type
= cpu_to_le16(PKT_COMMAND
);
219 prm
.pid
= current
->pid
;
221 prm
.port
= SOLOS_CHAN(atmdev
);
223 spin_lock_irq(&card
->param_queue_lock
);
224 list_add(&prm
.list
, &card
->param_queue
);
225 spin_unlock_irq(&card
->param_queue_lock
);
227 fpga_queue(card
, prm
.port
, skb
, NULL
);
229 wait_event_timeout(card
->param_wq
, prm
.response
, 5 * HZ
);
231 spin_lock_irq(&card
->param_queue_lock
);
233 spin_unlock_irq(&card
->param_queue_lock
);
238 buflen
= prm
.response
->len
;
239 memcpy(buf
, prm
.response
->data
, buflen
);
240 kfree_skb(prm
.response
);
245 static ssize_t
solos_param_store(struct device
*dev
, struct device_attribute
*attr
,
246 const char *buf
, size_t count
)
248 struct atm_dev
*atmdev
= container_of(dev
, struct atm_dev
, class_dev
);
249 struct solos_card
*card
= atmdev
->dev_data
;
250 struct solos_param prm
;
252 struct pkt_hdr
*header
;
256 buflen
= strlen(attr
->attr
.name
) + 11 + count
;
258 skb
= alloc_skb(sizeof(*header
) + buflen
, GFP_KERNEL
);
260 dev_warn(&card
->dev
->dev
, "Failed to allocate sk_buff in solos_param_store()\n");
264 header
= skb_put(skb
, sizeof(*header
));
266 buflen
= snprintf((void *)&header
[1], buflen
- 1,
267 "L%05d\n%s\n%s\n", current
->pid
, attr
->attr
.name
, buf
);
269 skb_put(skb
, buflen
);
270 header
->size
= cpu_to_le16(buflen
);
271 header
->vpi
= cpu_to_le16(0);
272 header
->vci
= cpu_to_le16(0);
273 header
->type
= cpu_to_le16(PKT_COMMAND
);
275 prm
.pid
= current
->pid
;
277 prm
.port
= SOLOS_CHAN(atmdev
);
279 spin_lock_irq(&card
->param_queue_lock
);
280 list_add(&prm
.list
, &card
->param_queue
);
281 spin_unlock_irq(&card
->param_queue_lock
);
283 fpga_queue(card
, prm
.port
, skb
, NULL
);
285 wait_event_timeout(card
->param_wq
, prm
.response
, 5 * HZ
);
287 spin_lock_irq(&card
->param_queue_lock
);
289 spin_unlock_irq(&card
->param_queue_lock
);
298 /* Sometimes it has a newline, sometimes it doesn't. */
299 if (skb
->data
[buflen
- 1] == '\n')
302 if (buflen
== 2 && !strncmp(skb
->data
, "OK", 2))
304 else if (buflen
== 5 && !strncmp(skb
->data
, "ERROR", 5))
307 /* We know we have enough space allocated for this; we allocated
309 skb
->data
[buflen
] = 0;
311 dev_warn(&card
->dev
->dev
, "Unexpected parameter response: '%s'\n",
320 static char *next_string(struct sk_buff
*skb
)
323 char *this = skb
->data
;
325 for (i
= 0; i
< skb
->len
; i
++) {
326 if (this[i
] == '\n') {
328 skb_pull(skb
, i
+ 1);
331 if (!isprint(this[i
]))
338 * Status packet has fields separated by \n, starting with a version number
339 * for the information therein. Fields are....
342 * RxBitRate (version >= 1)
343 * TxBitRate (version >= 1)
344 * State (version >= 1)
345 * LocalSNRMargin (version >= 1)
346 * LocalLineAttn (version >= 1)
348 static int process_status(struct solos_card
*card
, int port
, struct sk_buff
*skb
)
350 char *str
, *state_str
, *snr
, *attn
;
351 int ver
, rate_up
, rate_down
, err
;
353 if (!card
->atmdev
[port
])
356 str
= next_string(skb
);
360 err
= kstrtoint(str
, 10, &ver
);
362 dev_warn(&card
->dev
->dev
, "Unexpected status interrupt version\n");
366 dev_warn(&card
->dev
->dev
, "Unexpected status interrupt version %d\n",
371 str
= next_string(skb
);
374 if (!strcmp(str
, "ERROR")) {
375 dev_dbg(&card
->dev
->dev
, "Status packet indicated Solos error on port %d (starting up?)\n",
380 err
= kstrtoint(str
, 10, &rate_down
);
384 str
= next_string(skb
);
387 err
= kstrtoint(str
, 10, &rate_up
);
391 state_str
= next_string(skb
);
395 /* Anything but 'Showtime' is down */
396 if (strcmp(state_str
, "Showtime")) {
397 atm_dev_signal_change(card
->atmdev
[port
], ATM_PHY_SIG_LOST
);
398 dev_info(&card
->dev
->dev
, "Port %d: %s\n", port
, state_str
);
402 snr
= next_string(skb
);
405 attn
= next_string(skb
);
409 dev_info(&card
->dev
->dev
, "Port %d: %s @%d/%d kb/s%s%s%s%s\n",
410 port
, state_str
, rate_down
/1000, rate_up
/1000,
411 snr
[0]?", SNR ":"", snr
, attn
[0]?", Attn ":"", attn
);
413 card
->atmdev
[port
]->link_rate
= rate_down
/ 424;
414 atm_dev_signal_change(card
->atmdev
[port
], ATM_PHY_SIG_FOUND
);
419 static int process_command(struct solos_card
*card
, int port
, struct sk_buff
*skb
)
421 struct solos_param
*prm
;
429 if (skb
->data
[0] != 'L' || !isdigit(skb
->data
[1]) ||
430 !isdigit(skb
->data
[2]) || !isdigit(skb
->data
[3]) ||
431 !isdigit(skb
->data
[4]) || !isdigit(skb
->data
[5]) ||
432 skb
->data
[6] != '\n')
435 err
= kstrtoint(&skb
->data
[1], 10, &cmdpid
);
439 spin_lock_irqsave(&card
->param_queue_lock
, flags
);
440 list_for_each_entry(prm
, &card
->param_queue
, list
) {
441 if (prm
->port
== port
&& prm
->pid
== cmdpid
) {
444 wake_up(&card
->param_wq
);
449 spin_unlock_irqrestore(&card
->param_queue_lock
, flags
);
453 static ssize_t
console_show(struct device
*dev
, struct device_attribute
*attr
,
456 struct atm_dev
*atmdev
= container_of(dev
, struct atm_dev
, class_dev
);
457 struct solos_card
*card
= atmdev
->dev_data
;
461 spin_lock(&card
->cli_queue_lock
);
462 skb
= skb_dequeue(&card
->cli_queue
[SOLOS_CHAN(atmdev
)]);
463 spin_unlock(&card
->cli_queue_lock
);
465 return sprintf(buf
, "No data.\n");
468 memcpy(buf
, skb
->data
, len
);
474 static int send_command(struct solos_card
*card
, int dev
, const char *buf
, size_t size
)
477 struct pkt_hdr
*header
;
479 if (size
> (BUF_SIZE
- sizeof(*header
))) {
480 dev_dbg(&card
->dev
->dev
, "Command is too big. Dropping request\n");
483 skb
= alloc_skb(size
+ sizeof(*header
), GFP_ATOMIC
);
485 dev_warn(&card
->dev
->dev
, "Failed to allocate sk_buff in send_command()\n");
489 header
= skb_put(skb
, sizeof(*header
));
491 header
->size
= cpu_to_le16(size
);
492 header
->vpi
= cpu_to_le16(0);
493 header
->vci
= cpu_to_le16(0);
494 header
->type
= cpu_to_le16(PKT_COMMAND
);
496 skb_put_data(skb
, buf
, size
);
498 fpga_queue(card
, dev
, skb
, NULL
);
503 static ssize_t
console_store(struct device
*dev
, struct device_attribute
*attr
,
504 const char *buf
, size_t count
)
506 struct atm_dev
*atmdev
= container_of(dev
, struct atm_dev
, class_dev
);
507 struct solos_card
*card
= atmdev
->dev_data
;
510 err
= send_command(card
, SOLOS_CHAN(atmdev
), buf
, count
);
515 struct geos_gpio_attr
{
516 struct device_attribute attr
;
520 #define SOLOS_GPIO_ATTR(_name, _mode, _show, _store, _offset) \
521 struct geos_gpio_attr gpio_attr_##_name = { \
522 .attr = __ATTR(_name, _mode, _show, _store), \
525 static ssize_t
geos_gpio_store(struct device
*dev
, struct device_attribute
*attr
,
526 const char *buf
, size_t count
)
528 struct pci_dev
*pdev
= to_pci_dev(dev
);
529 struct geos_gpio_attr
*gattr
= container_of(attr
, struct geos_gpio_attr
, attr
);
530 struct solos_card
*card
= pci_get_drvdata(pdev
);
533 if (count
!= 1 && (count
!= 2 || buf
[1] != '\n'))
536 spin_lock_irq(&card
->param_queue_lock
);
537 data32
= ioread32(card
->config_regs
+ GPIO_STATUS
);
539 data32
|= 1 << gattr
->offset
;
540 iowrite32(data32
, card
->config_regs
+ GPIO_STATUS
);
541 } else if (buf
[0] == '0') {
542 data32
&= ~(1 << gattr
->offset
);
543 iowrite32(data32
, card
->config_regs
+ GPIO_STATUS
);
547 spin_unlock_irq(&card
->param_queue_lock
);
551 static ssize_t
geos_gpio_show(struct device
*dev
, struct device_attribute
*attr
,
554 struct pci_dev
*pdev
= to_pci_dev(dev
);
555 struct geos_gpio_attr
*gattr
= container_of(attr
, struct geos_gpio_attr
, attr
);
556 struct solos_card
*card
= pci_get_drvdata(pdev
);
559 data32
= ioread32(card
->config_regs
+ GPIO_STATUS
);
560 data32
= (data32
>> gattr
->offset
) & 1;
562 return sprintf(buf
, "%d\n", data32
);
565 static ssize_t
hardware_show(struct device
*dev
, struct device_attribute
*attr
,
568 struct pci_dev
*pdev
= to_pci_dev(dev
);
569 struct geos_gpio_attr
*gattr
= container_of(attr
, struct geos_gpio_attr
, attr
);
570 struct solos_card
*card
= pci_get_drvdata(pdev
);
573 data32
= ioread32(card
->config_regs
+ GPIO_STATUS
);
574 switch (gattr
->offset
) {
576 /* HardwareVersion */
577 data32
= data32
& 0x1F;
580 /* HardwareVariant */
581 data32
= (data32
>> 5) & 0x0F;
584 return sprintf(buf
, "%d\n", data32
);
587 static DEVICE_ATTR_RW(console
);
590 #define SOLOS_ATTR_RO(x) static DEVICE_ATTR(x, 0444, solos_param_show, NULL);
591 #define SOLOS_ATTR_RW(x) static DEVICE_ATTR(x, 0644, solos_param_show, solos_param_store);
593 #include "solos-attrlist.c"
595 static SOLOS_GPIO_ATTR(GPIO1
, 0644, geos_gpio_show
, geos_gpio_store
, 9);
596 static SOLOS_GPIO_ATTR(GPIO2
, 0644, geos_gpio_show
, geos_gpio_store
, 10);
597 static SOLOS_GPIO_ATTR(GPIO3
, 0644, geos_gpio_show
, geos_gpio_store
, 11);
598 static SOLOS_GPIO_ATTR(GPIO4
, 0644, geos_gpio_show
, geos_gpio_store
, 12);
599 static SOLOS_GPIO_ATTR(GPIO5
, 0644, geos_gpio_show
, geos_gpio_store
, 13);
600 static SOLOS_GPIO_ATTR(PushButton
, 0444, geos_gpio_show
, NULL
, 14);
601 static SOLOS_GPIO_ATTR(HardwareVersion
, 0444, hardware_show
, NULL
, 0);
602 static SOLOS_GPIO_ATTR(HardwareVariant
, 0444, hardware_show
, NULL
, 1);
606 #define SOLOS_ATTR_RO(x) &dev_attr_##x.attr,
607 #define SOLOS_ATTR_RW(x) &dev_attr_##x.attr,
609 static struct attribute
*solos_attrs
[] = {
610 #include "solos-attrlist.c"
614 static const struct attribute_group solos_attr_group
= {
615 .attrs
= solos_attrs
,
616 .name
= "parameters",
619 static struct attribute
*gpio_attrs
[] = {
620 &gpio_attr_GPIO1
.attr
.attr
,
621 &gpio_attr_GPIO2
.attr
.attr
,
622 &gpio_attr_GPIO3
.attr
.attr
,
623 &gpio_attr_GPIO4
.attr
.attr
,
624 &gpio_attr_GPIO5
.attr
.attr
,
625 &gpio_attr_PushButton
.attr
.attr
,
626 &gpio_attr_HardwareVersion
.attr
.attr
,
627 &gpio_attr_HardwareVariant
.attr
.attr
,
631 static const struct attribute_group gpio_attr_group
= {
636 static int flash_upgrade(struct solos_card
*card
, int chip
)
638 const struct firmware
*fw
;
646 fw_name
= "solos-FPGA.bin";
647 if (card
->atmel_flash
)
648 blocksize
= ATMEL_FPGA_BLOCK
;
650 blocksize
= SPI_FLASH_BLOCK
;
653 fw_name
= "solos-Firmware.bin";
654 if (card
->atmel_flash
)
655 blocksize
= ATMEL_SOLOS_BLOCK
;
657 blocksize
= SPI_FLASH_BLOCK
;
660 if (card
->fpga_version
> LEGACY_BUFFERS
){
661 fw_name
= "solos-db-FPGA.bin";
662 if (card
->atmel_flash
)
663 blocksize
= ATMEL_FPGA_BLOCK
;
665 blocksize
= SPI_FLASH_BLOCK
;
667 dev_info(&card
->dev
->dev
, "FPGA version doesn't support"
668 " daughter board upgrades\n");
673 if (card
->fpga_version
> LEGACY_BUFFERS
){
674 fw_name
= "solos-Firmware.bin";
675 if (card
->atmel_flash
)
676 blocksize
= ATMEL_SOLOS_BLOCK
;
678 blocksize
= SPI_FLASH_BLOCK
;
680 dev_info(&card
->dev
->dev
, "FPGA version doesn't support"
681 " daughter board upgrades\n");
689 if (request_firmware(&fw
, fw_name
, &card
->dev
->dev
))
692 dev_info(&card
->dev
->dev
, "Flash upgrade starting\n");
694 /* New FPGAs require driver version before permitting flash upgrades */
695 iowrite32(DRIVER_VERSION
, card
->config_regs
+ DRIVER_VER
);
697 numblocks
= fw
->size
/ blocksize
;
698 dev_info(&card
->dev
->dev
, "Firmware size: %zd\n", fw
->size
);
699 dev_info(&card
->dev
->dev
, "Number of blocks: %d\n", numblocks
);
701 dev_info(&card
->dev
->dev
, "Changing FPGA to Update mode\n");
702 iowrite32(1, card
->config_regs
+ FPGA_MODE
);
703 (void) ioread32(card
->config_regs
+ FPGA_MODE
);
705 /* Set mode to Chip Erase */
706 if(chip
== 0 || chip
== 2)
707 dev_info(&card
->dev
->dev
, "Set FPGA Flash mode to FPGA Chip Erase\n");
708 if(chip
== 1 || chip
== 3)
709 dev_info(&card
->dev
->dev
, "Set FPGA Flash mode to Solos Chip Erase\n");
710 iowrite32((chip
* 2), card
->config_regs
+ FLASH_MODE
);
713 iowrite32(1, card
->config_regs
+ WRITE_FLASH
);
714 wait_event(card
->fw_wq
, !ioread32(card
->config_regs
+ FLASH_BUSY
));
716 for (offset
= 0; offset
< fw
->size
; offset
+= blocksize
) {
719 /* Clear write flag */
720 iowrite32(0, card
->config_regs
+ WRITE_FLASH
);
722 /* Set mode to Block Write */
723 /* dev_info(&card->dev->dev, "Set FPGA Flash mode to Block Write\n"); */
724 iowrite32(((chip
* 2) + 1), card
->config_regs
+ FLASH_MODE
);
726 /* Copy block to buffer, swapping each 16 bits for Atmel flash */
727 for(i
= 0; i
< blocksize
; i
+= 4) {
729 if (card
->atmel_flash
)
730 word
= swahb32p((uint32_t *)(fw
->data
+ offset
+ i
));
732 word
= *(uint32_t *)(fw
->data
+ offset
+ i
);
733 if(card
->fpga_version
> LEGACY_BUFFERS
)
734 iowrite32(word
, FLASH_BUF
+ i
);
736 iowrite32(word
, RX_BUF(card
, 3) + i
);
739 /* Specify block number and then trigger flash write */
740 iowrite32(offset
/ blocksize
, card
->config_regs
+ FLASH_BLOCK
);
741 iowrite32(1, card
->config_regs
+ WRITE_FLASH
);
742 wait_event(card
->fw_wq
, !ioread32(card
->config_regs
+ FLASH_BUSY
));
745 release_firmware(fw
);
746 iowrite32(0, card
->config_regs
+ WRITE_FLASH
);
747 iowrite32(0, card
->config_regs
+ FPGA_MODE
);
748 iowrite32(0, card
->config_regs
+ FLASH_MODE
);
749 dev_info(&card
->dev
->dev
, "Returning FPGA to Data mode\n");
753 static irqreturn_t
solos_irq(int irq
, void *dev_id
)
755 struct solos_card
*card
= dev_id
;
758 iowrite32(0, card
->config_regs
+ IRQ_CLEAR
);
760 /* If we're up and running, just kick the tasklet to process TX/RX */
762 tasklet_schedule(&card
->tlet
);
764 wake_up(&card
->fw_wq
);
766 return IRQ_RETVAL(handled
);
769 static void solos_bh(unsigned long card_arg
)
771 struct solos_card
*card
= (void *)card_arg
;
773 uint32_t rx_done
= 0;
777 * Since fpga_tx() is going to need to read the flags under its lock,
778 * it can return them to us so that we don't have to hit PCI MMIO
779 * again for the same information
781 card_flags
= fpga_tx(card
);
783 for (port
= 0; port
< card
->nr_ports
; port
++) {
784 if (card_flags
& (0x10 << port
)) {
785 struct pkt_hdr _hdr
, *header
;
790 if (card
->using_dma
) {
791 skb
= card
->rx_skb
[port
];
792 card
->rx_skb
[port
] = NULL
;
794 dma_unmap_single(&card
->dev
->dev
, SKB_CB(skb
)->dma_addr
,
795 RX_DMA_SIZE
, DMA_FROM_DEVICE
);
797 header
= (void *)skb
->data
;
798 size
= le16_to_cpu(header
->size
);
799 skb_put(skb
, size
+ sizeof(*header
));
800 skb_pull(skb
, sizeof(*header
));
804 rx_done
|= 0x10 << port
;
806 memcpy_fromio(header
, RX_BUF(card
, port
), sizeof(*header
));
808 size
= le16_to_cpu(header
->size
);
809 if (size
> (card
->buffer_size
- sizeof(*header
))){
810 dev_warn(&card
->dev
->dev
, "Invalid buffer size\n");
814 /* Use netdev_alloc_skb() because it adds NET_SKB_PAD of
815 * headroom, and ensures we can route packets back out an
816 * Ethernet interface (for example) without having to
817 * reallocate. Adding NET_IP_ALIGN also ensures that both
818 * PPPoATM and PPPoEoBR2684 packets end up aligned. */
819 skb
= netdev_alloc_skb_ip_align(NULL
, size
+ 1);
822 dev_warn(&card
->dev
->dev
, "Failed to allocate sk_buff for RX\n");
826 memcpy_fromio(skb_put(skb
, size
),
827 RX_BUF(card
, port
) + sizeof(*header
),
831 dev_info(&card
->dev
->dev
, "Received: port %d\n", port
);
832 dev_info(&card
->dev
->dev
, "size: %d VPI: %d VCI: %d\n",
833 size
, le16_to_cpu(header
->vpi
),
834 le16_to_cpu(header
->vci
));
838 switch (le16_to_cpu(header
->type
)) {
840 vcc
= find_vcc(card
->atmdev
[port
], le16_to_cpu(header
->vpi
),
841 le16_to_cpu(header
->vci
));
844 dev_warn(&card
->dev
->dev
, "Received packet for unknown VPI.VCI %d.%d on port %d\n",
845 le16_to_cpu(header
->vpi
), le16_to_cpu(header
->vci
),
847 dev_kfree_skb_any(skb
);
850 atm_charge(vcc
, skb
->truesize
);
852 atomic_inc(&vcc
->stats
->rx
);
856 if (process_status(card
, port
, skb
) &&
858 dev_warn(&card
->dev
->dev
, "Bad status packet of %d bytes on port %d:\n", skb
->len
, port
);
861 dev_kfree_skb_any(skb
);
865 default: /* FIXME: Not really, surely? */
866 if (process_command(card
, port
, skb
))
868 spin_lock(&card
->cli_queue_lock
);
869 if (skb_queue_len(&card
->cli_queue
[port
]) > 10) {
871 dev_warn(&card
->dev
->dev
, "Dropping console response on port %d\n",
873 dev_kfree_skb_any(skb
);
875 skb_queue_tail(&card
->cli_queue
[port
], skb
);
876 spin_unlock(&card
->cli_queue_lock
);
880 /* Allocate RX skbs for any ports which need them */
881 if (card
->using_dma
&& card
->atmdev
[port
] &&
882 !card
->rx_skb
[port
]) {
883 /* Unlike the MMIO case (qv) we can't add NET_IP_ALIGN
884 * here; the FPGA can only DMA to addresses which are
885 * aligned to 4 bytes. */
886 struct sk_buff
*skb
= dev_alloc_skb(RX_DMA_SIZE
);
888 SKB_CB(skb
)->dma_addr
=
889 dma_map_single(&card
->dev
->dev
, skb
->data
,
890 RX_DMA_SIZE
, DMA_FROM_DEVICE
);
891 iowrite32(SKB_CB(skb
)->dma_addr
,
892 card
->config_regs
+ RX_DMA_ADDR(port
));
893 card
->rx_skb
[port
] = skb
;
896 dev_warn(&card
->dev
->dev
, "Failed to allocate RX skb");
898 /* We'll have to try again later */
899 tasklet_schedule(&card
->tlet
);
904 iowrite32(rx_done
, card
->config_regs
+ FLAGS_ADDR
);
909 static struct atm_vcc
*find_vcc(struct atm_dev
*dev
, short vpi
, int vci
)
911 struct hlist_head
*head
;
912 struct atm_vcc
*vcc
= NULL
;
915 read_lock(&vcc_sklist_lock
);
916 head
= &vcc_hash
[vci
& (VCC_HTABLE_SIZE
-1)];
917 sk_for_each(s
, head
) {
919 if (vcc
->dev
== dev
&& vcc
->vci
== vci
&&
920 vcc
->vpi
== vpi
&& vcc
->qos
.rxtp
.traffic_class
!= ATM_NONE
&&
921 test_bit(ATM_VF_READY
, &vcc
->flags
))
926 read_unlock(&vcc_sklist_lock
);
930 static int popen(struct atm_vcc
*vcc
)
932 struct solos_card
*card
= vcc
->dev
->dev_data
;
934 struct pkt_hdr
*header
;
936 if (vcc
->qos
.aal
!= ATM_AAL5
) {
937 dev_warn(&card
->dev
->dev
, "Unsupported ATM type %d\n",
942 skb
= alloc_skb(sizeof(*header
), GFP_KERNEL
);
945 dev_warn(&card
->dev
->dev
, "Failed to allocate sk_buff in popen()\n");
948 header
= skb_put(skb
, sizeof(*header
));
950 header
->size
= cpu_to_le16(0);
951 header
->vpi
= cpu_to_le16(vcc
->vpi
);
952 header
->vci
= cpu_to_le16(vcc
->vci
);
953 header
->type
= cpu_to_le16(PKT_POPEN
);
955 fpga_queue(card
, SOLOS_CHAN(vcc
->dev
), skb
, NULL
);
957 set_bit(ATM_VF_ADDR
, &vcc
->flags
);
958 set_bit(ATM_VF_READY
, &vcc
->flags
);
963 static void pclose(struct atm_vcc
*vcc
)
965 struct solos_card
*card
= vcc
->dev
->dev_data
;
966 unsigned char port
= SOLOS_CHAN(vcc
->dev
);
967 struct sk_buff
*skb
, *tmpskb
;
968 struct pkt_hdr
*header
;
970 /* Remove any yet-to-be-transmitted packets from the pending queue */
971 spin_lock(&card
->tx_queue_lock
);
972 skb_queue_walk_safe(&card
->tx_queue
[port
], skb
, tmpskb
) {
973 if (SKB_CB(skb
)->vcc
== vcc
) {
974 skb_unlink(skb
, &card
->tx_queue
[port
]);
978 spin_unlock(&card
->tx_queue_lock
);
980 skb
= alloc_skb(sizeof(*header
), GFP_KERNEL
);
982 dev_warn(&card
->dev
->dev
, "Failed to allocate sk_buff in pclose()\n");
985 header
= skb_put(skb
, sizeof(*header
));
987 header
->size
= cpu_to_le16(0);
988 header
->vpi
= cpu_to_le16(vcc
->vpi
);
989 header
->vci
= cpu_to_le16(vcc
->vci
);
990 header
->type
= cpu_to_le16(PKT_PCLOSE
);
993 fpga_queue(card
, port
, skb
, NULL
);
995 if (!wait_event_timeout(card
->param_wq
, !skb_shared(skb
), 5 * HZ
))
996 dev_warn(&card
->dev
->dev
,
997 "Timeout waiting for VCC close on port %d\n", port
);
1001 /* Hold up vcc_destroy_socket() (our caller) until solos_bh() in the
1002 tasklet has finished processing any incoming packets (and, more to
1003 the point, using the vcc pointer). */
1004 tasklet_unlock_wait(&card
->tlet
);
1006 clear_bit(ATM_VF_ADDR
, &vcc
->flags
);
1011 static int print_buffer(struct sk_buff
*buf
)
1018 for (i
= 0; i
< len
; i
++){
1020 sprintf(msg
, "%02X: ", i
);
1022 sprintf(item
,"%02X ",*(buf
->data
+ i
));
1025 sprintf(item
, "\n");
1027 printk(KERN_DEBUG
"%s", msg
);
1031 sprintf(item
, "\n");
1033 printk(KERN_DEBUG
"%s", msg
);
1035 printk(KERN_DEBUG
"\n");
1040 static void fpga_queue(struct solos_card
*card
, int port
, struct sk_buff
*skb
,
1041 struct atm_vcc
*vcc
)
1044 unsigned long flags
;
1046 SKB_CB(skb
)->vcc
= vcc
;
1048 spin_lock_irqsave(&card
->tx_queue_lock
, flags
);
1049 old_len
= skb_queue_len(&card
->tx_queue
[port
]);
1050 skb_queue_tail(&card
->tx_queue
[port
], skb
);
1052 card
->tx_mask
|= (1 << port
);
1053 spin_unlock_irqrestore(&card
->tx_queue_lock
, flags
);
1055 /* Theoretically we could just schedule the tasklet here, but
1056 that introduces latency we don't want -- it's noticeable */
1061 static uint32_t fpga_tx(struct solos_card
*card
)
1063 uint32_t tx_pending
, card_flags
;
1064 uint32_t tx_started
= 0;
1065 struct sk_buff
*skb
;
1066 struct atm_vcc
*vcc
;
1068 unsigned long flags
;
1070 spin_lock_irqsave(&card
->tx_lock
, flags
);
1072 card_flags
= ioread32(card
->config_regs
+ FLAGS_ADDR
);
1074 * The queue lock is required for _writing_ to tx_mask, but we're
1075 * OK to read it here without locking. The only potential update
1076 * that we could race with is in fpga_queue() where it sets a bit
1077 * for a new port... but it's going to call this function again if
1078 * it's doing that, anyway.
1080 tx_pending
= card
->tx_mask
& ~card_flags
;
1082 for (port
= 0; tx_pending
; tx_pending
>>= 1, port
++) {
1083 if (tx_pending
& 1) {
1084 struct sk_buff
*oldskb
= card
->tx_skb
[port
];
1086 dma_unmap_single(&card
->dev
->dev
, SKB_CB(oldskb
)->dma_addr
,
1087 oldskb
->len
, DMA_TO_DEVICE
);
1088 card
->tx_skb
[port
] = NULL
;
1090 spin_lock(&card
->tx_queue_lock
);
1091 skb
= skb_dequeue(&card
->tx_queue
[port
]);
1093 card
->tx_mask
&= ~(1 << port
);
1094 spin_unlock(&card
->tx_queue_lock
);
1096 if (skb
&& !card
->using_dma
) {
1097 memcpy_toio(TX_BUF(card
, port
), skb
->data
, skb
->len
);
1098 tx_started
|= 1 << port
;
1099 oldskb
= skb
; /* We're done with this skb already */
1100 } else if (skb
&& card
->using_dma
) {
1101 unsigned char *data
= skb
->data
;
1102 if ((unsigned long)data
& card
->dma_alignment
) {
1103 data
= card
->dma_bounce
+ (BUF_SIZE
* port
);
1104 memcpy(data
, skb
->data
, skb
->len
);
1106 SKB_CB(skb
)->dma_addr
= dma_map_single(&card
->dev
->dev
, data
,
1107 skb
->len
, DMA_TO_DEVICE
);
1108 card
->tx_skb
[port
] = skb
;
1109 iowrite32(SKB_CB(skb
)->dma_addr
,
1110 card
->config_regs
+ TX_DMA_ADDR(port
));
1116 /* Clean up and free oldskb now it's gone */
1118 struct pkt_hdr
*header
= (void *)oldskb
->data
;
1119 int size
= le16_to_cpu(header
->size
);
1121 skb_pull(oldskb
, sizeof(*header
));
1122 dev_info(&card
->dev
->dev
, "Transmitted: port %d\n",
1124 dev_info(&card
->dev
->dev
, "size: %d VPI: %d VCI: %d\n",
1125 size
, le16_to_cpu(header
->vpi
),
1126 le16_to_cpu(header
->vci
));
1127 print_buffer(oldskb
);
1130 vcc
= SKB_CB(oldskb
)->vcc
;
1133 atomic_inc(&vcc
->stats
->tx
);
1134 solos_pop(vcc
, oldskb
);
1136 dev_kfree_skb_irq(oldskb
);
1137 wake_up(&card
->param_wq
);
1141 /* For non-DMA TX, write the 'TX start' bit for all four ports simultaneously */
1143 iowrite32(tx_started
, card
->config_regs
+ FLAGS_ADDR
);
1145 spin_unlock_irqrestore(&card
->tx_lock
, flags
);
1149 static int psend(struct atm_vcc
*vcc
, struct sk_buff
*skb
)
1151 struct solos_card
*card
= vcc
->dev
->dev_data
;
1152 struct pkt_hdr
*header
;
1156 if (pktlen
> (BUF_SIZE
- sizeof(*header
))) {
1157 dev_warn(&card
->dev
->dev
, "Length of PDU is too large. Dropping PDU.\n");
1158 solos_pop(vcc
, skb
);
1162 if (!skb_clone_writable(skb
, sizeof(*header
))) {
1166 if (skb_headroom(skb
) < sizeof(*header
))
1167 expand_by
= sizeof(*header
) - skb_headroom(skb
);
1169 ret
= pskb_expand_head(skb
, expand_by
, 0, GFP_ATOMIC
);
1171 dev_warn(&card
->dev
->dev
, "pskb_expand_head failed.\n");
1172 solos_pop(vcc
, skb
);
1177 header
= skb_push(skb
, sizeof(*header
));
1179 /* This does _not_ include the size of the header */
1180 header
->size
= cpu_to_le16(pktlen
);
1181 header
->vpi
= cpu_to_le16(vcc
->vpi
);
1182 header
->vci
= cpu_to_le16(vcc
->vci
);
1183 header
->type
= cpu_to_le16(PKT_DATA
);
1185 fpga_queue(card
, SOLOS_CHAN(vcc
->dev
), skb
, vcc
);
1190 static const struct atmdev_ops fpga_ops
= {
1202 .owner
= THIS_MODULE
1205 static int fpga_probe(struct pci_dev
*dev
, const struct pci_device_id
*id
)
1209 uint8_t major_ver
, minor_ver
;
1211 struct solos_card
*card
;
1213 card
= kzalloc(sizeof(*card
), GFP_KERNEL
);
1218 init_waitqueue_head(&card
->fw_wq
);
1219 init_waitqueue_head(&card
->param_wq
);
1221 err
= pci_enable_device(dev
);
1223 dev_warn(&dev
->dev
, "Failed to enable PCI device\n");
1227 err
= dma_set_mask_and_coherent(&dev
->dev
, DMA_BIT_MASK(32));
1229 dev_warn(&dev
->dev
, "Failed to set 32-bit DMA mask\n");
1233 err
= pci_request_regions(dev
, "solos");
1235 dev_warn(&dev
->dev
, "Failed to request regions\n");
1239 card
->config_regs
= pci_iomap(dev
, 0, CONFIG_RAM_SIZE
);
1240 if (!card
->config_regs
) {
1241 dev_warn(&dev
->dev
, "Failed to ioremap config registers\n");
1243 goto out_release_regions
;
1245 card
->buffers
= pci_iomap(dev
, 1, DATA_RAM_SIZE
);
1246 if (!card
->buffers
) {
1247 dev_warn(&dev
->dev
, "Failed to ioremap data buffers\n");
1249 goto out_unmap_config
;
1253 iowrite32(1, card
->config_regs
+ FPGA_MODE
);
1254 ioread32(card
->config_regs
+ FPGA_MODE
);
1256 iowrite32(0, card
->config_regs
+ FPGA_MODE
);
1257 ioread32(card
->config_regs
+ FPGA_MODE
);
1260 data32
= ioread32(card
->config_regs
+ FPGA_VER
);
1261 fpga_ver
= (data32
& 0x0000FFFF);
1262 major_ver
= ((data32
& 0xFF000000) >> 24);
1263 minor_ver
= ((data32
& 0x00FF0000) >> 16);
1264 card
->fpga_version
= FPGA_VERSION(major_ver
,minor_ver
);
1265 if (card
->fpga_version
> LEGACY_BUFFERS
)
1266 card
->buffer_size
= BUF_SIZE
;
1268 card
->buffer_size
= OLD_BUF_SIZE
;
1269 dev_info(&dev
->dev
, "Solos FPGA Version %d.%02d svn-%d\n",
1270 major_ver
, minor_ver
, fpga_ver
);
1272 if (fpga_ver
< 37 && (fpga_upgrade
|| firmware_upgrade
||
1273 db_fpga_upgrade
|| db_firmware_upgrade
)) {
1275 "FPGA too old; cannot upgrade flash. Use JTAG.\n");
1276 fpga_upgrade
= firmware_upgrade
= 0;
1277 db_fpga_upgrade
= db_firmware_upgrade
= 0;
1280 /* Stopped using Atmel flash after 0.03-38 */
1282 card
->atmel_flash
= 1;
1284 card
->atmel_flash
= 0;
1286 data32
= ioread32(card
->config_regs
+ PORTS
);
1287 card
->nr_ports
= (data32
& 0x000000FF);
1289 if (card
->fpga_version
>= DMA_SUPPORTED
) {
1290 pci_set_master(dev
);
1291 card
->using_dma
= 1;
1292 if (1) { /* All known FPGA versions so far */
1293 card
->dma_alignment
= 3;
1294 card
->dma_bounce
= kmalloc_array(card
->nr_ports
,
1295 BUF_SIZE
, GFP_KERNEL
);
1296 if (!card
->dma_bounce
) {
1297 dev_warn(&card
->dev
->dev
, "Failed to allocate DMA bounce buffers\n");
1299 /* Fallback to MMIO doesn't work */
1300 goto out_unmap_both
;
1304 card
->using_dma
= 0;
1305 /* Set RX empty flag for all ports */
1306 iowrite32(0xF0, card
->config_regs
+ FLAGS_ADDR
);
1309 pci_set_drvdata(dev
, card
);
1311 tasklet_init(&card
->tlet
, solos_bh
, (unsigned long)card
);
1312 spin_lock_init(&card
->tx_lock
);
1313 spin_lock_init(&card
->tx_queue_lock
);
1314 spin_lock_init(&card
->cli_queue_lock
);
1315 spin_lock_init(&card
->param_queue_lock
);
1316 INIT_LIST_HEAD(&card
->param_queue
);
1318 err
= request_irq(dev
->irq
, solos_irq
, IRQF_SHARED
,
1321 dev_dbg(&card
->dev
->dev
, "Failed to request interrupt IRQ: %d\n", dev
->irq
);
1322 goto out_unmap_both
;
1325 iowrite32(1, card
->config_regs
+ IRQ_EN_ADDR
);
1328 flash_upgrade(card
, 0);
1330 if (firmware_upgrade
)
1331 flash_upgrade(card
, 1);
1333 if (db_fpga_upgrade
)
1334 flash_upgrade(card
, 2);
1336 if (db_firmware_upgrade
)
1337 flash_upgrade(card
, 3);
1339 err
= atm_init(card
, &dev
->dev
);
1343 if (card
->fpga_version
>= DMA_SUPPORTED
&&
1344 sysfs_create_group(&card
->dev
->dev
.kobj
, &gpio_attr_group
))
1345 dev_err(&card
->dev
->dev
, "Could not register parameter group for GPIOs\n");
1350 iowrite32(0, card
->config_regs
+ IRQ_EN_ADDR
);
1351 free_irq(dev
->irq
, card
);
1352 tasklet_kill(&card
->tlet
);
1355 kfree(card
->dma_bounce
);
1356 pci_iounmap(dev
, card
->buffers
);
1358 pci_iounmap(dev
, card
->config_regs
);
1359 out_release_regions
:
1360 pci_release_regions(dev
);
1366 static int atm_init(struct solos_card
*card
, struct device
*parent
)
1370 for (i
= 0; i
< card
->nr_ports
; i
++) {
1371 struct sk_buff
*skb
;
1372 struct pkt_hdr
*header
;
1374 skb_queue_head_init(&card
->tx_queue
[i
]);
1375 skb_queue_head_init(&card
->cli_queue
[i
]);
1377 card
->atmdev
[i
] = atm_dev_register("solos-pci", parent
, &fpga_ops
, -1, NULL
);
1378 if (!card
->atmdev
[i
]) {
1379 dev_err(&card
->dev
->dev
, "Could not register ATM device %d\n", i
);
1383 if (device_create_file(&card
->atmdev
[i
]->class_dev
, &dev_attr_console
))
1384 dev_err(&card
->dev
->dev
, "Could not register console for ATM device %d\n", i
);
1385 if (sysfs_create_group(&card
->atmdev
[i
]->class_dev
.kobj
, &solos_attr_group
))
1386 dev_err(&card
->dev
->dev
, "Could not register parameter group for ATM device %d\n", i
);
1388 dev_info(&card
->dev
->dev
, "Registered ATM device %d\n", card
->atmdev
[i
]->number
);
1390 card
->atmdev
[i
]->ci_range
.vpi_bits
= 8;
1391 card
->atmdev
[i
]->ci_range
.vci_bits
= 16;
1392 card
->atmdev
[i
]->dev_data
= card
;
1393 card
->atmdev
[i
]->phy_data
= (void *)(unsigned long)i
;
1394 atm_dev_signal_change(card
->atmdev
[i
], ATM_PHY_SIG_FOUND
);
1396 skb
= alloc_skb(sizeof(*header
), GFP_KERNEL
);
1398 dev_warn(&card
->dev
->dev
, "Failed to allocate sk_buff in atm_init()\n");
1402 header
= skb_put(skb
, sizeof(*header
));
1404 header
->size
= cpu_to_le16(0);
1405 header
->vpi
= cpu_to_le16(0);
1406 header
->vci
= cpu_to_le16(0);
1407 header
->type
= cpu_to_le16(PKT_STATUS
);
1409 fpga_queue(card
, i
, skb
, NULL
);
1414 static void atm_remove(struct solos_card
*card
)
1418 for (i
= 0; i
< card
->nr_ports
; i
++) {
1419 if (card
->atmdev
[i
]) {
1420 struct sk_buff
*skb
;
1422 dev_info(&card
->dev
->dev
, "Unregistering ATM device %d\n", card
->atmdev
[i
]->number
);
1424 sysfs_remove_group(&card
->atmdev
[i
]->class_dev
.kobj
, &solos_attr_group
);
1425 atm_dev_deregister(card
->atmdev
[i
]);
1427 skb
= card
->rx_skb
[i
];
1429 dma_unmap_single(&card
->dev
->dev
, SKB_CB(skb
)->dma_addr
,
1430 RX_DMA_SIZE
, DMA_FROM_DEVICE
);
1433 skb
= card
->tx_skb
[i
];
1435 dma_unmap_single(&card
->dev
->dev
, SKB_CB(skb
)->dma_addr
,
1436 skb
->len
, DMA_TO_DEVICE
);
1439 while ((skb
= skb_dequeue(&card
->tx_queue
[i
])))
1446 static void fpga_remove(struct pci_dev
*dev
)
1448 struct solos_card
*card
= pci_get_drvdata(dev
);
1451 iowrite32(0, card
->config_regs
+ IRQ_EN_ADDR
);
1454 iowrite32(1, card
->config_regs
+ FPGA_MODE
);
1455 (void)ioread32(card
->config_regs
+ FPGA_MODE
);
1457 if (card
->fpga_version
>= DMA_SUPPORTED
)
1458 sysfs_remove_group(&card
->dev
->dev
.kobj
, &gpio_attr_group
);
1462 free_irq(dev
->irq
, card
);
1463 tasklet_kill(&card
->tlet
);
1465 kfree(card
->dma_bounce
);
1467 /* Release device from reset */
1468 iowrite32(0, card
->config_regs
+ FPGA_MODE
);
1469 (void)ioread32(card
->config_regs
+ FPGA_MODE
);
1471 pci_iounmap(dev
, card
->buffers
);
1472 pci_iounmap(dev
, card
->config_regs
);
1474 pci_release_regions(dev
);
1475 pci_disable_device(dev
);
1480 static const struct pci_device_id fpga_pci_tbl
[] = {
1481 { 0x10ee, 0x0300, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
1485 MODULE_DEVICE_TABLE(pci
,fpga_pci_tbl
);
1487 static struct pci_driver fpga_driver
= {
1489 .id_table
= fpga_pci_tbl
,
1490 .probe
= fpga_probe
,
1491 .remove
= fpga_remove
,
1495 static int __init
solos_pci_init(void)
1497 BUILD_BUG_ON(sizeof(struct solos_skb_cb
) > sizeof(((struct sk_buff
*)0)->cb
));
1499 printk(KERN_INFO
"Solos PCI Driver Version %s\n", VERSION
);
1500 return pci_register_driver(&fpga_driver
);
1503 static void __exit
solos_pci_exit(void)
1505 pci_unregister_driver(&fpga_driver
);
1506 printk(KERN_INFO
"Solos PCI Driver %s Unloaded\n", VERSION
);
1509 module_init(solos_pci_init
);
1510 module_exit(solos_pci_exit
);