]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * interface.c - contains everything related to the user interface | |
3 | * | |
c1017a4c | 4 | * Some code, especially possible resource dumping is based on isapnp_proc.c (c) Jaroslav Kysela <[email protected]> |
1da177e4 | 5 | * Copyright 2002 Adam Belay <[email protected]> |
1f32ca31 BH |
6 | * Copyright (C) 2008 Hewlett-Packard Development Company, L.P. |
7 | * Bjorn Helgaas <[email protected]> | |
1da177e4 LT |
8 | */ |
9 | ||
10 | #include <linux/pnp.h> | |
11 | #include <linux/string.h> | |
12 | #include <linux/errno.h> | |
13 | #include <linux/list.h> | |
14 | #include <linux/types.h> | |
b3bd86e2 | 15 | #include <linux/pnp.h> |
1da177e4 LT |
16 | #include <linux/stat.h> |
17 | #include <linux/ctype.h> | |
18 | #include <linux/slab.h> | |
b3bd86e2 DW |
19 | #include <linux/mutex.h> |
20 | ||
1da177e4 LT |
21 | #include <asm/uaccess.h> |
22 | ||
23 | #include "base.h" | |
24 | ||
25 | struct pnp_info_buffer { | |
26 | char *buffer; /* pointer to begin of buffer */ | |
27 | char *curr; /* current position in buffer */ | |
28 | unsigned long size; /* current size */ | |
29 | unsigned long len; /* total length of buffer */ | |
30 | int stop; /* stop flag */ | |
31 | int error; /* error code */ | |
32 | }; | |
33 | ||
34 | typedef struct pnp_info_buffer pnp_info_buffer_t; | |
35 | ||
9dd78466 | 36 | static int pnp_printf(pnp_info_buffer_t * buffer, char *fmt, ...) |
1da177e4 LT |
37 | { |
38 | va_list args; | |
39 | int res; | |
40 | ||
41 | if (buffer->stop || buffer->error) | |
42 | return 0; | |
43 | va_start(args, fmt); | |
44 | res = vsnprintf(buffer->curr, buffer->len - buffer->size, fmt, args); | |
45 | va_end(args); | |
46 | if (buffer->size + res >= buffer->len) { | |
47 | buffer->stop = 1; | |
48 | return 0; | |
49 | } | |
50 | buffer->curr += res; | |
51 | buffer->size += res; | |
52 | return res; | |
53 | } | |
54 | ||
9dd78466 BH |
55 | static void pnp_print_port(pnp_info_buffer_t * buffer, char *space, |
56 | struct pnp_port *port) | |
1da177e4 | 57 | { |
169aaffe BH |
58 | pnp_printf(buffer, "%sport %#llx-%#llx, align %#llx, size %#llx, " |
59 | "%i-bit address decoding\n", space, | |
60 | (unsigned long long) port->min, | |
61 | (unsigned long long) port->max, | |
62 | port->align ? ((unsigned long long) port->align - 1) : 0, | |
63 | (unsigned long long) port->size, | |
08c9f262 | 64 | port->flags & IORESOURCE_IO_16BIT_ADDR ? 16 : 10); |
1da177e4 LT |
65 | } |
66 | ||
9dd78466 BH |
67 | static void pnp_print_irq(pnp_info_buffer_t * buffer, char *space, |
68 | struct pnp_irq *irq) | |
1da177e4 LT |
69 | { |
70 | int first = 1, i; | |
71 | ||
72 | pnp_printf(buffer, "%sirq ", space); | |
73 | for (i = 0; i < PNP_IRQ_NR; i++) | |
7aefff51 | 74 | if (test_bit(i, irq->map.bits)) { |
1da177e4 LT |
75 | if (!first) { |
76 | pnp_printf(buffer, ","); | |
77 | } else { | |
78 | first = 0; | |
79 | } | |
80 | if (i == 2 || i == 9) | |
81 | pnp_printf(buffer, "2/9"); | |
82 | else | |
83 | pnp_printf(buffer, "%i", i); | |
84 | } | |
7aefff51 | 85 | if (bitmap_empty(irq->map.bits, PNP_IRQ_NR)) |
1da177e4 LT |
86 | pnp_printf(buffer, "<none>"); |
87 | if (irq->flags & IORESOURCE_IRQ_HIGHEDGE) | |
88 | pnp_printf(buffer, " High-Edge"); | |
89 | if (irq->flags & IORESOURCE_IRQ_LOWEDGE) | |
90 | pnp_printf(buffer, " Low-Edge"); | |
91 | if (irq->flags & IORESOURCE_IRQ_HIGHLEVEL) | |
92 | pnp_printf(buffer, " High-Level"); | |
93 | if (irq->flags & IORESOURCE_IRQ_LOWLEVEL) | |
94 | pnp_printf(buffer, " Low-Level"); | |
d5ebde6e BH |
95 | if (irq->flags & IORESOURCE_IRQ_OPTIONAL) |
96 | pnp_printf(buffer, " (optional)"); | |
1da177e4 LT |
97 | pnp_printf(buffer, "\n"); |
98 | } | |
99 | ||
9dd78466 BH |
100 | static void pnp_print_dma(pnp_info_buffer_t * buffer, char *space, |
101 | struct pnp_dma *dma) | |
1da177e4 LT |
102 | { |
103 | int first = 1, i; | |
104 | char *s; | |
105 | ||
106 | pnp_printf(buffer, "%sdma ", space); | |
107 | for (i = 0; i < 8; i++) | |
9dd78466 | 108 | if (dma->map & (1 << i)) { |
1da177e4 LT |
109 | if (!first) { |
110 | pnp_printf(buffer, ","); | |
111 | } else { | |
112 | first = 0; | |
113 | } | |
114 | pnp_printf(buffer, "%i", i); | |
115 | } | |
116 | if (!dma->map) | |
117 | pnp_printf(buffer, "<none>"); | |
118 | switch (dma->flags & IORESOURCE_DMA_TYPE_MASK) { | |
119 | case IORESOURCE_DMA_8BIT: | |
120 | s = "8-bit"; | |
121 | break; | |
122 | case IORESOURCE_DMA_8AND16BIT: | |
123 | s = "8-bit&16-bit"; | |
124 | break; | |
125 | default: | |
126 | s = "16-bit"; | |
127 | } | |
128 | pnp_printf(buffer, " %s", s); | |
129 | if (dma->flags & IORESOURCE_DMA_MASTER) | |
130 | pnp_printf(buffer, " master"); | |
131 | if (dma->flags & IORESOURCE_DMA_BYTE) | |
132 | pnp_printf(buffer, " byte-count"); | |
133 | if (dma->flags & IORESOURCE_DMA_WORD) | |
134 | pnp_printf(buffer, " word-count"); | |
135 | switch (dma->flags & IORESOURCE_DMA_SPEED_MASK) { | |
136 | case IORESOURCE_DMA_TYPEA: | |
137 | s = "type-A"; | |
138 | break; | |
139 | case IORESOURCE_DMA_TYPEB: | |
140 | s = "type-B"; | |
141 | break; | |
142 | case IORESOURCE_DMA_TYPEF: | |
143 | s = "type-F"; | |
144 | break; | |
145 | default: | |
146 | s = "compatible"; | |
147 | break; | |
148 | } | |
149 | pnp_printf(buffer, " %s\n", s); | |
150 | } | |
151 | ||
9dd78466 BH |
152 | static void pnp_print_mem(pnp_info_buffer_t * buffer, char *space, |
153 | struct pnp_mem *mem) | |
1da177e4 LT |
154 | { |
155 | char *s; | |
156 | ||
169aaffe BH |
157 | pnp_printf(buffer, "%sMemory %#llx-%#llx, align %#llx, size %#llx", |
158 | space, (unsigned long long) mem->min, | |
159 | (unsigned long long) mem->max, | |
160 | (unsigned long long) mem->align, | |
161 | (unsigned long long) mem->size); | |
1da177e4 LT |
162 | if (mem->flags & IORESOURCE_MEM_WRITEABLE) |
163 | pnp_printf(buffer, ", writeable"); | |
164 | if (mem->flags & IORESOURCE_MEM_CACHEABLE) | |
165 | pnp_printf(buffer, ", cacheable"); | |
166 | if (mem->flags & IORESOURCE_MEM_RANGELENGTH) | |
167 | pnp_printf(buffer, ", range-length"); | |
168 | if (mem->flags & IORESOURCE_MEM_SHADOWABLE) | |
169 | pnp_printf(buffer, ", shadowable"); | |
170 | if (mem->flags & IORESOURCE_MEM_EXPANSIONROM) | |
171 | pnp_printf(buffer, ", expansion ROM"); | |
172 | switch (mem->flags & IORESOURCE_MEM_TYPE_MASK) { | |
173 | case IORESOURCE_MEM_8BIT: | |
174 | s = "8-bit"; | |
175 | break; | |
176 | case IORESOURCE_MEM_8AND16BIT: | |
177 | s = "8-bit&16-bit"; | |
178 | break; | |
179 | case IORESOURCE_MEM_32BIT: | |
180 | s = "32-bit"; | |
181 | break; | |
182 | default: | |
183 | s = "16-bit"; | |
184 | } | |
185 | pnp_printf(buffer, ", %s\n", s); | |
186 | } | |
187 | ||
9dd78466 | 188 | static void pnp_print_option(pnp_info_buffer_t * buffer, char *space, |
1f32ca31 | 189 | struct pnp_option *option) |
1da177e4 | 190 | { |
1f32ca31 BH |
191 | switch (option->type) { |
192 | case IORESOURCE_IO: | |
193 | pnp_print_port(buffer, space, &option->u.port); | |
194 | break; | |
195 | case IORESOURCE_MEM: | |
196 | pnp_print_mem(buffer, space, &option->u.mem); | |
197 | break; | |
198 | case IORESOURCE_IRQ: | |
199 | pnp_print_irq(buffer, space, &option->u.irq); | |
200 | break; | |
201 | case IORESOURCE_DMA: | |
202 | pnp_print_dma(buffer, space, &option->u.dma); | |
203 | break; | |
1da177e4 | 204 | } |
1da177e4 LT |
205 | } |
206 | ||
9dd78466 BH |
207 | static ssize_t pnp_show_options(struct device *dmdev, |
208 | struct device_attribute *attr, char *buf) | |
1da177e4 LT |
209 | { |
210 | struct pnp_dev *dev = to_pnp_dev(dmdev); | |
b72ee1f1 | 211 | pnp_info_buffer_t *buffer; |
1f32ca31 BH |
212 | struct pnp_option *option; |
213 | int ret, dep = 0, set = 0; | |
214 | char *indent; | |
1da177e4 | 215 | |
b72ee1f1 | 216 | buffer = pnp_alloc(sizeof(pnp_info_buffer_t)); |
1da177e4 LT |
217 | if (!buffer) |
218 | return -ENOMEM; | |
219 | ||
220 | buffer->len = PAGE_SIZE; | |
221 | buffer->buffer = buf; | |
222 | buffer->curr = buffer->buffer; | |
1da177e4 | 223 | |
1f32ca31 BH |
224 | list_for_each_entry(option, &dev->options, list) { |
225 | if (pnp_option_is_dependent(option)) { | |
226 | indent = " "; | |
227 | if (!dep || pnp_option_set(option) != set) { | |
228 | set = pnp_option_set(option); | |
229 | dep = 1; | |
230 | pnp_printf(buffer, "Dependent: %02i - " | |
231 | "Priority %s\n", set, | |
232 | pnp_option_priority_name(option)); | |
233 | } | |
234 | } else { | |
235 | dep = 0; | |
236 | indent = ""; | |
237 | } | |
238 | pnp_print_option(buffer, indent, option); | |
1da177e4 | 239 | } |
1f32ca31 | 240 | |
1da177e4 LT |
241 | ret = (buffer->curr - buf); |
242 | kfree(buffer); | |
243 | return ret; | |
244 | } | |
245 | ||
9dd78466 | 246 | static DEVICE_ATTR(options, S_IRUGO, pnp_show_options, NULL); |
1da177e4 | 247 | |
9dd78466 BH |
248 | static ssize_t pnp_show_current_resources(struct device *dmdev, |
249 | struct device_attribute *attr, | |
250 | char *buf) | |
1da177e4 LT |
251 | { |
252 | struct pnp_dev *dev = to_pnp_dev(dmdev); | |
b72ee1f1 | 253 | pnp_info_buffer_t *buffer; |
f61ed7e3 | 254 | struct pnp_resource *pnp_res; |
95ab3669 | 255 | struct resource *res; |
f61ed7e3 | 256 | int ret; |
1da177e4 LT |
257 | |
258 | if (!dev) | |
259 | return -EINVAL; | |
260 | ||
b72ee1f1 | 261 | buffer = pnp_alloc(sizeof(pnp_info_buffer_t)); |
1da177e4 LT |
262 | if (!buffer) |
263 | return -ENOMEM; | |
b72ee1f1 | 264 | |
1da177e4 LT |
265 | buffer->len = PAGE_SIZE; |
266 | buffer->buffer = buf; | |
267 | buffer->curr = buffer->buffer; | |
268 | ||
f61ed7e3 | 269 | pnp_printf(buffer, "state = %s\n", dev->active ? "active" : "disabled"); |
1da177e4 | 270 | |
f61ed7e3 BH |
271 | list_for_each_entry(pnp_res, &dev->resources, list) { |
272 | res = &pnp_res->res; | |
273 | ||
274 | pnp_printf(buffer, pnp_resource_type_name(res)); | |
275 | ||
276 | if (res->flags & IORESOURCE_DISABLED) { | |
aee3ad81 | 277 | pnp_printf(buffer, " disabled\n"); |
f61ed7e3 BH |
278 | continue; |
279 | } | |
280 | ||
281 | switch (pnp_resource_type(res)) { | |
282 | case IORESOURCE_IO: | |
283 | case IORESOURCE_MEM: | |
284 | pnp_printf(buffer, " %#llx-%#llx\n", | |
aee3ad81 BH |
285 | (unsigned long long) res->start, |
286 | (unsigned long long) res->end); | |
f61ed7e3 BH |
287 | break; |
288 | case IORESOURCE_IRQ: | |
289 | case IORESOURCE_DMA: | |
aee3ad81 BH |
290 | pnp_printf(buffer, " %lld\n", |
291 | (unsigned long long) res->start); | |
f61ed7e3 BH |
292 | break; |
293 | } | |
1da177e4 | 294 | } |
f61ed7e3 | 295 | |
1da177e4 LT |
296 | ret = (buffer->curr - buf); |
297 | kfree(buffer); | |
298 | return ret; | |
299 | } | |
300 | ||
b72ee1f1 BH |
301 | static ssize_t pnp_set_current_resources(struct device *dmdev, |
302 | struct device_attribute *attr, | |
303 | const char *ubuf, size_t count) | |
1da177e4 LT |
304 | { |
305 | struct pnp_dev *dev = to_pnp_dev(dmdev); | |
9dd78466 BH |
306 | char *buf = (void *)ubuf; |
307 | int retval = 0; | |
cc8c2e30 | 308 | resource_size_t start, end; |
1da177e4 LT |
309 | |
310 | if (dev->status & PNP_ATTACHED) { | |
311 | retval = -EBUSY; | |
a05d0781 | 312 | dev_info(&dev->dev, "in use; can't configure\n"); |
1da177e4 LT |
313 | goto done; |
314 | } | |
315 | ||
316 | while (isspace(*buf)) | |
317 | ++buf; | |
9dd78466 | 318 | if (!strnicmp(buf, "disable", 7)) { |
1da177e4 LT |
319 | retval = pnp_disable_dev(dev); |
320 | goto done; | |
321 | } | |
9dd78466 | 322 | if (!strnicmp(buf, "activate", 8)) { |
1da177e4 LT |
323 | retval = pnp_activate_dev(dev); |
324 | goto done; | |
325 | } | |
9dd78466 | 326 | if (!strnicmp(buf, "fill", 4)) { |
1da177e4 LT |
327 | if (dev->active) |
328 | goto done; | |
329 | retval = pnp_auto_config_dev(dev); | |
330 | goto done; | |
331 | } | |
9dd78466 | 332 | if (!strnicmp(buf, "auto", 4)) { |
1da177e4 LT |
333 | if (dev->active) |
334 | goto done; | |
f4490002 | 335 | pnp_init_resources(dev); |
1da177e4 LT |
336 | retval = pnp_auto_config_dev(dev); |
337 | goto done; | |
338 | } | |
9dd78466 | 339 | if (!strnicmp(buf, "clear", 5)) { |
1da177e4 LT |
340 | if (dev->active) |
341 | goto done; | |
f4490002 | 342 | pnp_init_resources(dev); |
1da177e4 LT |
343 | goto done; |
344 | } | |
9dd78466 | 345 | if (!strnicmp(buf, "get", 3)) { |
b3bd86e2 | 346 | mutex_lock(&pnp_res_mutex); |
1da177e4 | 347 | if (pnp_can_read(dev)) |
59284cb4 | 348 | dev->protocol->get(dev); |
b3bd86e2 | 349 | mutex_unlock(&pnp_res_mutex); |
1da177e4 LT |
350 | goto done; |
351 | } | |
9dd78466 | 352 | if (!strnicmp(buf, "set", 3)) { |
1da177e4 LT |
353 | if (dev->active) |
354 | goto done; | |
355 | buf += 3; | |
f4490002 | 356 | pnp_init_resources(dev); |
b3bd86e2 | 357 | mutex_lock(&pnp_res_mutex); |
1da177e4 LT |
358 | while (1) { |
359 | while (isspace(*buf)) | |
360 | ++buf; | |
9dd78466 | 361 | if (!strnicmp(buf, "io", 2)) { |
1da177e4 LT |
362 | buf += 2; |
363 | while (isspace(*buf)) | |
364 | ++buf; | |
cc8c2e30 | 365 | start = simple_strtoul(buf, &buf, 0); |
1da177e4 LT |
366 | while (isspace(*buf)) |
367 | ++buf; | |
9dd78466 | 368 | if (*buf == '-') { |
1da177e4 LT |
369 | buf += 1; |
370 | while (isspace(*buf)) | |
371 | ++buf; | |
cc8c2e30 | 372 | end = simple_strtoul(buf, &buf, 0); |
1da177e4 | 373 | } else |
cc8c2e30 | 374 | end = start; |
87e4acf3 | 375 | pnp_add_io_resource(dev, start, end, 0); |
1da177e4 LT |
376 | continue; |
377 | } | |
9dd78466 | 378 | if (!strnicmp(buf, "mem", 3)) { |
1da177e4 LT |
379 | buf += 3; |
380 | while (isspace(*buf)) | |
381 | ++buf; | |
d6180f36 | 382 | start = simple_strtoul(buf, &buf, 0); |
1da177e4 LT |
383 | while (isspace(*buf)) |
384 | ++buf; | |
9dd78466 | 385 | if (*buf == '-') { |
1da177e4 LT |
386 | buf += 1; |
387 | while (isspace(*buf)) | |
388 | ++buf; | |
d6180f36 | 389 | end = simple_strtoul(buf, &buf, 0); |
1da177e4 | 390 | } else |
d6180f36 | 391 | end = start; |
87e4acf3 | 392 | pnp_add_mem_resource(dev, start, end, 0); |
1da177e4 LT |
393 | continue; |
394 | } | |
9dd78466 | 395 | if (!strnicmp(buf, "irq", 3)) { |
1da177e4 LT |
396 | buf += 3; |
397 | while (isspace(*buf)) | |
398 | ++buf; | |
dbddd038 | 399 | start = simple_strtoul(buf, &buf, 0); |
87e4acf3 | 400 | pnp_add_irq_resource(dev, start, 0); |
1da177e4 LT |
401 | continue; |
402 | } | |
9dd78466 | 403 | if (!strnicmp(buf, "dma", 3)) { |
1da177e4 LT |
404 | buf += 3; |
405 | while (isspace(*buf)) | |
406 | ++buf; | |
dc16f5f2 | 407 | start = simple_strtoul(buf, &buf, 0); |
87e4acf3 | 408 | pnp_add_dma_resource(dev, start, 0); |
1da177e4 LT |
409 | continue; |
410 | } | |
411 | break; | |
412 | } | |
b3bd86e2 | 413 | mutex_unlock(&pnp_res_mutex); |
1da177e4 LT |
414 | goto done; |
415 | } | |
1e0aa9ad BH |
416 | |
417 | done: | |
1da177e4 LT |
418 | if (retval < 0) |
419 | return retval; | |
420 | return count; | |
421 | } | |
422 | ||
9dd78466 BH |
423 | static DEVICE_ATTR(resources, S_IRUGO | S_IWUSR, |
424 | pnp_show_current_resources, pnp_set_current_resources); | |
1da177e4 | 425 | |
9dd78466 BH |
426 | static ssize_t pnp_show_current_ids(struct device *dmdev, |
427 | struct device_attribute *attr, char *buf) | |
1da177e4 LT |
428 | { |
429 | char *str = buf; | |
430 | struct pnp_dev *dev = to_pnp_dev(dmdev); | |
9dd78466 | 431 | struct pnp_id *pos = dev->id; |
1da177e4 LT |
432 | |
433 | while (pos) { | |
9dd78466 | 434 | str += sprintf(str, "%s\n", pos->id); |
1da177e4 LT |
435 | pos = pos->next; |
436 | } | |
437 | return (str - buf); | |
438 | } | |
439 | ||
9dd78466 | 440 | static DEVICE_ATTR(id, S_IRUGO, pnp_show_current_ids, NULL); |
1da177e4 LT |
441 | |
442 | int pnp_interface_attach_device(struct pnp_dev *dev) | |
443 | { | |
9dd78466 | 444 | int rc = device_create_file(&dev->dev, &dev_attr_options); |
07d4e9af | 445 | |
9dd78466 BH |
446 | if (rc) |
447 | goto err; | |
448 | rc = device_create_file(&dev->dev, &dev_attr_resources); | |
449 | if (rc) | |
450 | goto err_opt; | |
451 | rc = device_create_file(&dev->dev, &dev_attr_id); | |
452 | if (rc) | |
453 | goto err_res; | |
bfc7ee20 | 454 | |
1da177e4 | 455 | return 0; |
bfc7ee20 | 456 | |
1e0aa9ad | 457 | err_res: |
9dd78466 | 458 | device_remove_file(&dev->dev, &dev_attr_resources); |
1e0aa9ad | 459 | err_opt: |
9dd78466 | 460 | device_remove_file(&dev->dev, &dev_attr_options); |
1e0aa9ad | 461 | err: |
bfc7ee20 | 462 | return rc; |
1da177e4 | 463 | } |