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 "0.07"
46 #define PTAG "solos-pci"
48 #define CONFIG_RAM_SIZE 128
49 #define FLAGS_ADDR 0x7C
50 #define IRQ_EN_ADDR 0x78
52 #define IRQ_CLEAR 0x70
53 #define WRITE_FLASH 0x6C
55 #define FLASH_BLOCK 0x64
56 #define FLASH_BUSY 0x60
57 #define FPGA_MODE 0x5C
58 #define FLASH_MODE 0x58
59 #define TX_DMA_ADDR(port) (0x40 + (4 * (port)))
60 #define RX_DMA_ADDR(port) (0x30 + (4 * (port)))
62 #define DATA_RAM_SIZE 32768
64 #define OLD_BUF_SIZE 4096 /* For FPGA versions <= 2*/
65 #define FPGA_PAGE 528 /* FPGA flash page size*/
66 #define SOLOS_PAGE 512 /* Solos flash page size*/
67 #define FPGA_BLOCK (FPGA_PAGE * 8) /* FPGA flash block size*/
68 #define SOLOS_BLOCK (SOLOS_PAGE * 8) /* Solos flash block size*/
70 #define RX_BUF(card, nr) ((card->buffers) + (nr)*(card->buffer_size)*2)
71 #define TX_BUF(card, nr) ((card->buffers) + (nr)*(card->buffer_size)*2 + (card->buffer_size))
72 #define FLASH_BUF ((card->buffers) + 4*(card->buffer_size)*2)
74 #define RX_DMA_SIZE 2048
76 #define FPGA_VERSION(a,b) (((a) << 8) + (b))
77 #define LEGACY_BUFFERS 2
78 #define DMA_SUPPORTED 4
81 static int atmdebug = 0;
82 static int firmware_upgrade = 0;
83 static int fpga_upgrade = 0;
84 static int db_firmware_upgrade = 0;
85 static int db_fpga_upgrade = 0;
100 #define SKB_CB(skb) ((struct solos_skb_cb *)skb->cb)
103 #define PKT_COMMAND 1
109 void __iomem *config_regs;
110 void __iomem *buffers;
114 struct atm_dev *atmdev[4];
115 struct tasklet_struct tlet;
117 spinlock_t tx_queue_lock;
118 spinlock_t cli_queue_lock;
119 spinlock_t param_queue_lock;
120 struct list_head param_queue;
121 struct sk_buff_head tx_queue[4];
122 struct sk_buff_head cli_queue[4];
123 struct sk_buff *tx_skb[4];
124 struct sk_buff *rx_skb[4];
125 wait_queue_head_t param_wq;
126 wait_queue_head_t fw_wq;
134 struct list_head list;
137 struct sk_buff *response;
140 #define SOLOS_CHAN(atmdev) ((int)(unsigned long)(atmdev)->phy_data)
142 MODULE_AUTHOR("Traverse Technologies <support@traverse.com.au>");
143 MODULE_DESCRIPTION("Solos PCI driver");
144 MODULE_VERSION(VERSION);
145 MODULE_LICENSE("GPL");
146 MODULE_FIRMWARE("solos-FPGA.bin");
147 MODULE_FIRMWARE("solos-Firmware.bin");
148 MODULE_FIRMWARE("solos-db-FPGA.bin");
149 MODULE_PARM_DESC(reset, "Reset Solos chips on startup");
150 MODULE_PARM_DESC(atmdebug, "Print ATM data");
151 MODULE_PARM_DESC(firmware_upgrade, "Initiate Solos firmware upgrade");
152 MODULE_PARM_DESC(fpga_upgrade, "Initiate FPGA upgrade");
153 MODULE_PARM_DESC(db_firmware_upgrade, "Initiate daughter board Solos firmware upgrade");
154 MODULE_PARM_DESC(db_fpga_upgrade, "Initiate daughter board FPGA upgrade");
155 module_param(reset, int, 0444);
156 module_param(atmdebug, int, 0644);
157 module_param(firmware_upgrade, int, 0444);
158 module_param(fpga_upgrade, int, 0444);
159 module_param(db_firmware_upgrade, int, 0444);
160 module_param(db_fpga_upgrade, int, 0444);
162 static void fpga_queue(struct solos_card *card, int port, struct sk_buff *skb,
163 struct atm_vcc *vcc);
164 static uint32_t fpga_tx(struct solos_card *);
165 static irqreturn_t solos_irq(int irq, void *dev_id);
166 static struct atm_vcc* find_vcc(struct atm_dev *dev, short vpi, int vci);
167 static int list_vccs(int vci);
168 static int atm_init(struct solos_card *, struct device *);
169 static void atm_remove(struct solos_card *);
170 static int send_command(struct solos_card *card, int dev, const char *buf, size_t size);
171 static void solos_bh(unsigned long);
172 static int print_buffer(struct sk_buff *buf);
174 static inline void solos_pop(struct atm_vcc *vcc, struct sk_buff *skb)
179 dev_kfree_skb_any(skb);
182 static ssize_t solos_param_show(struct device *dev, struct device_attribute *attr,
185 struct atm_dev *atmdev = container_of(dev, struct atm_dev, class_dev);
186 struct solos_card *card = atmdev->dev_data;
187 struct solos_param prm;
189 struct pkt_hdr *header;
192 buflen = strlen(attr->attr.name) + 10;
194 skb = alloc_skb(sizeof(*header) + buflen, GFP_KERNEL);
196 dev_warn(&card->dev->dev, "Failed to allocate sk_buff in solos_param_show()\n");
200 header = (void *)skb_put(skb, sizeof(*header));
202 buflen = snprintf((void *)&header[1], buflen - 1,
203 "L%05d\n%s\n", current->pid, attr->attr.name);
204 skb_put(skb, buflen);
206 header->size = cpu_to_le16(buflen);
207 header->vpi = cpu_to_le16(0);
208 header->vci = cpu_to_le16(0);
209 header->type = cpu_to_le16(PKT_COMMAND);
211 prm.pid = current->pid;
213 prm.port = SOLOS_CHAN(atmdev);
215 spin_lock_irq(&card->param_queue_lock);
216 list_add(&prm.list, &card->param_queue);
217 spin_unlock_irq(&card->param_queue_lock);
219 fpga_queue(card, prm.port, skb, NULL);
221 wait_event_timeout(card->param_wq, prm.response, 5 * HZ);
223 spin_lock_irq(&card->param_queue_lock);
225 spin_unlock_irq(&card->param_queue_lock);
230 buflen = prm.response->len;
231 memcpy(buf, prm.response->data, buflen);
232 kfree_skb(prm.response);
237 static ssize_t solos_param_store(struct device *dev, struct device_attribute *attr,
238 const char *buf, size_t count)
240 struct atm_dev *atmdev = container_of(dev, struct atm_dev, class_dev);
241 struct solos_card *card = atmdev->dev_data;
242 struct solos_param prm;
244 struct pkt_hdr *header;
248 buflen = strlen(attr->attr.name) + 11 + count;
250 skb = alloc_skb(sizeof(*header) + buflen, GFP_KERNEL);
252 dev_warn(&card->dev->dev, "Failed to allocate sk_buff in solos_param_store()\n");
256 header = (void *)skb_put(skb, sizeof(*header));
258 buflen = snprintf((void *)&header[1], buflen - 1,
259 "L%05d\n%s\n%s\n", current->pid, attr->attr.name, buf);
261 skb_put(skb, buflen);
262 header->size = cpu_to_le16(buflen);
263 header->vpi = cpu_to_le16(0);
264 header->vci = cpu_to_le16(0);
265 header->type = cpu_to_le16(PKT_COMMAND);
267 prm.pid = current->pid;
269 prm.port = SOLOS_CHAN(atmdev);
271 spin_lock_irq(&card->param_queue_lock);
272 list_add(&prm.list, &card->param_queue);
273 spin_unlock_irq(&card->param_queue_lock);
275 fpga_queue(card, prm.port, skb, NULL);
277 wait_event_timeout(card->param_wq, prm.response, 5 * HZ);
279 spin_lock_irq(&card->param_queue_lock);
281 spin_unlock_irq(&card->param_queue_lock);
290 /* Sometimes it has a newline, sometimes it doesn't. */
291 if (skb->data[buflen - 1] == '\n')
294 if (buflen == 2 && !strncmp(skb->data, "OK", 2))
296 else if (buflen == 5 && !strncmp(skb->data, "ERROR", 5))
299 /* We know we have enough space allocated for this; we allocated
301 skb->data[buflen] = 0;
303 dev_warn(&card->dev->dev, "Unexpected parameter response: '%s'\n",
312 static char *next_string(struct sk_buff *skb)
315 char *this = skb->data;
317 for (i = 0; i < skb->len; i++) {
318 if (this[i] == '\n') {
320 skb_pull(skb, i + 1);
323 if (!isprint(this[i]))
330 * Status packet has fields separated by \n, starting with a version number
331 * for the information therein. Fields are....
334 * RxBitRate (version >= 1)
335 * TxBitRate (version >= 1)
336 * State (version >= 1)
337 * LocalSNRMargin (version >= 1)
338 * LocalLineAttn (version >= 1)
340 static int process_status(struct solos_card *card, int port, struct sk_buff *skb)
342 char *str, *end, *state_str, *snr, *attn;
343 int ver, rate_up, rate_down;
345 if (!card->atmdev[port])
348 str = next_string(skb);
352 ver = simple_strtol(str, NULL, 10);
354 dev_warn(&card->dev->dev, "Unexpected status interrupt version %d\n",
359 str = next_string(skb);
362 if (!strcmp(str, "ERROR")) {
363 dev_dbg(&card->dev->dev, "Status packet indicated Solos error on port %d (starting up?)\n",
368 rate_down = simple_strtol(str, &end, 10);
372 str = next_string(skb);
375 rate_up = simple_strtol(str, &end, 10);
379 state_str = next_string(skb);
383 /* Anything but 'Showtime' is down */
384 if (strcmp(state_str, "Showtime")) {
385 atm_dev_signal_change(card->atmdev[port], ATM_PHY_SIG_LOST);
386 dev_info(&card->dev->dev, "Port %d: %s\n", port, state_str);
390 snr = next_string(skb);
393 attn = next_string(skb);
397 dev_info(&card->dev->dev, "Port %d: %s @%d/%d kb/s%s%s%s%s\n",
398 port, state_str, rate_down/1000, rate_up/1000,
399 snr[0]?", SNR ":"", snr, attn[0]?", Attn ":"", attn);
401 card->atmdev[port]->link_rate = rate_down / 424;
402 atm_dev_signal_change(card->atmdev[port], ATM_PHY_SIG_FOUND);
407 static int process_command(struct solos_card *card, int port, struct sk_buff *skb)
409 struct solos_param *prm;
417 if (skb->data[0] != 'L' || !isdigit(skb->data[1]) ||
418 !isdigit(skb->data[2]) || !isdigit(skb->data[3]) ||
419 !isdigit(skb->data[4]) || !isdigit(skb->data[5]) ||
420 skb->data[6] != '\n')
423 cmdpid = simple_strtol(&skb->data[1], NULL, 10);
425 spin_lock_irqsave(&card->param_queue_lock, flags);
426 list_for_each_entry(prm, &card->param_queue, list) {
427 if (prm->port == port && prm->pid == cmdpid) {
430 wake_up(&card->param_wq);
435 spin_unlock_irqrestore(&card->param_queue_lock, flags);
439 static ssize_t console_show(struct device *dev, struct device_attribute *attr,
442 struct atm_dev *atmdev = container_of(dev, struct atm_dev, class_dev);
443 struct solos_card *card = atmdev->dev_data;
447 spin_lock(&card->cli_queue_lock);
448 skb = skb_dequeue(&card->cli_queue[SOLOS_CHAN(atmdev)]);
449 spin_unlock(&card->cli_queue_lock);
451 return sprintf(buf, "No data.\n");
454 memcpy(buf, skb->data, len);
455 dev_dbg(&card->dev->dev, "len: %d\n", len);
461 static int send_command(struct solos_card *card, int dev, const char *buf, size_t size)
464 struct pkt_hdr *header;
466 if (size > (BUF_SIZE - sizeof(*header))) {
467 dev_dbg(&card->dev->dev, "Command is too big. Dropping request\n");
470 skb = alloc_skb(size + sizeof(*header), GFP_ATOMIC);
472 dev_warn(&card->dev->dev, "Failed to allocate sk_buff in send_command()\n");
476 header = (void *)skb_put(skb, sizeof(*header));
478 header->size = cpu_to_le16(size);
479 header->vpi = cpu_to_le16(0);
480 header->vci = cpu_to_le16(0);
481 header->type = cpu_to_le16(PKT_COMMAND);
483 memcpy(skb_put(skb, size), buf, size);
485 fpga_queue(card, dev, skb, NULL);
490 static ssize_t console_store(struct device *dev, struct device_attribute *attr,
491 const char *buf, size_t count)
493 struct atm_dev *atmdev = container_of(dev, struct atm_dev, class_dev);
494 struct solos_card *card = atmdev->dev_data;
497 err = send_command(card, SOLOS_CHAN(atmdev), buf, count);
502 static DEVICE_ATTR(console, 0644, console_show, console_store);
505 #define SOLOS_ATTR_RO(x) static DEVICE_ATTR(x, 0444, solos_param_show, NULL);
506 #define SOLOS_ATTR_RW(x) static DEVICE_ATTR(x, 0644, solos_param_show, solos_param_store);
508 #include "solos-attrlist.c"
513 #define SOLOS_ATTR_RO(x) &dev_attr_##x.attr,
514 #define SOLOS_ATTR_RW(x) &dev_attr_##x.attr,
516 static struct attribute *solos_attrs[] = {
517 #include "solos-attrlist.c"
521 static struct attribute_group solos_attr_group = {
522 .attrs = solos_attrs,
523 .name = "parameters",
526 static int flash_upgrade(struct solos_card *card, int chip)
528 const struct firmware *fw;
536 fw_name = "solos-FPGA.bin";
537 blocksize = FPGA_BLOCK;
540 fw_name = "solos-Firmware.bin";
541 blocksize = SOLOS_BLOCK;
544 if (card->fpga_version > LEGACY_BUFFERS){
545 fw_name = "solos-db-FPGA.bin";
546 blocksize = FPGA_BLOCK;
548 dev_info(&card->dev->dev, "FPGA version doesn't support"
549 " daughter board upgrades\n");
554 if (card->fpga_version > LEGACY_BUFFERS){
555 fw_name = "solos-Firmware.bin";
556 blocksize = SOLOS_BLOCK;
558 dev_info(&card->dev->dev, "FPGA version doesn't support"
559 " daughter board upgrades\n");
567 if (request_firmware(&fw, fw_name, &card->dev->dev))
570 dev_info(&card->dev->dev, "Flash upgrade starting\n");
572 numblocks = fw->size / blocksize;
573 dev_info(&card->dev->dev, "Firmware size: %zd\n", fw->size);
574 dev_info(&card->dev->dev, "Number of blocks: %d\n", numblocks);
576 dev_info(&card->dev->dev, "Changing FPGA to Update mode\n");
577 iowrite32(1, card->config_regs + FPGA_MODE);
578 (void) ioread32(card->config_regs + FPGA_MODE);
580 /* Set mode to Chip Erase */
581 if(chip == 0 || chip == 2)
582 dev_info(&card->dev->dev, "Set FPGA Flash mode to FPGA Chip Erase\n");
583 if(chip == 1 || chip == 3)
584 dev_info(&card->dev->dev, "Set FPGA Flash mode to Solos Chip Erase\n");
585 iowrite32((chip * 2), card->config_regs + FLASH_MODE);
588 iowrite32(1, card->config_regs + WRITE_FLASH);
589 wait_event(card->fw_wq, !ioread32(card->config_regs + FLASH_BUSY));
591 for (offset = 0; offset < fw->size; offset += blocksize) {
594 /* Clear write flag */
595 iowrite32(0, card->config_regs + WRITE_FLASH);
597 /* Set mode to Block Write */
598 /* dev_info(&card->dev->dev, "Set FPGA Flash mode to Block Write\n"); */
599 iowrite32(((chip * 2) + 1), card->config_regs + FLASH_MODE);
601 /* Copy block to buffer, swapping each 16 bits */
602 for(i = 0; i < blocksize; i += 4) {
603 uint32_t word = swahb32p((uint32_t *)(fw->data + offset + i));
604 if(card->fpga_version > LEGACY_BUFFERS)
605 iowrite32(word, FLASH_BUF + i);
607 iowrite32(word, RX_BUF(card, 3) + i);
610 /* Specify block number and then trigger flash write */
611 iowrite32(offset / blocksize, card->config_regs + FLASH_BLOCK);
612 iowrite32(1, card->config_regs + WRITE_FLASH);
613 wait_event(card->fw_wq, !ioread32(card->config_regs + FLASH_BUSY));
616 release_firmware(fw);
617 iowrite32(0, card->config_regs + WRITE_FLASH);
618 iowrite32(0, card->config_regs + FPGA_MODE);
619 iowrite32(0, card->config_regs + FLASH_MODE);
620 dev_info(&card->dev->dev, "Returning FPGA to Data mode\n");
624 static irqreturn_t solos_irq(int irq, void *dev_id)
626 struct solos_card *card = dev_id;
629 iowrite32(0, card->config_regs + IRQ_CLEAR);
631 /* If we're up and running, just kick the tasklet to process TX/RX */
633 tasklet_schedule(&card->tlet);
635 wake_up(&card->fw_wq);
637 return IRQ_RETVAL(handled);
640 void solos_bh(unsigned long card_arg)
642 struct solos_card *card = (void *)card_arg;
644 uint32_t rx_done = 0;
648 * Since fpga_tx() is going to need to read the flags under its lock,
649 * it can return them to us so that we don't have to hit PCI MMIO
650 * again for the same information
652 card_flags = fpga_tx(card);
654 for (port = 0; port < card->nr_ports; port++) {
655 if (card_flags & (0x10 << port)) {
656 struct pkt_hdr _hdr, *header;
661 if (card->using_dma) {
662 skb = card->rx_skb[port];
663 card->rx_skb[port] = NULL;
665 pci_unmap_single(card->dev, SKB_CB(skb)->dma_addr,
666 RX_DMA_SIZE, PCI_DMA_FROMDEVICE);
668 header = (void *)skb->data;
669 size = le16_to_cpu(header->size);
670 skb_put(skb, size + sizeof(*header));
671 skb_pull(skb, sizeof(*header));
675 rx_done |= 0x10 << port;
677 memcpy_fromio(header, RX_BUF(card, port), sizeof(*header));
679 size = le16_to_cpu(header->size);
680 if (size > (card->buffer_size - sizeof(*header))){
681 dev_warn(&card->dev->dev, "Invalid buffer size\n");
685 skb = alloc_skb(size + 1, GFP_ATOMIC);
688 dev_warn(&card->dev->dev, "Failed to allocate sk_buff for RX\n");
692 memcpy_fromio(skb_put(skb, size),
693 RX_BUF(card, port) + sizeof(*header),
697 dev_info(&card->dev->dev, "Received: port %d\n", port);
698 dev_info(&card->dev->dev, "size: %d VPI: %d VCI: %d\n",
699 size, le16_to_cpu(header->vpi),
700 le16_to_cpu(header->vci));
704 switch (le16_to_cpu(header->type)) {
706 vcc = find_vcc(card->atmdev[port], le16_to_cpu(header->vpi),
707 le16_to_cpu(header->vci));
710 dev_warn(&card->dev->dev, "Received packet for unknown VPI.VCI %d.%d on port %d\n",
711 le16_to_cpu(header->vpi), le16_to_cpu(header->vci),
715 atm_charge(vcc, skb->truesize);
717 atomic_inc(&vcc->stats->rx);
721 if (process_status(card, port, skb) &&
723 dev_warn(&card->dev->dev, "Bad status packet of %d bytes on port %d:\n", skb->len, port);
726 dev_kfree_skb_any(skb);
730 default: /* FIXME: Not really, surely? */
731 if (process_command(card, port, skb))
733 spin_lock(&card->cli_queue_lock);
734 if (skb_queue_len(&card->cli_queue[port]) > 10) {
736 dev_warn(&card->dev->dev, "Dropping console response on port %d\n",
738 dev_kfree_skb_any(skb);
740 skb_queue_tail(&card->cli_queue[port], skb);
741 spin_unlock(&card->cli_queue_lock);
745 /* Allocate RX skbs for any ports which need them */
746 if (card->using_dma && card->atmdev[port] &&
747 !card->rx_skb[port]) {
748 struct sk_buff *skb = alloc_skb(RX_DMA_SIZE, GFP_ATOMIC);
750 SKB_CB(skb)->dma_addr =
751 pci_map_single(card->dev, skb->data,
752 RX_DMA_SIZE, PCI_DMA_FROMDEVICE);
753 iowrite32(SKB_CB(skb)->dma_addr,
754 card->config_regs + RX_DMA_ADDR(port));
755 card->rx_skb[port] = skb;
758 dev_warn(&card->dev->dev, "Failed to allocate RX skb");
760 /* We'll have to try again later */
761 tasklet_schedule(&card->tlet);
766 iowrite32(rx_done, card->config_regs + FLAGS_ADDR);
771 static struct atm_vcc *find_vcc(struct atm_dev *dev, short vpi, int vci)
773 struct hlist_head *head;
774 struct atm_vcc *vcc = NULL;
775 struct hlist_node *node;
778 read_lock(&vcc_sklist_lock);
779 head = &vcc_hash[vci & (VCC_HTABLE_SIZE -1)];
780 sk_for_each(s, node, head) {
782 if (vcc->dev == dev && vcc->vci == vci &&
783 vcc->vpi == vpi && vcc->qos.rxtp.traffic_class != ATM_NONE &&
784 test_bit(ATM_VF_READY, &vcc->flags))
789 read_unlock(&vcc_sklist_lock);
793 static int list_vccs(int vci)
795 struct hlist_head *head;
797 struct hlist_node *node;
802 read_lock(&vcc_sklist_lock);
804 head = &vcc_hash[vci & (VCC_HTABLE_SIZE -1)];
805 sk_for_each(s, node, head) {
808 printk(KERN_DEBUG "Device: %d Vpi: %d Vci: %d\n",
814 for(i = 0; i < VCC_HTABLE_SIZE; i++){
816 sk_for_each(s, node, head) {
819 printk(KERN_DEBUG "Device: %d Vpi: %d Vci: %d\n",
826 read_unlock(&vcc_sklist_lock);
831 static int popen(struct atm_vcc *vcc)
833 struct solos_card *card = vcc->dev->dev_data;
835 struct pkt_hdr *header;
837 if (vcc->qos.aal != ATM_AAL5) {
838 dev_warn(&card->dev->dev, "Unsupported ATM type %d\n",
843 skb = alloc_skb(sizeof(*header), GFP_ATOMIC);
846 dev_warn(&card->dev->dev, "Failed to allocate sk_buff in popen()\n");
849 header = (void *)skb_put(skb, sizeof(*header));
851 header->size = cpu_to_le16(0);
852 header->vpi = cpu_to_le16(vcc->vpi);
853 header->vci = cpu_to_le16(vcc->vci);
854 header->type = cpu_to_le16(PKT_POPEN);
856 fpga_queue(card, SOLOS_CHAN(vcc->dev), skb, NULL);
858 set_bit(ATM_VF_ADDR, &vcc->flags);
859 set_bit(ATM_VF_READY, &vcc->flags);
866 static void pclose(struct atm_vcc *vcc)
868 struct solos_card *card = vcc->dev->dev_data;
870 struct pkt_hdr *header;
872 skb = alloc_skb(sizeof(*header), GFP_ATOMIC);
874 dev_warn(&card->dev->dev, "Failed to allocate sk_buff in pclose()\n");
877 header = (void *)skb_put(skb, sizeof(*header));
879 header->size = cpu_to_le16(0);
880 header->vpi = cpu_to_le16(vcc->vpi);
881 header->vci = cpu_to_le16(vcc->vci);
882 header->type = cpu_to_le16(PKT_PCLOSE);
884 fpga_queue(card, SOLOS_CHAN(vcc->dev), skb, NULL);
886 clear_bit(ATM_VF_ADDR, &vcc->flags);
887 clear_bit(ATM_VF_READY, &vcc->flags);
889 /* Hold up vcc_destroy_socket() (our caller) until solos_bh() in the
890 tasklet has finished processing any incoming packets (and, more to
891 the point, using the vcc pointer). */
892 tasklet_unlock_wait(&card->tlet);
896 static int print_buffer(struct sk_buff *buf)
903 for (i = 0; i < len; i++){
905 sprintf(msg, "%02X: ", i);
907 sprintf(item,"%02X ",*(buf->data + i));
912 printk(KERN_DEBUG "%s", msg);
918 printk(KERN_DEBUG "%s", msg);
920 printk(KERN_DEBUG "\n");
925 static void fpga_queue(struct solos_card *card, int port, struct sk_buff *skb,
931 SKB_CB(skb)->vcc = vcc;
933 spin_lock_irqsave(&card->tx_queue_lock, flags);
934 old_len = skb_queue_len(&card->tx_queue[port]);
935 skb_queue_tail(&card->tx_queue[port], skb);
937 card->tx_mask |= (1 << port);
938 spin_unlock_irqrestore(&card->tx_queue_lock, flags);
940 /* Theoretically we could just schedule the tasklet here, but
941 that introduces latency we don't want -- it's noticeable */
946 static uint32_t fpga_tx(struct solos_card *card)
948 uint32_t tx_pending, card_flags;
949 uint32_t tx_started = 0;
955 spin_lock_irqsave(&card->tx_lock, flags);
957 card_flags = ioread32(card->config_regs + FLAGS_ADDR);
959 * The queue lock is required for _writing_ to tx_mask, but we're
960 * OK to read it here without locking. The only potential update
961 * that we could race with is in fpga_queue() where it sets a bit
962 * for a new port... but it's going to call this function again if
963 * it's doing that, anyway.
965 tx_pending = card->tx_mask & ~card_flags;
967 for (port = 0; tx_pending; tx_pending >>= 1, port++) {
968 if (tx_pending & 1) {
969 struct sk_buff *oldskb = card->tx_skb[port];
971 pci_unmap_single(card->dev, SKB_CB(oldskb)->dma_addr,
972 oldskb->len, PCI_DMA_TODEVICE);
974 spin_lock(&card->tx_queue_lock);
975 skb = skb_dequeue(&card->tx_queue[port]);
977 card->tx_mask &= ~(1 << port);
978 spin_unlock(&card->tx_queue_lock);
980 if (skb && !card->using_dma) {
981 memcpy_toio(TX_BUF(card, port), skb->data, skb->len);
982 tx_started |= 1 << port;
983 oldskb = skb; /* We're done with this skb already */
984 } else if (skb && card->using_dma) {
985 SKB_CB(skb)->dma_addr = pci_map_single(card->dev, skb->data,
986 skb->len, PCI_DMA_TODEVICE);
987 card->tx_skb[port] = skb;
988 iowrite32(SKB_CB(skb)->dma_addr,
989 card->config_regs + TX_DMA_ADDR(port));
995 /* Clean up and free oldskb now it's gone */
997 struct pkt_hdr *header = (void *)oldskb->data;
998 int size = le16_to_cpu(header->size);
1000 skb_pull(oldskb, sizeof(*header));
1001 dev_info(&card->dev->dev, "Transmitted: port %d\n",
1003 dev_info(&card->dev->dev, "size: %d VPI: %d VCI: %d\n",
1004 size, le16_to_cpu(header->vpi),
1005 le16_to_cpu(header->vci));
1006 print_buffer(oldskb);
1009 vcc = SKB_CB(oldskb)->vcc;
1012 atomic_inc(&vcc->stats->tx);
1013 solos_pop(vcc, oldskb);
1015 dev_kfree_skb_irq(oldskb);
1019 /* For non-DMA TX, write the 'TX start' bit for all four ports simultaneously */
1021 iowrite32(tx_started, card->config_regs + FLAGS_ADDR);
1023 spin_unlock_irqrestore(&card->tx_lock, flags);
1027 static int psend(struct atm_vcc *vcc, struct sk_buff *skb)
1029 struct solos_card *card = vcc->dev->dev_data;
1030 struct pkt_hdr *header;
1034 if (pktlen > (BUF_SIZE - sizeof(*header))) {
1035 dev_warn(&card->dev->dev, "Length of PDU is too large. Dropping PDU.\n");
1036 solos_pop(vcc, skb);
1040 if (!skb_clone_writable(skb, sizeof(*header))) {
1044 if (skb_headroom(skb) < sizeof(*header))
1045 expand_by = sizeof(*header) - skb_headroom(skb);
1047 ret = pskb_expand_head(skb, expand_by, 0, GFP_ATOMIC);
1049 dev_warn(&card->dev->dev, "pskb_expand_head failed.\n");
1050 solos_pop(vcc, skb);
1055 header = (void *)skb_push(skb, sizeof(*header));
1057 /* This does _not_ include the size of the header */
1058 header->size = cpu_to_le16(pktlen);
1059 header->vpi = cpu_to_le16(vcc->vpi);
1060 header->vci = cpu_to_le16(vcc->vci);
1061 header->type = cpu_to_le16(PKT_DATA);
1063 fpga_queue(card, SOLOS_CHAN(vcc->dev), skb, vcc);
1068 static struct atmdev_ops fpga_ops = {
1080 .owner = THIS_MODULE
1083 static int fpga_probe(struct pci_dev *dev, const struct pci_device_id *id)
1087 uint8_t major_ver, minor_ver;
1089 struct solos_card *card;
1091 card = kzalloc(sizeof(*card), GFP_KERNEL);
1096 init_waitqueue_head(&card->fw_wq);
1097 init_waitqueue_head(&card->param_wq);
1099 err = pci_enable_device(dev);
1101 dev_warn(&dev->dev, "Failed to enable PCI device\n");
1105 err = pci_set_dma_mask(dev, DMA_BIT_MASK(32));
1107 dev_warn(&dev->dev, "Failed to set 32-bit DMA mask\n");
1111 err = pci_request_regions(dev, "solos");
1113 dev_warn(&dev->dev, "Failed to request regions\n");
1117 card->config_regs = pci_iomap(dev, 0, CONFIG_RAM_SIZE);
1118 if (!card->config_regs) {
1119 dev_warn(&dev->dev, "Failed to ioremap config registers\n");
1120 goto out_release_regions;
1122 card->buffers = pci_iomap(dev, 1, DATA_RAM_SIZE);
1123 if (!card->buffers) {
1124 dev_warn(&dev->dev, "Failed to ioremap data buffers\n");
1125 goto out_unmap_config;
1129 iowrite32(1, card->config_regs + FPGA_MODE);
1130 data32 = ioread32(card->config_regs + FPGA_MODE);
1132 iowrite32(0, card->config_regs + FPGA_MODE);
1133 data32 = ioread32(card->config_regs + FPGA_MODE);
1136 data32 = ioread32(card->config_regs + FPGA_VER);
1137 fpga_ver = (data32 & 0x0000FFFF);
1138 major_ver = ((data32 & 0xFF000000) >> 24);
1139 minor_ver = ((data32 & 0x00FF0000) >> 16);
1140 card->fpga_version = FPGA_VERSION(major_ver,minor_ver);
1141 if (card->fpga_version > LEGACY_BUFFERS)
1142 card->buffer_size = BUF_SIZE;
1144 card->buffer_size = OLD_BUF_SIZE;
1145 dev_info(&dev->dev, "Solos FPGA Version %d.%02d svn-%d\n",
1146 major_ver, minor_ver, fpga_ver);
1148 if (fpga_ver < 37 && (fpga_upgrade || firmware_upgrade ||
1149 db_fpga_upgrade || db_firmware_upgrade)) {
1151 "FPGA too old; cannot upgrade flash. Use JTAG.\n");
1152 fpga_upgrade = firmware_upgrade = 0;
1153 db_fpga_upgrade = db_firmware_upgrade = 0;
1156 if (card->fpga_version >= DMA_SUPPORTED) {
1157 pci_set_master(dev);
1158 card->using_dma = 1;
1160 card->using_dma = 0;
1161 /* Set RX empty flag for all ports */
1162 iowrite32(0xF0, card->config_regs + FLAGS_ADDR);
1165 data32 = ioread32(card->config_regs + PORTS);
1166 card->nr_ports = (data32 & 0x000000FF);
1168 pci_set_drvdata(dev, card);
1170 tasklet_init(&card->tlet, solos_bh, (unsigned long)card);
1171 spin_lock_init(&card->tx_lock);
1172 spin_lock_init(&card->tx_queue_lock);
1173 spin_lock_init(&card->cli_queue_lock);
1174 spin_lock_init(&card->param_queue_lock);
1175 INIT_LIST_HEAD(&card->param_queue);
1177 err = request_irq(dev->irq, solos_irq, IRQF_SHARED,
1180 dev_dbg(&card->dev->dev, "Failed to request interrupt IRQ: %d\n", dev->irq);
1181 goto out_unmap_both;
1184 iowrite32(1, card->config_regs + IRQ_EN_ADDR);
1187 flash_upgrade(card, 0);
1189 if (firmware_upgrade)
1190 flash_upgrade(card, 1);
1192 if (db_fpga_upgrade)
1193 flash_upgrade(card, 2);
1195 if (db_firmware_upgrade)
1196 flash_upgrade(card, 3);
1198 err = atm_init(card, &dev->dev);
1205 iowrite32(0, card->config_regs + IRQ_EN_ADDR);
1206 free_irq(dev->irq, card);
1207 tasklet_kill(&card->tlet);
1210 pci_set_drvdata(dev, NULL);
1211 pci_iounmap(dev, card->buffers);
1213 pci_iounmap(dev, card->config_regs);
1214 out_release_regions:
1215 pci_release_regions(dev);
1221 static int atm_init(struct solos_card *card, struct device *parent)
1225 for (i = 0; i < card->nr_ports; i++) {
1226 struct sk_buff *skb;
1227 struct pkt_hdr *header;
1229 skb_queue_head_init(&card->tx_queue[i]);
1230 skb_queue_head_init(&card->cli_queue[i]);
1232 card->atmdev[i] = atm_dev_register("solos-pci", parent, &fpga_ops, -1, NULL);
1233 if (!card->atmdev[i]) {
1234 dev_err(&card->dev->dev, "Could not register ATM device %d\n", i);
1238 if (device_create_file(&card->atmdev[i]->class_dev, &dev_attr_console))
1239 dev_err(&card->dev->dev, "Could not register console for ATM device %d\n", i);
1240 if (sysfs_create_group(&card->atmdev[i]->class_dev.kobj, &solos_attr_group))
1241 dev_err(&card->dev->dev, "Could not register parameter group for ATM device %d\n", i);
1243 dev_info(&card->dev->dev, "Registered ATM device %d\n", card->atmdev[i]->number);
1245 card->atmdev[i]->ci_range.vpi_bits = 8;
1246 card->atmdev[i]->ci_range.vci_bits = 16;
1247 card->atmdev[i]->dev_data = card;
1248 card->atmdev[i]->phy_data = (void *)(unsigned long)i;
1249 atm_dev_signal_change(card->atmdev[i], ATM_PHY_SIG_FOUND);
1251 skb = alloc_skb(sizeof(*header), GFP_ATOMIC);
1253 dev_warn(&card->dev->dev, "Failed to allocate sk_buff in atm_init()\n");
1257 header = (void *)skb_put(skb, sizeof(*header));
1259 header->size = cpu_to_le16(0);
1260 header->vpi = cpu_to_le16(0);
1261 header->vci = cpu_to_le16(0);
1262 header->type = cpu_to_le16(PKT_STATUS);
1264 fpga_queue(card, i, skb, NULL);
1269 static void atm_remove(struct solos_card *card)
1273 for (i = 0; i < card->nr_ports; i++) {
1274 if (card->atmdev[i]) {
1275 struct sk_buff *skb;
1277 dev_info(&card->dev->dev, "Unregistering ATM device %d\n", card->atmdev[i]->number);
1279 sysfs_remove_group(&card->atmdev[i]->class_dev.kobj, &solos_attr_group);
1280 atm_dev_deregister(card->atmdev[i]);
1282 skb = card->rx_skb[i];
1284 pci_unmap_single(card->dev, SKB_CB(skb)->dma_addr,
1285 RX_DMA_SIZE, PCI_DMA_FROMDEVICE);
1288 skb = card->tx_skb[i];
1290 pci_unmap_single(card->dev, SKB_CB(skb)->dma_addr,
1291 skb->len, PCI_DMA_TODEVICE);
1294 while ((skb = skb_dequeue(&card->tx_queue[i])))
1301 static void fpga_remove(struct pci_dev *dev)
1303 struct solos_card *card = pci_get_drvdata(dev);
1306 iowrite32(0, card->config_regs + IRQ_EN_ADDR);
1309 iowrite32(1, card->config_regs + FPGA_MODE);
1310 (void)ioread32(card->config_regs + FPGA_MODE);
1314 free_irq(dev->irq, card);
1315 tasklet_kill(&card->tlet);
1317 /* Release device from reset */
1318 iowrite32(0, card->config_regs + FPGA_MODE);
1319 (void)ioread32(card->config_regs + FPGA_MODE);
1321 pci_iounmap(dev, card->buffers);
1322 pci_iounmap(dev, card->config_regs);
1324 pci_release_regions(dev);
1325 pci_disable_device(dev);
1327 pci_set_drvdata(dev, NULL);
1331 static struct pci_device_id fpga_pci_tbl[] __devinitdata = {
1332 { 0x10ee, 0x0300, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
1336 MODULE_DEVICE_TABLE(pci,fpga_pci_tbl);
1338 static struct pci_driver fpga_driver = {
1340 .id_table = fpga_pci_tbl,
1341 .probe = fpga_probe,
1342 .remove = fpga_remove,
1346 static int __init solos_pci_init(void)
1348 printk(KERN_INFO "Solos PCI Driver Version %s\n", VERSION);
1349 return pci_register_driver(&fpga_driver);
1352 static void __exit solos_pci_exit(void)
1354 pci_unregister_driver(&fpga_driver);
1355 printk(KERN_INFO "Solos PCI Driver %s Unloaded\n", VERSION);
1358 module_init(solos_pci_init);
1359 module_exit(solos_pci_exit);