Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /************************************************************************ |
| 2 | * Copyright 2003 Digi International (www.digi.com) |
| 3 | * |
| 4 | * Copyright (C) 2004 IBM Corporation. All rights reserved. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2, or (at your option) |
| 9 | * any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED; without even the |
| 13 | * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 14 | * PURPOSE. See the GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 * Temple Place - Suite 330, Boston, |
| 19 | * MA 02111-1307, USA. |
| 20 | * |
| 21 | * Contact Information: |
| 22 | * Scott H Kilau <Scott_Kilau@digi.com> |
Adrian Bunk | 2a08b4e | 2006-04-01 01:04:20 +0200 | [diff] [blame] | 23 | * Wendy Xiong <wendyx@us.ibm.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | * |
V. ANANDA KRISHNAN | c223695 | 2005-07-27 11:43:49 -0700 | [diff] [blame] | 25 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | ***********************************************************************/ |
| 27 | #include <linux/moduleparam.h> |
| 28 | #include <linux/pci.h> |
| 29 | |
| 30 | #include "jsm.h" |
| 31 | |
| 32 | MODULE_AUTHOR("Digi International, http://www.digi.com"); |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 33 | MODULE_DESCRIPTION("Driver for the Digi International " |
| 34 | "Neo PCI based product line"); |
| 35 | MODULE_LICENSE("GPL"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | MODULE_SUPPORTED_DEVICE("jsm"); |
| 37 | |
| 38 | #define JSM_DRIVER_NAME "jsm" |
| 39 | #define NR_PORTS 32 |
| 40 | #define JSM_MINOR_START 0 |
| 41 | |
| 42 | struct uart_driver jsm_uart_driver = { |
| 43 | .owner = THIS_MODULE, |
| 44 | .driver_name = JSM_DRIVER_NAME, |
| 45 | .dev_name = "ttyn", |
V. ANANDA KRISHNAN | 9539c1d | 2005-07-27 11:43:48 -0700 | [diff] [blame] | 46 | .major = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | .minor = JSM_MINOR_START, |
| 48 | .nr = NR_PORTS, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | }; |
| 50 | |
| 51 | int jsm_debug; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | module_param(jsm_debug, int, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | MODULE_PARM_DESC(jsm_debug, "Driver debugging level"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 55 | static int jsm_probe_one(struct pci_dev *pdev, const struct pci_device_id *ent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | { |
| 57 | int rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | struct jsm_board *brd; |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 59 | static int adapter_count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | int retval; |
| 61 | |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 62 | rc = pci_enable_device(pdev); |
| 63 | if (rc) { |
| 64 | dev_err(&pdev->dev, "Device enable FAILED\n"); |
| 65 | goto out; |
| 66 | } |
| 67 | |
| 68 | rc = pci_request_regions(pdev, "jsm"); |
| 69 | if (rc) { |
| 70 | dev_err(&pdev->dev, "pci_request_region FAILED\n"); |
| 71 | goto out_disable_device; |
| 72 | } |
| 73 | |
Burman Yan | 8f31bb3 | 2007-02-14 00:33:07 -0800 | [diff] [blame] | 74 | brd = kzalloc(sizeof(struct jsm_board), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | if (!brd) { |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 76 | dev_err(&pdev->dev, |
| 77 | "memory allocation for board structure failed\n"); |
| 78 | rc = -ENOMEM; |
| 79 | goto out_release_regions; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | /* store the info for the board we've found */ |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 83 | brd->boardnum = adapter_count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | brd->pci_dev = pdev; |
Scott Kilau | 99da904 | 2008-05-01 04:35:00 -0700 | [diff] [blame] | 85 | if (pdev->device == PCIE_DEVICE_ID_NEO_4_IBM) |
| 86 | brd->maxports = 4; |
| 87 | else |
| 88 | brd->maxports = 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
| 90 | spin_lock_init(&brd->bd_lock); |
| 91 | spin_lock_init(&brd->bd_intr_lock); |
| 92 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | /* store which revision we have */ |
Auke Kok | 44c1013 | 2007-06-08 15:46:36 -0700 | [diff] [blame] | 94 | brd->rev = pdev->revision; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
| 96 | brd->irq = pdev->irq; |
| 97 | |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 98 | jsm_printk(INIT, INFO, &brd->pci_dev, |
| 99 | "jsm_found_board - NEO adapter\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 101 | /* get the PCI Base Address Registers */ |
| 102 | brd->membase = pci_resource_start(pdev, 0); |
| 103 | brd->membase_end = pci_resource_end(pdev, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 105 | if (brd->membase & 1) |
| 106 | brd->membase &= ~3; |
| 107 | else |
| 108 | brd->membase &= ~15; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 110 | /* Assign the board_ops struct */ |
| 111 | brd->bd_ops = &jsm_neo_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 113 | brd->bd_uart_offset = 0x200; |
| 114 | brd->bd_dividend = 921600; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 116 | brd->re_map_membase = ioremap(brd->membase, 0x1000); |
| 117 | if (!brd->re_map_membase) { |
| 118 | dev_err(&pdev->dev, |
| 119 | "card has no PCI Memory resources, " |
| 120 | "failing board.\n"); |
| 121 | rc = -ENOMEM; |
| 122 | goto out_kfree_brd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | } |
| 124 | |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 125 | rc = request_irq(brd->irq, brd->bd_ops->intr, |
Thomas Gleixner | 40663cc | 2006-07-01 19:29:43 -0700 | [diff] [blame] | 126 | IRQF_DISABLED|IRQF_SHARED, "JSM", brd); |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 127 | if (rc) { |
| 128 | printk(KERN_WARNING "Failed to hook IRQ %d\n",brd->irq); |
| 129 | goto out_iounmap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | rc = jsm_tty_init(brd); |
| 133 | if (rc < 0) { |
| 134 | dev_err(&pdev->dev, "Can't init tty devices (%d)\n", rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | retval = -ENXIO; |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 136 | goto out_free_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | rc = jsm_uart_port_init(brd); |
| 140 | if (rc < 0) { |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 141 | /* XXX: leaking all resources from jsm_tty_init here! */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | dev_err(&pdev->dev, "Can't init uart port (%d)\n", rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | retval = -ENXIO; |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 144 | goto out_free_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | } |
| 146 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | /* Log the information about the board */ |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 148 | dev_info(&pdev->dev, "board %d: Digi Neo (rev %d), irq %d\n", |
| 149 | adapter_count, brd->rev, brd->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | |
| 151 | /* |
| 152 | * allocate flip buffer for board. |
| 153 | * |
| 154 | * Okay to malloc with GFP_KERNEL, we are not at interrupt |
| 155 | * context, and there are no locks held. |
| 156 | */ |
Burman Yan | 8f31bb3 | 2007-02-14 00:33:07 -0800 | [diff] [blame] | 157 | brd->flipbuf = kzalloc(MYFLIPLEN, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | if (!brd->flipbuf) { |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 159 | /* XXX: leaking all resources from jsm_tty_init and |
| 160 | jsm_uart_port_init here! */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | dev_err(&pdev->dev, "memory allocation for flipbuf failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | retval = -ENOMEM; |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 163 | goto out_free_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 166 | pci_set_drvdata(pdev, brd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | return 0; |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 169 | out_free_irq: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | free_irq(brd->irq, brd); |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 171 | out_iounmap: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | iounmap(brd->re_map_membase); |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 173 | out_kfree_brd: |
| 174 | kfree(brd); |
| 175 | out_release_regions: |
| 176 | pci_release_regions(pdev); |
| 177 | out_disable_device: |
| 178 | pci_disable_device(pdev); |
| 179 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | return rc; |
| 181 | } |
| 182 | |
Uwe Kleine-König | e9fed56 | 2009-01-27 11:51:06 +0000 | [diff] [blame] | 183 | static void __devexit jsm_remove_one(struct pci_dev *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | { |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 185 | struct jsm_board *brd = pci_get_drvdata(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | int i = 0; |
| 187 | |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 188 | jsm_remove_uart_port(brd); |
| 189 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | free_irq(brd->irq, brd); |
| 191 | iounmap(brd->re_map_membase); |
| 192 | |
| 193 | /* Free all allocated channels structs */ |
| 194 | for (i = 0; i < brd->maxports; i++) { |
| 195 | if (brd->channels[i]) { |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 196 | kfree(brd->channels[i]->ch_rqueue); |
| 197 | kfree(brd->channels[i]->ch_equeue); |
| 198 | kfree(brd->channels[i]->ch_wqueue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | kfree(brd->channels[i]); |
| 200 | } |
| 201 | } |
| 202 | |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 203 | pci_release_regions(pdev); |
| 204 | pci_disable_device(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | kfree(brd->flipbuf); |
| 206 | kfree(brd); |
| 207 | } |
| 208 | |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 209 | static struct pci_device_id jsm_pci_tbl[] = { |
| 210 | { PCI_DEVICE(PCI_VENDOR_ID_DIGI, PCI_DEVICE_ID_NEO_2DB9), 0, 0, 0 }, |
| 211 | { PCI_DEVICE(PCI_VENDOR_ID_DIGI, PCI_DEVICE_ID_NEO_2DB9PRI), 0, 0, 1 }, |
| 212 | { PCI_DEVICE(PCI_VENDOR_ID_DIGI, PCI_DEVICE_ID_NEO_2RJ45), 0, 0, 2 }, |
| 213 | { PCI_DEVICE(PCI_VENDOR_ID_DIGI, PCI_DEVICE_ID_NEO_2RJ45PRI), 0, 0, 3 }, |
Scott Kilau | 99da904 | 2008-05-01 04:35:00 -0700 | [diff] [blame] | 214 | { PCI_DEVICE(PCI_VENDOR_ID_DIGI, PCIE_DEVICE_ID_NEO_4_IBM), 0, 0, 4 }, |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 215 | { 0, } |
| 216 | }; |
| 217 | MODULE_DEVICE_TABLE(pci, jsm_pci_tbl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 219 | static struct pci_driver jsm_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | .name = "jsm", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | .id_table = jsm_pci_tbl, |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 222 | .probe = jsm_probe_one, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | .remove = __devexit_p(jsm_remove_one), |
| 224 | }; |
| 225 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | static int __init jsm_init_module(void) |
| 227 | { |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 228 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | |
| 230 | rc = uart_register_driver(&jsm_uart_driver); |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 231 | if (!rc) { |
| 232 | rc = pci_register_driver(&jsm_driver); |
| 233 | if (rc) |
| 234 | uart_unregister_driver(&jsm_uart_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | return rc; |
| 237 | } |
| 238 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | static void __exit jsm_exit_module(void) |
| 240 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | pci_unregister_driver(&jsm_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | uart_unregister_driver(&jsm_uart_driver); |
| 243 | } |
Christoph Hellwig | 614a7d6 | 2005-04-16 15:25:44 -0700 | [diff] [blame] | 244 | |
| 245 | module_init(jsm_init_module); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | module_exit(jsm_exit_module); |