blob: b1b66e71d281125f990a9dc742ef56dc48786c3e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/************************************************************************
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>
23 * Wendy Xiong <wendyx@us.ltcfwd.linux.ibm.com>
24 *
V. ANANDA KRISHNANc2236952005-07-27 11:43:49 -070025 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 ***********************************************************************/
27#include <linux/moduleparam.h>
28#include <linux/pci.h>
29
30#include "jsm.h"
31
32MODULE_AUTHOR("Digi International, http://www.digi.com");
Christoph Hellwig614a7d62005-04-16 15:25:44 -070033MODULE_DESCRIPTION("Driver for the Digi International "
34 "Neo PCI based product line");
35MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -070036MODULE_SUPPORTED_DEVICE("jsm");
37
38#define JSM_DRIVER_NAME "jsm"
39#define NR_PORTS 32
40#define JSM_MINOR_START 0
41
42struct uart_driver jsm_uart_driver = {
43 .owner = THIS_MODULE,
44 .driver_name = JSM_DRIVER_NAME,
45 .dev_name = "ttyn",
V. ANANDA KRISHNAN9539c1d2005-07-27 11:43:48 -070046 .major = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 .minor = JSM_MINOR_START,
48 .nr = NR_PORTS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070049};
50
51int jsm_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052module_param(jsm_debug, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053MODULE_PARM_DESC(jsm_debug, "Driver debugging level");
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Christoph Hellwig614a7d62005-04-16 15:25:44 -070055static int jsm_probe_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
57 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 struct jsm_board *brd;
Christoph Hellwig614a7d62005-04-16 15:25:44 -070059 static int adapter_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 int retval;
61
Christoph Hellwig614a7d62005-04-16 15:25:44 -070062 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 brd = kmalloc(sizeof(struct jsm_board), GFP_KERNEL);
75 if (!brd) {
Christoph Hellwig614a7d62005-04-16 15:25:44 -070076 dev_err(&pdev->dev,
77 "memory allocation for board structure failed\n");
78 rc = -ENOMEM;
79 goto out_release_regions;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 }
81 memset(brd, 0, sizeof(struct jsm_board));
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 /* store the info for the board we've found */
Christoph Hellwig614a7d62005-04-16 15:25:44 -070084 brd->boardnum = adapter_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 brd->pci_dev = pdev;
Christoph Hellwig614a7d62005-04-16 15:25:44 -070086 brd->maxports = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 spin_lock_init(&brd->bd_lock);
89 spin_lock_init(&brd->bd_intr_lock);
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 /* store which revision we have */
92 pci_read_config_byte(pdev, PCI_REVISION_ID, &brd->rev);
93
94 brd->irq = pdev->irq;
95
Christoph Hellwig614a7d62005-04-16 15:25:44 -070096 jsm_printk(INIT, INFO, &brd->pci_dev,
97 "jsm_found_board - NEO adapter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Christoph Hellwig614a7d62005-04-16 15:25:44 -070099 /* get the PCI Base Address Registers */
100 brd->membase = pci_resource_start(pdev, 0);
101 brd->membase_end = pci_resource_end(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700103 if (brd->membase & 1)
104 brd->membase &= ~3;
105 else
106 brd->membase &= ~15;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700108 /* Assign the board_ops struct */
109 brd->bd_ops = &jsm_neo_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700111 brd->bd_uart_offset = 0x200;
112 brd->bd_dividend = 921600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700114 brd->re_map_membase = ioremap(brd->membase, 0x1000);
115 if (!brd->re_map_membase) {
116 dev_err(&pdev->dev,
117 "card has no PCI Memory resources, "
118 "failing board.\n");
119 rc = -ENOMEM;
120 goto out_kfree_brd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 }
122
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700123 rc = request_irq(brd->irq, brd->bd_ops->intr,
124 SA_INTERRUPT|SA_SHIRQ, "JSM", brd);
125 if (rc) {
126 printk(KERN_WARNING "Failed to hook IRQ %d\n",brd->irq);
127 goto out_iounmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 }
129
130 rc = jsm_tty_init(brd);
131 if (rc < 0) {
132 dev_err(&pdev->dev, "Can't init tty devices (%d)\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 retval = -ENXIO;
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700134 goto out_free_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
137 rc = jsm_uart_port_init(brd);
138 if (rc < 0) {
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700139 /* XXX: leaking all resources from jsm_tty_init here! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 dev_err(&pdev->dev, "Can't init uart port (%d)\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 retval = -ENXIO;
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700142 goto out_free_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 }
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 /* Log the information about the board */
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700146 dev_info(&pdev->dev, "board %d: Digi Neo (rev %d), irq %d\n",
147 adapter_count, brd->rev, brd->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 /*
150 * allocate flip buffer for board.
151 *
152 * Okay to malloc with GFP_KERNEL, we are not at interrupt
153 * context, and there are no locks held.
154 */
155 brd->flipbuf = kmalloc(MYFLIPLEN, GFP_KERNEL);
156 if (!brd->flipbuf) {
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700157 /* XXX: leaking all resources from jsm_tty_init and
158 jsm_uart_port_init here! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 dev_err(&pdev->dev, "memory allocation for flipbuf failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 retval = -ENOMEM;
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700161 goto out_free_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
163 memset(brd->flipbuf, 0, MYFLIPLEN);
164
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700165 pci_set_drvdata(pdev, brd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return 0;
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700168 out_free_irq:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 free_irq(brd->irq, brd);
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700170 out_iounmap:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 iounmap(brd->re_map_membase);
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700172 out_kfree_brd:
173 kfree(brd);
174 out_release_regions:
175 pci_release_regions(pdev);
176 out_disable_device:
177 pci_disable_device(pdev);
178 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return rc;
180}
181
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700182static void jsm_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700184 struct jsm_board *brd = pci_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 int i = 0;
186
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700187 jsm_remove_uart_port(brd);
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 free_irq(brd->irq, brd);
190 iounmap(brd->re_map_membase);
191
192 /* Free all allocated channels structs */
193 for (i = 0; i < brd->maxports; i++) {
194 if (brd->channels[i]) {
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700195 kfree(brd->channels[i]->ch_rqueue);
196 kfree(brd->channels[i]->ch_equeue);
197 kfree(brd->channels[i]->ch_wqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 kfree(brd->channels[i]);
199 }
200 }
201
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700202 pci_release_regions(pdev);
203 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 kfree(brd->flipbuf);
205 kfree(brd);
206}
207
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700208static struct pci_device_id jsm_pci_tbl[] = {
209 { PCI_DEVICE(PCI_VENDOR_ID_DIGI, PCI_DEVICE_ID_NEO_2DB9), 0, 0, 0 },
210 { PCI_DEVICE(PCI_VENDOR_ID_DIGI, PCI_DEVICE_ID_NEO_2DB9PRI), 0, 0, 1 },
211 { PCI_DEVICE(PCI_VENDOR_ID_DIGI, PCI_DEVICE_ID_NEO_2RJ45), 0, 0, 2 },
212 { PCI_DEVICE(PCI_VENDOR_ID_DIGI, PCI_DEVICE_ID_NEO_2RJ45PRI), 0, 0, 3 },
213 { 0, }
214};
215MODULE_DEVICE_TABLE(pci, jsm_pci_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700217static struct pci_driver jsm_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 .name = "jsm",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 .id_table = jsm_pci_tbl,
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700220 .probe = jsm_probe_one,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 .remove = __devexit_p(jsm_remove_one),
222};
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224static int __init jsm_init_module(void)
225{
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700226 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 rc = uart_register_driver(&jsm_uart_driver);
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700229 if (!rc) {
230 rc = pci_register_driver(&jsm_driver);
231 if (rc)
232 uart_unregister_driver(&jsm_uart_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 return rc;
235}
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237static void __exit jsm_exit_module(void)
238{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 pci_unregister_driver(&jsm_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 uart_unregister_driver(&jsm_uart_driver);
241}
Christoph Hellwig614a7d62005-04-16 15:25:44 -0700242
243module_init(jsm_init_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244module_exit(jsm_exit_module);