2 * card.c - contains functions for managing groups of PnP devices
4 * Copyright 2002 Adam Belay <ambx1@neo.rr.com>
8 #include <linux/module.h>
9 #include <linux/slab.h>
10 #include <linux/pnp.h>
14 static LIST_HEAD(pnp_card_drivers
);
17 static const struct pnp_card_device_id
* match_card(struct pnp_card_driver
* drv
, struct pnp_card
* card
)
19 const struct pnp_card_device_id
* drv_id
= drv
->id_table
;
21 if (compare_pnp_id(card
->id
,drv_id
->id
)) {
26 if (i
== PNP_MAX_DEVICES
|| ! *drv_id
->devs
[i
].id
)
29 card_for_each_dev(card
, dev
) {
30 if (compare_pnp_id(dev
->id
, drv_id
->devs
[i
].id
)) {
45 static void card_remove(struct pnp_dev
* dev
)
47 dev
->card_link
= NULL
;
50 static void card_remove_first(struct pnp_dev
* dev
)
52 struct pnp_card_driver
* drv
= to_pnp_card_driver(dev
->driver
);
53 if (!dev
->card
|| !drv
)
56 drv
->remove(dev
->card_link
);
57 drv
->link
.remove
= &card_remove
;
58 kfree(dev
->card_link
);
62 static int card_probe(struct pnp_card
*card
, struct pnp_card_driver
*drv
)
64 const struct pnp_card_device_id
*id
;
65 struct pnp_card_link
*clink
;
70 id
= match_card(drv
,card
);
74 clink
= pnp_alloc(sizeof(*clink
));
79 clink
->pm_state
= PMSG_ON
;
81 if (drv
->probe(clink
, id
) >= 0)
85 card_for_each_dev(card
, dev
) {
86 if (dev
->card_link
== clink
)
87 pnp_release_card_device(dev
);
94 * pnp_add_card_id - adds an EISA id to the specified card
95 * @id: pointer to a pnp_id structure
96 * @card: pointer to the desired card
100 int pnp_add_card_id(struct pnp_id
*id
, struct pnp_card
* card
)
109 while (ptr
&& ptr
->next
)
118 static void pnp_free_card_ids(struct pnp_card
* card
)
132 static void pnp_release_card(struct device
*dmdev
)
134 struct pnp_card
* card
= to_pnp_card(dmdev
);
135 pnp_free_card_ids(card
);
140 static ssize_t
pnp_show_card_name(struct device
*dmdev
, struct device_attribute
*attr
, char *buf
)
143 struct pnp_card
*card
= to_pnp_card(dmdev
);
144 str
+= sprintf(str
,"%s\n", card
->name
);
148 static DEVICE_ATTR(name
,S_IRUGO
,pnp_show_card_name
,NULL
);
150 static ssize_t
pnp_show_card_ids(struct device
*dmdev
, struct device_attribute
*attr
, char *buf
)
153 struct pnp_card
*card
= to_pnp_card(dmdev
);
154 struct pnp_id
* pos
= card
->id
;
157 str
+= sprintf(str
,"%s\n", pos
->id
);
163 static DEVICE_ATTR(card_id
,S_IRUGO
,pnp_show_card_ids
,NULL
);
165 static int pnp_interface_attach_card(struct pnp_card
*card
)
167 device_create_file(&card
->dev
,&dev_attr_name
);
168 device_create_file(&card
->dev
,&dev_attr_card_id
);
173 * pnp_add_card - adds a PnP card to the PnP Layer
174 * @card: pointer to the card to add
177 int pnp_add_card(struct pnp_card
* card
)
180 struct list_head
* pos
, * temp
;
181 if (!card
|| !card
->protocol
)
184 sprintf(card
->dev
.bus_id
, "%02x:%02x", card
->protocol
->number
, card
->number
);
185 card
->dev
.parent
= &card
->protocol
->dev
;
186 card
->dev
.bus
= NULL
;
187 card
->dev
.release
= &pnp_release_card
;
188 error
= device_register(&card
->dev
);
191 pnp_interface_attach_card(card
);
192 spin_lock(&pnp_lock
);
193 list_add_tail(&card
->global_list
, &pnp_cards
);
194 list_add_tail(&card
->protocol_list
, &card
->protocol
->cards
);
195 spin_unlock(&pnp_lock
);
197 /* we wait until now to add devices in order to ensure the drivers
198 * will be able to use all of the related devices on the card
199 * without waiting any unresonable length of time */
200 list_for_each(pos
,&card
->devices
){
201 struct pnp_dev
*dev
= card_to_pnp_dev(pos
);
202 __pnp_add_device(dev
);
205 /* match with card drivers */
206 list_for_each_safe(pos
,temp
,&pnp_card_drivers
){
207 struct pnp_card_driver
* drv
= list_entry(pos
, struct pnp_card_driver
, global_list
);
208 card_probe(card
,drv
);
211 pnp_err("sysfs failure, card '%s' will be unavailable", card
->dev
.bus_id
);
216 * pnp_remove_card - removes a PnP card from the PnP Layer
217 * @card: pointer to the card to remove
220 void pnp_remove_card(struct pnp_card
* card
)
222 struct list_head
*pos
, *temp
;
225 device_unregister(&card
->dev
);
226 spin_lock(&pnp_lock
);
227 list_del(&card
->global_list
);
228 list_del(&card
->protocol_list
);
229 spin_unlock(&pnp_lock
);
230 list_for_each_safe(pos
,temp
,&card
->devices
){
231 struct pnp_dev
*dev
= card_to_pnp_dev(pos
);
232 pnp_remove_card_device(dev
);
237 * pnp_add_card_device - adds a device to the specified card
238 * @card: pointer to the card to add to
239 * @dev: pointer to the device to add
242 int pnp_add_card_device(struct pnp_card
* card
, struct pnp_dev
* dev
)
244 if (!card
|| !dev
|| !dev
->protocol
)
246 dev
->dev
.parent
= &card
->dev
;
247 dev
->card_link
= NULL
;
248 snprintf(dev
->dev
.bus_id
, BUS_ID_SIZE
, "%02x:%02x.%02x", dev
->protocol
->number
,
249 card
->number
,dev
->number
);
250 spin_lock(&pnp_lock
);
252 list_add_tail(&dev
->card_list
, &card
->devices
);
253 spin_unlock(&pnp_lock
);
258 * pnp_remove_card_device- removes a device from the specified card
259 * @dev: pointer to the device to remove
262 void pnp_remove_card_device(struct pnp_dev
* dev
)
264 spin_lock(&pnp_lock
);
266 list_del(&dev
->card_list
);
267 spin_unlock(&pnp_lock
);
268 __pnp_remove_device(dev
);
272 * pnp_request_card_device - Searches for a PnP device under the specified card
273 * @clink: pointer to the card link, cannot be NULL
274 * @id: pointer to a PnP ID structure that explains the rules for finding the device
275 * @from: Starting place to search from. If NULL it will start from the begining.
278 struct pnp_dev
* pnp_request_card_device(struct pnp_card_link
*clink
, const char * id
, struct pnp_dev
* from
)
280 struct list_head
* pos
;
281 struct pnp_dev
* dev
;
282 struct pnp_card_driver
* drv
;
283 struct pnp_card
* card
;
289 pos
= card
->devices
.next
;
291 if (from
->card
!= card
)
293 pos
= from
->card_list
.next
;
295 while (pos
!= &card
->devices
) {
296 dev
= card_to_pnp_dev(pos
);
297 if ((!dev
->card_link
) && compare_pnp_id(dev
->id
,id
))
306 down_write(&dev
->dev
.bus
->subsys
.rwsem
);
307 dev
->card_link
= clink
;
308 dev
->dev
.driver
= &drv
->link
.driver
;
309 if (pnp_bus_type
.probe(&dev
->dev
)) {
310 dev
->dev
.driver
= NULL
;
311 dev
->card_link
= NULL
;
312 up_write(&dev
->dev
.bus
->subsys
.rwsem
);
315 device_bind_driver(&dev
->dev
);
316 up_write(&dev
->dev
.bus
->subsys
.rwsem
);
322 * pnp_release_card_device - call this when the driver no longer needs the device
323 * @dev: pointer to the PnP device stucture
326 void pnp_release_card_device(struct pnp_dev
* dev
)
328 struct pnp_card_driver
* drv
= dev
->card_link
->driver
;
331 down_write(&dev
->dev
.bus
->subsys
.rwsem
);
332 drv
->link
.remove
= &card_remove
;
333 device_release_driver(&dev
->dev
);
334 drv
->link
.remove
= &card_remove_first
;
335 up_write(&dev
->dev
.bus
->subsys
.rwsem
);
339 * suspend/resume callbacks
341 static int card_suspend(struct pnp_dev
*dev
, pm_message_t state
)
343 struct pnp_card_link
*link
= dev
->card_link
;
344 if (link
->pm_state
.event
== state
.event
)
346 link
->pm_state
= state
;
347 return link
->driver
->suspend(link
, state
);
350 static int card_resume(struct pnp_dev
*dev
)
352 struct pnp_card_link
*link
= dev
->card_link
;
353 if (link
->pm_state
.event
== PM_EVENT_ON
)
355 link
->pm_state
= PMSG_ON
;
356 link
->driver
->resume(link
);
361 * pnp_register_card_driver - registers a PnP card driver with the PnP Layer
362 * @drv: pointer to the driver to register
365 int pnp_register_card_driver(struct pnp_card_driver
* drv
)
368 struct list_head
*pos
, *temp
;
370 drv
->link
.name
= drv
->name
;
371 drv
->link
.id_table
= NULL
; /* this will disable auto matching */
372 drv
->link
.flags
= drv
->flags
;
373 drv
->link
.probe
= NULL
;
374 drv
->link
.remove
= &card_remove_first
;
375 drv
->link
.suspend
= drv
->suspend
? card_suspend
: NULL
;
376 drv
->link
.resume
= drv
->resume
? card_resume
: NULL
;
378 error
= pnp_register_driver(&drv
->link
);
382 spin_lock(&pnp_lock
);
383 list_add_tail(&drv
->global_list
, &pnp_card_drivers
);
384 spin_unlock(&pnp_lock
);
386 list_for_each_safe(pos
,temp
,&pnp_cards
){
387 struct pnp_card
*card
= list_entry(pos
, struct pnp_card
, global_list
);
388 card_probe(card
,drv
);
394 * pnp_unregister_card_driver - unregisters a PnP card driver from the PnP Layer
395 * @drv: pointer to the driver to unregister
398 void pnp_unregister_card_driver(struct pnp_card_driver
* drv
)
400 spin_lock(&pnp_lock
);
401 list_del(&drv
->global_list
);
402 spin_unlock(&pnp_lock
);
403 pnp_unregister_driver(&drv
->link
);
407 EXPORT_SYMBOL(pnp_add_card
);
408 EXPORT_SYMBOL(pnp_remove_card
);
409 EXPORT_SYMBOL(pnp_add_card_device
);
410 EXPORT_SYMBOL(pnp_remove_card_device
);
411 EXPORT_SYMBOL(pnp_add_card_id
);
413 EXPORT_SYMBOL(pnp_request_card_device
);
414 EXPORT_SYMBOL(pnp_release_card_device
);
415 EXPORT_SYMBOL(pnp_register_card_driver
);
416 EXPORT_SYMBOL(pnp_unregister_card_driver
);