vserver 1.9.5.x5
[linux-2.6.git] / drivers / pci / pci-driver.c
1 /*
2  * drivers/pci/pci-driver.c
3  *
4  */
5
6 #include <linux/pci.h>
7 #include <linux/module.h>
8 #include <linux/init.h>
9 #include <linux/device.h>
10 #include <linux/pci-dynids.h>
11 #include "pci.h"
12
13 /*
14  *  Registration of PCI drivers and handling of hot-pluggable devices.
15  */
16
17 /*
18  * Dynamic device IDs are disabled for !CONFIG_HOTPLUG
19  */
20
21 #ifdef CONFIG_HOTPLUG
22 /**
23  * pci_device_probe_dynamic()
24  *
25  * Walk the dynamic ID list looking for a match.
26  * returns 0 and sets pci_dev->driver when drv claims pci_dev, else error.
27  */
28 static int
29 pci_device_probe_dynamic(struct pci_driver *drv, struct pci_dev *pci_dev)
30 {
31         int error = -ENODEV;
32         struct list_head *pos;
33         struct dynid *dynid;
34
35         spin_lock(&drv->dynids.lock);
36         list_for_each(pos, &drv->dynids.list) {
37                 dynid = list_entry(pos, struct dynid, node);
38                 if (pci_match_one_device(&dynid->id, pci_dev)) {
39                         spin_unlock(&drv->dynids.lock);
40                         error = drv->probe(pci_dev, &dynid->id);
41                         if (error >= 0) {
42                                 pci_dev->driver = drv;
43                                 return 0;
44                         }
45                         return error;
46                 }
47         }
48         spin_unlock(&drv->dynids.lock);
49         return error;
50 }
51
52 static inline void
53 dynid_init(struct dynid *dynid)
54 {
55         memset(dynid, 0, sizeof(*dynid));
56         INIT_LIST_HEAD(&dynid->node);
57 }
58
59 /**
60  * store_new_id
61  *
62  * Adds a new dynamic pci device ID to this driver,
63  * and causes the driver to probe for all devices again.
64  */
65 static inline ssize_t
66 store_new_id(struct device_driver *driver, const char *buf, size_t count)
67 {
68         struct dynid *dynid;
69         struct bus_type * bus;
70         struct pci_driver *pdrv = to_pci_driver(driver);
71         __u32 vendor=PCI_ANY_ID, device=PCI_ANY_ID, subvendor=PCI_ANY_ID,
72                 subdevice=PCI_ANY_ID, class=0, class_mask=0;
73         unsigned long driver_data=0;
74         int fields=0;
75
76         fields = sscanf(buf, "%x %x %x %x %x %x %lux",
77                         &vendor, &device, &subvendor, &subdevice,
78                         &class, &class_mask, &driver_data);
79         if (fields < 0)
80                 return -EINVAL;
81
82         dynid = kmalloc(sizeof(*dynid), GFP_KERNEL);
83         if (!dynid)
84                 return -ENOMEM;
85         dynid_init(dynid);
86
87         dynid->id.vendor = vendor;
88         dynid->id.device = device;
89         dynid->id.subvendor = subvendor;
90         dynid->id.subdevice = subdevice;
91         dynid->id.class = class;
92         dynid->id.class_mask = class_mask;
93         dynid->id.driver_data = pdrv->dynids.use_driver_data ?
94                 driver_data : 0UL;
95
96         spin_lock(&pdrv->dynids.lock);
97         list_add_tail(&pdrv->dynids.list, &dynid->node);
98         spin_unlock(&pdrv->dynids.lock);
99
100         bus = get_bus(pdrv->driver.bus);
101         if (bus) {
102                 if (get_driver(&pdrv->driver)) {
103                         down_write(&bus->subsys.rwsem);
104                         driver_attach(&pdrv->driver);
105                         up_write(&bus->subsys.rwsem);
106                         put_driver(&pdrv->driver);
107                 }
108                 put_bus(bus);
109         }
110
111         return count;
112 }
113
114 static DRIVER_ATTR(new_id, S_IWUSR, NULL, store_new_id);
115 static inline void
116 pci_init_dynids(struct pci_dynids *dynids)
117 {
118         memset(dynids, 0, sizeof(*dynids));
119         spin_lock_init(&dynids->lock);
120         INIT_LIST_HEAD(&dynids->list);
121 }
122
123 static void
124 pci_free_dynids(struct pci_driver *drv)
125 {
126         struct list_head *pos, *n;
127         struct dynid *dynid;
128
129         spin_lock(&drv->dynids.lock);
130         list_for_each_safe(pos, n, &drv->dynids.list) {
131                 dynid = list_entry(pos, struct dynid, node);
132                 list_del(&dynid->node);
133                 kfree(dynid);
134         }
135         spin_unlock(&drv->dynids.lock);
136 }
137
138 static int
139 pci_create_newid_file(struct pci_driver *drv)
140 {
141         int error = 0;
142         if (drv->probe != NULL)
143                 error = sysfs_create_file(&drv->driver.kobj,
144                                           &driver_attr_new_id.attr);
145         return error;
146 }
147
148 static int
149 pci_bus_match_dynids(const struct pci_dev *pci_dev, struct pci_driver *pci_drv)
150 {
151         struct list_head *pos;
152         struct dynid *dynid;
153
154         spin_lock(&pci_drv->dynids.lock);
155         list_for_each(pos, &pci_drv->dynids.list) {
156                 dynid = list_entry(pos, struct dynid, node);
157                 if (pci_match_one_device(&dynid->id, pci_dev)) {
158                         spin_unlock(&pci_drv->dynids.lock);
159                         return 1;
160                 }
161         }
162         spin_unlock(&pci_drv->dynids.lock);
163         return 0;
164 }
165
166 #else /* !CONFIG_HOTPLUG */
167 static inline int pci_device_probe_dynamic(struct pci_driver *drv, struct pci_dev *pci_dev)
168 {
169         return -ENODEV;
170 }
171 static inline void dynid_init(struct dynid *dynid) {}
172 static inline void pci_init_dynids(struct pci_dynids *dynids) {}
173 static inline void pci_free_dynids(struct pci_driver *drv) {}
174 static inline int pci_create_newid_file(struct pci_driver *drv)
175 {
176         return 0;
177 }
178 static inline int pci_bus_match_dynids(const struct pci_dev *pci_dev, struct pci_driver *pci_drv)
179 {
180         return 0;
181 }
182 #endif
183
184 /**
185  * pci_match_device - Tell if a PCI device structure has a matching
186  *                    PCI device id structure
187  * @ids: array of PCI device id structures to search in
188  * @dev: the PCI device structure to match against
189  * 
190  * Used by a driver to check whether a PCI device present in the
191  * system is in its list of supported devices.Returns the matching
192  * pci_device_id structure or %NULL if there is no match.
193  */
194 const struct pci_device_id *
195 pci_match_device(const struct pci_device_id *ids, const struct pci_dev *dev)
196 {
197         while (ids->vendor || ids->subvendor || ids->class_mask) {
198                 if (pci_match_one_device(ids, dev))
199                         return ids;
200                 ids++;
201         }
202         return NULL;
203 }
204
205 /**
206  * pci_device_probe_static()
207  * 
208  * returns 0 and sets pci_dev->driver when drv claims pci_dev, else error.
209  */
210 static int
211 pci_device_probe_static(struct pci_driver *drv, struct pci_dev *pci_dev)
212 {                  
213         int error = -ENODEV;
214         const struct pci_device_id *id;
215
216         if (!drv->id_table)
217                 return error;
218         id = pci_match_device(drv->id_table, pci_dev);
219         if (id)
220                 error = drv->probe(pci_dev, id);
221         if (error >= 0) {
222                 pci_dev->driver = drv;
223                 error = 0;
224         }
225         return error;
226 }
227
228 /**
229  * __pci_device_probe()
230  * 
231  * returns 0  on success, else error.
232  * side-effect: pci_dev->driver is set to drv when drv claims pci_dev.
233  */
234 static int
235 __pci_device_probe(struct pci_driver *drv, struct pci_dev *pci_dev)
236 {                  
237         int error = 0;
238
239         if (!pci_dev->driver && drv->probe) {
240                 error = pci_device_probe_static(drv, pci_dev);
241                 if (error == -ENODEV)
242                         error = pci_device_probe_dynamic(drv, pci_dev);
243         }
244         return error;
245 }
246
247 static int pci_device_probe(struct device * dev)
248 {
249         int error = 0;
250         struct pci_driver *drv;
251         struct pci_dev *pci_dev;
252
253         drv = to_pci_driver(dev->driver);
254         pci_dev = to_pci_dev(dev);
255         pci_dev_get(pci_dev);
256         error = __pci_device_probe(drv, pci_dev);
257         if (error)
258                 pci_dev_put(pci_dev);
259
260         return error;
261 }
262
263 static int pci_device_remove(struct device * dev)
264 {
265         struct pci_dev * pci_dev = to_pci_dev(dev);
266         struct pci_driver * drv = pci_dev->driver;
267
268         if (drv) {
269                 if (drv->remove)
270                         drv->remove(pci_dev);
271                 pci_dev->driver = NULL;
272         }
273
274         /*
275          * We would love to complain here if pci_dev->is_enabled is set, that
276          * the driver should have called pci_disable_device(), but the
277          * unfortunate fact is there are too many odd BIOS and bridge setups
278          * that don't like drivers doing that all of the time.  
279          * Oh well, we can dream of sane hardware when we sleep, no matter how
280          * horrible the crap we have to deal with is when we are awake...
281          */
282
283         pci_dev_put(pci_dev);
284         return 0;
285 }
286
287 static int pci_device_suspend(struct device * dev, pm_message_t state)
288 {
289         struct pci_dev * pci_dev = to_pci_dev(dev);
290         struct pci_driver * drv = pci_dev->driver;
291         int i = 0;
292
293         if (drv && drv->suspend)
294                 i = drv->suspend(pci_dev, state);
295         else
296                 pci_save_state(pci_dev);
297         return i;
298 }
299
300
301 /* 
302  * Default resume method for devices that have no driver provided resume,
303  * or not even a driver at all.
304  */
305 static void pci_default_resume(struct pci_dev *pci_dev)
306 {
307         /* restore the PCI config space */
308         pci_restore_state(pci_dev);
309         /* if the device was enabled before suspend, reenable */
310         if (pci_dev->is_enabled)
311                 pci_enable_device(pci_dev);
312         /* if the device was busmaster before the suspend, make it busmaster again */
313         if (pci_dev->is_busmaster)
314                 pci_set_master(pci_dev);
315 }
316
317 static int pci_device_resume(struct device * dev)
318 {
319         struct pci_dev * pci_dev = to_pci_dev(dev);
320         struct pci_driver * drv = pci_dev->driver;
321
322         if (drv && drv->resume)
323                 drv->resume(pci_dev);
324         else
325                 pci_default_resume(pci_dev);
326         return 0;
327 }
328
329
330 #define kobj_to_pci_driver(obj) container_of(obj, struct device_driver, kobj)
331 #define attr_to_driver_attribute(obj) container_of(obj, struct driver_attribute, attr)
332
333 static ssize_t
334 pci_driver_attr_show(struct kobject * kobj, struct attribute *attr, char *buf)
335 {
336         struct device_driver *driver = kobj_to_pci_driver(kobj);
337         struct driver_attribute *dattr = attr_to_driver_attribute(attr);
338         ssize_t ret = 0;
339
340         if (get_driver(driver)) {
341                 if (dattr->show)
342                         ret = dattr->show(driver, buf);
343                 put_driver(driver);
344         }
345         return ret;
346 }
347
348 static ssize_t
349 pci_driver_attr_store(struct kobject * kobj, struct attribute *attr,
350                       const char *buf, size_t count)
351 {
352         struct device_driver *driver = kobj_to_pci_driver(kobj);
353         struct driver_attribute *dattr = attr_to_driver_attribute(attr);
354         ssize_t ret = 0;
355
356         if (get_driver(driver)) {
357                 if (dattr->store)
358                         ret = dattr->store(driver, buf, count);
359                 put_driver(driver);
360         }
361         return ret;
362 }
363
364 static struct sysfs_ops pci_driver_sysfs_ops = {
365         .show = pci_driver_attr_show,
366         .store = pci_driver_attr_store,
367 };
368 static struct kobj_type pci_driver_kobj_type = {
369         .sysfs_ops = &pci_driver_sysfs_ops,
370 };
371
372 static int
373 pci_populate_driver_dir(struct pci_driver *drv)
374 {
375         return pci_create_newid_file(drv);
376 }
377
378 /**
379  * pci_register_driver - register a new pci driver
380  * @drv: the driver structure to register
381  * 
382  * Adds the driver structure to the list of registered drivers.
383  * Returns a negative value on error, otherwise 0. 
384  * If no error occured, the driver remains registered even if 
385  * no device was claimed during registration.
386  */
387 int pci_register_driver(struct pci_driver *drv)
388 {
389         int error;
390
391         /* initialize common driver fields */
392         drv->driver.name = drv->name;
393         drv->driver.bus = &pci_bus_type;
394         drv->driver.probe = pci_device_probe;
395         drv->driver.remove = pci_device_remove;
396         drv->driver.owner = drv->owner;
397         drv->driver.kobj.ktype = &pci_driver_kobj_type;
398         pci_init_dynids(&drv->dynids);
399
400         /* register with core */
401         error = driver_register(&drv->driver);
402
403         if (!error)
404                 pci_populate_driver_dir(drv);
405
406         return error;
407 }
408
409 /**
410  * pci_unregister_driver - unregister a pci driver
411  * @drv: the driver structure to unregister
412  * 
413  * Deletes the driver structure from the list of registered PCI drivers,
414  * gives it a chance to clean up by calling its remove() function for
415  * each device it was responsible for, and marks those devices as
416  * driverless.
417  */
418
419 void
420 pci_unregister_driver(struct pci_driver *drv)
421 {
422         driver_unregister(&drv->driver);
423         pci_free_dynids(drv);
424 }
425
426 static struct pci_driver pci_compat_driver = {
427         .name = "compat"
428 };
429
430 /**
431  * pci_dev_driver - get the pci_driver of a device
432  * @dev: the device to query
433  *
434  * Returns the appropriate pci_driver structure or %NULL if there is no 
435  * registered driver for the device.
436  */
437 struct pci_driver *
438 pci_dev_driver(const struct pci_dev *dev)
439 {
440         if (dev->driver)
441                 return dev->driver;
442         else {
443                 int i;
444                 for(i=0; i<=PCI_ROM_RESOURCE; i++)
445                         if (dev->resource[i].flags & IORESOURCE_BUSY)
446                                 return &pci_compat_driver;
447         }
448         return NULL;
449 }
450
451 /**
452  * pci_bus_match - Tell if a PCI device structure has a matching PCI device id structure
453  * @ids: array of PCI device id structures to search in
454  * @dev: the PCI device structure to match against
455  * 
456  * Used by a driver to check whether a PCI device present in the
457  * system is in its list of supported devices.Returns the matching
458  * pci_device_id structure or %NULL if there is no match.
459  */
460 static int pci_bus_match(struct device * dev, struct device_driver * drv) 
461 {
462         const struct pci_dev * pci_dev = to_pci_dev(dev);
463         struct pci_driver * pci_drv = to_pci_driver(drv);
464         const struct pci_device_id * ids = pci_drv->id_table;
465         const struct pci_device_id *found_id;
466
467         if (!ids)
468                 return 0;
469
470         found_id = pci_match_device(ids, pci_dev);
471         if (found_id)
472                 return 1;
473
474         return pci_bus_match_dynids(pci_dev, pci_drv);
475 }
476
477 /**
478  * pci_dev_get - increments the reference count of the pci device structure
479  * @dev: the device being referenced
480  *
481  * Each live reference to a device should be refcounted.
482  *
483  * Drivers for PCI devices should normally record such references in
484  * their probe() methods, when they bind to a device, and release
485  * them by calling pci_dev_put(), in their disconnect() methods.
486  *
487  * A pointer to the device with the incremented reference counter is returned.
488  */
489 struct pci_dev *pci_dev_get(struct pci_dev *dev)
490 {
491         if (dev)
492                 get_device(&dev->dev);
493         return dev;
494 }
495
496 /**
497  * pci_dev_put - release a use of the pci device structure
498  * @dev: device that's been disconnected
499  *
500  * Must be called when a user of a device is finished with it.  When the last
501  * user of the device calls this function, the memory of the device is freed.
502  */
503 void pci_dev_put(struct pci_dev *dev)
504 {
505         if (dev)
506                 put_device(&dev->dev);
507 }
508
509 #ifndef CONFIG_HOTPLUG
510 int pci_hotplug (struct device *dev, char **envp, int num_envp,
511                  char *buffer, int buffer_size)
512 {
513         return -ENODEV;
514 }
515 #endif
516
517 struct bus_type pci_bus_type = {
518         .name           = "pci",
519         .match          = pci_bus_match,
520         .hotplug        = pci_hotplug,
521         .suspend        = pci_device_suspend,
522         .resume         = pci_device_resume,
523         .dev_attrs      = pci_dev_attrs,
524 };
525
526 static int __init pci_driver_init(void)
527 {
528         return bus_register(&pci_bus_type);
529 }
530
531 postcore_initcall(pci_driver_init);
532
533 EXPORT_SYMBOL(pci_match_device);
534 EXPORT_SYMBOL(pci_register_driver);
535 EXPORT_SYMBOL(pci_unregister_driver);
536 EXPORT_SYMBOL(pci_dev_driver);
537 EXPORT_SYMBOL(pci_bus_type);
538 EXPORT_SYMBOL(pci_dev_get);
539 EXPORT_SYMBOL(pci_dev_put);