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 int rc = device_create_file(&card->dev,&dev_attr_name);
170 rc = device_create_file(&card->dev,&dev_attr_card_id);
171 if (rc) goto err_name;
176 device_remove_file(&card->dev,&dev_attr_name);
181 * pnp_add_card - adds a PnP card to the PnP Layer
182 * @card: pointer to the card to add
185 int pnp_add_card(struct pnp_card * card)
188 struct list_head * pos, * temp;
189 if (!card || !card->protocol)
192 sprintf(card->dev.bus_id, "%02x:%02x", card->protocol->number, card->number);
193 card->dev.parent = &card->protocol->dev;
194 card->dev.bus = NULL;
195 card->dev.release = &pnp_release_card;
196 error = device_register(&card->dev);
199 pnp_interface_attach_card(card);
200 spin_lock(&pnp_lock);
201 list_add_tail(&card->global_list, &pnp_cards);
202 list_add_tail(&card->protocol_list, &card->protocol->cards);
203 spin_unlock(&pnp_lock);
205 /* we wait until now to add devices in order to ensure the drivers
206 * will be able to use all of the related devices on the card
207 * without waiting any unresonable length of time */
208 list_for_each(pos,&card->devices){
209 struct pnp_dev *dev = card_to_pnp_dev(pos);
210 __pnp_add_device(dev);
213 /* match with card drivers */
214 list_for_each_safe(pos,temp,&pnp_card_drivers){
215 struct pnp_card_driver * drv = list_entry(pos, struct pnp_card_driver, global_list);
216 card_probe(card,drv);
219 pnp_err("sysfs failure, card '%s' will be unavailable", card->dev.bus_id);
224 * pnp_remove_card - removes a PnP card from the PnP Layer
225 * @card: pointer to the card to remove
228 void pnp_remove_card(struct pnp_card * card)
230 struct list_head *pos, *temp;
233 device_unregister(&card->dev);
234 spin_lock(&pnp_lock);
235 list_del(&card->global_list);
236 list_del(&card->protocol_list);
237 spin_unlock(&pnp_lock);
238 list_for_each_safe(pos,temp,&card->devices){
239 struct pnp_dev *dev = card_to_pnp_dev(pos);
240 pnp_remove_card_device(dev);
245 * pnp_add_card_device - adds a device to the specified card
246 * @card: pointer to the card to add to
247 * @dev: pointer to the device to add
250 int pnp_add_card_device(struct pnp_card * card, struct pnp_dev * dev)
252 if (!card || !dev || !dev->protocol)
254 dev->dev.parent = &card->dev;
255 dev->card_link = NULL;
256 snprintf(dev->dev.bus_id, BUS_ID_SIZE, "%02x:%02x.%02x", dev->protocol->number,
257 card->number,dev->number);
258 spin_lock(&pnp_lock);
260 list_add_tail(&dev->card_list, &card->devices);
261 spin_unlock(&pnp_lock);
266 * pnp_remove_card_device- removes a device from the specified card
267 * @dev: pointer to the device to remove
270 void pnp_remove_card_device(struct pnp_dev * dev)
272 spin_lock(&pnp_lock);
274 list_del(&dev->card_list);
275 spin_unlock(&pnp_lock);
276 __pnp_remove_device(dev);
280 * pnp_request_card_device - Searches for a PnP device under the specified card
281 * @clink: pointer to the card link, cannot be NULL
282 * @id: pointer to a PnP ID structure that explains the rules for finding the device
283 * @from: Starting place to search from. If NULL it will start from the begining.
286 struct pnp_dev * pnp_request_card_device(struct pnp_card_link *clink, const char * id, struct pnp_dev * from)
288 struct list_head * pos;
289 struct pnp_dev * dev;
290 struct pnp_card_driver * drv;
291 struct pnp_card * card;
297 pos = card->devices.next;
299 if (from->card != card)
301 pos = from->card_list.next;
303 while (pos != &card->devices) {
304 dev = card_to_pnp_dev(pos);
305 if ((!dev->card_link) && compare_pnp_id(dev->id,id))
314 down_write(&dev->dev.bus->subsys.rwsem);
315 dev->card_link = clink;
316 dev->dev.driver = &drv->link.driver;
317 if (pnp_bus_type.probe(&dev->dev))
319 if (device_bind_driver(&dev->dev))
322 up_write(&dev->dev.bus->subsys.rwsem);
327 dev->dev.driver = NULL;
328 dev->card_link = NULL;
329 up_write(&dev->dev.bus->subsys.rwsem);
334 * pnp_release_card_device - call this when the driver no longer needs the device
335 * @dev: pointer to the PnP device stucture
338 void pnp_release_card_device(struct pnp_dev * dev)
340 struct pnp_card_driver * drv = dev->card_link->driver;
343 down_write(&dev->dev.bus->subsys.rwsem);
344 drv->link.remove = &card_remove;
345 device_release_driver(&dev->dev);
346 drv->link.remove = &card_remove_first;
347 up_write(&dev->dev.bus->subsys.rwsem);
351 * suspend/resume callbacks
353 static int card_suspend(struct pnp_dev *dev, pm_message_t state)
355 struct pnp_card_link *link = dev->card_link;
356 if (link->pm_state.event == state.event)
358 link->pm_state = state;
359 return link->driver->suspend(link, state);
362 static int card_resume(struct pnp_dev *dev)
364 struct pnp_card_link *link = dev->card_link;
365 if (link->pm_state.event == PM_EVENT_ON)
367 link->pm_state = PMSG_ON;
368 link->driver->resume(link);
373 * pnp_register_card_driver - registers a PnP card driver with the PnP Layer
374 * @drv: pointer to the driver to register
377 int pnp_register_card_driver(struct pnp_card_driver * drv)
380 struct list_head *pos, *temp;
382 drv->link.name = drv->name;
383 drv->link.id_table = NULL; /* this will disable auto matching */
384 drv->link.flags = drv->flags;
385 drv->link.probe = NULL;
386 drv->link.remove = &card_remove_first;
387 drv->link.suspend = drv->suspend ? card_suspend : NULL;
388 drv->link.resume = drv->resume ? card_resume : NULL;
390 error = pnp_register_driver(&drv->link);
394 spin_lock(&pnp_lock);
395 list_add_tail(&drv->global_list, &pnp_card_drivers);
396 spin_unlock(&pnp_lock);
398 list_for_each_safe(pos,temp,&pnp_cards){
399 struct pnp_card *card = list_entry(pos, struct pnp_card, global_list);
400 card_probe(card,drv);
406 * pnp_unregister_card_driver - unregisters a PnP card driver from the PnP Layer
407 * @drv: pointer to the driver to unregister
410 void pnp_unregister_card_driver(struct pnp_card_driver * drv)
412 spin_lock(&pnp_lock);
413 list_del(&drv->global_list);
414 spin_unlock(&pnp_lock);
415 pnp_unregister_driver(&drv->link);
419 EXPORT_SYMBOL(pnp_add_card);
420 EXPORT_SYMBOL(pnp_remove_card);
421 EXPORT_SYMBOL(pnp_add_card_device);
422 EXPORT_SYMBOL(pnp_remove_card_device);
423 EXPORT_SYMBOL(pnp_add_card_id);
425 EXPORT_SYMBOL(pnp_request_card_device);
426 EXPORT_SYMBOL(pnp_release_card_device);
427 EXPORT_SYMBOL(pnp_register_card_driver);
428 EXPORT_SYMBOL(pnp_unregister_card_driver);