Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * core.c - contains all core device and protocol registration functions |
| 3 | * |
| 4 | * Copyright 2002 Adam Belay <ambx1@neo.rr.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <linux/pnp.h> |
| 8 | #include <linux/types.h> |
| 9 | #include <linux/list.h> |
| 10 | #include <linux/device.h> |
| 11 | #include <linux/module.h> |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/string.h> |
| 14 | #include <linux/slab.h> |
| 15 | #include <linux/errno.h> |
David Brownell | 2e17c55 | 2007-05-08 00:25:29 -0700 | [diff] [blame] | 16 | #include <linux/dma-mapping.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
| 18 | #include "base.h" |
| 19 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | static LIST_HEAD(pnp_protocols); |
| 21 | LIST_HEAD(pnp_global); |
| 22 | DEFINE_SPINLOCK(pnp_lock); |
| 23 | |
Bjorn Helgaas | 8f81dd1 | 2007-05-08 00:35:54 -0700 | [diff] [blame] | 24 | /* |
| 25 | * ACPI or PNPBIOS should tell us about all platform devices, so we can |
| 26 | * skip some blind probes. ISAPNP typically enumerates only plug-in ISA |
| 27 | * devices, not built-in things like COM ports. |
| 28 | */ |
| 29 | int pnp_platform_devices; |
| 30 | EXPORT_SYMBOL(pnp_platform_devices); |
| 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | void *pnp_alloc(long size) |
| 33 | { |
| 34 | void *result; |
| 35 | |
Yoann Padioleau | dd00cc4 | 2007-07-19 01:49:03 -0700 | [diff] [blame] | 36 | result = kzalloc(size, GFP_KERNEL); |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 37 | if (!result) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | printk(KERN_ERR "pnp: Out of Memory\n"); |
| 39 | return NULL; |
| 40 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | return result; |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * pnp_protocol_register - adds a pnp protocol to the pnp layer |
| 46 | * @protocol: pointer to the corresponding pnp_protocol structure |
| 47 | * |
| 48 | * Ex protocols: ISAPNP, PNPBIOS, etc |
| 49 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | int pnp_register_protocol(struct pnp_protocol *protocol) |
| 51 | { |
| 52 | int nodenum; |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 53 | struct list_head *pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | INIT_LIST_HEAD(&protocol->devices); |
| 56 | INIT_LIST_HEAD(&protocol->cards); |
| 57 | nodenum = 0; |
| 58 | spin_lock(&pnp_lock); |
| 59 | |
| 60 | /* assign the lowest unused number */ |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 61 | list_for_each(pos, &pnp_protocols) { |
| 62 | struct pnp_protocol *cur = to_pnp_protocol(pos); |
| 63 | if (cur->number == nodenum) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | pos = &pnp_protocols; |
| 65 | nodenum++; |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | list_add_tail(&protocol->protocol_list, &pnp_protocols); |
| 70 | spin_unlock(&pnp_lock); |
| 71 | |
| 72 | protocol->number = nodenum; |
Kay Sievers | c85e37c | 2009-01-06 10:44:38 -0800 | [diff] [blame] | 73 | dev_set_name(&protocol->dev, "pnp%d", nodenum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | return device_register(&protocol->dev); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * pnp_protocol_unregister - removes a pnp protocol from the pnp layer |
| 79 | * @protocol: pointer to the corresponding pnp_protocol structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | */ |
| 81 | void pnp_unregister_protocol(struct pnp_protocol *protocol) |
| 82 | { |
| 83 | spin_lock(&pnp_lock); |
| 84 | list_del(&protocol->protocol_list); |
| 85 | spin_unlock(&pnp_lock); |
| 86 | device_unregister(&protocol->dev); |
| 87 | } |
| 88 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | static void pnp_free_ids(struct pnp_dev *dev) |
| 90 | { |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 91 | struct pnp_id *id; |
| 92 | struct pnp_id *next; |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 93 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | id = dev->id; |
| 95 | while (id) { |
| 96 | next = id->next; |
| 97 | kfree(id); |
| 98 | id = next; |
| 99 | } |
| 100 | } |
| 101 | |
Bjorn Helgaas | aee3ad8 | 2008-06-27 16:56:57 -0600 | [diff] [blame] | 102 | void pnp_free_resource(struct pnp_resource *pnp_res) |
| 103 | { |
| 104 | list_del(&pnp_res->list); |
| 105 | kfree(pnp_res); |
| 106 | } |
| 107 | |
| 108 | void pnp_free_resources(struct pnp_dev *dev) |
| 109 | { |
| 110 | struct pnp_resource *pnp_res, *tmp; |
| 111 | |
| 112 | list_for_each_entry_safe(pnp_res, tmp, &dev->resources, list) { |
| 113 | pnp_free_resource(pnp_res); |
| 114 | } |
| 115 | } |
| 116 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | static void pnp_release_device(struct device *dmdev) |
| 118 | { |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 119 | struct pnp_dev *dev = to_pnp_dev(dmdev); |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | pnp_free_ids(dev); |
Bjorn Helgaas | aee3ad8 | 2008-06-27 16:56:57 -0600 | [diff] [blame] | 122 | pnp_free_resources(dev); |
Bjorn Helgaas | 1f32ca3 | 2008-06-27 16:57:17 -0600 | [diff] [blame] | 123 | pnp_free_options(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | kfree(dev); |
| 125 | } |
| 126 | |
Thomas Renninger | 620e112 | 2010-10-01 10:54:00 +0200 | [diff] [blame] | 127 | struct pnp_dev *pnp_alloc_dev(struct pnp_protocol *protocol, int id, |
| 128 | const char *pnpid) |
Bjorn Helgaas | bda1e4e | 2008-04-28 16:33:54 -0600 | [diff] [blame] | 129 | { |
| 130 | struct pnp_dev *dev; |
| 131 | struct pnp_id *dev_id; |
| 132 | |
| 133 | dev = kzalloc(sizeof(struct pnp_dev), GFP_KERNEL); |
| 134 | if (!dev) |
| 135 | return NULL; |
| 136 | |
Bjorn Helgaas | aee3ad8 | 2008-06-27 16:56:57 -0600 | [diff] [blame] | 137 | INIT_LIST_HEAD(&dev->resources); |
Bjorn Helgaas | 1f32ca3 | 2008-06-27 16:57:17 -0600 | [diff] [blame] | 138 | INIT_LIST_HEAD(&dev->options); |
Bjorn Helgaas | bda1e4e | 2008-04-28 16:33:54 -0600 | [diff] [blame] | 139 | dev->protocol = protocol; |
| 140 | dev->number = id; |
Yang Hongyang | 2f4f27d | 2009-04-06 19:01:18 -0700 | [diff] [blame] | 141 | dev->dma_mask = DMA_BIT_MASK(24); |
Bjorn Helgaas | bda1e4e | 2008-04-28 16:33:54 -0600 | [diff] [blame] | 142 | |
| 143 | dev->dev.parent = &dev->protocol->dev; |
| 144 | dev->dev.bus = &pnp_bus_type; |
| 145 | dev->dev.dma_mask = &dev->dma_mask; |
| 146 | dev->dev.coherent_dma_mask = dev->dma_mask; |
| 147 | dev->dev.release = &pnp_release_device; |
| 148 | |
Kay Sievers | c85e37c | 2009-01-06 10:44:38 -0800 | [diff] [blame] | 149 | dev_set_name(&dev->dev, "%02x:%02x", dev->protocol->number, dev->number); |
Bjorn Helgaas | bda1e4e | 2008-04-28 16:33:54 -0600 | [diff] [blame] | 150 | |
| 151 | dev_id = pnp_add_id(dev, pnpid); |
| 152 | if (!dev_id) { |
| 153 | kfree(dev); |
| 154 | return NULL; |
| 155 | } |
| 156 | |
| 157 | return dev; |
| 158 | } |
| 159 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | int __pnp_add_device(struct pnp_dev *dev) |
| 161 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | pnp_fixup_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | dev->status = PNP_READY; |
| 164 | spin_lock(&pnp_lock); |
| 165 | list_add_tail(&dev->global_list, &pnp_global); |
| 166 | list_add_tail(&dev->protocol_list, &dev->protocol->devices); |
| 167 | spin_unlock(&pnp_lock); |
Alan Stern | b14e033 | 2010-06-29 22:49:24 +0200 | [diff] [blame] | 168 | if (dev->protocol->can_wakeup) |
| 169 | device_set_wakeup_capable(&dev->dev, |
| 170 | dev->protocol->can_wakeup(dev)); |
Drew Moseley | 8a89efd | 2008-09-28 01:31:35 +0200 | [diff] [blame] | 171 | return device_register(&dev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | /* |
| 175 | * pnp_add_device - adds a pnp device to the pnp layer |
| 176 | * @dev: pointer to dev to add |
| 177 | * |
| 178 | * adds to driver model, name database, fixups, interface, etc. |
| 179 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | int pnp_add_device(struct pnp_dev *dev) |
| 181 | { |
Bjorn Helgaas | 348366b | 2007-10-16 23:31:12 -0700 | [diff] [blame] | 182 | int ret; |
Bjorn Helgaas | 2663f60 | 2008-08-19 16:53:36 -0600 | [diff] [blame] | 183 | char buf[128]; |
| 184 | int len = 0; |
| 185 | struct pnp_id *id; |
Bjorn Helgaas | 348366b | 2007-10-16 23:31:12 -0700 | [diff] [blame] | 186 | |
Bjorn Helgaas | b173491 | 2007-08-15 10:32:13 -0600 | [diff] [blame] | 187 | if (dev->card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | return -EINVAL; |
Bjorn Helgaas | 348366b | 2007-10-16 23:31:12 -0700 | [diff] [blame] | 189 | |
Bjorn Helgaas | 348366b | 2007-10-16 23:31:12 -0700 | [diff] [blame] | 190 | ret = __pnp_add_device(dev); |
| 191 | if (ret) |
| 192 | return ret; |
| 193 | |
Bjorn Helgaas | 2663f60 | 2008-08-19 16:53:36 -0600 | [diff] [blame] | 194 | buf[0] = '\0'; |
| 195 | for (id = dev->id; id; id = id->next) |
| 196 | len += scnprintf(buf + len, sizeof(buf) - len, " %s", id->id); |
Bjorn Helgaas | 348366b | 2007-10-16 23:31:12 -0700 | [diff] [blame] | 197 | |
Bjorn Helgaas | c1f3f28 | 2010-09-29 12:24:23 -0600 | [diff] [blame] | 198 | dev_printk(KERN_DEBUG, &dev->dev, "%s device, IDs%s (%s)\n", |
| 199 | dev->protocol->name, buf, |
| 200 | dev->active ? "active" : "disabled"); |
Bjorn Helgaas | 348366b | 2007-10-16 23:31:12 -0700 | [diff] [blame] | 201 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | } |
| 203 | |
| 204 | void __pnp_remove_device(struct pnp_dev *dev) |
| 205 | { |
| 206 | spin_lock(&pnp_lock); |
| 207 | list_del(&dev->global_list); |
| 208 | list_del(&dev->protocol_list); |
| 209 | spin_unlock(&pnp_lock); |
| 210 | device_unregister(&dev->dev); |
| 211 | } |
| 212 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | static int __init pnp_init(void) |
| 214 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | return bus_register(&pnp_bus_type); |
| 216 | } |
| 217 | |
| 218 | subsys_initcall(pnp_init); |
Bjorn Helgaas | 97ef062 | 2008-08-19 16:53:41 -0600 | [diff] [blame] | 219 | |
| 220 | int pnp_debug; |
| 221 | |
| 222 | #if defined(CONFIG_PNP_DEBUG_MESSAGES) |
Thomas Renninger | cdefba0 | 2010-10-25 21:11:16 +0200 | [diff] [blame] | 223 | module_param_named(debug, pnp_debug, int, 0644); |
Bjorn Helgaas | 97ef062 | 2008-08-19 16:53:41 -0600 | [diff] [blame] | 224 | #endif |