blob: 788ba404efc63a28524534fa4e68a341d6402fe3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*======================================================================
2
3 A driver for PCMCIA serial devices
4
5 serial_cs.c 1.134 2002/05/04 05:48:53
6
7 The contents of this file are subject to the Mozilla Public
8 License Version 1.1 (the "License"); you may not use this file
9 except in compliance with the License. You may obtain a copy of
10 the License at http://www.mozilla.org/MPL/
11
12 Software distributed under the License is distributed on an "AS
13 IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
14 implied. See the License for the specific language governing
15 rights and limitations under the License.
16
17 The initial developer of the original code is David A. Hinds
18 <dahinds@users.sourceforge.net>. Portions created by David A. Hinds
19 are Copyright (C) 1999 David A. Hinds. All Rights Reserved.
20
21 Alternatively, the contents of this file may be used under the
22 terms of the GNU General Public License version 2 (the "GPL"), in which
23 case the provisions of the GPL are applicable instead of the
24 above. If you wish to allow the use of your version of this file
25 only under the terms of the GPL and not to allow others to use
26 your version of this file under the MPL, indicate your decision
27 by deleting the provisions above and replace them with the notice
28 and other provisions required by the GPL. If you do not delete
29 the provisions above, a recipient may use your version of this
30 file under either the MPL or the GPL.
31
32======================================================================*/
33
34#include <linux/module.h>
35#include <linux/moduleparam.h>
36#include <linux/kernel.h>
37#include <linux/init.h>
38#include <linux/sched.h>
39#include <linux/ptrace.h>
40#include <linux/slab.h>
41#include <linux/string.h>
42#include <linux/timer.h>
43#include <linux/serial_core.h>
Petr Vandrovec30bac7a2006-02-10 02:04:00 -080044#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/major.h>
46#include <asm/io.h>
47#include <asm/system.h>
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <pcmcia/cs_types.h>
50#include <pcmcia/cs.h>
51#include <pcmcia/cistpl.h>
52#include <pcmcia/ciscode.h>
53#include <pcmcia/ds.h>
54#include <pcmcia/cisreg.h>
55
56#include "8250.h"
57
58#ifdef PCMCIA_DEBUG
59static int pc_debug = PCMCIA_DEBUG;
60module_param(pc_debug, int, 0644);
61#define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args)
62static char *version = "serial_cs.c 1.134 2002/05/04 05:48:53 (David Hinds)";
63#else
64#define DEBUG(n, args...)
65#endif
66
67/*====================================================================*/
68
69/* Parameters that can be set with 'insmod' */
70
71/* Enable the speaker? */
72static int do_sound = 1;
73/* Skip strict UART tests? */
74static int buggy_uart;
75
76module_param(do_sound, int, 0444);
77module_param(buggy_uart, int, 0444);
78
79/*====================================================================*/
80
81/* Table of multi-port card ID's */
82
Russell King1fbbac42006-09-16 21:09:41 +010083struct serial_quirk {
Russell Kinga8244b52006-09-16 21:26:16 +010084 unsigned int manfid;
85 unsigned int prodid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 int multi; /* 1 = multifunction, > 1 = # ports */
Russell Kingefd92df2006-09-16 23:00:54 +010087 void (*config)(struct pcmcia_device *);
Russell King7ef057f2006-09-16 22:45:41 +010088 void (*wakeup)(struct pcmcia_device *);
Russell Kingeee3a882006-09-16 21:34:11 +010089 int (*post)(struct pcmcia_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090};
91
Russell Kingeee3a882006-09-16 21:34:11 +010092struct serial_info {
93 struct pcmcia_device *p_dev;
94 int ndev;
95 int multi;
96 int slave;
97 int manfid;
98 int prodid;
99 int c950ctrl;
100 dev_node_t node[4];
101 int line[4];
102 const struct serial_quirk *quirk;
103};
104
105struct serial_cfg_mem {
106 tuple_t tuple;
107 cisparse_t parse;
108 u_char buf[256];
109};
110
111static int quirk_post_ibm(struct pcmcia_device *link)
112{
113 conf_reg_t reg = { 0, CS_READ, 0x800, 0 };
114 int last_ret, last_fn;
115
116 last_ret = pcmcia_access_configuration_register(link, &reg);
117 if (last_ret) {
118 last_fn = AccessConfigurationRegister;
119 goto cs_failed;
120 }
121 reg.Action = CS_WRITE;
122 reg.Value = reg.Value | 1;
123 last_ret = pcmcia_access_configuration_register(link, &reg);
124 if (last_ret) {
125 last_fn = AccessConfigurationRegister;
126 goto cs_failed;
127 }
128 return 0;
129
130 cs_failed:
131 cs_error(link, last_fn, last_ret);
132 return -ENODEV;
133}
134
Russell King7ef057f2006-09-16 22:45:41 +0100135static void quirk_wakeup_oxsemi(struct pcmcia_device *link)
136{
137 struct serial_info *info = link->priv;
138
139 outb(12, info->c950ctrl + 1);
140}
141
142/* request_region? oxsemi branch does no request_region too... */
143/*
144 * This sequence is needed to properly initialize MC45 attached to OXCF950.
145 * I tried decreasing these msleep()s, but it worked properly (survived
146 * 1000 stop/start operations) with these timeouts (or bigger).
147 */
148static void quirk_wakeup_possio_gcc(struct pcmcia_device *link)
149{
150 struct serial_info *info = link->priv;
151 unsigned int ctrl = info->c950ctrl;
152
153 outb(0xA, ctrl + 1);
154 msleep(100);
155 outb(0xE, ctrl + 1);
156 msleep(300);
157 outb(0xC, ctrl + 1);
158 msleep(100);
159 outb(0xE, ctrl + 1);
160 msleep(200);
161 outb(0xF, ctrl + 1);
162 msleep(100);
163 outb(0xE, ctrl + 1);
164 msleep(100);
165 outb(0xC, ctrl + 1);
166}
167
Russell Kingefd92df2006-09-16 23:00:54 +0100168/*
169 * Socket Dual IO: this enables irq's for second port
170 */
171static void quirk_config_socket(struct pcmcia_device *link)
172{
173 struct serial_info *info = link->priv;
174
175 if (info->multi) {
176 link->conf.Present |= PRESENT_EXT_STATUS;
177 link->conf.ExtStatus = ESR_REQ_ATTN_ENA;
178 }
179}
180
Russell King1fbbac42006-09-16 21:09:41 +0100181static const struct serial_quirk quirks[] = {
182 {
Russell Kingeee3a882006-09-16 21:34:11 +0100183 .manfid = MANFID_IBM,
184 .prodid = ~0,
185 .multi = -1,
186 .post = quirk_post_ibm,
187 }, {
Russell King7ef057f2006-09-16 22:45:41 +0100188 .manfid = MANFID_INTEL,
189 .prodid = PRODID_INTEL_DUAL_RS232,
190 .multi = 2,
191 }, {
192 .manfid = MANFID_NATINST,
193 .prodid = PRODID_NATINST_QUAD_RS232,
194 .multi = 4,
195 }, {
Russell King1fbbac42006-09-16 21:09:41 +0100196 .manfid = MANFID_OMEGA,
197 .prodid = PRODID_OMEGA_QSP_100,
198 .multi = 4,
199 }, {
Russell King7ef057f2006-09-16 22:45:41 +0100200 .manfid = MANFID_OXSEMI,
201 .prodid = ~0,
202 .multi = -1,
203 .wakeup = quirk_wakeup_oxsemi,
204 }, {
205 .manfid = MANFID_POSSIO,
206 .prodid = PRODID_POSSIO_GCC,
207 .multi = -1,
208 .wakeup = quirk_wakeup_possio_gcc,
209 }, {
Russell King1fbbac42006-09-16 21:09:41 +0100210 .manfid = MANFID_QUATECH,
211 .prodid = PRODID_QUATECH_DUAL_RS232,
212 .multi = 2,
213 }, {
214 .manfid = MANFID_QUATECH,
215 .prodid = PRODID_QUATECH_DUAL_RS232_D1,
216 .multi = 2,
217 }, {
218 .manfid = MANFID_QUATECH,
219 .prodid = PRODID_QUATECH_QUAD_RS232,
220 .multi = 4,
221 }, {
222 .manfid = MANFID_SOCKET,
223 .prodid = PRODID_SOCKET_DUAL_RS232,
224 .multi = 2,
Russell Kingefd92df2006-09-16 23:00:54 +0100225 .config = quirk_config_socket,
226 }, {
227 .manfid = MANFID_SOCKET,
228 .prodid = ~0,
229 .multi = -1,
230 .config = quirk_config_socket,
Russell King1fbbac42006-09-16 21:09:41 +0100231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Yum Rayan16f31112005-05-01 08:59:14 -0700234
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200235static int serial_config(struct pcmcia_device * link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238/*======================================================================
239
240 After a card is removed, serial_remove() will unregister
241 the serial device(s), and release the PCMCIA configuration.
242
243======================================================================*/
244
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200245static void serial_remove(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
247 struct serial_info *info = link->priv;
248 int i;
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 DEBUG(0, "serial_release(0x%p)\n", link);
251
252 /*
253 * Recheck to see if the device is still configured.
254 */
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100255 for (i = 0; i < info->ndev; i++)
256 serial8250_unregister_port(info->line[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100258 info->p_dev->dev_node = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100260 if (!info->slave)
261 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200264static int serial_suspend(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100266 struct serial_info *info = link->priv;
267 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100269 for (i = 0; i < info->ndev; i++)
270 serial8250_suspend_port(info->line[i]);
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100271
272 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200275static int serial_resume(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Dominik Brodowski9940ec32006-03-05 11:04:33 +0100277 if (pcmcia_dev_present(link)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 struct serial_info *info = link->priv;
279 int i;
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 for (i = 0; i < info->ndev; i++)
282 serial8250_resume_port(info->line[i]);
Russell King7ef057f2006-09-16 22:45:41 +0100283
284 if (info->quirk && info->quirk->wakeup)
285 info->quirk->wakeup(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100287
288 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
291/*======================================================================
292
293 serial_attach() creates an "instance" of the driver, allocating
294 local data structures for one device. The device is registered
295 with Card Services.
296
297======================================================================*/
298
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200299static int serial_probe(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 struct serial_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 DEBUG(0, "serial_attach()\n");
304
305 /* Create new serial device */
306 info = kmalloc(sizeof (*info), GFP_KERNEL);
307 if (!info)
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100308 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 memset(info, 0, sizeof (*info));
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200310 info->p_dev = link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 link->priv = info;
312
313 link->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
314 link->io.NumPorts1 = 8;
315 link->irq.Attributes = IRQ_TYPE_EXCLUSIVE;
316 link->irq.IRQInfo1 = IRQ_LEVEL_ID;
317 link->conf.Attributes = CONF_ENABLE_IRQ;
318 if (do_sound) {
319 link->conf.Attributes |= CONF_ENABLE_SPKR;
320 link->conf.Status = CCSR_AUDIO_ENA;
321 }
322 link->conf.IntType = INT_MEMORY_AND_IO;
323
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200324 return serial_config(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
327/*======================================================================
328
329 This deletes a driver "instance". The device is de-registered
330 with Card Services. If it has been released, all local data
331 structures are freed. Otherwise, the structures will be freed
332 when the device is released.
333
334======================================================================*/
335
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200336static void serial_detach(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 struct serial_info *info = link->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 DEBUG(0, "serial_detach(0x%p)\n", link);
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 /*
343 * Ensure any outstanding scheduled tasks are completed.
344 */
345 flush_scheduled_work();
346
347 /*
348 * Ensure that the ports have been released.
349 */
350 serial_remove(link);
351
Dominik Brodowskib4635812005-11-14 21:25:35 +0100352 /* free bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 kfree(info);
354}
355
356/*====================================================================*/
357
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200358static int setup_serial(struct pcmcia_device *handle, struct serial_info * info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 kio_addr_t iobase, int irq)
360{
361 struct uart_port port;
362 int line;
363
364 memset(&port, 0, sizeof (struct uart_port));
365 port.iobase = iobase;
366 port.irq = irq;
367 port.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_SHARE_IRQ;
368 port.uartclk = 1843200;
369 port.dev = &handle_to_dev(handle);
370 if (buggy_uart)
371 port.flags |= UPF_BUGGY_UART;
372 line = serial8250_register_port(&port);
373 if (line < 0) {
374 printk(KERN_NOTICE "serial_cs: serial8250_register_port() at "
375 "0x%04lx, irq %d failed\n", (u_long)iobase, irq);
376 return -EINVAL;
377 }
378
379 info->line[info->ndev] = line;
380 sprintf(info->node[info->ndev].dev_name, "ttyS%d", line);
381 info->node[info->ndev].major = TTY_MAJOR;
382 info->node[info->ndev].minor = 0x40 + line;
383 if (info->ndev > 0)
384 info->node[info->ndev - 1].next = &info->node[info->ndev];
385 info->ndev++;
386
387 return 0;
388}
389
390/*====================================================================*/
391
392static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200393first_tuple(struct pcmcia_device *handle, tuple_t * tuple, cisparse_t * parse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
395 int i;
396 i = pcmcia_get_first_tuple(handle, tuple);
397 if (i != CS_SUCCESS)
398 return CS_NO_MORE_ITEMS;
399 i = pcmcia_get_tuple_data(handle, tuple);
400 if (i != CS_SUCCESS)
401 return i;
402 return pcmcia_parse_tuple(handle, tuple, parse);
403}
404
405static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200406next_tuple(struct pcmcia_device *handle, tuple_t * tuple, cisparse_t * parse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 int i;
409 i = pcmcia_get_next_tuple(handle, tuple);
410 if (i != CS_SUCCESS)
411 return CS_NO_MORE_ITEMS;
412 i = pcmcia_get_tuple_data(handle, tuple);
413 if (i != CS_SUCCESS)
414 return i;
415 return pcmcia_parse_tuple(handle, tuple, parse);
416}
417
418/*====================================================================*/
419
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200420static int simple_config(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Arjan van de Vencb3592b2005-11-28 21:04:11 +0000422 static const kio_addr_t base[5] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8, 0x0 };
423 static const int size_table[2] = { 8, 16 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 struct serial_info *info = link->priv;
Yum Rayan16f31112005-05-01 08:59:14 -0700425 struct serial_cfg_mem *cfg_mem;
426 tuple_t *tuple;
427 u_char *buf;
428 cisparse_t *parse;
429 cistpl_cftable_entry_t *cf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 config_info_t config;
431 int i, j, try;
432 int s;
433
Yum Rayan16f31112005-05-01 08:59:14 -0700434 cfg_mem = kmalloc(sizeof(struct serial_cfg_mem), GFP_KERNEL);
435 if (!cfg_mem)
436 return -1;
437
438 tuple = &cfg_mem->tuple;
439 parse = &cfg_mem->parse;
440 cf = &parse->cftable_entry;
441 buf = cfg_mem->buf;
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 /* If the card is already configured, look up the port and irq */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200444 i = pcmcia_get_configuration_info(link, &config);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 if ((i == CS_SUCCESS) && (config.Attributes & CONF_VALID_CLIENT)) {
446 kio_addr_t port = 0;
447 if ((config.BasePort2 != 0) && (config.NumPorts2 == 8)) {
448 port = config.BasePort2;
449 info->slave = 1;
450 } else if ((info->manfid == MANFID_OSITECH) &&
451 (config.NumPorts1 == 0x40)) {
452 port = config.BasePort1 + 0x28;
453 info->slave = 1;
454 }
Yum Rayan16f31112005-05-01 08:59:14 -0700455 if (info->slave) {
456 kfree(cfg_mem);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200457 return setup_serial(link, info, port, config.AssignedIRQ);
Yum Rayan16f31112005-05-01 08:59:14 -0700458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 /* First pass: look for a config entry that looks normal. */
Yum Rayan16f31112005-05-01 08:59:14 -0700462 tuple->TupleData = (cisdata_t *) buf;
463 tuple->TupleOffset = 0;
464 tuple->TupleDataMax = 255;
465 tuple->Attributes = 0;
466 tuple->DesiredTuple = CISTPL_CFTABLE_ENTRY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 /* Two tries: without IO aliases, then with aliases */
468 for (s = 0; s < 2; s++) {
469 for (try = 0; try < 2; try++) {
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200470 i = first_tuple(link, tuple, parse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 while (i != CS_NO_MORE_ITEMS) {
472 if (i != CS_SUCCESS)
473 goto next_entry;
474 if (cf->vpp1.present & (1 << CISTPL_POWER_VNOM))
Dominik Brodowski70294b42006-01-15 12:43:16 +0100475 link->conf.Vpp =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 cf->vpp1.param[CISTPL_POWER_VNOM] / 10000;
477 if ((cf->io.nwin > 0) && (cf->io.win[0].len == size_table[s]) &&
478 (cf->io.win[0].base != 0)) {
479 link->conf.ConfigIndex = cf->index;
480 link->io.BasePort1 = cf->io.win[0].base;
481 link->io.IOAddrLines = (try == 0) ?
482 16 : cf->io.flags & CISTPL_IO_LINES_MASK;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200483 i = pcmcia_request_io(link, &link->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (i == CS_SUCCESS)
485 goto found_port;
486 }
487next_entry:
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200488 i = next_tuple(link, tuple, parse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
490 }
491 }
492 /* Second pass: try to find an entry that isn't picky about
493 its base address, then try to grab any standard serial port
494 address, and finally try to get any free port. */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200495 i = first_tuple(link, tuple, parse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 while (i != CS_NO_MORE_ITEMS) {
497 if ((i == CS_SUCCESS) && (cf->io.nwin > 0) &&
498 ((cf->io.flags & CISTPL_IO_LINES_MASK) <= 3)) {
499 link->conf.ConfigIndex = cf->index;
500 for (j = 0; j < 5; j++) {
501 link->io.BasePort1 = base[j];
502 link->io.IOAddrLines = base[j] ? 16 : 3;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200503 i = pcmcia_request_io(link, &link->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (i == CS_SUCCESS)
505 goto found_port;
506 }
507 }
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200508 i = next_tuple(link, tuple, parse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
510
511 found_port:
512 if (i != CS_SUCCESS) {
513 printk(KERN_NOTICE
514 "serial_cs: no usable port range found, giving up\n");
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200515 cs_error(link, RequestIO, i);
Yum Rayan16f31112005-05-01 08:59:14 -0700516 kfree(cfg_mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return -1;
518 }
519
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200520 i = pcmcia_request_irq(link, &link->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (i != CS_SUCCESS) {
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200522 cs_error(link, RequestIRQ, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 link->irq.AssignedIRQ = 0;
524 }
525 if (info->multi && (info->manfid == MANFID_3COM))
526 link->conf.ConfigIndex &= ~(0x08);
Russell Kingefd92df2006-09-16 23:00:54 +0100527
528 /*
529 * Apply any configuration quirks.
530 */
531 if (info->quirk && info->quirk->config)
532 info->quirk->config(link);
533
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200534 i = pcmcia_request_configuration(link, &link->conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (i != CS_SUCCESS) {
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200536 cs_error(link, RequestConfiguration, i);
Yum Rayan16f31112005-05-01 08:59:14 -0700537 kfree(cfg_mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 return -1;
539 }
Yum Rayan16f31112005-05-01 08:59:14 -0700540 kfree(cfg_mem);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200541 return setup_serial(link, info, link->io.BasePort1, link->irq.AssignedIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200544static int multi_config(struct pcmcia_device * link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 struct serial_info *info = link->priv;
Yum Rayan16f31112005-05-01 08:59:14 -0700547 struct serial_cfg_mem *cfg_mem;
548 tuple_t *tuple;
549 u_char *buf;
550 cisparse_t *parse;
551 cistpl_cftable_entry_t *cf;
Yum Rayan16f31112005-05-01 08:59:14 -0700552 int i, rc, base2 = 0;
553
554 cfg_mem = kmalloc(sizeof(struct serial_cfg_mem), GFP_KERNEL);
555 if (!cfg_mem)
556 return -1;
557 tuple = &cfg_mem->tuple;
558 parse = &cfg_mem->parse;
559 cf = &parse->cftable_entry;
560 buf = cfg_mem->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Yum Rayan16f31112005-05-01 08:59:14 -0700562 tuple->TupleData = (cisdata_t *) buf;
563 tuple->TupleOffset = 0;
564 tuple->TupleDataMax = 255;
565 tuple->Attributes = 0;
566 tuple->DesiredTuple = CISTPL_CFTABLE_ENTRY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 /* First, look for a generic full-sized window */
569 link->io.NumPorts1 = info->multi * 8;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200570 i = first_tuple(link, tuple, parse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 while (i != CS_NO_MORE_ITEMS) {
572 /* The quad port cards have bad CIS's, so just look for a
573 window larger than 8 ports and assume it will be right */
574 if ((i == CS_SUCCESS) && (cf->io.nwin == 1) &&
575 (cf->io.win[0].len > 8)) {
576 link->conf.ConfigIndex = cf->index;
577 link->io.BasePort1 = cf->io.win[0].base;
578 link->io.IOAddrLines =
579 cf->io.flags & CISTPL_IO_LINES_MASK;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200580 i = pcmcia_request_io(link, &link->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 base2 = link->io.BasePort1 + 8;
582 if (i == CS_SUCCESS)
583 break;
584 }
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200585 i = next_tuple(link, tuple, parse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 }
587
588 /* If that didn't work, look for two windows */
589 if (i != CS_SUCCESS) {
590 link->io.NumPorts1 = link->io.NumPorts2 = 8;
591 info->multi = 2;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200592 i = first_tuple(link, tuple, parse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 while (i != CS_NO_MORE_ITEMS) {
594 if ((i == CS_SUCCESS) && (cf->io.nwin == 2)) {
595 link->conf.ConfigIndex = cf->index;
596 link->io.BasePort1 = cf->io.win[0].base;
597 link->io.BasePort2 = cf->io.win[1].base;
598 link->io.IOAddrLines =
599 cf->io.flags & CISTPL_IO_LINES_MASK;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200600 i = pcmcia_request_io(link, &link->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 base2 = link->io.BasePort2;
602 if (i == CS_SUCCESS)
603 break;
604 }
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200605 i = next_tuple(link, tuple, parse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
607 }
608
609 if (i != CS_SUCCESS) {
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200610 cs_error(link, RequestIO, i);
Yum Rayan16f31112005-05-01 08:59:14 -0700611 rc = -1;
612 goto free_cfg_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
614
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200615 i = pcmcia_request_irq(link, &link->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if (i != CS_SUCCESS) {
617 printk(KERN_NOTICE
618 "serial_cs: no usable port range found, giving up\n");
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200619 cs_error(link, RequestIRQ, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 link->irq.AssignedIRQ = 0;
621 }
Russell Kingefd92df2006-09-16 23:00:54 +0100622
623 /*
624 * Apply any configuration quirks.
625 */
626 if (info->quirk && info->quirk->config)
627 info->quirk->config(link);
628
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200629 i = pcmcia_request_configuration(link, &link->conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (i != CS_SUCCESS) {
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200631 cs_error(link, RequestConfiguration, i);
Yum Rayan16f31112005-05-01 08:59:14 -0700632 rc = -1;
633 goto free_cfg_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
635
636 /* The Oxford Semiconductor OXCF950 cards are in fact single-port:
Petr Vandrovec30bac7a2006-02-10 02:04:00 -0800637 * 8 registers are for the UART, the others are extra registers.
638 * Siemen's MC45 PCMCIA (Possio's GCC) is OXCF950 based too.
639 */
640 if (info->manfid == MANFID_OXSEMI || (info->manfid == MANFID_POSSIO &&
641 info->prodid == PRODID_POSSIO_GCC)) {
642 int err;
643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (cf->index == 1 || cf->index == 3) {
Petr Vandrovec30bac7a2006-02-10 02:04:00 -0800645 err = setup_serial(link, info, base2,
646 link->irq.AssignedIRQ);
647 base2 = link->io.BasePort1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 } else {
Petr Vandrovec30bac7a2006-02-10 02:04:00 -0800649 err = setup_serial(link, info, link->io.BasePort1,
650 link->irq.AssignedIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
Petr Vandrovec30bac7a2006-02-10 02:04:00 -0800652 info->c950ctrl = base2;
Russell King7ef057f2006-09-16 22:45:41 +0100653
654 /*
655 * FIXME: We really should wake up the port prior to
656 * handing it over to the serial layer.
657 */
658 if (info->quirk && info->quirk->wakeup)
659 info->quirk->wakeup(link);
660
Yum Rayan16f31112005-05-01 08:59:14 -0700661 rc = 0;
662 goto free_cfg_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200665 setup_serial(link, info, link->io.BasePort1, link->irq.AssignedIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 /* The Nokia cards are not really multiport cards */
Yum Rayan16f31112005-05-01 08:59:14 -0700667 if (info->manfid == MANFID_NOKIA) {
668 rc = 0;
669 goto free_cfg_mem;
670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 for (i = 0; i < info->multi - 1; i++)
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200672 setup_serial(link, info, base2 + (8 * i),
Yum Rayan16f31112005-05-01 08:59:14 -0700673 link->irq.AssignedIRQ);
674 rc = 0;
675free_cfg_mem:
676 kfree(cfg_mem);
677 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
680/*======================================================================
681
682 serial_config() is scheduled to run after a CARD_INSERTION event
683 is received, to configure the PCMCIA socket, and to make the
684 serial device available to the system.
685
686======================================================================*/
687
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200688static int serial_config(struct pcmcia_device * link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 struct serial_info *info = link->priv;
Yum Rayan16f31112005-05-01 08:59:14 -0700691 struct serial_cfg_mem *cfg_mem;
692 tuple_t *tuple;
693 u_char *buf;
694 cisparse_t *parse;
695 cistpl_cftable_entry_t *cf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 int i, last_ret, last_fn;
697
698 DEBUG(0, "serial_config(0x%p)\n", link);
699
Yum Rayan16f31112005-05-01 08:59:14 -0700700 cfg_mem = kmalloc(sizeof(struct serial_cfg_mem), GFP_KERNEL);
701 if (!cfg_mem)
702 goto failed;
703
704 tuple = &cfg_mem->tuple;
705 parse = &cfg_mem->parse;
706 cf = &parse->cftable_entry;
707 buf = cfg_mem->buf;
708
709 tuple->TupleData = (cisdata_t *) buf;
710 tuple->TupleOffset = 0;
711 tuple->TupleDataMax = 255;
712 tuple->Attributes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 /* Get configuration register information */
Yum Rayan16f31112005-05-01 08:59:14 -0700714 tuple->DesiredTuple = CISTPL_CONFIG;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200715 last_ret = first_tuple(link, tuple, parse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (last_ret != CS_SUCCESS) {
717 last_fn = ParseTuple;
718 goto cs_failed;
719 }
Yum Rayan16f31112005-05-01 08:59:14 -0700720 link->conf.ConfigBase = parse->config.base;
721 link->conf.Present = parse->config.rmask[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 /* Is this a compliant multifunction card? */
Yum Rayan16f31112005-05-01 08:59:14 -0700724 tuple->DesiredTuple = CISTPL_LONGLINK_MFC;
725 tuple->Attributes = TUPLE_RETURN_COMMON | TUPLE_RETURN_LINK;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200726 info->multi = (first_tuple(link, tuple, parse) == CS_SUCCESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 /* Is this a multiport card? */
Yum Rayan16f31112005-05-01 08:59:14 -0700729 tuple->DesiredTuple = CISTPL_MANFID;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200730 if (first_tuple(link, tuple, parse) == CS_SUCCESS) {
Petr Vandrovecf1fc3992005-05-16 21:53:44 -0700731 info->manfid = parse->manfid.manf;
Russell King43549ad2006-09-16 20:53:05 +0100732 info->prodid = parse->manfid.card;
Russell Kinga8244b52006-09-16 21:26:16 +0100733
Russell King1fbbac42006-09-16 21:09:41 +0100734 for (i = 0; i < ARRAY_SIZE(quirks); i++)
Russell Kinga8244b52006-09-16 21:26:16 +0100735 if ((quirks[i].manfid == ~0 ||
736 quirks[i].manfid == info->manfid) &&
737 (quirks[i].prodid == ~0 ||
738 quirks[i].prodid == info->prodid)) {
Russell King1fbbac42006-09-16 21:09:41 +0100739 info->quirk = &quirks[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 break;
Russell King43549ad2006-09-16 20:53:05 +0100741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
743
744 /* Another check for dual-serial cards: look for either serial or
745 multifunction cards that ask for appropriate IO port ranges */
Yum Rayan16f31112005-05-01 08:59:14 -0700746 tuple->DesiredTuple = CISTPL_FUNCID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 if ((info->multi == 0) &&
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200748 ((first_tuple(link, tuple, parse) != CS_SUCCESS) ||
Yum Rayan16f31112005-05-01 08:59:14 -0700749 (parse->funcid.func == CISTPL_FUNCID_MULTI) ||
750 (parse->funcid.func == CISTPL_FUNCID_SERIAL))) {
751 tuple->DesiredTuple = CISTPL_CFTABLE_ENTRY;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200752 if (first_tuple(link, tuple, parse) == CS_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if ((cf->io.nwin == 1) && (cf->io.win[0].len % 8 == 0))
754 info->multi = cf->io.win[0].len >> 3;
755 if ((cf->io.nwin == 2) && (cf->io.win[0].len == 8) &&
756 (cf->io.win[1].len == 8))
757 info->multi = 2;
758 }
759 }
760
Russell King1fbbac42006-09-16 21:09:41 +0100761 /*
762 * Apply any multi-port quirk.
763 */
764 if (info->quirk && info->quirk->multi != -1)
765 info->multi = info->quirk->multi;
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (info->multi > 1)
768 multi_config(link);
769 else
770 simple_config(link);
771
772 if (info->ndev == 0)
773 goto failed;
774
Russell Kingeee3a882006-09-16 21:34:11 +0100775 /*
776 * Apply any post-init quirk. FIXME: This should really happen
777 * before we register the port, since it might already be in use.
778 */
779 if (info->quirk && info->quirk->post)
780 if (info->quirk->post(link))
781 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Dominik Brodowskifd238232006-03-05 10:45:09 +0100783 link->dev_node = &info->node[0];
Yum Rayan16f31112005-05-01 08:59:14 -0700784 kfree(cfg_mem);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200785 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 cs_failed:
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200788 cs_error(link, last_fn, last_ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 failed:
790 serial_remove(link);
Yum Rayan16f31112005-05-01 08:59:14 -0700791 kfree(cfg_mem);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200792 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
Dominik Brodowski325aa292005-06-27 16:28:18 -0700795static struct pcmcia_device_id serial_ids[] = {
796 PCMCIA_PFC_DEVICE_MANF_CARD(1, 0x0057, 0x0021),
797 PCMCIA_PFC_DEVICE_MANF_CARD(1, 0x0089, 0x110a),
798 PCMCIA_PFC_DEVICE_MANF_CARD(1, 0x0104, 0x000a),
799 PCMCIA_PFC_DEVICE_MANF_CARD(1, 0x0105, 0xea15),
800 PCMCIA_PFC_DEVICE_MANF_CARD(1, 0x0109, 0x0501),
801 PCMCIA_PFC_DEVICE_MANF_CARD(1, 0x0138, 0x110a),
802 PCMCIA_PFC_DEVICE_MANF_CARD(1, 0x0140, 0x000a),
803 PCMCIA_PFC_DEVICE_MANF_CARD(1, 0x0143, 0x3341),
804 PCMCIA_PFC_DEVICE_MANF_CARD(1, 0x0143, 0xc0ab),
805 PCMCIA_PFC_DEVICE_MANF_CARD(1, 0x016c, 0x0081),
806 PCMCIA_PFC_DEVICE_MANF_CARD(1, 0x021b, 0x0101),
807 PCMCIA_PFC_DEVICE_MANF_CARD(1, 0x08a1, 0xc0ab),
Jun Komurof4d75102005-06-27 16:28:44 -0700808 PCMCIA_PFC_DEVICE_MANF_CARD(1, 0x0105, 0x0d0a),
809 PCMCIA_PFC_DEVICE_MANF_CARD(1, 0x0105, 0x0e0a),
Dominik Brodowski325aa292005-06-27 16:28:18 -0700810 PCMCIA_PFC_DEVICE_PROD_ID123(1, "MEGAHERTZ", "CC/XJEM3288", "DATA/FAX/CELL ETHERNET MODEM", 0xf510db04, 0x04cd2988, 0x46a52d63),
811 PCMCIA_PFC_DEVICE_PROD_ID123(1, "MEGAHERTZ", "CC/XJEM3336", "DATA/FAX/CELL ETHERNET MODEM", 0xf510db04, 0x0143b773, 0x46a52d63),
812 PCMCIA_PFC_DEVICE_PROD_ID123(1, "MEGAHERTZ", "EM1144T", "PCMCIA MODEM", 0xf510db04, 0x856d66c8, 0xbd6c43ef),
813 PCMCIA_PFC_DEVICE_PROD_ID123(1, "MEGAHERTZ", "XJEM1144/CCEM1144", "PCMCIA MODEM", 0xf510db04, 0x52d21e1e, 0xbd6c43ef),
814 PCMCIA_PFC_DEVICE_PROD_ID13(1, "Xircom", "CEM28", 0x2e3ee845, 0x0ea978ea),
815 PCMCIA_PFC_DEVICE_PROD_ID13(1, "Xircom", "CEM33", 0x2e3ee845, 0x80609023),
816 PCMCIA_PFC_DEVICE_PROD_ID13(1, "Xircom", "CEM56", 0x2e3ee845, 0xa650c32a),
817 PCMCIA_PFC_DEVICE_PROD_ID13(1, "Xircom", "REM10", 0x2e3ee845, 0x76df1d29),
818 PCMCIA_PFC_DEVICE_PROD_ID13(1, "Xircom", "XEM5600", 0x2e3ee845, 0xf1403719),
Komurod277ad02005-07-28 01:07:24 -0700819 PCMCIA_PFC_DEVICE_PROD_ID12(1, "AnyCom", "Fast Ethernet + 56K COMBO", 0x578ba6e7, 0xb0ac62c4),
Dominik Brodowski325aa292005-06-27 16:28:18 -0700820 PCMCIA_PFC_DEVICE_PROD_ID12(1, "D-Link", "DME336T", 0x1a424a1c, 0xb23897ff),
821 PCMCIA_PFC_DEVICE_PROD_ID12(1, "Gateway 2000", "XJEM3336", 0xdd9989be, 0x662c394c),
822 PCMCIA_PFC_DEVICE_PROD_ID12(1, "Grey Cell", "GCS3000", 0x2a151fac, 0x48b932ae),
823 PCMCIA_PFC_DEVICE_PROD_ID12(1, "Linksys", "EtherFast 10&100 + 56K PC Card (PCMLM56)", 0x0733cc81, 0xb3765033),
824 PCMCIA_PFC_DEVICE_PROD_ID12(1, "LINKSYS", "PCMLM336", 0xf7cb0b07, 0x7a821b58),
825 PCMCIA_PFC_DEVICE_PROD_ID12(1, "MEGAHERTZ", "XJEM1144/CCEM1144", 0xf510db04, 0x52d21e1e),
Komurod277ad02005-07-28 01:07:24 -0700826 PCMCIA_PFC_DEVICE_PROD_ID12(1, "Ositech", "Trumpcard:Jack of Diamonds Modem+Ethernet", 0xc2f80cd, 0x656947b9),
827 PCMCIA_PFC_DEVICE_PROD_ID12(1, "Ositech", "Trumpcard:Jack of Hearts Modem+Ethernet", 0xc2f80cd, 0xdc9ba5ed),
Dominik Brodowski325aa292005-06-27 16:28:18 -0700828 PCMCIA_PFC_DEVICE_PROD_ID12(1, "PCMCIAs", "ComboCard", 0xdcfe12d3, 0xcd8906cc),
829 PCMCIA_PFC_DEVICE_PROD_ID12(1, "PCMCIAs", "LanModem", 0xdcfe12d3, 0xc67c648f),
830 PCMCIA_PFC_DEVICE_PROD_ID12(1, "TDK", "GlobalNetworker 3410/3412", 0x1eae9475, 0xd9a93bed),
Komurod277ad02005-07-28 01:07:24 -0700831 PCMCIA_PFC_DEVICE_PROD_ID12(1, "Xircom", "CreditCard Ethernet+Modem II", 0x2e3ee845, 0xeca401bf),
Dominik Brodowski325aa292005-06-27 16:28:18 -0700832 PCMCIA_MFC_DEVICE_MANF_CARD(0, 0x0104, 0x0070),
833 PCMCIA_MFC_DEVICE_MANF_CARD(1, 0x0101, 0x0562),
834 PCMCIA_MFC_DEVICE_MANF_CARD(1, 0x0104, 0x0070),
835 PCMCIA_MFC_DEVICE_MANF_CARD(1, 0x016c, 0x0020),
836 PCMCIA_MFC_DEVICE_PROD_ID123(1, "APEX DATA", "MULTICARD", "ETHERNET-MODEM", 0x11c2da09, 0x7289dc5d, 0xaad95e1f),
837 PCMCIA_MFC_DEVICE_PROD_ID12(1, "IBM", "Home and Away 28.8 PC Card ", 0xb569a6e5, 0x5bd4ff2c),
838 PCMCIA_MFC_DEVICE_PROD_ID12(1, "IBM", "Home and Away Credit Card Adapter", 0xb569a6e5, 0x4bdf15c3),
839 PCMCIA_MFC_DEVICE_PROD_ID12(1, "IBM", "w95 Home and Away Credit Card ", 0xb569a6e5, 0xae911c15),
840 PCMCIA_MFC_DEVICE_PROD_ID1(1, "Motorola MARQUIS", 0xf03e4e77),
841 PCMCIA_MFC_DEVICE_PROD_ID2(1, "FAX/Modem/Ethernet Combo Card ", 0x1ed59302),
842 PCMCIA_DEVICE_MANF_CARD(0x0089, 0x0301),
Domen Puncer1de9ced2006-03-06 10:25:53 +0100843 PCMCIA_DEVICE_MANF_CARD(0x00a4, 0x0276),
Dominik Brodowski325aa292005-06-27 16:28:18 -0700844 PCMCIA_DEVICE_MANF_CARD(0x0101, 0x0039),
845 PCMCIA_DEVICE_MANF_CARD(0x0104, 0x0006),
846 PCMCIA_DEVICE_MANF_CARD(0x0105, 0x410a),
847 PCMCIA_DEVICE_MANF_CARD(0x010b, 0x0d50),
848 PCMCIA_DEVICE_MANF_CARD(0x010b, 0x0d51),
849 PCMCIA_DEVICE_MANF_CARD(0x010b, 0x0d52),
850 PCMCIA_DEVICE_MANF_CARD(0x010b, 0x0d53),
851 PCMCIA_DEVICE_MANF_CARD(0x010b, 0xd180),
852 PCMCIA_DEVICE_MANF_CARD(0x0137, 0x000e),
853 PCMCIA_DEVICE_MANF_CARD(0x0137, 0x001b),
854 PCMCIA_DEVICE_MANF_CARD(0x0137, 0x0025),
855 PCMCIA_DEVICE_MANF_CARD(0x0137, 0x0045),
856 PCMCIA_DEVICE_MANF_CARD(0x0137, 0x0052),
857 PCMCIA_DEVICE_PROD_ID134("ADV", "TECH", "COMpad-32/85", 0x67459937, 0x916d02ba, 0x8fbe92ae),
858 PCMCIA_DEVICE_PROD_ID124("GATEWAY2000", "CC3144", "PCMCIA MODEM", 0x506bccae, 0xcb3685f1, 0xbd6c43ef),
859 PCMCIA_DEVICE_PROD_ID14("MEGAHERTZ", "PCMCIA MODEM", 0xf510db04, 0xbd6c43ef),
860 PCMCIA_DEVICE_PROD_ID124("TOSHIBA", "T144PF", "PCMCIA MODEM", 0xb4585a1a, 0x7271409c, 0xbd6c43ef),
861 PCMCIA_DEVICE_PROD_ID123("FUJITSU", "FC14F ", "MBH10213", 0x6ee5a3d8, 0x30ead12b, 0xb00f05a0),
Domen Puncer1de9ced2006-03-06 10:25:53 +0100862 PCMCIA_DEVICE_PROD_ID123("Novatel Wireless", "Merlin UMTS Modem", "U630", 0x32607776, 0xd9e73b13, 0xe87332e),
Dominik Brodowski325aa292005-06-27 16:28:18 -0700863 PCMCIA_DEVICE_PROD_ID13("MEGAHERTZ", "V.34 PCMCIA MODEM", 0xf510db04, 0xbb2cce4a),
864 PCMCIA_DEVICE_PROD_ID12("Brain Boxes", "Bluetooth PC Card", 0xee138382, 0xd4ce9b02),
865 PCMCIA_DEVICE_PROD_ID12("CIRRUS LOGIC", "FAX MODEM", 0xe625f451, 0xcecd6dfa),
866 PCMCIA_DEVICE_PROD_ID12("COMPAQ", "PCMCIA 28800 FAX/DATA MODEM", 0xa3a3062c, 0x8cbd7c76),
867 PCMCIA_DEVICE_PROD_ID12("COMPAQ", "PCMCIA 33600 FAX/DATA MODEM", 0xa3a3062c, 0x5a00ce95),
868 PCMCIA_DEVICE_PROD_ID12("Computerboards, Inc.", "PCM-COM422", 0xd0b78f51, 0x7e2d49ed),
869 PCMCIA_DEVICE_PROD_ID12("Dr. Neuhaus", "FURY CARD 14K4", 0x76942813, 0x8b96ce65),
870 PCMCIA_DEVICE_PROD_ID12("Intelligent", "ANGIA FAX/MODEM", 0xb496e65e, 0xf31602a6),
Komurod277ad02005-07-28 01:07:24 -0700871 PCMCIA_DEVICE_PROD_ID12("Intel", "MODEM 2400+", 0x816cc815, 0x412729fb),
Dominik Brodowski325aa292005-06-27 16:28:18 -0700872 PCMCIA_DEVICE_PROD_ID12("IOTech Inc ", "PCMCIA Dual RS-232 Serial Port Card", 0x3bd2d898, 0x92abc92f),
873 PCMCIA_DEVICE_PROD_ID12("MACRONIX", "FAX/MODEM", 0x668388b3, 0x3f9bdf2f),
874 PCMCIA_DEVICE_PROD_ID12("Multi-Tech", "MT1432LT", 0x5f73be51, 0x0b3e2383),
875 PCMCIA_DEVICE_PROD_ID12("Multi-Tech", "MT2834LT", 0x5f73be51, 0x4cd7c09e),
876 PCMCIA_DEVICE_PROD_ID12("OEM ", "C288MX ", 0xb572d360, 0xd2385b7a),
877 PCMCIA_DEVICE_PROD_ID12("PCMCIA ", "C336MX ", 0x99bcafe9, 0xaa25bcab),
878 PCMCIA_DEVICE_PROD_ID12("Quatech Inc", "PCMCIA Dual RS-232 Serial Port Card", 0xc4420b35, 0x92abc92f),
879 PCMCIA_PFC_DEVICE_CIS_PROD_ID12(1, "PCMCIA", "EN2218-LAN/MODEM", 0x281f1c5d, 0x570f348e, "PCMLM28.cis"),
880 PCMCIA_PFC_DEVICE_CIS_PROD_ID12(1, "PCMCIA", "UE2218-LAN/MODEM", 0x281f1c5d, 0x6fdcacee, "PCMLM28.cis"),
881 PCMCIA_PFC_DEVICE_CIS_PROD_ID12(1, "Psion Dacom", "Gold Card V34 Ethernet", 0xf5f025c2, 0x338e8155, "PCMLM28.cis"),
882 PCMCIA_PFC_DEVICE_CIS_PROD_ID12(1, "Psion Dacom", "Gold Card V34 Ethernet GSM", 0xf5f025c2, 0x4ae85d35, "PCMLM28.cis"),
883 PCMCIA_PFC_DEVICE_CIS_PROD_ID12(1, "LINKSYS", "PCMLM28", 0xf7cb0b07, 0x66881874, "PCMLM28.cis"),
884 PCMCIA_MFC_DEVICE_CIS_PROD_ID12(1, "DAYNA COMMUNICATIONS", "LAN AND MODEM MULTIFUNCTION", 0x8fdf8f89, 0xdd5ed9e8, "DP83903.cis"),
885 PCMCIA_MFC_DEVICE_CIS_PROD_ID4(1, "NSC MF LAN/Modem", 0x58fc6056, "DP83903.cis"),
886 PCMCIA_MFC_DEVICE_CIS_MANF_CARD(1, 0x0101, 0x0556, "3CCFEM556.cis"),
887 PCMCIA_MFC_DEVICE_CIS_MANF_CARD(1, 0x0175, 0x0000, "DP83903.cis"),
888 PCMCIA_MFC_DEVICE_CIS_MANF_CARD(1, 0x0101, 0x0035, "3CXEM556.cis"),
889 PCMCIA_MFC_DEVICE_CIS_MANF_CARD(1, 0x0101, 0x003d, "3CXEM556.cis"),
Dominik Brodowskia42f0dc2005-09-24 23:12:44 -0700890 PCMCIA_DEVICE_CIS_MANF_CARD(0x0192, 0x0710, "SW_7xx_SER.cis"), /* Sierra Wireless AC710/AC750 GPRS Network Adapter R1 */
Dominik Brodowskif542ff62006-01-10 19:06:33 +0100891 PCMCIA_DEVICE_CIS_MANF_CARD(0x0192, 0xa555, "SW_555_SER.cis"), /* Sierra Aircard 555 CDMA 1xrtt Modem -- pre update */
892 PCMCIA_DEVICE_CIS_MANF_CARD(0x013f, 0xa555, "SW_555_SER.cis"), /* Sierra Aircard 555 CDMA 1xrtt Modem -- post update */
Dominik Brodowski325aa292005-06-27 16:28:18 -0700893 PCMCIA_DEVICE_CIS_PROD_ID12("MultiTech", "PCMCIA 56K DataFax", 0x842047ee, 0xc2efcf03, "MT5634ZLX.cis"),
894 PCMCIA_DEVICE_CIS_PROD_ID12("ADVANTECH", "COMpad-32/85B-4", 0x96913a85, 0xcec8f102, "COMpad4.cis"),
895 PCMCIA_DEVICE_CIS_PROD_ID123("ADVANTECH", "COMpad-32/85", "1.0", 0x96913a85, 0x8fbe92ae, 0x0877b627, "COMpad2.cis"),
896 PCMCIA_DEVICE_CIS_PROD_ID2("RS-COM 2P", 0xad20b156, "RS-COM-2P.cis"),
Dominik Brodowskifec21882006-04-26 19:57:32 +0200897 PCMCIA_DEVICE_CIS_MANF_CARD(0x0013, 0x0000, "GLOBETROTTER.cis"),
Dominik Brodowski325aa292005-06-27 16:28:18 -0700898 /* too generic */
899 /* PCMCIA_MFC_DEVICE_MANF_CARD(0, 0x0160, 0x0002), */
900 /* PCMCIA_MFC_DEVICE_MANF_CARD(1, 0x0160, 0x0002), */
901 PCMCIA_DEVICE_FUNC_ID(2),
902 PCMCIA_DEVICE_NULL,
903};
904MODULE_DEVICE_TABLE(pcmcia, serial_ids);
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906static struct pcmcia_driver serial_cs_driver = {
907 .owner = THIS_MODULE,
908 .drv = {
909 .name = "serial_cs",
910 },
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100911 .probe = serial_probe,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100912 .remove = serial_detach,
Dominik Brodowski325aa292005-06-27 16:28:18 -0700913 .id_table = serial_ids,
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100914 .suspend = serial_suspend,
915 .resume = serial_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916};
917
918static int __init init_serial_cs(void)
919{
920 return pcmcia_register_driver(&serial_cs_driver);
921}
922
923static void __exit exit_serial_cs(void)
924{
925 pcmcia_unregister_driver(&serial_cs_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
927
928module_init(init_serial_cs);
929module_exit(exit_serial_cs);
930
931MODULE_LICENSE("GPL");