forked from Minki/linux
c813b4e16e
* git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6: (46 commits) UIO: Fix mapping of logical and virtual memory UIO: add automata sercos3 pci card support UIO: Change driver name of uio_pdrv UIO: Add alignment warnings for uio-mem Driver core: add bus_sort_breadthfirst() function NET: convert the phy_device file to use bus_find_device_by_name kobject: Cleanup kobject_rename and !CONFIG_SYSFS kobject: Fix kobject_rename and !CONFIG_SYSFS sysfs: Make dir and name args to sysfs_notify() const platform: add new device registration helper sysfs: use ilookup5() instead of ilookup5_nowait() PNP: create device attributes via default device attributes Driver core: make bus_find_device_by_name() more robust usb: turn dev_warn+WARN_ON combos into dev_WARN debug: use dev_WARN() rather than WARN_ON() in device_pm_add() debug: Introduce a dev_WARN() function sysfs: fix deadlock device model: Do a quickcheck for driver binding before doing an expensive check Driver core: Fix cleanup in device_create_vargs(). Driver core: Clarify device cleanup. ...
217 lines
4.5 KiB
C
217 lines
4.5 KiB
C
/*
|
|
* core.c - contains all core device and protocol registration functions
|
|
*
|
|
* Copyright 2002 Adam Belay <ambx1@neo.rr.com>
|
|
*/
|
|
|
|
#include <linux/pnp.h>
|
|
#include <linux/types.h>
|
|
#include <linux/list.h>
|
|
#include <linux/device.h>
|
|
#include <linux/module.h>
|
|
#include <linux/init.h>
|
|
#include <linux/string.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/dma-mapping.h>
|
|
|
|
#include "base.h"
|
|
|
|
static LIST_HEAD(pnp_protocols);
|
|
LIST_HEAD(pnp_global);
|
|
DEFINE_SPINLOCK(pnp_lock);
|
|
|
|
/*
|
|
* ACPI or PNPBIOS should tell us about all platform devices, so we can
|
|
* skip some blind probes. ISAPNP typically enumerates only plug-in ISA
|
|
* devices, not built-in things like COM ports.
|
|
*/
|
|
int pnp_platform_devices;
|
|
EXPORT_SYMBOL(pnp_platform_devices);
|
|
|
|
void *pnp_alloc(long size)
|
|
{
|
|
void *result;
|
|
|
|
result = kzalloc(size, GFP_KERNEL);
|
|
if (!result) {
|
|
printk(KERN_ERR "pnp: Out of Memory\n");
|
|
return NULL;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* pnp_protocol_register - adds a pnp protocol to the pnp layer
|
|
* @protocol: pointer to the corresponding pnp_protocol structure
|
|
*
|
|
* Ex protocols: ISAPNP, PNPBIOS, etc
|
|
*/
|
|
int pnp_register_protocol(struct pnp_protocol *protocol)
|
|
{
|
|
int nodenum;
|
|
struct list_head *pos;
|
|
|
|
INIT_LIST_HEAD(&protocol->devices);
|
|
INIT_LIST_HEAD(&protocol->cards);
|
|
nodenum = 0;
|
|
spin_lock(&pnp_lock);
|
|
|
|
/* assign the lowest unused number */
|
|
list_for_each(pos, &pnp_protocols) {
|
|
struct pnp_protocol *cur = to_pnp_protocol(pos);
|
|
if (cur->number == nodenum) {
|
|
pos = &pnp_protocols;
|
|
nodenum++;
|
|
}
|
|
}
|
|
|
|
list_add_tail(&protocol->protocol_list, &pnp_protocols);
|
|
spin_unlock(&pnp_lock);
|
|
|
|
protocol->number = nodenum;
|
|
sprintf(protocol->dev.bus_id, "pnp%d", nodenum);
|
|
return device_register(&protocol->dev);
|
|
}
|
|
|
|
/**
|
|
* pnp_protocol_unregister - removes a pnp protocol from the pnp layer
|
|
* @protocol: pointer to the corresponding pnp_protocol structure
|
|
*/
|
|
void pnp_unregister_protocol(struct pnp_protocol *protocol)
|
|
{
|
|
spin_lock(&pnp_lock);
|
|
list_del(&protocol->protocol_list);
|
|
spin_unlock(&pnp_lock);
|
|
device_unregister(&protocol->dev);
|
|
}
|
|
|
|
static void pnp_free_ids(struct pnp_dev *dev)
|
|
{
|
|
struct pnp_id *id;
|
|
struct pnp_id *next;
|
|
|
|
id = dev->id;
|
|
while (id) {
|
|
next = id->next;
|
|
kfree(id);
|
|
id = next;
|
|
}
|
|
}
|
|
|
|
void pnp_free_resource(struct pnp_resource *pnp_res)
|
|
{
|
|
list_del(&pnp_res->list);
|
|
kfree(pnp_res);
|
|
}
|
|
|
|
void pnp_free_resources(struct pnp_dev *dev)
|
|
{
|
|
struct pnp_resource *pnp_res, *tmp;
|
|
|
|
list_for_each_entry_safe(pnp_res, tmp, &dev->resources, list) {
|
|
pnp_free_resource(pnp_res);
|
|
}
|
|
}
|
|
|
|
static void pnp_release_device(struct device *dmdev)
|
|
{
|
|
struct pnp_dev *dev = to_pnp_dev(dmdev);
|
|
|
|
pnp_free_ids(dev);
|
|
pnp_free_resources(dev);
|
|
pnp_free_options(dev);
|
|
kfree(dev);
|
|
}
|
|
|
|
struct pnp_dev *pnp_alloc_dev(struct pnp_protocol *protocol, int id, char *pnpid)
|
|
{
|
|
struct pnp_dev *dev;
|
|
struct pnp_id *dev_id;
|
|
|
|
dev = kzalloc(sizeof(struct pnp_dev), GFP_KERNEL);
|
|
if (!dev)
|
|
return NULL;
|
|
|
|
INIT_LIST_HEAD(&dev->resources);
|
|
INIT_LIST_HEAD(&dev->options);
|
|
dev->protocol = protocol;
|
|
dev->number = id;
|
|
dev->dma_mask = DMA_24BIT_MASK;
|
|
|
|
dev->dev.parent = &dev->protocol->dev;
|
|
dev->dev.bus = &pnp_bus_type;
|
|
dev->dev.dma_mask = &dev->dma_mask;
|
|
dev->dev.coherent_dma_mask = dev->dma_mask;
|
|
dev->dev.release = &pnp_release_device;
|
|
|
|
sprintf(dev->dev.bus_id, "%02x:%02x", dev->protocol->number,
|
|
dev->number);
|
|
|
|
dev_id = pnp_add_id(dev, pnpid);
|
|
if (!dev_id) {
|
|
kfree(dev);
|
|
return NULL;
|
|
}
|
|
|
|
return dev;
|
|
}
|
|
|
|
int __pnp_add_device(struct pnp_dev *dev)
|
|
{
|
|
pnp_fixup_device(dev);
|
|
dev->status = PNP_READY;
|
|
spin_lock(&pnp_lock);
|
|
list_add_tail(&dev->global_list, &pnp_global);
|
|
list_add_tail(&dev->protocol_list, &dev->protocol->devices);
|
|
spin_unlock(&pnp_lock);
|
|
return device_register(&dev->dev);
|
|
}
|
|
|
|
/*
|
|
* pnp_add_device - adds a pnp device to the pnp layer
|
|
* @dev: pointer to dev to add
|
|
*
|
|
* adds to driver model, name database, fixups, interface, etc.
|
|
*/
|
|
int pnp_add_device(struct pnp_dev *dev)
|
|
{
|
|
int ret;
|
|
|
|
if (dev->card)
|
|
return -EINVAL;
|
|
|
|
ret = __pnp_add_device(dev);
|
|
if (ret)
|
|
return ret;
|
|
|
|
#ifdef CONFIG_PNP_DEBUG
|
|
{
|
|
struct pnp_id *id;
|
|
|
|
dev_printk(KERN_DEBUG, &dev->dev, "%s device, IDs",
|
|
dev->protocol->name);
|
|
for (id = dev->id; id; id = id->next)
|
|
printk(" %s", id->id);
|
|
printk(" (%s)\n", dev->active ? "active" : "disabled");
|
|
}
|
|
#endif
|
|
return 0;
|
|
}
|
|
|
|
void __pnp_remove_device(struct pnp_dev *dev)
|
|
{
|
|
spin_lock(&pnp_lock);
|
|
list_del(&dev->global_list);
|
|
list_del(&dev->protocol_list);
|
|
spin_unlock(&pnp_lock);
|
|
device_unregister(&dev->dev);
|
|
}
|
|
|
|
static int __init pnp_init(void)
|
|
{
|
|
return bus_register(&pnp_bus_type);
|
|
}
|
|
|
|
subsys_initcall(pnp_init);
|