jsm_driver.c 6.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/************************************************************************
 * Copyright 2003 Digi International (www.digi.com)
 *
 * Copyright (C) 2004 IBM Corporation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED; without even the
 * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 * PURPOSE.  See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 * Temple Place - Suite 330, Boston,
 * MA  02111-1307, USA.
 *
 * Contact Information:
 * Scott H Kilau <Scott_Kilau@digi.com>
23
 * Wendy Xiong   <wendyx@us.ibm.com>
L
Linus Torvalds 已提交
24
 *
V
V. ANANDA KRISHNAN 已提交
25
 *
L
Linus Torvalds 已提交
26 27 28 29 30 31 32
 ***********************************************************************/
#include <linux/moduleparam.h>
#include <linux/pci.h>

#include "jsm.h"

MODULE_AUTHOR("Digi International, http://www.digi.com");
33 34 35
MODULE_DESCRIPTION("Driver for the Digi International "
		   "Neo PCI based product line");
MODULE_LICENSE("GPL");
L
Linus Torvalds 已提交
36 37 38 39 40 41 42 43 44 45
MODULE_SUPPORTED_DEVICE("jsm");

#define JSM_DRIVER_NAME "jsm"
#define NR_PORTS	32
#define JSM_MINOR_START	0

struct uart_driver jsm_uart_driver = {
	.owner		= THIS_MODULE,
	.driver_name	= JSM_DRIVER_NAME,
	.dev_name	= "ttyn",
46
	.major		= 0,
L
Linus Torvalds 已提交
47 48 49 50 51 52 53 54
	.minor		= JSM_MINOR_START,
	.nr		= NR_PORTS,
};

int jsm_debug;
module_param(jsm_debug, int, 0);
MODULE_PARM_DESC(jsm_debug, "Driver debugging level");

55
static int jsm_probe_one(struct pci_dev *pdev, const struct pci_device_id *ent)
L
Linus Torvalds 已提交
56 57
{
	int rc = 0;
58 59 60
	struct jsm_board *brd;
	static int adapter_count = 0;
	int retval;
L
Linus Torvalds 已提交
61

62 63 64 65
	rc = pci_enable_device(pdev);
	if (rc) {
		dev_err(&pdev->dev, "Device enable FAILED\n");
		goto out;
L
Linus Torvalds 已提交
66 67
	}

68 69 70 71 72
	rc = pci_request_regions(pdev, "jsm");
	if (rc) {
		dev_err(&pdev->dev, "pci_request_region FAILED\n");
		goto out_disable_device;
	}
L
Linus Torvalds 已提交
73 74 75

	brd = kmalloc(sizeof(struct jsm_board), GFP_KERNEL);
	if (!brd) {
76 77 78 79
		dev_err(&pdev->dev,
			"memory allocation for board structure failed\n");
		rc = -ENOMEM;
		goto out_release_regions;
L
Linus Torvalds 已提交
80 81 82 83
	}
	memset(brd, 0, sizeof(struct jsm_board));

	/* store the info for the board we've found */
84
	brd->boardnum = adapter_count++;
L
Linus Torvalds 已提交
85
	brd->pci_dev = pdev;
86
	brd->maxports = 2;
L
Linus Torvalds 已提交
87 88 89 90 91 92 93 94 95

	spin_lock_init(&brd->bd_lock);
	spin_lock_init(&brd->bd_intr_lock);

	/* store which revision we have */
	pci_read_config_byte(pdev, PCI_REVISION_ID, &brd->rev);

	brd->irq = pdev->irq;

96 97
	jsm_printk(INIT, INFO, &brd->pci_dev,
		"jsm_found_board - NEO adapter\n");
L
Linus Torvalds 已提交
98

99 100 101
	/* get the PCI Base Address Registers */
	brd->membase	= pci_resource_start(pdev, 0);
	brd->membase_end = pci_resource_end(pdev, 0);
L
Linus Torvalds 已提交
102

103 104 105 106
	if (brd->membase & 1)
		brd->membase &= ~3;
	else
		brd->membase &= ~15;
L
Linus Torvalds 已提交
107

108 109
	/* Assign the board_ops struct */
	brd->bd_ops = &jsm_neo_ops;
L
Linus Torvalds 已提交
110

111 112
	brd->bd_uart_offset = 0x200;
	brd->bd_dividend = 921600;
L
Linus Torvalds 已提交
113

114 115 116 117 118 119 120
	brd->re_map_membase = ioremap(brd->membase, 0x1000);
	if (!brd->re_map_membase) {
		dev_err(&pdev->dev,
			"card has no PCI Memory resources, "
			"failing board.\n");
		rc = -ENOMEM;
		goto out_kfree_brd;
L
Linus Torvalds 已提交
121 122
	}

123
	rc = request_irq(brd->irq, brd->bd_ops->intr,
124
			IRQF_DISABLED|IRQF_SHARED, "JSM", brd);
125 126 127
	if (rc) {
		printk(KERN_WARNING "Failed to hook IRQ %d\n",brd->irq);
		goto out_iounmap;
L
Linus Torvalds 已提交
128 129 130 131 132 133
	}

	rc = jsm_tty_init(brd);
	if (rc < 0) {
		dev_err(&pdev->dev, "Can't init tty devices (%d)\n", rc);
		retval = -ENXIO;
134
		goto out_free_irq;
L
Linus Torvalds 已提交
135 136 137 138
	}

	rc = jsm_uart_port_init(brd);
	if (rc < 0) {
139
		/* XXX: leaking all resources from jsm_tty_init here! */
L
Linus Torvalds 已提交
140 141
		dev_err(&pdev->dev, "Can't init uart port (%d)\n", rc);
		retval = -ENXIO;
142
		goto out_free_irq;
L
Linus Torvalds 已提交
143 144 145
	}

	/* Log the information about the board */
146 147
	dev_info(&pdev->dev, "board %d: Digi Neo (rev %d), irq %d\n",
			adapter_count, brd->rev, brd->irq);
L
Linus Torvalds 已提交
148 149 150 151 152 153 154 155 156

	/*
	 * allocate flip buffer for board.
	 *
	 * Okay to malloc with GFP_KERNEL, we are not at interrupt
	 * context, and there are no locks held.
	 */
	brd->flipbuf = kmalloc(MYFLIPLEN, GFP_KERNEL);
	if (!brd->flipbuf) {
157 158
		/* XXX: leaking all resources from jsm_tty_init and
		 	jsm_uart_port_init here! */
L
Linus Torvalds 已提交
159 160
		dev_err(&pdev->dev, "memory allocation for flipbuf failed\n");
		retval = -ENOMEM;
161
		goto out_free_irq;
L
Linus Torvalds 已提交
162 163 164
	}
	memset(brd->flipbuf, 0, MYFLIPLEN);

165
	pci_set_drvdata(pdev, brd);
L
Linus Torvalds 已提交
166 167

	return 0;
168
 out_free_irq:
L
Linus Torvalds 已提交
169
	free_irq(brd->irq, brd);
170
 out_iounmap:
L
Linus Torvalds 已提交
171
	iounmap(brd->re_map_membase);
172 173 174 175 176 177 178
 out_kfree_brd:
	kfree(brd);
 out_release_regions:
	pci_release_regions(pdev);
 out_disable_device:
	pci_disable_device(pdev);
 out:
L
Linus Torvalds 已提交
179 180 181
	return rc;
}

182
static void jsm_remove_one(struct pci_dev *pdev)
L
Linus Torvalds 已提交
183
{
184
	struct jsm_board *brd = pci_get_drvdata(pdev);
L
Linus Torvalds 已提交
185 186
	int i = 0;

187 188
	jsm_remove_uart_port(brd);

L
Linus Torvalds 已提交
189 190 191 192 193 194
	free_irq(brd->irq, brd);
	iounmap(brd->re_map_membase);

	/* Free all allocated channels structs */
	for (i = 0; i < brd->maxports; i++) {
		if (brd->channels[i]) {
195 196 197
			kfree(brd->channels[i]->ch_rqueue);
			kfree(brd->channels[i]->ch_equeue);
			kfree(brd->channels[i]->ch_wqueue);
L
Linus Torvalds 已提交
198 199 200 201
			kfree(brd->channels[i]);
		}
	}

202 203
	pci_release_regions(pdev);
	pci_disable_device(pdev);
L
Linus Torvalds 已提交
204 205 206 207
	kfree(brd->flipbuf);
	kfree(brd);
}

208 209 210 211 212 213 214 215
static struct pci_device_id jsm_pci_tbl[] = {
	{ PCI_DEVICE(PCI_VENDOR_ID_DIGI, PCI_DEVICE_ID_NEO_2DB9), 0, 0, 0 },
	{ PCI_DEVICE(PCI_VENDOR_ID_DIGI, PCI_DEVICE_ID_NEO_2DB9PRI), 0, 0, 1 },
	{ PCI_DEVICE(PCI_VENDOR_ID_DIGI, PCI_DEVICE_ID_NEO_2RJ45), 0, 0, 2 },
	{ PCI_DEVICE(PCI_VENDOR_ID_DIGI, PCI_DEVICE_ID_NEO_2RJ45PRI), 0, 0, 3 },
	{ 0, }
};
MODULE_DEVICE_TABLE(pci, jsm_pci_tbl);
L
Linus Torvalds 已提交
216

217
static struct pci_driver jsm_driver = {
L
Linus Torvalds 已提交
218 219
	.name		= "jsm",
	.id_table	= jsm_pci_tbl,
220
	.probe		= jsm_probe_one,
L
Linus Torvalds 已提交
221 222 223 224 225
	.remove		= __devexit_p(jsm_remove_one),
};

static int __init jsm_init_module(void)
{
226
	int rc;
L
Linus Torvalds 已提交
227 228

	rc = uart_register_driver(&jsm_uart_driver);
229 230 231 232
	if (!rc) {
		rc = pci_register_driver(&jsm_driver);
		if (rc)
			uart_unregister_driver(&jsm_uart_driver);
L
Linus Torvalds 已提交
233 234 235 236 237 238 239 240 241
	}
	return rc;
}

static void __exit jsm_exit_module(void)
{
	pci_unregister_driver(&jsm_driver);
	uart_unregister_driver(&jsm_uart_driver);
}
242 243

module_init(jsm_init_module);
L
Linus Torvalds 已提交
244
module_exit(jsm_exit_module);