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