blob: c5df94e866787bb63bf344197edd14a08d7a1398 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/pci/pci-sysfs.c
3 *
4 * (C) Copyright 2002-2004 Greg Kroah-Hartman <greg@kroah.com>
5 * (C) Copyright 2002-2004 IBM Corp.
6 * (C) Copyright 2003 Matthew Wilcox
7 * (C) Copyright 2003 Hewlett-Packard
8 * (C) Copyright 2004 Jon Smirl <jonsmirl@yahoo.com>
9 * (C) Copyright 2004 Silicon Graphics, Inc. Jesse Barnes <jbarnes@sgi.com>
10 *
11 * File attributes for PCI devices
12 *
13 * Modeled after usb's driverfs.c
14 *
15 */
16
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/kernel.h>
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -070019#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/pci.h>
21#include <linux/stat.h>
22#include <linux/topology.h>
23#include <linux/mm.h>
Alexey Dobriyanaa0ac362007-07-15 23:40:39 -070024#include <linux/capability.h>
Shaohua Li7d715a62008-02-25 09:46:41 +080025#include <linux/pci-aspm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "pci.h"
27
28static int sysfs_initialized; /* = 0 */
29
30/* show configuration fields */
31#define pci_config_attr(field, format_string) \
32static ssize_t \
Yani Ioannoue404e272005-05-17 06:42:58 -040033field##_show(struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070034{ \
35 struct pci_dev *pdev; \
36 \
37 pdev = to_pci_dev (dev); \
38 return sprintf (buf, format_string, pdev->field); \
39}
40
41pci_config_attr(vendor, "0x%04x\n");
42pci_config_attr(device, "0x%04x\n");
43pci_config_attr(subsystem_vendor, "0x%04x\n");
44pci_config_attr(subsystem_device, "0x%04x\n");
45pci_config_attr(class, "0x%06x\n");
46pci_config_attr(irq, "%u\n");
47
Doug Thompsonbdee9d92006-06-14 16:59:48 -070048static ssize_t broken_parity_status_show(struct device *dev,
49 struct device_attribute *attr,
50 char *buf)
51{
52 struct pci_dev *pdev = to_pci_dev(dev);
53 return sprintf (buf, "%u\n", pdev->broken_parity_status);
54}
55
56static ssize_t broken_parity_status_store(struct device *dev,
57 struct device_attribute *attr,
58 const char *buf, size_t count)
59{
60 struct pci_dev *pdev = to_pci_dev(dev);
Trent Piepho92425a42008-11-30 17:10:12 -080061 unsigned long val;
Doug Thompsonbdee9d92006-06-14 16:59:48 -070062
Trent Piepho92425a42008-11-30 17:10:12 -080063 if (strict_strtoul(buf, 0, &val) < 0)
64 return -EINVAL;
65
66 pdev->broken_parity_status = !!val;
67
68 return count;
Doug Thompsonbdee9d92006-06-14 16:59:48 -070069}
70
Alan Cox4327edf2005-09-10 00:25:49 -070071static ssize_t local_cpus_show(struct device *dev,
72 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
Mike Travis3be83052009-01-04 05:18:01 -080074 const struct cpumask *mask;
Alan Cox4327edf2005-09-10 00:25:49 -070075 int len;
76
Andreas Herrmanne0cd5162009-04-17 12:01:55 +020077#ifdef CONFIG_NUMA
78 mask = cpumask_of_node(dev_to_node(dev));
79#else
Mike Travis3be83052009-01-04 05:18:01 -080080 mask = cpumask_of_pcibus(to_pci_dev(dev)->bus);
Andreas Herrmanne0cd5162009-04-17 12:01:55 +020081#endif
Mike Travis3be83052009-01-04 05:18:01 -080082 len = cpumask_scnprintf(buf, PAGE_SIZE-2, mask);
Mike Travis39106dc2008-04-08 11:43:03 -070083 buf[len++] = '\n';
84 buf[len] = '\0';
85 return len;
86}
87
88
89static ssize_t local_cpulist_show(struct device *dev,
90 struct device_attribute *attr, char *buf)
91{
Mike Travis3be83052009-01-04 05:18:01 -080092 const struct cpumask *mask;
Mike Travis39106dc2008-04-08 11:43:03 -070093 int len;
94
Andreas Herrmanne0cd5162009-04-17 12:01:55 +020095#ifdef CONFIG_NUMA
96 mask = cpumask_of_node(dev_to_node(dev));
97#else
Mike Travis3be83052009-01-04 05:18:01 -080098 mask = cpumask_of_pcibus(to_pci_dev(dev)->bus);
Andreas Herrmanne0cd5162009-04-17 12:01:55 +020099#endif
Mike Travis3be83052009-01-04 05:18:01 -0800100 len = cpulist_scnprintf(buf, PAGE_SIZE-2, mask);
Mike Travis39106dc2008-04-08 11:43:03 -0700101 buf[len++] = '\n';
102 buf[len] = '\0';
103 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
106/* show resources */
107static ssize_t
Yani Ioannoue404e272005-05-17 06:42:58 -0400108resource_show(struct device * dev, struct device_attribute *attr, char * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
110 struct pci_dev * pci_dev = to_pci_dev(dev);
111 char * str = buf;
112 int i;
Yu Zhaofde09c62008-11-22 02:39:32 +0800113 int max;
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700114 resource_size_t start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 if (pci_dev->subordinate)
117 max = DEVICE_COUNT_RESOURCE;
Yu Zhaofde09c62008-11-22 02:39:32 +0800118 else
119 max = PCI_BRIDGE_RESOURCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 for (i = 0; i < max; i++) {
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000122 struct resource *res = &pci_dev->resource[i];
123 pci_resource_to_user(pci_dev, i, res, &start, &end);
124 str += sprintf(str,"0x%016llx 0x%016llx 0x%016llx\n",
125 (unsigned long long)start,
126 (unsigned long long)end,
127 (unsigned long long)res->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 }
129 return (str - buf);
130}
131
Greg Kroah-Hartman87c8a442005-06-19 12:21:43 +0200132static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
Greg KH98885492005-05-05 11:57:25 -0700133{
134 struct pci_dev *pci_dev = to_pci_dev(dev);
135
136 return sprintf(buf, "pci:v%08Xd%08Xsv%08Xsd%08Xbc%02Xsc%02Xi%02x\n",
137 pci_dev->vendor, pci_dev->device,
138 pci_dev->subsystem_vendor, pci_dev->subsystem_device,
139 (u8)(pci_dev->class >> 16), (u8)(pci_dev->class >> 8),
140 (u8)(pci_dev->class));
141}
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800142
143static ssize_t is_enabled_store(struct device *dev,
144 struct device_attribute *attr, const char *buf,
145 size_t count)
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200146{
147 struct pci_dev *pdev = to_pci_dev(dev);
Trent Piepho92425a42008-11-30 17:10:12 -0800148 unsigned long val;
149 ssize_t result = strict_strtoul(buf, 0, &val);
150
151 if (result < 0)
152 return result;
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200153
154 /* this can crash the machine when done on the "wrong" device */
155 if (!capable(CAP_SYS_ADMIN))
Trent Piepho92425a42008-11-30 17:10:12 -0800156 return -EPERM;
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200157
Trent Piepho92425a42008-11-30 17:10:12 -0800158 if (!val) {
Yuji Shimada296ccb02009-04-03 16:41:46 +0900159 if (pci_is_enabled(pdev))
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800160 pci_disable_device(pdev);
161 else
162 result = -EIO;
Trent Piepho92425a42008-11-30 17:10:12 -0800163 } else
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800164 result = pci_enable_device(pdev);
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200165
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800166 return result < 0 ? result : count;
167}
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200168
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800169static ssize_t is_enabled_show(struct device *dev,
170 struct device_attribute *attr, char *buf)
171{
172 struct pci_dev *pdev;
173
174 pdev = to_pci_dev (dev);
175 return sprintf (buf, "%u\n", atomic_read(&pdev->enable_cnt));
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200176}
177
Brice Goglin81bb0e12007-01-28 10:53:40 +0100178#ifdef CONFIG_NUMA
179static ssize_t
180numa_node_show(struct device *dev, struct device_attribute *attr, char *buf)
181{
182 return sprintf (buf, "%d\n", dev->numa_node);
183}
184#endif
185
Brice Goglinfe970642006-08-31 01:55:15 -0400186static ssize_t
Yinghai Lubb965402009-11-24 18:21:21 -0800187dma_mask_bits_show(struct device *dev, struct device_attribute *attr, char *buf)
188{
189 struct pci_dev *pdev = to_pci_dev(dev);
190
191 return sprintf (buf, "%d\n", fls64(pdev->dma_mask));
192}
193
194static ssize_t
195consistent_dma_mask_bits_show(struct device *dev, struct device_attribute *attr,
196 char *buf)
197{
198 return sprintf (buf, "%d\n", fls64(dev->coherent_dma_mask));
199}
200
201static ssize_t
Brice Goglinfe970642006-08-31 01:55:15 -0400202msi_bus_show(struct device *dev, struct device_attribute *attr, char *buf)
203{
204 struct pci_dev *pdev = to_pci_dev(dev);
205
206 if (!pdev->subordinate)
207 return 0;
208
209 return sprintf (buf, "%u\n",
210 !(pdev->subordinate->bus_flags & PCI_BUS_FLAGS_NO_MSI));
211}
212
213static ssize_t
214msi_bus_store(struct device *dev, struct device_attribute *attr,
215 const char *buf, size_t count)
216{
217 struct pci_dev *pdev = to_pci_dev(dev);
Trent Piepho92425a42008-11-30 17:10:12 -0800218 unsigned long val;
219
220 if (strict_strtoul(buf, 0, &val) < 0)
221 return -EINVAL;
Brice Goglinfe970642006-08-31 01:55:15 -0400222
223 /* bad things may happen if the no_msi flag is changed
224 * while some drivers are loaded */
225 if (!capable(CAP_SYS_ADMIN))
Trent Piepho92425a42008-11-30 17:10:12 -0800226 return -EPERM;
Brice Goglinfe970642006-08-31 01:55:15 -0400227
Trent Piepho92425a42008-11-30 17:10:12 -0800228 /* Maybe pci devices without subordinate busses shouldn't even have this
229 * attribute in the first place? */
Brice Goglinfe970642006-08-31 01:55:15 -0400230 if (!pdev->subordinate)
231 return count;
232
Trent Piepho92425a42008-11-30 17:10:12 -0800233 /* Is the flag going to change, or keep the value it already had? */
234 if (!(pdev->subordinate->bus_flags & PCI_BUS_FLAGS_NO_MSI) ^
235 !!val) {
236 pdev->subordinate->bus_flags ^= PCI_BUS_FLAGS_NO_MSI;
Brice Goglinfe970642006-08-31 01:55:15 -0400237
Trent Piepho92425a42008-11-30 17:10:12 -0800238 dev_warn(&pdev->dev, "forced subordinate bus to%s support MSI,"
239 " bad things could happen\n", val ? "" : " not");
Brice Goglinfe970642006-08-31 01:55:15 -0400240 }
241
242 return count;
243}
Greg KH98885492005-05-05 11:57:25 -0700244
Alex Chiang705b1aa2009-03-20 14:56:31 -0600245#ifdef CONFIG_HOTPLUG
246static DEFINE_MUTEX(pci_remove_rescan_mutex);
247static ssize_t bus_rescan_store(struct bus_type *bus, const char *buf,
248 size_t count)
249{
250 unsigned long val;
251 struct pci_bus *b = NULL;
252
253 if (strict_strtoul(buf, 0, &val) < 0)
254 return -EINVAL;
255
256 if (val) {
257 mutex_lock(&pci_remove_rescan_mutex);
258 while ((b = pci_find_next_bus(b)) != NULL)
259 pci_rescan_bus(b);
260 mutex_unlock(&pci_remove_rescan_mutex);
261 }
262 return count;
263}
264
265struct bus_attribute pci_bus_attrs[] = {
266 __ATTR(rescan, (S_IWUSR|S_IWGRP), NULL, bus_rescan_store),
267 __ATTR_NULL
268};
Alex Chiang77c27c72009-03-20 14:56:36 -0600269
Alex Chiang738a6392009-03-20 14:56:41 -0600270static ssize_t
271dev_rescan_store(struct device *dev, struct device_attribute *attr,
272 const char *buf, size_t count)
273{
274 unsigned long val;
275 struct pci_dev *pdev = to_pci_dev(dev);
276
277 if (strict_strtoul(buf, 0, &val) < 0)
278 return -EINVAL;
279
280 if (val) {
281 mutex_lock(&pci_remove_rescan_mutex);
282 pci_rescan_bus(pdev->bus);
283 mutex_unlock(&pci_remove_rescan_mutex);
284 }
285 return count;
286}
287
Alex Chiang77c27c72009-03-20 14:56:36 -0600288static void remove_callback(struct device *dev)
289{
290 struct pci_dev *pdev = to_pci_dev(dev);
291
292 mutex_lock(&pci_remove_rescan_mutex);
293 pci_remove_bus_device(pdev);
294 mutex_unlock(&pci_remove_rescan_mutex);
295}
296
297static ssize_t
298remove_store(struct device *dev, struct device_attribute *dummy,
299 const char *buf, size_t count)
300{
301 int ret = 0;
302 unsigned long val;
Alex Chiang77c27c72009-03-20 14:56:36 -0600303
304 if (strict_strtoul(buf, 0, &val) < 0)
305 return -EINVAL;
306
Alex Chiang77c27c72009-03-20 14:56:36 -0600307 /* An attribute cannot be unregistered by one of its own methods,
308 * so we have to use this roundabout approach.
309 */
310 if (val)
311 ret = device_schedule_callback(dev, remove_callback);
312 if (ret)
313 count = ret;
314 return count;
315}
Alex Chiang705b1aa2009-03-20 14:56:31 -0600316#endif
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318struct device_attribute pci_dev_attrs[] = {
319 __ATTR_RO(resource),
320 __ATTR_RO(vendor),
321 __ATTR_RO(device),
322 __ATTR_RO(subsystem_vendor),
323 __ATTR_RO(subsystem_device),
324 __ATTR_RO(class),
325 __ATTR_RO(irq),
326 __ATTR_RO(local_cpus),
Mike Travis39106dc2008-04-08 11:43:03 -0700327 __ATTR_RO(local_cpulist),
Greg KH98885492005-05-05 11:57:25 -0700328 __ATTR_RO(modalias),
Brice Goglin81bb0e12007-01-28 10:53:40 +0100329#ifdef CONFIG_NUMA
330 __ATTR_RO(numa_node),
331#endif
Yinghai Lubb965402009-11-24 18:21:21 -0800332 __ATTR_RO(dma_mask_bits),
333 __ATTR_RO(consistent_dma_mask_bits),
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200334 __ATTR(enable, 0600, is_enabled_show, is_enabled_store),
Doug Thompsonbdee9d92006-06-14 16:59:48 -0700335 __ATTR(broken_parity_status,(S_IRUGO|S_IWUSR),
336 broken_parity_status_show,broken_parity_status_store),
Brice Goglinfe970642006-08-31 01:55:15 -0400337 __ATTR(msi_bus, 0644, msi_bus_show, msi_bus_store),
Alex Chiang77c27c72009-03-20 14:56:36 -0600338#ifdef CONFIG_HOTPLUG
339 __ATTR(remove, (S_IWUSR|S_IWGRP), NULL, remove_store),
Alex Chiang738a6392009-03-20 14:56:41 -0600340 __ATTR(rescan, (S_IWUSR|S_IWGRP), NULL, dev_rescan_store),
Alex Chiang77c27c72009-03-20 14:56:36 -0600341#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 __ATTR_NULL,
343};
344
345static ssize_t
Dave Airlie217f45d2009-03-04 05:57:05 +0000346boot_vga_show(struct device *dev, struct device_attribute *attr, char *buf)
347{
348 struct pci_dev *pdev = to_pci_dev(dev);
349
350 return sprintf(buf, "%u\n",
351 !!(pdev->resource[PCI_ROM_RESOURCE].flags &
352 IORESOURCE_ROM_SHADOW));
353}
354struct device_attribute vga_attr = __ATTR_RO(boot_vga);
355
356static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800357pci_read_config(struct kobject *kobj, struct bin_attribute *bin_attr,
358 char *buf, loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
360 struct pci_dev *dev = to_pci_dev(container_of(kobj,struct device,kobj));
361 unsigned int size = 64;
362 loff_t init_off = off;
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900363 u8 *data = (u8*) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 /* Several chips lock up trying to read undefined config space */
366 if (capable(CAP_SYS_ADMIN)) {
367 size = dev->cfg_size;
368 } else if (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) {
369 size = 128;
370 }
371
372 if (off > size)
373 return 0;
374 if (off + count > size) {
375 size -= off;
376 count = size;
377 } else {
378 size = count;
379 }
380
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900381 if ((off & 1) && size) {
382 u8 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700383 pci_user_read_config_byte(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900384 data[off - init_off] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 off++;
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900386 size--;
387 }
388
389 if ((off & 3) && size > 2) {
390 u16 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700391 pci_user_read_config_word(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900392 data[off - init_off] = val & 0xff;
393 data[off - init_off + 1] = (val >> 8) & 0xff;
394 off += 2;
395 size -= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397
398 while (size > 3) {
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900399 u32 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700400 pci_user_read_config_dword(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900401 data[off - init_off] = val & 0xff;
402 data[off - init_off + 1] = (val >> 8) & 0xff;
403 data[off - init_off + 2] = (val >> 16) & 0xff;
404 data[off - init_off + 3] = (val >> 24) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 off += 4;
406 size -= 4;
407 }
408
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900409 if (size >= 2) {
410 u16 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700411 pci_user_read_config_word(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900412 data[off - init_off] = val & 0xff;
413 data[off - init_off + 1] = (val >> 8) & 0xff;
414 off += 2;
415 size -= 2;
416 }
417
418 if (size > 0) {
419 u8 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700420 pci_user_read_config_byte(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900421 data[off - init_off] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 off++;
423 --size;
424 }
425
426 return count;
427}
428
429static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800430pci_write_config(struct kobject *kobj, struct bin_attribute *bin_attr,
431 char *buf, loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
433 struct pci_dev *dev = to_pci_dev(container_of(kobj,struct device,kobj));
434 unsigned int size = count;
435 loff_t init_off = off;
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900436 u8 *data = (u8*) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 if (off > dev->cfg_size)
439 return 0;
440 if (off + count > dev->cfg_size) {
441 size = dev->cfg_size - off;
442 count = size;
443 }
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900444
445 if ((off & 1) && size) {
Brian Kinge04b0ea2005-09-27 01:21:55 -0700446 pci_user_write_config_byte(dev, off, data[off - init_off]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 off++;
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900448 size--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900450
451 if ((off & 3) && size > 2) {
452 u16 val = data[off - init_off];
453 val |= (u16) data[off - init_off + 1] << 8;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700454 pci_user_write_config_word(dev, off, val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900455 off += 2;
456 size -= 2;
457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 while (size > 3) {
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900460 u32 val = data[off - init_off];
461 val |= (u32) data[off - init_off + 1] << 8;
462 val |= (u32) data[off - init_off + 2] << 16;
463 val |= (u32) data[off - init_off + 3] << 24;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700464 pci_user_write_config_dword(dev, off, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 off += 4;
466 size -= 4;
467 }
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900468
469 if (size >= 2) {
470 u16 val = data[off - init_off];
471 val |= (u16) data[off - init_off + 1] << 8;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700472 pci_user_write_config_word(dev, off, val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900473 off += 2;
474 size -= 2;
475 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900477 if (size) {
Brian Kinge04b0ea2005-09-27 01:21:55 -0700478 pci_user_write_config_byte(dev, off, data[off - init_off]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 off++;
480 --size;
481 }
482
483 return count;
484}
485
Ben Hutchings94e61082008-03-05 16:52:39 +0000486static ssize_t
Stephen Hemminger287d19c2008-12-18 09:17:16 -0800487read_vpd_attr(struct kobject *kobj, struct bin_attribute *bin_attr,
Ben Hutchings94e61082008-03-05 16:52:39 +0000488 char *buf, loff_t off, size_t count)
489{
490 struct pci_dev *dev =
491 to_pci_dev(container_of(kobj, struct device, kobj));
Ben Hutchings94e61082008-03-05 16:52:39 +0000492
493 if (off > bin_attr->size)
494 count = 0;
495 else if (count > bin_attr->size - off)
496 count = bin_attr->size - off;
Ben Hutchings94e61082008-03-05 16:52:39 +0000497
Stephen Hemminger287d19c2008-12-18 09:17:16 -0800498 return pci_read_vpd(dev, off, count, buf);
499}
Ben Hutchings94e61082008-03-05 16:52:39 +0000500
Stephen Hemminger287d19c2008-12-18 09:17:16 -0800501static ssize_t
502write_vpd_attr(struct kobject *kobj, struct bin_attribute *bin_attr,
503 char *buf, loff_t off, size_t count)
504{
505 struct pci_dev *dev =
506 to_pci_dev(container_of(kobj, struct device, kobj));
507
508 if (off > bin_attr->size)
509 count = 0;
510 else if (count > bin_attr->size - off)
511 count = bin_attr->size - off;
512
513 return pci_write_vpd(dev, off, count, buf);
Ben Hutchings94e61082008-03-05 16:52:39 +0000514}
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516#ifdef HAVE_PCI_LEGACY
517/**
518 * pci_read_legacy_io - read byte(s) from legacy I/O port space
519 * @kobj: kobject corresponding to file to read from
Randy Dunlapcffb2fa2009-04-10 15:17:50 -0700520 * @bin_attr: struct bin_attribute for this file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 * @buf: buffer to store results
522 * @off: offset into legacy I/O port space
523 * @count: number of bytes to read
524 *
525 * Reads 1, 2, or 4 bytes from legacy I/O port space using an arch specific
526 * callback routine (pci_legacy_read).
527 */
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000528static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800529pci_read_legacy_io(struct kobject *kobj, struct bin_attribute *bin_attr,
530 char *buf, loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
532 struct pci_bus *bus = to_pci_bus(container_of(kobj,
Greg Kroah-Hartmanfd7d1ce2007-05-22 22:47:54 -0400533 struct device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 kobj));
535
536 /* Only support 1, 2 or 4 byte accesses */
537 if (count != 1 && count != 2 && count != 4)
538 return -EINVAL;
539
540 return pci_legacy_read(bus, off, (u32 *)buf, count);
541}
542
543/**
544 * pci_write_legacy_io - write byte(s) to legacy I/O port space
545 * @kobj: kobject corresponding to file to read from
Randy Dunlapcffb2fa2009-04-10 15:17:50 -0700546 * @bin_attr: struct bin_attribute for this file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 * @buf: buffer containing value to be written
548 * @off: offset into legacy I/O port space
549 * @count: number of bytes to write
550 *
551 * Writes 1, 2, or 4 bytes from legacy I/O port space using an arch specific
552 * callback routine (pci_legacy_write).
553 */
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000554static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800555pci_write_legacy_io(struct kobject *kobj, struct bin_attribute *bin_attr,
556 char *buf, loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
558 struct pci_bus *bus = to_pci_bus(container_of(kobj,
Greg Kroah-Hartmanfd7d1ce2007-05-22 22:47:54 -0400559 struct device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 kobj));
561 /* Only support 1, 2 or 4 byte accesses */
562 if (count != 1 && count != 2 && count != 4)
563 return -EINVAL;
564
565 return pci_legacy_write(bus, off, *(u32 *)buf, count);
566}
567
568/**
569 * pci_mmap_legacy_mem - map legacy PCI memory into user memory space
570 * @kobj: kobject corresponding to device to be mapped
571 * @attr: struct bin_attribute for this file
572 * @vma: struct vm_area_struct passed to mmap
573 *
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000574 * Uses an arch specific callback, pci_mmap_legacy_mem_page_range, to mmap
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 * legacy memory space (first meg of bus space) into application virtual
576 * memory space.
577 */
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000578static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579pci_mmap_legacy_mem(struct kobject *kobj, struct bin_attribute *attr,
580 struct vm_area_struct *vma)
581{
582 struct pci_bus *bus = to_pci_bus(container_of(kobj,
Greg Kroah-Hartmanfd7d1ce2007-05-22 22:47:54 -0400583 struct device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 kobj));
585
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000586 return pci_mmap_legacy_page_range(bus, vma, pci_mmap_mem);
587}
588
589/**
590 * pci_mmap_legacy_io - map legacy PCI IO into user memory space
591 * @kobj: kobject corresponding to device to be mapped
592 * @attr: struct bin_attribute for this file
593 * @vma: struct vm_area_struct passed to mmap
594 *
595 * Uses an arch specific callback, pci_mmap_legacy_io_page_range, to mmap
596 * legacy IO space (first meg of bus space) into application virtual
597 * memory space. Returns -ENOSYS if the operation isn't supported
598 */
599static int
600pci_mmap_legacy_io(struct kobject *kobj, struct bin_attribute *attr,
601 struct vm_area_struct *vma)
602{
603 struct pci_bus *bus = to_pci_bus(container_of(kobj,
604 struct device,
605 kobj));
606
607 return pci_mmap_legacy_page_range(bus, vma, pci_mmap_io);
608}
609
610/**
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +0300611 * pci_adjust_legacy_attr - adjustment of legacy file attributes
612 * @b: bus to create files under
613 * @mmap_type: I/O port or memory
614 *
615 * Stub implementation. Can be overridden by arch if necessary.
616 */
617void __weak
618pci_adjust_legacy_attr(struct pci_bus *b, enum pci_mmap_state mmap_type)
619{
620 return;
621}
622
623/**
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000624 * pci_create_legacy_files - create legacy I/O port and memory files
625 * @b: bus to create files under
626 *
627 * Some platforms allow access to legacy I/O port and ISA memory space on
628 * a per-bus basis. This routine creates the files and ties them into
629 * their associated read, write and mmap files from pci-sysfs.c
630 *
631 * On error unwind, but don't propogate the error to the caller
632 * as it is ok to set up the PCI bus without these files.
633 */
634void pci_create_legacy_files(struct pci_bus *b)
635{
636 int error;
637
638 b->legacy_io = kzalloc(sizeof(struct bin_attribute) * 2,
639 GFP_ATOMIC);
640 if (!b->legacy_io)
641 goto kzalloc_err;
642
643 b->legacy_io->attr.name = "legacy_io";
644 b->legacy_io->size = 0xffff;
645 b->legacy_io->attr.mode = S_IRUSR | S_IWUSR;
646 b->legacy_io->read = pci_read_legacy_io;
647 b->legacy_io->write = pci_write_legacy_io;
648 b->legacy_io->mmap = pci_mmap_legacy_io;
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +0300649 pci_adjust_legacy_attr(b, pci_mmap_io);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000650 error = device_create_bin_file(&b->dev, b->legacy_io);
651 if (error)
652 goto legacy_io_err;
653
654 /* Allocated above after the legacy_io struct */
655 b->legacy_mem = b->legacy_io + 1;
656 b->legacy_mem->attr.name = "legacy_mem";
657 b->legacy_mem->size = 1024*1024;
658 b->legacy_mem->attr.mode = S_IRUSR | S_IWUSR;
659 b->legacy_mem->mmap = pci_mmap_legacy_mem;
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +0300660 pci_adjust_legacy_attr(b, pci_mmap_mem);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000661 error = device_create_bin_file(&b->dev, b->legacy_mem);
662 if (error)
663 goto legacy_mem_err;
664
665 return;
666
667legacy_mem_err:
668 device_remove_bin_file(&b->dev, b->legacy_io);
669legacy_io_err:
670 kfree(b->legacy_io);
671 b->legacy_io = NULL;
672kzalloc_err:
673 printk(KERN_WARNING "pci: warning: could not create legacy I/O port "
674 "and ISA memory resources to sysfs\n");
675 return;
676}
677
678void pci_remove_legacy_files(struct pci_bus *b)
679{
680 if (b->legacy_io) {
681 device_remove_bin_file(&b->dev, b->legacy_io);
682 device_remove_bin_file(&b->dev, b->legacy_mem);
683 kfree(b->legacy_io); /* both are allocated here */
684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686#endif /* HAVE_PCI_LEGACY */
687
688#ifdef HAVE_PCI_MMAP
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -0700689
Jesse Barnes9eff02e2008-10-24 10:32:33 -0700690int pci_mmap_fits(struct pci_dev *pdev, int resno, struct vm_area_struct *vma)
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -0700691{
692 unsigned long nr, start, size;
693
694 nr = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
695 start = vma->vm_pgoff;
Ed Swierk88e7df02008-11-03 14:41:16 -0800696 size = ((pci_resource_len(pdev, resno) - 1) >> PAGE_SHIFT) + 1;
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -0700697 if (start < size && size - start >= nr)
698 return 1;
699 WARN(1, "process \"%s\" tried to map 0x%08lx-0x%08lx on %s BAR %d (size 0x%08lx)\n",
700 current->comm, start, start+nr, pci_name(pdev), resno, size);
701 return 0;
702}
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704/**
705 * pci_mmap_resource - map a PCI resource into user memory space
706 * @kobj: kobject for mapping
707 * @attr: struct bin_attribute for the file being mapped
708 * @vma: struct vm_area_struct passed into the mmap
venkatesh.pallipadi@intel.com45aec1a2008-03-18 17:00:22 -0700709 * @write_combine: 1 for write_combine mapping
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 *
711 * Use the regular PCI mapping routines to map a PCI resource into userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 */
713static int
714pci_mmap_resource(struct kobject *kobj, struct bin_attribute *attr,
venkatesh.pallipadi@intel.com45aec1a2008-03-18 17:00:22 -0700715 struct vm_area_struct *vma, int write_combine)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
717 struct pci_dev *pdev = to_pci_dev(container_of(kobj,
718 struct device, kobj));
719 struct resource *res = (struct resource *)attr->private;
720 enum pci_mmap_state mmap_type;
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700721 resource_size_t start, end;
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000722 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000724 for (i = 0; i < PCI_ROM_RESOURCE; i++)
725 if (res == &pdev->resource[i])
726 break;
727 if (i >= PCI_ROM_RESOURCE)
728 return -ENODEV;
729
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -0700730 if (!pci_mmap_fits(pdev, i, vma))
731 return -EINVAL;
732
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000733 /* pci_mmap_page_range() expects the same kind of entry as coming
734 * from /proc/bus/pci/ which is a "user visible" value. If this is
735 * different from the resource itself, arch will do necessary fixup.
736 */
737 pci_resource_to_user(pdev, i, res, &start, &end);
738 vma->vm_pgoff += start >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 mmap_type = res->flags & IORESOURCE_MEM ? pci_mmap_mem : pci_mmap_io;
740
Arjan van de Vene8de1482008-10-22 19:55:31 -0700741 if (res->flags & IORESOURCE_MEM && iomem_is_exclusive(start))
742 return -EINVAL;
743
venkatesh.pallipadi@intel.com45aec1a2008-03-18 17:00:22 -0700744 return pci_mmap_page_range(pdev, vma, mmap_type, write_combine);
745}
746
747static int
748pci_mmap_resource_uc(struct kobject *kobj, struct bin_attribute *attr,
749 struct vm_area_struct *vma)
750{
751 return pci_mmap_resource(kobj, attr, vma, 0);
752}
753
754static int
755pci_mmap_resource_wc(struct kobject *kobj, struct bin_attribute *attr,
756 struct vm_area_struct *vma)
757{
758 return pci_mmap_resource(kobj, attr, vma, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759}
760
761/**
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -0700762 * pci_remove_resource_files - cleanup resource files
Randy Dunlapcffb2fa2009-04-10 15:17:50 -0700763 * @pdev: dev to cleanup
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -0700764 *
Randy Dunlapcffb2fa2009-04-10 15:17:50 -0700765 * If we created resource files for @pdev, remove them from sysfs and
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -0700766 * free their resources.
767 */
768static void
769pci_remove_resource_files(struct pci_dev *pdev)
770{
771 int i;
772
773 for (i = 0; i < PCI_ROM_RESOURCE; i++) {
774 struct bin_attribute *res_attr;
775
776 res_attr = pdev->res_attr[i];
777 if (res_attr) {
778 sysfs_remove_bin_file(&pdev->dev.kobj, res_attr);
779 kfree(res_attr);
780 }
venkatesh.pallipadi@intel.com45aec1a2008-03-18 17:00:22 -0700781
782 res_attr = pdev->res_attr_wc[i];
783 if (res_attr) {
784 sysfs_remove_bin_file(&pdev->dev.kobj, res_attr);
785 kfree(res_attr);
786 }
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -0700787 }
788}
789
venkatesh.pallipadi@intel.com45aec1a2008-03-18 17:00:22 -0700790static int pci_create_attr(struct pci_dev *pdev, int num, int write_combine)
791{
792 /* allocate attribute structure, piggyback attribute name */
793 int name_len = write_combine ? 13 : 10;
794 struct bin_attribute *res_attr;
795 int retval;
796
797 res_attr = kzalloc(sizeof(*res_attr) + name_len, GFP_ATOMIC);
798 if (res_attr) {
799 char *res_attr_name = (char *)(res_attr + 1);
800
801 if (write_combine) {
802 pdev->res_attr_wc[num] = res_attr;
803 sprintf(res_attr_name, "resource%d_wc", num);
804 res_attr->mmap = pci_mmap_resource_wc;
805 } else {
806 pdev->res_attr[num] = res_attr;
807 sprintf(res_attr_name, "resource%d", num);
808 res_attr->mmap = pci_mmap_resource_uc;
809 }
810 res_attr->attr.name = res_attr_name;
811 res_attr->attr.mode = S_IRUSR | S_IWUSR;
812 res_attr->size = pci_resource_len(pdev, num);
813 res_attr->private = &pdev->resource[num];
814 retval = sysfs_create_bin_file(&pdev->dev.kobj, res_attr);
815 } else
816 retval = -ENOMEM;
817
818 return retval;
819}
820
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -0700821/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 * pci_create_resource_files - create resource files in sysfs for @dev
Randy Dunlapcffb2fa2009-04-10 15:17:50 -0700823 * @pdev: dev in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 *
Randy Dunlapcffb2fa2009-04-10 15:17:50 -0700825 * Walk the resources in @pdev creating files for each resource available.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 */
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -0700827static int pci_create_resource_files(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
829 int i;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -0700830 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 /* Expose the PCI resources from this device as files */
833 for (i = 0; i < PCI_ROM_RESOURCE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 /* skip empty resources */
836 if (!pci_resource_len(pdev, i))
837 continue;
838
venkatesh.pallipadi@intel.com45aec1a2008-03-18 17:00:22 -0700839 retval = pci_create_attr(pdev, i, 0);
840 /* for prefetchable resources, create a WC mappable file */
841 if (!retval && pdev->resource[i].flags & IORESOURCE_PREFETCH)
842 retval = pci_create_attr(pdev, i, 1);
Dmitry Torokhovd48593b2005-04-29 00:58:46 -0500843
venkatesh.pallipadi@intel.com45aec1a2008-03-18 17:00:22 -0700844 if (retval) {
845 pci_remove_resource_files(pdev);
846 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
848 }
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -0700849 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851#else /* !HAVE_PCI_MMAP */
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +0300852int __weak pci_create_resource_files(struct pci_dev *dev) { return 0; }
853void __weak pci_remove_resource_files(struct pci_dev *dev) { return; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854#endif /* HAVE_PCI_MMAP */
855
856/**
857 * pci_write_rom - used to enable access to the PCI ROM display
858 * @kobj: kernel object handle
Randy Dunlapcffb2fa2009-04-10 15:17:50 -0700859 * @bin_attr: struct bin_attribute for this file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 * @buf: user input
861 * @off: file offset
862 * @count: number of byte in input
863 *
864 * writing anything except 0 enables it
865 */
866static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800867pci_write_rom(struct kobject *kobj, struct bin_attribute *bin_attr,
868 char *buf, loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
870 struct pci_dev *pdev = to_pci_dev(container_of(kobj, struct device, kobj));
871
872 if ((off == 0) && (*buf == '0') && (count == 2))
873 pdev->rom_attr_enabled = 0;
874 else
875 pdev->rom_attr_enabled = 1;
876
877 return count;
878}
879
880/**
881 * pci_read_rom - read a PCI ROM
882 * @kobj: kernel object handle
Randy Dunlapcffb2fa2009-04-10 15:17:50 -0700883 * @bin_attr: struct bin_attribute for this file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 * @buf: where to put the data we read from the ROM
885 * @off: file offset
886 * @count: number of bytes to read
887 *
888 * Put @count bytes starting at @off into @buf from the ROM in the PCI
889 * device corresponding to @kobj.
890 */
891static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800892pci_read_rom(struct kobject *kobj, struct bin_attribute *bin_attr,
893 char *buf, loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
895 struct pci_dev *pdev = to_pci_dev(container_of(kobj, struct device, kobj));
896 void __iomem *rom;
897 size_t size;
898
899 if (!pdev->rom_attr_enabled)
900 return -EINVAL;
901
902 rom = pci_map_rom(pdev, &size); /* size starts out as PCI window size */
Timothy S. Nelson97c44832009-01-30 06:12:47 +1100903 if (!rom || !size)
904 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906 if (off >= size)
907 count = 0;
908 else {
909 if (off + count > size)
910 count = size - off;
911
912 memcpy_fromio(buf, rom + off, count);
913 }
914 pci_unmap_rom(pdev, rom);
915
916 return count;
917}
918
919static struct bin_attribute pci_config_attr = {
920 .attr = {
921 .name = "config",
922 .mode = S_IRUGO | S_IWUSR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 },
Zhao, Yu557848c2008-10-13 19:18:07 +0800924 .size = PCI_CFG_SPACE_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 .read = pci_read_config,
926 .write = pci_write_config,
927};
928
929static struct bin_attribute pcie_config_attr = {
930 .attr = {
931 .name = "config",
932 .mode = S_IRUGO | S_IWUSR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 },
Zhao, Yu557848c2008-10-13 19:18:07 +0800934 .size = PCI_CFG_SPACE_EXP_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 .read = pci_read_config,
936 .write = pci_write_config,
937};
938
Michael Ellermana2cd52c2007-05-08 12:03:08 +1000939int __attribute__ ((weak)) pcibios_add_platform_entries(struct pci_dev *dev)
Michael Ellerman575e3342007-05-08 12:03:07 +1000940{
Michael Ellermana2cd52c2007-05-08 12:03:08 +1000941 return 0;
Michael Ellerman575e3342007-05-08 12:03:07 +1000942}
943
Michael S. Tsirkin711d5772009-07-27 23:37:48 +0300944static ssize_t reset_store(struct device *dev,
945 struct device_attribute *attr, const char *buf,
946 size_t count)
947{
948 struct pci_dev *pdev = to_pci_dev(dev);
949 unsigned long val;
950 ssize_t result = strict_strtoul(buf, 0, &val);
951
952 if (result < 0)
953 return result;
954
955 if (val != 1)
956 return -EINVAL;
957 return pci_reset_function(pdev);
958}
959
960static struct device_attribute reset_attr = __ATTR(reset, 0200, NULL, reset_store);
961
Zhao, Yu280c73d2008-10-13 20:01:00 +0800962static int pci_create_capabilities_sysfs(struct pci_dev *dev)
963{
964 int retval;
965 struct bin_attribute *attr;
966
967 /* If the device has VPD, try to expose it in sysfs. */
968 if (dev->vpd) {
969 attr = kzalloc(sizeof(*attr), GFP_ATOMIC);
970 if (!attr)
971 return -ENOMEM;
972
973 attr->size = dev->vpd->len;
974 attr->attr.name = "vpd";
975 attr->attr.mode = S_IRUSR | S_IWUSR;
Stephen Hemminger287d19c2008-12-18 09:17:16 -0800976 attr->read = read_vpd_attr;
977 attr->write = write_vpd_attr;
Zhao, Yu280c73d2008-10-13 20:01:00 +0800978 retval = sysfs_create_bin_file(&dev->dev.kobj, attr);
979 if (retval) {
980 kfree(dev->vpd->attr);
981 return retval;
982 }
983 dev->vpd->attr = attr;
984 }
985
986 /* Active State Power Management */
987 pcie_aspm_create_sysfs_dev_files(dev);
988
Michael S. Tsirkin711d5772009-07-27 23:37:48 +0300989 if (!pci_probe_reset_function(dev)) {
990 retval = device_create_file(&dev->dev, &reset_attr);
991 if (retval)
992 goto error;
993 dev->reset_fn = 1;
994 }
Zhao, Yu280c73d2008-10-13 20:01:00 +0800995 return 0;
Michael S. Tsirkin711d5772009-07-27 23:37:48 +0300996
997error:
998 pcie_aspm_remove_sysfs_dev_files(dev);
999 if (dev->vpd && dev->vpd->attr) {
1000 sysfs_remove_bin_file(&dev->dev.kobj, dev->vpd->attr);
1001 kfree(dev->vpd->attr);
1002 }
1003
1004 return retval;
Zhao, Yu280c73d2008-10-13 20:01:00 +08001005}
1006
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001007int __must_check pci_create_sysfs_dev_files (struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001009 int retval;
Zhao, Yu280c73d2008-10-13 20:01:00 +08001010 int rom_size = 0;
1011 struct bin_attribute *attr;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 if (!sysfs_initialized)
1014 return -EACCES;
1015
Zhao, Yu557848c2008-10-13 19:18:07 +08001016 if (pdev->cfg_size < PCI_CFG_SPACE_EXP_SIZE)
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001017 retval = sysfs_create_bin_file(&pdev->dev.kobj, &pci_config_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 else
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001019 retval = sysfs_create_bin_file(&pdev->dev.kobj, &pcie_config_attr);
1020 if (retval)
1021 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001023 retval = pci_create_resource_files(pdev);
1024 if (retval)
Zhao, Yu280c73d2008-10-13 20:01:00 +08001025 goto err_config_file;
1026
1027 if (pci_resource_len(pdev, PCI_ROM_RESOURCE))
1028 rom_size = pci_resource_len(pdev, PCI_ROM_RESOURCE);
1029 else if (pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW)
1030 rom_size = 0x20000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032 /* If the device has a ROM, try to expose it in sysfs. */
Zhao, Yu280c73d2008-10-13 20:01:00 +08001033 if (rom_size) {
Ben Hutchings94e61082008-03-05 16:52:39 +00001034 attr = kzalloc(sizeof(*attr), GFP_ATOMIC);
Zhao, Yu280c73d2008-10-13 20:01:00 +08001035 if (!attr) {
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001036 retval = -ENOMEM;
Michael Ellerman9890b122007-04-18 13:34:12 +10001037 goto err_resource_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 }
Zhao, Yu280c73d2008-10-13 20:01:00 +08001039 attr->size = rom_size;
1040 attr->attr.name = "rom";
1041 attr->attr.mode = S_IRUSR;
1042 attr->read = pci_read_rom;
1043 attr->write = pci_write_rom;
1044 retval = sysfs_create_bin_file(&pdev->dev.kobj, attr);
1045 if (retval) {
1046 kfree(attr);
1047 goto err_resource_files;
1048 }
1049 pdev->rom_attr = attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
Zhao, Yu280c73d2008-10-13 20:01:00 +08001051
Dave Airlie217f45d2009-03-04 05:57:05 +00001052 if ((pdev->class >> 8) == PCI_CLASS_DISPLAY_VGA) {
1053 retval = device_create_file(&pdev->dev, &vga_attr);
1054 if (retval)
1055 goto err_rom_file;
1056 }
1057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 /* add platform-specific attributes */
Zhao, Yu280c73d2008-10-13 20:01:00 +08001059 retval = pcibios_add_platform_entries(pdev);
1060 if (retval)
Dave Airlie217f45d2009-03-04 05:57:05 +00001061 goto err_vga_file;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001062
Zhao, Yu280c73d2008-10-13 20:01:00 +08001063 /* add sysfs entries for various capabilities */
1064 retval = pci_create_capabilities_sysfs(pdev);
1065 if (retval)
Dave Airlie217f45d2009-03-04 05:57:05 +00001066 goto err_vga_file;
Shaohua Li7d715a62008-02-25 09:46:41 +08001067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 return 0;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001069
Dave Airlie217f45d2009-03-04 05:57:05 +00001070err_vga_file:
1071 if ((pdev->class >> 8) == PCI_CLASS_DISPLAY_VGA)
1072 device_remove_file(&pdev->dev, &vga_attr);
Michael Ellermana2cd52c2007-05-08 12:03:08 +10001073err_rom_file:
Zhao, Yu280c73d2008-10-13 20:01:00 +08001074 if (rom_size) {
Ben Hutchings94e61082008-03-05 16:52:39 +00001075 sysfs_remove_bin_file(&pdev->dev.kobj, pdev->rom_attr);
Zhao, Yu280c73d2008-10-13 20:01:00 +08001076 kfree(pdev->rom_attr);
1077 pdev->rom_attr = NULL;
1078 }
Michael Ellerman9890b122007-04-18 13:34:12 +10001079err_resource_files:
1080 pci_remove_resource_files(pdev);
Ben Hutchings94e61082008-03-05 16:52:39 +00001081err_config_file:
Zhao, Yu557848c2008-10-13 19:18:07 +08001082 if (pdev->cfg_size < PCI_CFG_SPACE_EXP_SIZE)
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001083 sysfs_remove_bin_file(&pdev->dev.kobj, &pci_config_attr);
1084 else
1085 sysfs_remove_bin_file(&pdev->dev.kobj, &pcie_config_attr);
1086err:
1087 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088}
1089
Zhao, Yu280c73d2008-10-13 20:01:00 +08001090static void pci_remove_capabilities_sysfs(struct pci_dev *dev)
1091{
1092 if (dev->vpd && dev->vpd->attr) {
1093 sysfs_remove_bin_file(&dev->dev.kobj, dev->vpd->attr);
1094 kfree(dev->vpd->attr);
1095 }
1096
1097 pcie_aspm_remove_sysfs_dev_files(dev);
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001098 if (dev->reset_fn) {
1099 device_remove_file(&dev->dev, &reset_attr);
1100 dev->reset_fn = 0;
1101 }
Zhao, Yu280c73d2008-10-13 20:01:00 +08001102}
1103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104/**
1105 * pci_remove_sysfs_dev_files - cleanup PCI specific sysfs files
1106 * @pdev: device whose entries we should free
1107 *
1108 * Cleanup when @pdev is removed from sysfs.
1109 */
1110void pci_remove_sysfs_dev_files(struct pci_dev *pdev)
1111{
Zhao, Yu280c73d2008-10-13 20:01:00 +08001112 int rom_size = 0;
1113
David Millerd67afe52006-11-10 12:27:48 -08001114 if (!sysfs_initialized)
1115 return;
1116
Zhao, Yu280c73d2008-10-13 20:01:00 +08001117 pci_remove_capabilities_sysfs(pdev);
Shaohua Li7d715a62008-02-25 09:46:41 +08001118
Zhao, Yu557848c2008-10-13 19:18:07 +08001119 if (pdev->cfg_size < PCI_CFG_SPACE_EXP_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 sysfs_remove_bin_file(&pdev->dev.kobj, &pci_config_attr);
1121 else
1122 sysfs_remove_bin_file(&pdev->dev.kobj, &pcie_config_attr);
1123
1124 pci_remove_resource_files(pdev);
1125
Zhao, Yu280c73d2008-10-13 20:01:00 +08001126 if (pci_resource_len(pdev, PCI_ROM_RESOURCE))
1127 rom_size = pci_resource_len(pdev, PCI_ROM_RESOURCE);
1128 else if (pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW)
1129 rom_size = 0x20000;
1130
1131 if (rom_size && pdev->rom_attr) {
1132 sysfs_remove_bin_file(&pdev->dev.kobj, pdev->rom_attr);
1133 kfree(pdev->rom_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 }
1135}
1136
1137static int __init pci_sysfs_init(void)
1138{
1139 struct pci_dev *pdev = NULL;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001140 int retval;
1141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 sysfs_initialized = 1;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001143 for_each_pci_dev(pdev) {
1144 retval = pci_create_sysfs_dev_files(pdev);
Julia Lawall151fc5d2007-11-20 08:41:16 +01001145 if (retval) {
1146 pci_dev_put(pdev);
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001147 return retval;
Julia Lawall151fc5d2007-11-20 08:41:16 +01001148 }
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151 return 0;
1152}
1153
Jesse Barnes40ee9e92007-03-24 11:03:32 -07001154late_initcall(pci_sysfs_init);