Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Linux Plug and Play Support |
| 3 | * Copyright by Adam Belay <ambx1@neo.rr.com> |
Bjorn Helgaas | 1f32ca3 | 2008-06-27 16:57:17 -0600 | [diff] [blame] | 4 | * Copyright (C) 2008 Hewlett-Packard Development Company, L.P. |
| 5 | * Bjorn Helgaas <bjorn.helgaas@hp.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef _LINUX_PNP_H |
| 9 | #define _LINUX_PNP_H |
| 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/device.h> |
| 12 | #include <linux/list.h> |
| 13 | #include <linux/errno.h> |
| 14 | #include <linux/mod_devicetable.h> |
| 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #define PNP_NAME_LEN 50 |
| 17 | |
| 18 | struct pnp_protocol; |
| 19 | struct pnp_dev; |
| 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | /* |
| 22 | * Resource Management |
| 23 | */ |
David Miller | ef3d771 | 2008-09-16 15:00:11 -0700 | [diff] [blame] | 24 | #ifdef CONFIG_PNP |
Rene Herman | b563cf5 | 2008-10-15 22:03:58 -0700 | [diff] [blame] | 25 | struct resource *pnp_get_resource(struct pnp_dev *dev, unsigned long type, |
| 26 | unsigned int num); |
David Miller | ef3d771 | 2008-09-16 15:00:11 -0700 | [diff] [blame] | 27 | #else |
Rene Herman | b563cf5 | 2008-10-15 22:03:58 -0700 | [diff] [blame] | 28 | static inline struct resource *pnp_get_resource(struct pnp_dev *dev, |
| 29 | unsigned long type, unsigned int num) |
David Miller | ef3d771 | 2008-09-16 15:00:11 -0700 | [diff] [blame] | 30 | { |
| 31 | return NULL; |
| 32 | } |
| 33 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Bjorn Helgaas | 13575e81 | 2008-04-28 16:34:16 -0600 | [diff] [blame] | 35 | static inline int pnp_resource_valid(struct resource *res) |
| 36 | { |
Bjorn Helgaas | aee3ad8 | 2008-06-27 16:56:57 -0600 | [diff] [blame] | 37 | if (res) |
| 38 | return 1; |
| 39 | return 0; |
| 40 | } |
| 41 | |
| 42 | static inline int pnp_resource_enabled(struct resource *res) |
| 43 | { |
| 44 | if (res && !(res->flags & IORESOURCE_DISABLED)) |
Bjorn Helgaas | 13575e81 | 2008-04-28 16:34:16 -0600 | [diff] [blame] | 45 | return 1; |
| 46 | return 0; |
| 47 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Bjorn Helgaas | 13575e81 | 2008-04-28 16:34:16 -0600 | [diff] [blame] | 49 | static inline resource_size_t pnp_resource_len(struct resource *res) |
| 50 | { |
| 51 | if (res->start == 0 && res->end == 0) |
| 52 | return 0; |
Joe Perches | 28f65c1 | 2011-06-09 09:13:32 -0700 | [diff] [blame] | 53 | return resource_size(res); |
Bjorn Helgaas | 13575e81 | 2008-04-28 16:34:16 -0600 | [diff] [blame] | 54 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Bjorn Helgaas | 13575e81 | 2008-04-28 16:34:16 -0600 | [diff] [blame] | 57 | static inline resource_size_t pnp_port_start(struct pnp_dev *dev, |
| 58 | unsigned int bar) |
| 59 | { |
Bjorn Helgaas | 20bfdbb | 2008-06-27 16:56:56 -0600 | [diff] [blame] | 60 | struct resource *res = pnp_get_resource(dev, IORESOURCE_IO, bar); |
| 61 | |
| 62 | if (pnp_resource_valid(res)) |
| 63 | return res->start; |
| 64 | return 0; |
Bjorn Helgaas | 13575e81 | 2008-04-28 16:34:16 -0600 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | static inline resource_size_t pnp_port_end(struct pnp_dev *dev, |
| 68 | unsigned int bar) |
| 69 | { |
Bjorn Helgaas | 20bfdbb | 2008-06-27 16:56:56 -0600 | [diff] [blame] | 70 | struct resource *res = pnp_get_resource(dev, IORESOURCE_IO, bar); |
| 71 | |
| 72 | if (pnp_resource_valid(res)) |
| 73 | return res->end; |
| 74 | return 0; |
Bjorn Helgaas | 13575e81 | 2008-04-28 16:34:16 -0600 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | static inline unsigned long pnp_port_flags(struct pnp_dev *dev, |
| 78 | unsigned int bar) |
| 79 | { |
Bjorn Helgaas | 20bfdbb | 2008-06-27 16:56:56 -0600 | [diff] [blame] | 80 | struct resource *res = pnp_get_resource(dev, IORESOURCE_IO, bar); |
| 81 | |
| 82 | if (pnp_resource_valid(res)) |
| 83 | return res->flags; |
Bjorn Helgaas | aee3ad8 | 2008-06-27 16:56:57 -0600 | [diff] [blame] | 84 | return IORESOURCE_IO | IORESOURCE_AUTO; |
Bjorn Helgaas | 13575e81 | 2008-04-28 16:34:16 -0600 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | static inline int pnp_port_valid(struct pnp_dev *dev, unsigned int bar) |
| 88 | { |
| 89 | return pnp_resource_valid(pnp_get_resource(dev, IORESOURCE_IO, bar)); |
| 90 | } |
| 91 | |
| 92 | static inline resource_size_t pnp_port_len(struct pnp_dev *dev, |
| 93 | unsigned int bar) |
| 94 | { |
Bjorn Helgaas | 20bfdbb | 2008-06-27 16:56:56 -0600 | [diff] [blame] | 95 | struct resource *res = pnp_get_resource(dev, IORESOURCE_IO, bar); |
| 96 | |
| 97 | if (pnp_resource_valid(res)) |
| 98 | return pnp_resource_len(res); |
| 99 | return 0; |
Bjorn Helgaas | 13575e81 | 2008-04-28 16:34:16 -0600 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | |
| 103 | static inline resource_size_t pnp_mem_start(struct pnp_dev *dev, |
| 104 | unsigned int bar) |
| 105 | { |
Bjorn Helgaas | 20bfdbb | 2008-06-27 16:56:56 -0600 | [diff] [blame] | 106 | struct resource *res = pnp_get_resource(dev, IORESOURCE_MEM, bar); |
| 107 | |
| 108 | if (pnp_resource_valid(res)) |
| 109 | return res->start; |
| 110 | return 0; |
Bjorn Helgaas | 13575e81 | 2008-04-28 16:34:16 -0600 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | static inline resource_size_t pnp_mem_end(struct pnp_dev *dev, |
| 114 | unsigned int bar) |
| 115 | { |
Bjorn Helgaas | 20bfdbb | 2008-06-27 16:56:56 -0600 | [diff] [blame] | 116 | struct resource *res = pnp_get_resource(dev, IORESOURCE_MEM, bar); |
| 117 | |
| 118 | if (pnp_resource_valid(res)) |
| 119 | return res->end; |
| 120 | return 0; |
Bjorn Helgaas | 13575e81 | 2008-04-28 16:34:16 -0600 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | static inline unsigned long pnp_mem_flags(struct pnp_dev *dev, unsigned int bar) |
| 124 | { |
Bjorn Helgaas | 20bfdbb | 2008-06-27 16:56:56 -0600 | [diff] [blame] | 125 | struct resource *res = pnp_get_resource(dev, IORESOURCE_MEM, bar); |
| 126 | |
| 127 | if (pnp_resource_valid(res)) |
| 128 | return res->flags; |
Bjorn Helgaas | aee3ad8 | 2008-06-27 16:56:57 -0600 | [diff] [blame] | 129 | return IORESOURCE_MEM | IORESOURCE_AUTO; |
Bjorn Helgaas | 13575e81 | 2008-04-28 16:34:16 -0600 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | static inline int pnp_mem_valid(struct pnp_dev *dev, unsigned int bar) |
| 133 | { |
| 134 | return pnp_resource_valid(pnp_get_resource(dev, IORESOURCE_MEM, bar)); |
| 135 | } |
| 136 | |
| 137 | static inline resource_size_t pnp_mem_len(struct pnp_dev *dev, |
| 138 | unsigned int bar) |
| 139 | { |
Bjorn Helgaas | 20bfdbb | 2008-06-27 16:56:56 -0600 | [diff] [blame] | 140 | struct resource *res = pnp_get_resource(dev, IORESOURCE_MEM, bar); |
| 141 | |
| 142 | if (pnp_resource_valid(res)) |
| 143 | return pnp_resource_len(res); |
| 144 | return 0; |
Bjorn Helgaas | 13575e81 | 2008-04-28 16:34:16 -0600 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | |
| 148 | static inline resource_size_t pnp_irq(struct pnp_dev *dev, unsigned int bar) |
| 149 | { |
Bjorn Helgaas | 20bfdbb | 2008-06-27 16:56:56 -0600 | [diff] [blame] | 150 | struct resource *res = pnp_get_resource(dev, IORESOURCE_IRQ, bar); |
| 151 | |
| 152 | if (pnp_resource_valid(res)) |
| 153 | return res->start; |
| 154 | return -1; |
Bjorn Helgaas | 13575e81 | 2008-04-28 16:34:16 -0600 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | static inline unsigned long pnp_irq_flags(struct pnp_dev *dev, unsigned int bar) |
| 158 | { |
Bjorn Helgaas | 20bfdbb | 2008-06-27 16:56:56 -0600 | [diff] [blame] | 159 | struct resource *res = pnp_get_resource(dev, IORESOURCE_IRQ, bar); |
| 160 | |
| 161 | if (pnp_resource_valid(res)) |
| 162 | return res->flags; |
Bjorn Helgaas | aee3ad8 | 2008-06-27 16:56:57 -0600 | [diff] [blame] | 163 | return IORESOURCE_IRQ | IORESOURCE_AUTO; |
Bjorn Helgaas | 13575e81 | 2008-04-28 16:34:16 -0600 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | static inline int pnp_irq_valid(struct pnp_dev *dev, unsigned int bar) |
| 167 | { |
| 168 | return pnp_resource_valid(pnp_get_resource(dev, IORESOURCE_IRQ, bar)); |
| 169 | } |
| 170 | |
| 171 | |
| 172 | static inline resource_size_t pnp_dma(struct pnp_dev *dev, unsigned int bar) |
| 173 | { |
Bjorn Helgaas | 20bfdbb | 2008-06-27 16:56:56 -0600 | [diff] [blame] | 174 | struct resource *res = pnp_get_resource(dev, IORESOURCE_DMA, bar); |
| 175 | |
| 176 | if (pnp_resource_valid(res)) |
| 177 | return res->start; |
| 178 | return -1; |
Bjorn Helgaas | 13575e81 | 2008-04-28 16:34:16 -0600 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | static inline unsigned long pnp_dma_flags(struct pnp_dev *dev, unsigned int bar) |
| 182 | { |
Bjorn Helgaas | 20bfdbb | 2008-06-27 16:56:56 -0600 | [diff] [blame] | 183 | struct resource *res = pnp_get_resource(dev, IORESOURCE_DMA, bar); |
| 184 | |
| 185 | if (pnp_resource_valid(res)) |
| 186 | return res->flags; |
Bjorn Helgaas | aee3ad8 | 2008-06-27 16:56:57 -0600 | [diff] [blame] | 187 | return IORESOURCE_DMA | IORESOURCE_AUTO; |
Bjorn Helgaas | 13575e81 | 2008-04-28 16:34:16 -0600 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | static inline int pnp_dma_valid(struct pnp_dev *dev, unsigned int bar) |
| 191 | { |
| 192 | return pnp_resource_valid(pnp_get_resource(dev, IORESOURCE_DMA, bar)); |
| 193 | } |
| 194 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | /* |
Joe Perches | fd3f898 | 2008-02-03 17:45:46 +0200 | [diff] [blame] | 197 | * Device Management |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | */ |
| 199 | |
| 200 | struct pnp_card { |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 201 | struct device dev; /* Driver Model device interface */ |
| 202 | unsigned char number; /* used as an index, must be unique */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | struct list_head global_list; /* node in global list of cards */ |
| 204 | struct list_head protocol_list; /* node in protocol's list of cards */ |
| 205 | struct list_head devices; /* devices attached to the card */ |
| 206 | |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 207 | struct pnp_protocol *protocol; |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 208 | struct pnp_id *id; /* contains supported EISA IDs */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | |
| 210 | char name[PNP_NAME_LEN]; /* contains a human-readable name */ |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 211 | unsigned char pnpver; /* Plug & Play version */ |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 212 | unsigned char productver; /* product version */ |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 213 | unsigned int serial; /* serial number */ |
| 214 | unsigned char checksum; /* if zero - checksum passed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | struct proc_dir_entry *procdir; /* directory entry in /proc/bus/isapnp */ |
| 216 | }; |
| 217 | |
| 218 | #define global_to_pnp_card(n) list_entry(n, struct pnp_card, global_list) |
| 219 | #define protocol_to_pnp_card(n) list_entry(n, struct pnp_card, protocol_list) |
| 220 | #define to_pnp_card(n) container_of(n, struct pnp_card, dev) |
| 221 | #define pnp_for_each_card(card) \ |
| 222 | for((card) = global_to_pnp_card(pnp_cards.next); \ |
| 223 | (card) != global_to_pnp_card(&pnp_cards); \ |
| 224 | (card) = global_to_pnp_card((card)->global_list.next)) |
| 225 | |
| 226 | struct pnp_card_link { |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 227 | struct pnp_card *card; |
| 228 | struct pnp_card_driver *driver; |
| 229 | void *driver_data; |
Takashi Iwai | 4c98cfe | 2005-11-29 09:09:32 +0100 | [diff] [blame] | 230 | pm_message_t pm_state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | }; |
| 232 | |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 233 | static inline void *pnp_get_card_drvdata(struct pnp_card_link *pcard) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | { |
| 235 | return pcard->driver_data; |
| 236 | } |
| 237 | |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 238 | static inline void pnp_set_card_drvdata(struct pnp_card_link *pcard, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | { |
| 240 | pcard->driver_data = data; |
| 241 | } |
| 242 | |
| 243 | struct pnp_dev { |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 244 | struct device dev; /* Driver Model device interface */ |
David Brownell | 2e17c55 | 2007-05-08 00:25:29 -0700 | [diff] [blame] | 245 | u64 dma_mask; |
Bjorn Helgaas | 544451a | 2008-04-10 21:29:28 -0700 | [diff] [blame] | 246 | unsigned int number; /* used as an index, must be unique */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | int status; |
| 248 | |
| 249 | struct list_head global_list; /* node in global list of devices */ |
| 250 | struct list_head protocol_list; /* node in list of device's protocol */ |
| 251 | struct list_head card_list; /* node in card's list of devices */ |
| 252 | struct list_head rdev_list; /* node in cards list of requested devices */ |
| 253 | |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 254 | struct pnp_protocol *protocol; |
| 255 | struct pnp_card *card; /* card the device is attached to, none if NULL */ |
| 256 | struct pnp_driver *driver; |
| 257 | struct pnp_card_link *card_link; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 259 | struct pnp_id *id; /* supported EISA IDs */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | |
| 261 | int active; |
| 262 | int capabilities; |
Bjorn Helgaas | 1f32ca3 | 2008-06-27 16:57:17 -0600 | [diff] [blame] | 263 | unsigned int num_dependent_sets; |
Bjorn Helgaas | aee3ad8 | 2008-06-27 16:56:57 -0600 | [diff] [blame] | 264 | struct list_head resources; |
Bjorn Helgaas | 1f32ca3 | 2008-06-27 16:57:17 -0600 | [diff] [blame] | 265 | struct list_head options; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | |
| 267 | char name[PNP_NAME_LEN]; /* contains a human-readable name */ |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 268 | int flags; /* used by protocols */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | struct proc_dir_entry *procent; /* device entry in /proc/bus/isapnp */ |
| 270 | void *data; |
| 271 | }; |
| 272 | |
| 273 | #define global_to_pnp_dev(n) list_entry(n, struct pnp_dev, global_list) |
| 274 | #define card_to_pnp_dev(n) list_entry(n, struct pnp_dev, card_list) |
| 275 | #define protocol_to_pnp_dev(n) list_entry(n, struct pnp_dev, protocol_list) |
| 276 | #define to_pnp_dev(n) container_of(n, struct pnp_dev, dev) |
| 277 | #define pnp_for_each_dev(dev) \ |
| 278 | for((dev) = global_to_pnp_dev(pnp_global.next); \ |
| 279 | (dev) != global_to_pnp_dev(&pnp_global); \ |
| 280 | (dev) = global_to_pnp_dev((dev)->global_list.next)) |
| 281 | #define card_for_each_dev(card,dev) \ |
| 282 | for((dev) = card_to_pnp_dev((card)->devices.next); \ |
| 283 | (dev) != card_to_pnp_dev(&(card)->devices); \ |
| 284 | (dev) = card_to_pnp_dev((dev)->card_list.next)) |
| 285 | #define pnp_dev_name(dev) (dev)->name |
| 286 | |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 287 | static inline void *pnp_get_drvdata(struct pnp_dev *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | { |
| 289 | return dev_get_drvdata(&pdev->dev); |
| 290 | } |
| 291 | |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 292 | static inline void pnp_set_drvdata(struct pnp_dev *pdev, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | { |
| 294 | dev_set_drvdata(&pdev->dev, data); |
| 295 | } |
| 296 | |
| 297 | struct pnp_fixup { |
| 298 | char id[7]; |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 299 | void (*quirk_function) (struct pnp_dev * dev); /* fixup function */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | }; |
| 301 | |
| 302 | /* config parameters */ |
| 303 | #define PNP_CONFIG_NORMAL 0x0001 |
| 304 | #define PNP_CONFIG_FORCE 0x0002 /* disables validity checking */ |
| 305 | |
| 306 | /* capabilities */ |
| 307 | #define PNP_READ 0x0001 |
| 308 | #define PNP_WRITE 0x0002 |
| 309 | #define PNP_DISABLE 0x0004 |
| 310 | #define PNP_CONFIGURABLE 0x0008 |
| 311 | #define PNP_REMOVABLE 0x0010 |
| 312 | |
Bjorn Helgaas | 402b310 | 2007-10-16 23:31:09 -0700 | [diff] [blame] | 313 | #define pnp_can_read(dev) (((dev)->protocol->get) && \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | ((dev)->capabilities & PNP_READ)) |
Bjorn Helgaas | 402b310 | 2007-10-16 23:31:09 -0700 | [diff] [blame] | 315 | #define pnp_can_write(dev) (((dev)->protocol->set) && \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | ((dev)->capabilities & PNP_WRITE)) |
Bjorn Helgaas | 402b310 | 2007-10-16 23:31:09 -0700 | [diff] [blame] | 317 | #define pnp_can_disable(dev) (((dev)->protocol->disable) && \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | ((dev)->capabilities & PNP_DISABLE)) |
| 319 | #define pnp_can_configure(dev) ((!(dev)->active) && \ |
| 320 | ((dev)->capabilities & PNP_CONFIGURABLE)) |
| 321 | |
| 322 | #ifdef CONFIG_ISAPNP |
| 323 | extern struct pnp_protocol isapnp_protocol; |
| 324 | #define pnp_device_is_isapnp(dev) ((dev)->protocol == (&isapnp_protocol)) |
| 325 | #else |
| 326 | #define pnp_device_is_isapnp(dev) 0 |
| 327 | #endif |
Daniel Walker | b3bd86e | 2008-02-06 01:40:04 -0800 | [diff] [blame] | 328 | extern struct mutex pnp_res_mutex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | |
| 330 | #ifdef CONFIG_PNPBIOS |
| 331 | extern struct pnp_protocol pnpbios_protocol; |
| 332 | #define pnp_device_is_pnpbios(dev) ((dev)->protocol == (&pnpbios_protocol)) |
| 333 | #else |
| 334 | #define pnp_device_is_pnpbios(dev) 0 |
| 335 | #endif |
| 336 | |
Bjorn Helgaas | 9065ce4 | 2009-11-17 17:05:19 -0700 | [diff] [blame] | 337 | #ifdef CONFIG_PNPACPI |
| 338 | extern struct pnp_protocol pnpacpi_protocol; |
| 339 | |
| 340 | static inline struct acpi_device *pnp_acpi_device(struct pnp_dev *dev) |
| 341 | { |
| 342 | if (dev->protocol == &pnpacpi_protocol) |
| 343 | return dev->data; |
| 344 | return NULL; |
| 345 | } |
| 346 | #else |
| 347 | #define pnp_acpi_device(dev) 0 |
| 348 | #endif |
| 349 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | /* status */ |
| 351 | #define PNP_READY 0x0000 |
| 352 | #define PNP_ATTACHED 0x0001 |
| 353 | #define PNP_BUSY 0x0002 |
| 354 | #define PNP_FAULTY 0x0004 |
| 355 | |
| 356 | /* isapnp specific macros */ |
| 357 | |
| 358 | #define isapnp_card_number(dev) ((dev)->card ? (dev)->card->number : -1) |
| 359 | #define isapnp_csn_number(dev) ((dev)->number) |
| 360 | |
| 361 | /* |
| 362 | * Driver Management |
| 363 | */ |
| 364 | |
| 365 | struct pnp_id { |
| 366 | char id[PNP_ID_LEN]; |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 367 | struct pnp_id *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | }; |
| 369 | |
| 370 | struct pnp_driver { |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 371 | char *name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | const struct pnp_device_id *id_table; |
| 373 | unsigned int flags; |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 374 | int (*probe) (struct pnp_dev *dev, const struct pnp_device_id *dev_id); |
| 375 | void (*remove) (struct pnp_dev *dev); |
David Härdeman | abd6633 | 2009-09-21 17:04:52 -0700 | [diff] [blame] | 376 | void (*shutdown) (struct pnp_dev *dev); |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 377 | int (*suspend) (struct pnp_dev *dev, pm_message_t state); |
| 378 | int (*resume) (struct pnp_dev *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | struct device_driver driver; |
| 380 | }; |
| 381 | |
| 382 | #define to_pnp_driver(drv) container_of(drv, struct pnp_driver, driver) |
| 383 | |
| 384 | struct pnp_card_driver { |
| 385 | struct list_head global_list; |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 386 | char *name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | const struct pnp_card_device_id *id_table; |
| 388 | unsigned int flags; |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 389 | int (*probe) (struct pnp_card_link *card, |
| 390 | const struct pnp_card_device_id *card_id); |
| 391 | void (*remove) (struct pnp_card_link *card); |
| 392 | int (*suspend) (struct pnp_card_link *card, pm_message_t state); |
| 393 | int (*resume) (struct pnp_card_link *card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | struct pnp_driver link; |
| 395 | }; |
| 396 | |
| 397 | #define to_pnp_card_driver(drv) container_of(drv, struct pnp_card_driver, link) |
| 398 | |
| 399 | /* pnp driver flags */ |
| 400 | #define PNP_DRIVER_RES_DO_NOT_CHANGE 0x0001 /* do not change the state of the device */ |
| 401 | #define PNP_DRIVER_RES_DISABLE 0x0003 /* ensure the device is disabled */ |
| 402 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | /* |
| 404 | * Protocol Management |
| 405 | */ |
| 406 | |
| 407 | struct pnp_protocol { |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 408 | struct list_head protocol_list; |
| 409 | char *name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | |
| 411 | /* resource control functions */ |
Bjorn Helgaas | 59284cb | 2008-04-28 16:34:05 -0600 | [diff] [blame] | 412 | int (*get) (struct pnp_dev *dev); |
| 413 | int (*set) (struct pnp_dev *dev); |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 414 | int (*disable) (struct pnp_dev *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | |
Shaohua Li | fc30e68 | 2007-07-20 10:03:20 +0800 | [diff] [blame] | 416 | /* protocol specific suspend/resume */ |
Alan Stern | b14e033 | 2010-06-29 22:49:24 +0200 | [diff] [blame] | 417 | bool (*can_wakeup) (struct pnp_dev *dev); |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 418 | int (*suspend) (struct pnp_dev * dev, pm_message_t state); |
| 419 | int (*resume) (struct pnp_dev * dev); |
Shaohua Li | fc30e68 | 2007-07-20 10:03:20 +0800 | [diff] [blame] | 420 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | /* used by pnp layer only (look but don't touch) */ |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 422 | unsigned char number; /* protocol number */ |
| 423 | struct device dev; /* link to driver model */ |
| 424 | struct list_head cards; |
| 425 | struct list_head devices; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | }; |
| 427 | |
| 428 | #define to_pnp_protocol(n) list_entry(n, struct pnp_protocol, protocol_list) |
| 429 | #define protocol_for_each_card(protocol,card) \ |
| 430 | for((card) = protocol_to_pnp_card((protocol)->cards.next); \ |
| 431 | (card) != protocol_to_pnp_card(&(protocol)->cards); \ |
| 432 | (card) = protocol_to_pnp_card((card)->protocol_list.next)) |
| 433 | #define protocol_for_each_dev(protocol,dev) \ |
| 434 | for((dev) = protocol_to_pnp_dev((protocol)->devices.next); \ |
| 435 | (dev) != protocol_to_pnp_dev(&(protocol)->devices); \ |
| 436 | (dev) = protocol_to_pnp_dev((dev)->protocol_list.next)) |
| 437 | |
David Brownell | cbcdc1d | 2007-02-10 01:45:13 -0800 | [diff] [blame] | 438 | extern struct bus_type pnp_bus_type; |
| 439 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | #if defined(CONFIG_PNP) |
| 441 | |
| 442 | /* device management */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | int pnp_device_attach(struct pnp_dev *pnp_dev); |
| 444 | void pnp_device_detach(struct pnp_dev *pnp_dev); |
| 445 | extern struct list_head pnp_global; |
Bjorn Helgaas | 8f81dd1 | 2007-05-08 00:35:54 -0700 | [diff] [blame] | 446 | extern int pnp_platform_devices; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | |
| 448 | /* multidevice card support */ |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 449 | struct pnp_dev *pnp_request_card_device(struct pnp_card_link *clink, |
| 450 | const char *id, struct pnp_dev *from); |
| 451 | void pnp_release_card_device(struct pnp_dev *dev); |
| 452 | int pnp_register_card_driver(struct pnp_card_driver *drv); |
| 453 | void pnp_unregister_card_driver(struct pnp_card_driver *drv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | extern struct list_head pnp_cards; |
| 455 | |
| 456 | /* resource management */ |
Bjorn Helgaas | 57fd51a | 2008-06-27 16:57:01 -0600 | [diff] [blame] | 457 | int pnp_possible_config(struct pnp_dev *dev, int type, resource_size_t base, |
| 458 | resource_size_t size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | int pnp_auto_config_dev(struct pnp_dev *dev); |
Pierre Ossman | 68094e3 | 2005-11-29 09:09:32 +0100 | [diff] [blame] | 460 | int pnp_start_dev(struct pnp_dev *dev); |
| 461 | int pnp_stop_dev(struct pnp_dev *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | int pnp_activate_dev(struct pnp_dev *dev); |
| 463 | int pnp_disable_dev(struct pnp_dev *dev); |
Bjorn Helgaas | 1b8e696 | 2009-06-05 14:37:23 +0000 | [diff] [blame] | 464 | int pnp_range_reserved(resource_size_t start, resource_size_t end); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | |
| 466 | /* protocol helpers */ |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 467 | int pnp_is_active(struct pnp_dev *dev); |
| 468 | int compare_pnp_id(struct pnp_id *pos, const char *id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | int pnp_register_driver(struct pnp_driver *drv); |
| 470 | void pnp_unregister_driver(struct pnp_driver *drv); |
| 471 | |
| 472 | #else |
| 473 | |
| 474 | /* device management */ |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 475 | static inline int pnp_device_attach(struct pnp_dev *pnp_dev) { return -ENODEV; } |
| 476 | static inline void pnp_device_detach(struct pnp_dev *pnp_dev) { } |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 477 | |
Bjorn Helgaas | 8f81dd1 | 2007-05-08 00:35:54 -0700 | [diff] [blame] | 478 | #define pnp_platform_devices 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | |
| 480 | /* multidevice card support */ |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 481 | static inline struct pnp_dev *pnp_request_card_device(struct pnp_card_link *clink, const char *id, struct pnp_dev *from) { return NULL; } |
| 482 | static inline void pnp_release_card_device(struct pnp_dev *dev) { } |
| 483 | static inline int pnp_register_card_driver(struct pnp_card_driver *drv) { return -ENODEV; } |
| 484 | static inline void pnp_unregister_card_driver(struct pnp_card_driver *drv) { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | |
| 486 | /* resource management */ |
Bjorn Helgaas | 57fd51a | 2008-06-27 16:57:01 -0600 | [diff] [blame] | 487 | static inline int pnp_possible_config(struct pnp_dev *dev, int type, |
| 488 | resource_size_t base, |
| 489 | resource_size_t size) { return 0; } |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 490 | static inline int pnp_auto_config_dev(struct pnp_dev *dev) { return -ENODEV; } |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 491 | static inline int pnp_start_dev(struct pnp_dev *dev) { return -ENODEV; } |
| 492 | static inline int pnp_stop_dev(struct pnp_dev *dev) { return -ENODEV; } |
| 493 | static inline int pnp_activate_dev(struct pnp_dev *dev) { return -ENODEV; } |
| 494 | static inline int pnp_disable_dev(struct pnp_dev *dev) { return -ENODEV; } |
Bjorn Helgaas | 1b8e696 | 2009-06-05 14:37:23 +0000 | [diff] [blame] | 495 | static inline int pnp_range_reserved(resource_size_t start, resource_size_t end) { return 0;} |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | |
| 497 | /* protocol helpers */ |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 498 | static inline int pnp_is_active(struct pnp_dev *dev) { return 0; } |
| 499 | static inline int compare_pnp_id(struct pnp_id *pos, const char *id) { return -ENODEV; } |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 500 | static inline int pnp_register_driver(struct pnp_driver *drv) { return -ENODEV; } |
| 501 | static inline void pnp_unregister_driver(struct pnp_driver *drv) { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | |
| 503 | #endif /* CONFIG_PNP */ |
| 504 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | #endif /* _LINUX_PNP_H */ |