blob: 7fc86bbed88e44f36c6ed298d96076c360eea295 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * interface.c - contains everything related to the user interface
3 *
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02004 * Some code, especially possible resource dumping is based on isapnp_proc.c (c) Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright 2002 Adam Belay <ambx1@neo.rr.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
8#include <linux/pnp.h>
9#include <linux/string.h>
10#include <linux/errno.h>
11#include <linux/list.h>
12#include <linux/types.h>
Daniel Walkerb3bd86e2008-02-06 01:40:04 -080013#include <linux/pnp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/stat.h>
15#include <linux/ctype.h>
16#include <linux/slab.h>
Daniel Walkerb3bd86e2008-02-06 01:40:04 -080017#include <linux/mutex.h>
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/uaccess.h>
20
21#include "base.h"
22
23struct pnp_info_buffer {
24 char *buffer; /* pointer to begin of buffer */
25 char *curr; /* current position in buffer */
26 unsigned long size; /* current size */
27 unsigned long len; /* total length of buffer */
28 int stop; /* stop flag */
29 int error; /* error code */
30};
31
32typedef struct pnp_info_buffer pnp_info_buffer_t;
33
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070034static int pnp_printf(pnp_info_buffer_t * buffer, char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
36 va_list args;
37 int res;
38
39 if (buffer->stop || buffer->error)
40 return 0;
41 va_start(args, fmt);
42 res = vsnprintf(buffer->curr, buffer->len - buffer->size, fmt, args);
43 va_end(args);
44 if (buffer->size + res >= buffer->len) {
45 buffer->stop = 1;
46 return 0;
47 }
48 buffer->curr += res;
49 buffer->size += res;
50 return res;
51}
52
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070053static void pnp_print_port(pnp_info_buffer_t * buffer, char *space,
54 struct pnp_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070056 pnp_printf(buffer,
57 "%sport 0x%x-0x%x, align 0x%x, size 0x%x, %i-bit address decoding\n",
58 space, port->min, port->max,
59 port->align ? (port->align - 1) : 0, port->size,
60 port->flags & PNP_PORT_FLAG_16BITADDR ? 16 : 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061}
62
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070063static void pnp_print_irq(pnp_info_buffer_t * buffer, char *space,
64 struct pnp_irq *irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
66 int first = 1, i;
67
68 pnp_printf(buffer, "%sirq ", space);
69 for (i = 0; i < PNP_IRQ_NR; i++)
70 if (test_bit(i, irq->map)) {
71 if (!first) {
72 pnp_printf(buffer, ",");
73 } else {
74 first = 0;
75 }
76 if (i == 2 || i == 9)
77 pnp_printf(buffer, "2/9");
78 else
79 pnp_printf(buffer, "%i", i);
80 }
81 if (bitmap_empty(irq->map, PNP_IRQ_NR))
82 pnp_printf(buffer, "<none>");
83 if (irq->flags & IORESOURCE_IRQ_HIGHEDGE)
84 pnp_printf(buffer, " High-Edge");
85 if (irq->flags & IORESOURCE_IRQ_LOWEDGE)
86 pnp_printf(buffer, " Low-Edge");
87 if (irq->flags & IORESOURCE_IRQ_HIGHLEVEL)
88 pnp_printf(buffer, " High-Level");
89 if (irq->flags & IORESOURCE_IRQ_LOWLEVEL)
90 pnp_printf(buffer, " Low-Level");
91 pnp_printf(buffer, "\n");
92}
93
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070094static void pnp_print_dma(pnp_info_buffer_t * buffer, char *space,
95 struct pnp_dma *dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
97 int first = 1, i;
98 char *s;
99
100 pnp_printf(buffer, "%sdma ", space);
101 for (i = 0; i < 8; i++)
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700102 if (dma->map & (1 << i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 if (!first) {
104 pnp_printf(buffer, ",");
105 } else {
106 first = 0;
107 }
108 pnp_printf(buffer, "%i", i);
109 }
110 if (!dma->map)
111 pnp_printf(buffer, "<none>");
112 switch (dma->flags & IORESOURCE_DMA_TYPE_MASK) {
113 case IORESOURCE_DMA_8BIT:
114 s = "8-bit";
115 break;
116 case IORESOURCE_DMA_8AND16BIT:
117 s = "8-bit&16-bit";
118 break;
119 default:
120 s = "16-bit";
121 }
122 pnp_printf(buffer, " %s", s);
123 if (dma->flags & IORESOURCE_DMA_MASTER)
124 pnp_printf(buffer, " master");
125 if (dma->flags & IORESOURCE_DMA_BYTE)
126 pnp_printf(buffer, " byte-count");
127 if (dma->flags & IORESOURCE_DMA_WORD)
128 pnp_printf(buffer, " word-count");
129 switch (dma->flags & IORESOURCE_DMA_SPEED_MASK) {
130 case IORESOURCE_DMA_TYPEA:
131 s = "type-A";
132 break;
133 case IORESOURCE_DMA_TYPEB:
134 s = "type-B";
135 break;
136 case IORESOURCE_DMA_TYPEF:
137 s = "type-F";
138 break;
139 default:
140 s = "compatible";
141 break;
142 }
143 pnp_printf(buffer, " %s\n", s);
144}
145
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700146static void pnp_print_mem(pnp_info_buffer_t * buffer, char *space,
147 struct pnp_mem *mem)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 char *s;
150
151 pnp_printf(buffer, "%sMemory 0x%x-0x%x, align 0x%x, size 0x%x",
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700152 space, mem->min, mem->max, mem->align, mem->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (mem->flags & IORESOURCE_MEM_WRITEABLE)
154 pnp_printf(buffer, ", writeable");
155 if (mem->flags & IORESOURCE_MEM_CACHEABLE)
156 pnp_printf(buffer, ", cacheable");
157 if (mem->flags & IORESOURCE_MEM_RANGELENGTH)
158 pnp_printf(buffer, ", range-length");
159 if (mem->flags & IORESOURCE_MEM_SHADOWABLE)
160 pnp_printf(buffer, ", shadowable");
161 if (mem->flags & IORESOURCE_MEM_EXPANSIONROM)
162 pnp_printf(buffer, ", expansion ROM");
163 switch (mem->flags & IORESOURCE_MEM_TYPE_MASK) {
164 case IORESOURCE_MEM_8BIT:
165 s = "8-bit";
166 break;
167 case IORESOURCE_MEM_8AND16BIT:
168 s = "8-bit&16-bit";
169 break;
170 case IORESOURCE_MEM_32BIT:
171 s = "32-bit";
172 break;
173 default:
174 s = "16-bit";
175 }
176 pnp_printf(buffer, ", %s\n", s);
177}
178
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700179static void pnp_print_option(pnp_info_buffer_t * buffer, char *space,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 struct pnp_option *option, int dep)
181{
182 char *s;
183 struct pnp_port *port;
184 struct pnp_irq *irq;
185 struct pnp_dma *dma;
186 struct pnp_mem *mem;
187
188 if (dep) {
189 switch (option->priority) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700190 case PNP_RES_PRIORITY_PREFERRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 s = "preferred";
192 break;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700193 case PNP_RES_PRIORITY_ACCEPTABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 s = "acceptable";
195 break;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700196 case PNP_RES_PRIORITY_FUNCTIONAL:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 s = "functional";
198 break;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700199 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 s = "invalid";
201 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700202 pnp_printf(buffer, "Dependent: %02i - Priority %s\n", dep, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 }
204
205 for (port = option->port; port; port = port->next)
206 pnp_print_port(buffer, space, port);
207 for (irq = option->irq; irq; irq = irq->next)
208 pnp_print_irq(buffer, space, irq);
209 for (dma = option->dma; dma; dma = dma->next)
210 pnp_print_dma(buffer, space, dma);
211 for (mem = option->mem; mem; mem = mem->next)
212 pnp_print_mem(buffer, space, mem);
213}
214
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700215static ssize_t pnp_show_options(struct device *dmdev,
216 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
218 struct pnp_dev *dev = to_pnp_dev(dmdev);
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700219 struct pnp_option *independent = dev->independent;
220 struct pnp_option *dependent = dev->dependent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 int ret, dep = 1;
222
223 pnp_info_buffer_t *buffer = (pnp_info_buffer_t *)
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700224 pnp_alloc(sizeof(pnp_info_buffer_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (!buffer)
226 return -ENOMEM;
227
228 buffer->len = PAGE_SIZE;
229 buffer->buffer = buf;
230 buffer->curr = buffer->buffer;
231 if (independent)
232 pnp_print_option(buffer, "", independent, 0);
233
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700234 while (dependent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 pnp_print_option(buffer, " ", dependent, dep);
236 dependent = dependent->next;
237 dep++;
238 }
239 ret = (buffer->curr - buf);
240 kfree(buffer);
241 return ret;
242}
243
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700244static DEVICE_ATTR(options, S_IRUGO, pnp_show_options, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700246static ssize_t pnp_show_current_resources(struct device *dmdev,
247 struct device_attribute *attr,
248 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
250 struct pnp_dev *dev = to_pnp_dev(dmdev);
Bjorn Helgaas95ab3662008-04-28 16:34:26 -0600251 struct resource *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 int i, ret;
253 pnp_info_buffer_t *buffer;
254
255 if (!dev)
256 return -EINVAL;
257
258 buffer = (pnp_info_buffer_t *) pnp_alloc(sizeof(pnp_info_buffer_t));
259 if (!buffer)
260 return -ENOMEM;
261 buffer->len = PAGE_SIZE;
262 buffer->buffer = buf;
263 buffer->curr = buffer->buffer;
264
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700265 pnp_printf(buffer, "state = ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 if (dev->active)
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700267 pnp_printf(buffer, "active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 else
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700269 pnp_printf(buffer, "disabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Bjorn Helgaas95ab3662008-04-28 16:34:26 -0600271 for (i = 0; (res = pnp_get_resource(dev, IORESOURCE_IO, i)); i++) {
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600272 pnp_printf(buffer, "io");
273 if (res->flags & IORESOURCE_DISABLED)
274 pnp_printf(buffer, " disabled\n");
275 else
276 pnp_printf(buffer, " 0x%llx-0x%llx\n",
277 (unsigned long long) res->start,
278 (unsigned long long) res->end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
Bjorn Helgaas95ab3662008-04-28 16:34:26 -0600280 for (i = 0; (res = pnp_get_resource(dev, IORESOURCE_MEM, i)); i++) {
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600281 pnp_printf(buffer, "mem");
282 if (res->flags & IORESOURCE_DISABLED)
283 pnp_printf(buffer, " disabled\n");
284 else
285 pnp_printf(buffer, " 0x%llx-0x%llx\n",
286 (unsigned long long) res->start,
287 (unsigned long long) res->end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
Bjorn Helgaas95ab3662008-04-28 16:34:26 -0600289 for (i = 0; (res = pnp_get_resource(dev, IORESOURCE_IRQ, i)); i++) {
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600290 pnp_printf(buffer, "irq");
291 if (res->flags & IORESOURCE_DISABLED)
292 pnp_printf(buffer, " disabled\n");
293 else
294 pnp_printf(buffer, " %lld\n",
295 (unsigned long long) res->start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
Bjorn Helgaas95ab3662008-04-28 16:34:26 -0600297 for (i = 0; (res = pnp_get_resource(dev, IORESOURCE_DMA, i)); i++) {
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600298 pnp_printf(buffer, "dma");
299 if (res->flags & IORESOURCE_DISABLED)
300 pnp_printf(buffer, " disabled\n");
301 else
302 pnp_printf(buffer, " %lld\n",
303 (unsigned long long) res->start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 }
305 ret = (buffer->curr - buf);
306 kfree(buffer);
307 return ret;
308}
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310static ssize_t
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700311pnp_set_current_resources(struct device *dmdev, struct device_attribute *attr,
312 const char *ubuf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
314 struct pnp_dev *dev = to_pnp_dev(dmdev);
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700315 char *buf = (void *)ubuf;
316 int retval = 0;
Bjorn Helgaascc8c2e32008-04-28 16:34:36 -0600317 resource_size_t start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 if (dev->status & PNP_ATTACHED) {
320 retval = -EBUSY;
Bjorn Helgaasa05d0782007-10-16 23:31:10 -0700321 dev_info(&dev->dev, "in use; can't configure\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 goto done;
323 }
324
325 while (isspace(*buf))
326 ++buf;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700327 if (!strnicmp(buf, "disable", 7)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 retval = pnp_disable_dev(dev);
329 goto done;
330 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700331 if (!strnicmp(buf, "activate", 8)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 retval = pnp_activate_dev(dev);
333 goto done;
334 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700335 if (!strnicmp(buf, "fill", 4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 if (dev->active)
337 goto done;
338 retval = pnp_auto_config_dev(dev);
339 goto done;
340 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700341 if (!strnicmp(buf, "auto", 4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (dev->active)
343 goto done;
Bjorn Helgaasf4490002008-04-28 16:34:09 -0600344 pnp_init_resources(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 retval = pnp_auto_config_dev(dev);
346 goto done;
347 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700348 if (!strnicmp(buf, "clear", 5)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (dev->active)
350 goto done;
Bjorn Helgaasf4490002008-04-28 16:34:09 -0600351 pnp_init_resources(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 goto done;
353 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700354 if (!strnicmp(buf, "get", 3)) {
Daniel Walkerb3bd86e2008-02-06 01:40:04 -0800355 mutex_lock(&pnp_res_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (pnp_can_read(dev))
Bjorn Helgaas59284cb2008-04-28 16:34:05 -0600357 dev->protocol->get(dev);
Daniel Walkerb3bd86e2008-02-06 01:40:04 -0800358 mutex_unlock(&pnp_res_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 goto done;
360 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700361 if (!strnicmp(buf, "set", 3)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (dev->active)
363 goto done;
364 buf += 3;
Bjorn Helgaasf4490002008-04-28 16:34:09 -0600365 pnp_init_resources(dev);
Daniel Walkerb3bd86e2008-02-06 01:40:04 -0800366 mutex_lock(&pnp_res_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 while (1) {
368 while (isspace(*buf))
369 ++buf;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700370 if (!strnicmp(buf, "io", 2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 buf += 2;
372 while (isspace(*buf))
373 ++buf;
Bjorn Helgaascc8c2e32008-04-28 16:34:36 -0600374 start = simple_strtoul(buf, &buf, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 while (isspace(*buf))
376 ++buf;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700377 if (*buf == '-') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 buf += 1;
379 while (isspace(*buf))
380 ++buf;
Bjorn Helgaascc8c2e32008-04-28 16:34:36 -0600381 end = simple_strtoul(buf, &buf, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 } else
Bjorn Helgaascc8c2e32008-04-28 16:34:36 -0600383 end = start;
Bjorn Helgaas87e4acf2008-06-27 16:56:53 -0600384 pnp_add_io_resource(dev, start, end, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 continue;
386 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700387 if (!strnicmp(buf, "mem", 3)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 buf += 3;
389 while (isspace(*buf))
390 ++buf;
Bjorn Helgaasd6180f32008-04-28 16:34:37 -0600391 start = simple_strtoul(buf, &buf, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 while (isspace(*buf))
393 ++buf;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700394 if (*buf == '-') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 buf += 1;
396 while (isspace(*buf))
397 ++buf;
Bjorn Helgaasd6180f32008-04-28 16:34:37 -0600398 end = simple_strtoul(buf, &buf, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 } else
Bjorn Helgaasd6180f32008-04-28 16:34:37 -0600400 end = start;
Bjorn Helgaas87e4acf2008-06-27 16:56:53 -0600401 pnp_add_mem_resource(dev, start, end, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 continue;
403 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700404 if (!strnicmp(buf, "irq", 3)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 buf += 3;
406 while (isspace(*buf))
407 ++buf;
Bjorn Helgaasdbddd032008-04-28 16:34:34 -0600408 start = simple_strtoul(buf, &buf, 0);
Bjorn Helgaas87e4acf2008-06-27 16:56:53 -0600409 pnp_add_irq_resource(dev, start, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 continue;
411 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700412 if (!strnicmp(buf, "dma", 3)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 buf += 3;
414 while (isspace(*buf))
415 ++buf;
Bjorn Helgaasdc16f5f2008-04-28 16:34:35 -0600416 start = simple_strtoul(buf, &buf, 0);
Bjorn Helgaas87e4acf2008-06-27 16:56:53 -0600417 pnp_add_dma_resource(dev, start, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 continue;
419 }
420 break;
421 }
Daniel Walkerb3bd86e2008-02-06 01:40:04 -0800422 mutex_unlock(&pnp_res_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 goto done;
424 }
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -0600425
426done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (retval < 0)
428 return retval;
429 return count;
430}
431
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700432static DEVICE_ATTR(resources, S_IRUGO | S_IWUSR,
433 pnp_show_current_resources, pnp_set_current_resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700435static ssize_t pnp_show_current_ids(struct device *dmdev,
436 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
438 char *str = buf;
439 struct pnp_dev *dev = to_pnp_dev(dmdev);
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700440 struct pnp_id *pos = dev->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 while (pos) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700443 str += sprintf(str, "%s\n", pos->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 pos = pos->next;
445 }
446 return (str - buf);
447}
448
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700449static DEVICE_ATTR(id, S_IRUGO, pnp_show_current_ids, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451int pnp_interface_attach_device(struct pnp_dev *dev)
452{
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700453 int rc = device_create_file(&dev->dev, &dev_attr_options);
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700454
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700455 if (rc)
456 goto err;
457 rc = device_create_file(&dev->dev, &dev_attr_resources);
458 if (rc)
459 goto err_opt;
460 rc = device_create_file(&dev->dev, &dev_attr_id);
461 if (rc)
462 goto err_res;
Jeff Garzikbfc7ee22006-12-06 20:35:33 -0800463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return 0;
Jeff Garzikbfc7ee22006-12-06 20:35:33 -0800465
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -0600466err_res:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700467 device_remove_file(&dev->dev, &dev_attr_resources);
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -0600468err_opt:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700469 device_remove_file(&dev->dev, &dev_attr_options);
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -0600470err:
Jeff Garzikbfc7ee22006-12-06 20:35:33 -0800471 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}