blob: 4b6808ff0e5df3517f5e72a9fdd71ed6f05d0a9e [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>
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -06006 * Copyright (C) 2008 Hewlett-Packard Development Company, L.P.
7 * Bjorn Helgaas <bjorn.helgaas@hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
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>
15#include <linux/stat.h>
16#include <linux/ctype.h>
17#include <linux/slab.h>
Daniel Walkerb3bd86e2008-02-06 01:40:04 -080018#include <linux/mutex.h>
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/uaccess.h>
21
22#include "base.h"
23
24struct pnp_info_buffer {
25 char *buffer; /* pointer to begin of buffer */
26 char *curr; /* current position in buffer */
27 unsigned long size; /* current size */
28 unsigned long len; /* total length of buffer */
29 int stop; /* stop flag */
30 int error; /* error code */
31};
32
33typedef struct pnp_info_buffer pnp_info_buffer_t;
34
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070035static int pnp_printf(pnp_info_buffer_t * buffer, char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
37 va_list args;
38 int res;
39
40 if (buffer->stop || buffer->error)
41 return 0;
42 va_start(args, fmt);
43 res = vsnprintf(buffer->curr, buffer->len - buffer->size, fmt, args);
44 va_end(args);
45 if (buffer->size + res >= buffer->len) {
46 buffer->stop = 1;
47 return 0;
48 }
49 buffer->curr += res;
50 buffer->size += res;
51 return res;
52}
53
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070054static void pnp_print_port(pnp_info_buffer_t * buffer, char *space,
55 struct pnp_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
Bjorn Helgaas169aaff2008-06-27 16:57:06 -060057 pnp_printf(buffer, "%sport %#llx-%#llx, align %#llx, size %#llx, "
58 "%i-bit address decoding\n", space,
59 (unsigned long long) port->min,
60 (unsigned long long) port->max,
61 port->align ? ((unsigned long long) port->align - 1) : 0,
62 (unsigned long long) port->size,
Bjorn Helgaas08c9f262008-06-27 16:57:03 -060063 port->flags & IORESOURCE_IO_16BIT_ADDR ? 16 : 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064}
65
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070066static void pnp_print_irq(pnp_info_buffer_t * buffer, char *space,
67 struct pnp_irq *irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
69 int first = 1, i;
70
71 pnp_printf(buffer, "%sirq ", space);
72 for (i = 0; i < PNP_IRQ_NR; i++)
Bjorn Helgaas7aefff52008-06-27 16:57:05 -060073 if (test_bit(i, irq->map.bits)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 if (!first) {
75 pnp_printf(buffer, ",");
76 } else {
77 first = 0;
78 }
79 if (i == 2 || i == 9)
80 pnp_printf(buffer, "2/9");
81 else
82 pnp_printf(buffer, "%i", i);
83 }
Bjorn Helgaas7aefff52008-06-27 16:57:05 -060084 if (bitmap_empty(irq->map.bits, PNP_IRQ_NR))
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 pnp_printf(buffer, "<none>");
86 if (irq->flags & IORESOURCE_IRQ_HIGHEDGE)
87 pnp_printf(buffer, " High-Edge");
88 if (irq->flags & IORESOURCE_IRQ_LOWEDGE)
89 pnp_printf(buffer, " Low-Edge");
90 if (irq->flags & IORESOURCE_IRQ_HIGHLEVEL)
91 pnp_printf(buffer, " High-Level");
92 if (irq->flags & IORESOURCE_IRQ_LOWLEVEL)
93 pnp_printf(buffer, " Low-Level");
Bjorn Helgaasd5ebde62008-06-27 16:57:14 -060094 if (irq->flags & IORESOURCE_IRQ_OPTIONAL)
95 pnp_printf(buffer, " (optional)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 pnp_printf(buffer, "\n");
97}
98
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070099static void pnp_print_dma(pnp_info_buffer_t * buffer, char *space,
100 struct pnp_dma *dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 int first = 1, i;
103 char *s;
104
105 pnp_printf(buffer, "%sdma ", space);
106 for (i = 0; i < 8; i++)
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700107 if (dma->map & (1 << i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 if (!first) {
109 pnp_printf(buffer, ",");
110 } else {
111 first = 0;
112 }
113 pnp_printf(buffer, "%i", i);
114 }
115 if (!dma->map)
116 pnp_printf(buffer, "<none>");
117 switch (dma->flags & IORESOURCE_DMA_TYPE_MASK) {
118 case IORESOURCE_DMA_8BIT:
119 s = "8-bit";
120 break;
121 case IORESOURCE_DMA_8AND16BIT:
122 s = "8-bit&16-bit";
123 break;
124 default:
125 s = "16-bit";
126 }
127 pnp_printf(buffer, " %s", s);
128 if (dma->flags & IORESOURCE_DMA_MASTER)
129 pnp_printf(buffer, " master");
130 if (dma->flags & IORESOURCE_DMA_BYTE)
131 pnp_printf(buffer, " byte-count");
132 if (dma->flags & IORESOURCE_DMA_WORD)
133 pnp_printf(buffer, " word-count");
134 switch (dma->flags & IORESOURCE_DMA_SPEED_MASK) {
135 case IORESOURCE_DMA_TYPEA:
136 s = "type-A";
137 break;
138 case IORESOURCE_DMA_TYPEB:
139 s = "type-B";
140 break;
141 case IORESOURCE_DMA_TYPEF:
142 s = "type-F";
143 break;
144 default:
145 s = "compatible";
146 break;
147 }
148 pnp_printf(buffer, " %s\n", s);
149}
150
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700151static void pnp_print_mem(pnp_info_buffer_t * buffer, char *space,
152 struct pnp_mem *mem)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 char *s;
155
Bjorn Helgaas169aaff2008-06-27 16:57:06 -0600156 pnp_printf(buffer, "%sMemory %#llx-%#llx, align %#llx, size %#llx",
157 space, (unsigned long long) mem->min,
158 (unsigned long long) mem->max,
159 (unsigned long long) mem->align,
160 (unsigned long long) mem->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 if (mem->flags & IORESOURCE_MEM_WRITEABLE)
162 pnp_printf(buffer, ", writeable");
163 if (mem->flags & IORESOURCE_MEM_CACHEABLE)
164 pnp_printf(buffer, ", cacheable");
165 if (mem->flags & IORESOURCE_MEM_RANGELENGTH)
166 pnp_printf(buffer, ", range-length");
167 if (mem->flags & IORESOURCE_MEM_SHADOWABLE)
168 pnp_printf(buffer, ", shadowable");
169 if (mem->flags & IORESOURCE_MEM_EXPANSIONROM)
170 pnp_printf(buffer, ", expansion ROM");
171 switch (mem->flags & IORESOURCE_MEM_TYPE_MASK) {
172 case IORESOURCE_MEM_8BIT:
173 s = "8-bit";
174 break;
175 case IORESOURCE_MEM_8AND16BIT:
176 s = "8-bit&16-bit";
177 break;
178 case IORESOURCE_MEM_32BIT:
179 s = "32-bit";
180 break;
181 default:
182 s = "16-bit";
183 }
184 pnp_printf(buffer, ", %s\n", s);
185}
186
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700187static void pnp_print_option(pnp_info_buffer_t * buffer, char *space,
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -0600188 struct pnp_option *option)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -0600190 switch (option->type) {
191 case IORESOURCE_IO:
192 pnp_print_port(buffer, space, &option->u.port);
193 break;
194 case IORESOURCE_MEM:
195 pnp_print_mem(buffer, space, &option->u.mem);
196 break;
197 case IORESOURCE_IRQ:
198 pnp_print_irq(buffer, space, &option->u.irq);
199 break;
200 case IORESOURCE_DMA:
201 pnp_print_dma(buffer, space, &option->u.dma);
202 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
Greg Kroah-Hartman2df43902013-10-06 23:55:42 -0700206static ssize_t options_show(struct device *dmdev, struct device_attribute *attr,
207 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 struct pnp_dev *dev = to_pnp_dev(dmdev);
Bjorn Helgaasb72ee1f12008-06-27 16:57:02 -0600210 pnp_info_buffer_t *buffer;
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -0600211 struct pnp_option *option;
212 int ret, dep = 0, set = 0;
213 char *indent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Bjorn Helgaasb72ee1f12008-06-27 16:57:02 -0600215 buffer = pnp_alloc(sizeof(pnp_info_buffer_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (!buffer)
217 return -ENOMEM;
218
219 buffer->len = PAGE_SIZE;
220 buffer->buffer = buf;
221 buffer->curr = buffer->buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -0600223 list_for_each_entry(option, &dev->options, list) {
224 if (pnp_option_is_dependent(option)) {
225 indent = " ";
226 if (!dep || pnp_option_set(option) != set) {
227 set = pnp_option_set(option);
228 dep = 1;
229 pnp_printf(buffer, "Dependent: %02i - "
230 "Priority %s\n", set,
231 pnp_option_priority_name(option));
232 }
233 } else {
234 dep = 0;
235 indent = "";
236 }
237 pnp_print_option(buffer, indent, option);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -0600239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 ret = (buffer->curr - buf);
241 kfree(buffer);
242 return ret;
243}
Greg Kroah-Hartman2df43902013-10-06 23:55:42 -0700244static DEVICE_ATTR_RO(options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Greg Kroah-Hartman2df43902013-10-06 23:55:42 -0700246static ssize_t resources_show(struct device *dmdev,
247 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 struct pnp_dev *dev = to_pnp_dev(dmdev);
Bjorn Helgaasb72ee1f12008-06-27 16:57:02 -0600250 pnp_info_buffer_t *buffer;
Bjorn Helgaasf61ed7e2008-06-27 16:57:00 -0600251 struct pnp_resource *pnp_res;
Bjorn Helgaas95ab3662008-04-28 16:34:26 -0600252 struct resource *res;
Bjorn Helgaasf61ed7e2008-06-27 16:57:00 -0600253 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 if (!dev)
256 return -EINVAL;
257
Bjorn Helgaasb72ee1f12008-06-27 16:57:02 -0600258 buffer = pnp_alloc(sizeof(pnp_info_buffer_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (!buffer)
260 return -ENOMEM;
Bjorn Helgaasb72ee1f12008-06-27 16:57:02 -0600261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 buffer->len = PAGE_SIZE;
263 buffer->buffer = buf;
264 buffer->curr = buffer->buffer;
265
Bjorn Helgaasf61ed7e2008-06-27 16:57:00 -0600266 pnp_printf(buffer, "state = %s\n", dev->active ? "active" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Bjorn Helgaasf61ed7e2008-06-27 16:57:00 -0600268 list_for_each_entry(pnp_res, &dev->resources, list) {
269 res = &pnp_res->res;
270
271 pnp_printf(buffer, pnp_resource_type_name(res));
272
273 if (res->flags & IORESOURCE_DISABLED) {
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600274 pnp_printf(buffer, " disabled\n");
Bjorn Helgaasf61ed7e2008-06-27 16:57:00 -0600275 continue;
276 }
277
278 switch (pnp_resource_type(res)) {
279 case IORESOURCE_IO:
280 case IORESOURCE_MEM:
Bjorn Helgaas7e0e9c02010-03-05 10:47:57 -0700281 case IORESOURCE_BUS:
Bjorn Helgaasfa35b4922010-03-05 10:47:52 -0700282 pnp_printf(buffer, " %#llx-%#llx%s\n",
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600283 (unsigned long long) res->start,
Bjorn Helgaasfa35b4922010-03-05 10:47:52 -0700284 (unsigned long long) res->end,
285 res->flags & IORESOURCE_WINDOW ?
286 " window" : "");
Bjorn Helgaasf61ed7e2008-06-27 16:57:00 -0600287 break;
288 case IORESOURCE_IRQ:
289 case IORESOURCE_DMA:
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600290 pnp_printf(buffer, " %lld\n",
291 (unsigned long long) res->start);
Bjorn Helgaasf61ed7e2008-06-27 16:57:00 -0600292 break;
293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
Bjorn Helgaasf61ed7e2008-06-27 16:57:00 -0600295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 ret = (buffer->curr - buf);
297 kfree(buffer);
298 return ret;
299}
300
Witold Szczeponikc9377662012-12-15 01:00:14 +0100301static char *pnp_get_resource_value(char *buf,
302 unsigned long type,
303 resource_size_t *start,
304 resource_size_t *end,
305 unsigned long *flags)
306{
307 if (start)
308 *start = 0;
309 if (end)
310 *end = 0;
311 if (flags)
312 *flags = 0;
313
314 /* TBD: allow for disabled resources */
315
316 buf = skip_spaces(buf);
317 if (start) {
318 *start = simple_strtoull(buf, &buf, 0);
319 if (end) {
320 buf = skip_spaces(buf);
321 if (*buf == '-') {
322 buf = skip_spaces(buf + 1);
323 *end = simple_strtoull(buf, &buf, 0);
324 } else
325 *end = *start;
326 }
327 }
328
329 /* TBD: allow for additional flags, e.g., IORESOURCE_WINDOW */
330
331 return buf;
332}
333
Greg Kroah-Hartman2df43902013-10-06 23:55:42 -0700334static ssize_t resources_store(struct device *dmdev,
335 struct device_attribute *attr, const char *ubuf,
336 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 struct pnp_dev *dev = to_pnp_dev(dmdev);
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700339 char *buf = (void *)ubuf;
340 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 if (dev->status & PNP_ATTACHED) {
343 retval = -EBUSY;
Bjorn Helgaasa05d0782007-10-16 23:31:10 -0700344 dev_info(&dev->dev, "in use; can't configure\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 goto done;
346 }
347
André Goddard Rosae7d28602009-12-14 18:01:06 -0800348 buf = skip_spaces(buf);
Rasmus Villemoes7fb1cab2014-10-13 15:54:54 -0700349 if (!strncasecmp(buf, "disable", 7)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 retval = pnp_disable_dev(dev);
351 goto done;
352 }
Rasmus Villemoes7fb1cab2014-10-13 15:54:54 -0700353 if (!strncasecmp(buf, "activate", 8)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 retval = pnp_activate_dev(dev);
355 goto done;
356 }
Rasmus Villemoes7fb1cab2014-10-13 15:54:54 -0700357 if (!strncasecmp(buf, "fill", 4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (dev->active)
359 goto done;
360 retval = pnp_auto_config_dev(dev);
361 goto done;
362 }
Rasmus Villemoes7fb1cab2014-10-13 15:54:54 -0700363 if (!strncasecmp(buf, "auto", 4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (dev->active)
365 goto done;
Bjorn Helgaasf4490002008-04-28 16:34:09 -0600366 pnp_init_resources(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 retval = pnp_auto_config_dev(dev);
368 goto done;
369 }
Rasmus Villemoes7fb1cab2014-10-13 15:54:54 -0700370 if (!strncasecmp(buf, "clear", 5)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (dev->active)
372 goto done;
Bjorn Helgaasf4490002008-04-28 16:34:09 -0600373 pnp_init_resources(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 goto done;
375 }
Rasmus Villemoes7fb1cab2014-10-13 15:54:54 -0700376 if (!strncasecmp(buf, "get", 3)) {
Daniel Walkerb3bd86e2008-02-06 01:40:04 -0800377 mutex_lock(&pnp_res_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 if (pnp_can_read(dev))
Bjorn Helgaas59284cb2008-04-28 16:34:05 -0600379 dev->protocol->get(dev);
Daniel Walkerb3bd86e2008-02-06 01:40:04 -0800380 mutex_unlock(&pnp_res_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 goto done;
382 }
Rasmus Villemoes7fb1cab2014-10-13 15:54:54 -0700383 if (!strncasecmp(buf, "set", 3)) {
Witold Szczeponikc9377662012-12-15 01:00:14 +0100384 resource_size_t start;
385 resource_size_t end;
386 unsigned long flags;
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 if (dev->active)
389 goto done;
390 buf += 3;
Bjorn Helgaasf4490002008-04-28 16:34:09 -0600391 pnp_init_resources(dev);
Daniel Walkerb3bd86e2008-02-06 01:40:04 -0800392 mutex_lock(&pnp_res_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 while (1) {
André Goddard Rosae7d28602009-12-14 18:01:06 -0800394 buf = skip_spaces(buf);
Rasmus Villemoes7fb1cab2014-10-13 15:54:54 -0700395 if (!strncasecmp(buf, "io", 2)) {
Witold Szczeponikc9377662012-12-15 01:00:14 +0100396 buf = pnp_get_resource_value(buf + 2,
397 IORESOURCE_IO,
398 &start, &end,
399 &flags);
400 pnp_add_io_resource(dev, start, end, flags);
Rasmus Villemoes7fb1cab2014-10-13 15:54:54 -0700401 } else if (!strncasecmp(buf, "mem", 3)) {
Witold Szczeponikc9377662012-12-15 01:00:14 +0100402 buf = pnp_get_resource_value(buf + 3,
403 IORESOURCE_MEM,
404 &start, &end,
405 &flags);
406 pnp_add_mem_resource(dev, start, end, flags);
Rasmus Villemoes7fb1cab2014-10-13 15:54:54 -0700407 } else if (!strncasecmp(buf, "irq", 3)) {
Witold Szczeponikc9377662012-12-15 01:00:14 +0100408 buf = pnp_get_resource_value(buf + 3,
409 IORESOURCE_IRQ,
410 &start, NULL,
411 &flags);
412 pnp_add_irq_resource(dev, start, flags);
Rasmus Villemoes7fb1cab2014-10-13 15:54:54 -0700413 } else if (!strncasecmp(buf, "dma", 3)) {
Witold Szczeponikc9377662012-12-15 01:00:14 +0100414 buf = pnp_get_resource_value(buf + 3,
415 IORESOURCE_DMA,
416 &start, NULL,
417 &flags);
418 pnp_add_dma_resource(dev, start, flags);
Rasmus Villemoes7fb1cab2014-10-13 15:54:54 -0700419 } else if (!strncasecmp(buf, "bus", 3)) {
Witold Szczeponikc9377662012-12-15 01:00:14 +0100420 buf = pnp_get_resource_value(buf + 3,
421 IORESOURCE_BUS,
422 &start, &end,
423 NULL);
424 pnp_add_bus_resource(dev, start, end);
425 } else
426 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
Daniel Walkerb3bd86e2008-02-06 01:40:04 -0800428 mutex_unlock(&pnp_res_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 goto done;
430 }
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -0600431
432done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (retval < 0)
434 return retval;
435 return count;
436}
Greg Kroah-Hartman2df43902013-10-06 23:55:42 -0700437static DEVICE_ATTR_RW(resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Greg Kroah-Hartman2df43902013-10-06 23:55:42 -0700439static ssize_t id_show(struct device *dmdev, struct device_attribute *attr,
440 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
442 char *str = buf;
443 struct pnp_dev *dev = to_pnp_dev(dmdev);
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700444 struct pnp_id *pos = dev->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 while (pos) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700447 str += sprintf(str, "%s\n", pos->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 pos = pos->next;
449 }
450 return (str - buf);
451}
Greg Kroah-Hartman2df43902013-10-06 23:55:42 -0700452static DEVICE_ATTR_RO(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Greg Kroah-Hartman2df43902013-10-06 23:55:42 -0700454static struct attribute *pnp_dev_attrs[] = {
455 &dev_attr_resources.attr,
456 &dev_attr_options.attr,
457 &dev_attr_id.attr,
458 NULL,
459};
460
461static const struct attribute_group pnp_dev_group = {
462 .attrs = pnp_dev_attrs,
463};
464
465const struct attribute_group *pnp_dev_groups[] = {
466 &pnp_dev_group,
467 NULL,
Drew Moseley8a89efd2008-09-28 01:31:35 +0200468};