3 #include <linux/module.h>
5 #include <linux/init.h>
6 #include <linux/sched.h>
7 #include <linux/kernel.h> /* printk() */
8 #include <linux/fs.h> /* everything... */
9 #include <linux/errno.h> /* error codes */
10 #include <linux/slab.h>
12 #include <pcmcia/version.h>
13 #include <pcmcia/cs_types.h>
14 #include <pcmcia/cs.h>
15 #include <pcmcia/cistpl.h>
16 #include <pcmcia/ds.h>
21 * PCMCIA service support for Quicknet cards
25 static int pc_debug
= PCMCIA_DEBUG
;
26 module_param(pc_debug
, int, 0644);
27 #define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args)
29 #define DEBUG(n, args...)
32 typedef struct ixj_info_t
{
38 static dev_link_t
*ixj_attach(void);
39 static void ixj_detach(dev_link_t
*);
40 static void ixj_config(dev_link_t
* link
);
41 static void ixj_cs_release(dev_link_t
* link
);
42 static int ixj_event(event_t event
, int priority
, event_callback_args_t
* args
);
43 static dev_info_t dev_info
= "ixj_cs";
44 static dev_link_t
*dev_list
= NULL
;
46 static dev_link_t
*ixj_attach(void)
48 client_reg_t client_reg
;
51 DEBUG(0, "ixj_attach()\n");
52 /* Create new ixj device */
53 link
= kmalloc(sizeof(struct dev_link_t
), GFP_KERNEL
);
56 memset(link
, 0, sizeof(struct dev_link_t
));
57 link
->io
.Attributes1
= IO_DATA_PATH_WIDTH_8
;
58 link
->io
.Attributes2
= IO_DATA_PATH_WIDTH_8
;
59 link
->io
.IOAddrLines
= 3;
61 link
->conf
.IntType
= INT_MEMORY_AND_IO
;
62 link
->priv
= kmalloc(sizeof(struct ixj_info_t
), GFP_KERNEL
);
67 memset(link
->priv
, 0, sizeof(struct ixj_info_t
));
68 /* Register with Card Services */
69 link
->next
= dev_list
;
71 client_reg
.dev_info
= &dev_info
;
72 client_reg
.EventMask
=
73 CS_EVENT_CARD_INSERTION
| CS_EVENT_CARD_REMOVAL
|
74 CS_EVENT_RESET_PHYSICAL
| CS_EVENT_CARD_RESET
|
75 CS_EVENT_PM_SUSPEND
| CS_EVENT_PM_RESUME
;
76 client_reg
.event_handler
= &ixj_event
;
77 client_reg
.Version
= 0x0210;
78 client_reg
.event_callback_args
.client_data
= link
;
79 ret
= pcmcia_register_client(&link
->handle
, &client_reg
);
80 if (ret
!= CS_SUCCESS
) {
81 cs_error(link
->handle
, RegisterClient
, ret
);
88 static void ixj_detach(dev_link_t
* link
)
92 DEBUG(0, "ixj_detach(0x%p)\n", link
);
93 for (linkp
= &dev_list
; *linkp
; linkp
= &(*linkp
)->next
)
98 link
->state
&= ~DEV_RELEASE_PENDING
;
99 if (link
->state
& DEV_CONFIG
)
100 ixj_cs_release(link
);
102 ret
= pcmcia_deregister_client(link
->handle
);
103 if (ret
!= CS_SUCCESS
)
104 cs_error(link
->handle
, DeregisterClient
, ret
);
106 /* Unlink device structure, free bits */
112 #define CS_CHECK(fn, ret) \
113 do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
115 static void ixj_get_serial(dev_link_t
* link
, IXJ
* j
)
117 client_handle_t handle
;
121 int last_ret
, last_fn
, i
, place
;
122 handle
= link
->handle
;
123 DEBUG(0, "ixj_get_serial(0x%p)\n", link
);
124 tuple
.TupleData
= (cisdata_t
*) buf
;
125 tuple
.TupleOffset
= 0;
126 tuple
.TupleDataMax
= 80;
127 tuple
.Attributes
= 0;
128 tuple
.DesiredTuple
= CISTPL_VERS_1
;
129 CS_CHECK(GetFirstTuple
, pcmcia_get_first_tuple(handle
, &tuple
));
130 CS_CHECK(GetTupleData
, pcmcia_get_tuple_data(handle
, &tuple
));
132 printk("PCMCIA Version %d.%d\n", str
[0], str
[1]);
135 str
= str
+ strlen(str
) + 1;
137 str
= str
+ strlen(str
) + 1;
139 for (i
= strlen(str
) - 1; i
>= 0; i
--) {
151 j
->serial
+= (str
[i
] - 48) * place
;
159 j
->serial
+= (str
[i
] - 55) * place
;
167 j
->serial
+= (str
[i
] - 87) * place
;
170 place
= place
* 0x10;
172 str
= str
+ strlen(str
) + 1;
173 printk(" version %s\n", str
);
178 static void ixj_config(dev_link_t
* link
)
181 client_handle_t handle
;
187 cistpl_cftable_entry_t
*cfg
= &parse
.cftable_entry
;
188 cistpl_cftable_entry_t dflt
=
192 int last_ret
, last_fn
;
193 handle
= link
->handle
;
195 DEBUG(0, "ixj_config(0x%p)\n", link
);
196 tuple
.TupleData
= (cisdata_t
*) buf
;
197 tuple
.TupleOffset
= 0;
198 tuple
.TupleDataMax
= 255;
199 tuple
.Attributes
= 0;
200 tuple
.DesiredTuple
= CISTPL_CONFIG
;
201 CS_CHECK(GetFirstTuple
, pcmcia_get_first_tuple(handle
, &tuple
));
202 CS_CHECK(GetTupleData
, pcmcia_get_tuple_data(handle
, &tuple
));
203 CS_CHECK(ParseTuple
, pcmcia_parse_tuple(handle
, &tuple
, &parse
));
204 link
->conf
.ConfigBase
= parse
.config
.base
;
205 link
->conf
.Present
= parse
.config
.rmask
[0];
206 link
->state
|= DEV_CONFIG
;
207 CS_CHECK(GetConfigurationInfo
, pcmcia_get_configuration_info(handle
, &conf
));
208 tuple
.DesiredTuple
= CISTPL_CFTABLE_ENTRY
;
209 tuple
.Attributes
= 0;
210 CS_CHECK(GetFirstTuple
, pcmcia_get_first_tuple(handle
, &tuple
));
212 if (pcmcia_get_tuple_data(handle
, &tuple
) != 0 ||
213 pcmcia_parse_tuple(handle
, &tuple
, &parse
) != 0)
215 if ((cfg
->io
.nwin
> 0) || (dflt
.io
.nwin
> 0)) {
216 cistpl_io_t
*io
= (cfg
->io
.nwin
) ? &cfg
->io
: &dflt
.io
;
217 link
->conf
.ConfigIndex
= cfg
->index
;
218 link
->io
.BasePort1
= io
->win
[0].base
;
219 link
->io
.NumPorts1
= io
->win
[0].len
;
221 link
->io
.BasePort2
= io
->win
[1].base
;
222 link
->io
.NumPorts2
= io
->win
[1].len
;
224 if (pcmcia_request_io(link
->handle
, &link
->io
) != 0)
226 /* If we've got this far, we're done */
230 if (cfg
->flags
& CISTPL_CFTABLE_DEFAULT
)
232 CS_CHECK(GetNextTuple
, pcmcia_get_next_tuple(handle
, &tuple
));
235 CS_CHECK(RequestConfiguration
, pcmcia_request_configuration(handle
, &link
->conf
));
238 * Register the card with the core.
240 j
=ixj_pcmcia_probe(link
->io
.BasePort1
,link
->io
.BasePort1
+ 0x10);
243 info
->node
.major
= PHONE_MAJOR
;
244 link
->dev
= &info
->node
;
245 ixj_get_serial(link
, j
);
246 link
->state
&= ~DEV_CONFIG_PENDING
;
249 cs_error(link
->handle
, last_fn
, last_ret
);
250 ixj_cs_release(link
);
253 static void ixj_cs_release(dev_link_t
*link
)
255 ixj_info_t
*info
= link
->priv
;
256 DEBUG(0, "ixj_cs_release(0x%p)\n", link
);
259 pcmcia_release_configuration(link
->handle
);
260 pcmcia_release_io(link
->handle
, &link
->io
);
261 link
->state
&= ~DEV_CONFIG
;
264 static int ixj_event(event_t event
, int priority
, event_callback_args_t
* args
)
266 dev_link_t
*link
= args
->client_data
;
267 DEBUG(1, "ixj_event(0x%06x)\n", event
);
269 case CS_EVENT_CARD_REMOVAL
:
270 link
->state
&= ~DEV_PRESENT
;
271 if (link
->state
& DEV_CONFIG
) {
272 link
->state
|= DEV_RELEASE_PENDING
;
273 ixj_cs_release(link
);
276 case CS_EVENT_CARD_INSERTION
:
277 link
->state
|= DEV_PRESENT
| DEV_CONFIG_PENDING
;
280 case CS_EVENT_PM_SUSPEND
:
281 link
->state
|= DEV_SUSPEND
;
282 /* Fall through... */
283 case CS_EVENT_RESET_PHYSICAL
:
284 if (link
->state
& DEV_CONFIG
)
285 pcmcia_release_configuration(link
->handle
);
287 case CS_EVENT_PM_RESUME
:
288 link
->state
&= ~DEV_SUSPEND
;
289 /* Fall through... */
290 case CS_EVENT_CARD_RESET
:
292 pcmcia_request_configuration(link
->handle
, &link
->conf
);
298 static struct pcmcia_driver ixj_driver
= {
299 .owner
= THIS_MODULE
,
303 .attach
= ixj_attach
,
304 .detach
= ixj_detach
,
307 static int __init
ixj_pcmcia_init(void)
309 return pcmcia_register_driver(&ixj_driver
);
312 static void ixj_pcmcia_exit(void)
314 pcmcia_unregister_driver(&ixj_driver
);
315 BUG_ON(dev_list
!= NULL
);
318 module_init(ixj_pcmcia_init
);
319 module_exit(ixj_pcmcia_exit
);
321 MODULE_LICENSE("GPL");