blob: 717540161223107fe9957b76a68828dd4e798f12 [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 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -070013 * Modeled after usb's driverfs.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
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>
Paul Gortmaker363c75d2011-05-27 09:37:25 -040022#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/topology.h>
24#include <linux/mm.h>
Chris Wrightde139a32010-05-13 10:43:07 -070025#include <linux/fs.h>
Alexey Dobriyanaa0ac362007-07-15 23:40:39 -070026#include <linux/capability.h>
Chris Wrighta628e7b2011-02-14 17:21:49 -080027#include <linux/security.h>
Shaohua Li7d715a62008-02-25 09:46:41 +080028#include <linux/pci-aspm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Matthew Garrett1a39b312012-04-16 16:26:02 -040030#include <linux/vgaarb.h>
Huang Ying448bd852012-06-23 10:23:51 +080031#include <linux/pm_runtime.h>
Sebastian Ottdfc73e72014-04-17 19:46:15 +020032#include <linux/of.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "pci.h"
34
35static int sysfs_initialized; /* = 0 */
36
37/* show configuration fields */
38#define pci_config_attr(field, format_string) \
39static ssize_t \
Yani Ioannoue404e272005-05-17 06:42:58 -040040field##_show(struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{ \
42 struct pci_dev *pdev; \
43 \
Ryan Desfosses3c78bc62014-04-18 20:13:49 -040044 pdev = to_pci_dev(dev); \
45 return sprintf(buf, format_string, pdev->field); \
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -070046} \
47static DEVICE_ATTR_RO(field)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49pci_config_attr(vendor, "0x%04x\n");
50pci_config_attr(device, "0x%04x\n");
51pci_config_attr(subsystem_vendor, "0x%04x\n");
52pci_config_attr(subsystem_device, "0x%04x\n");
53pci_config_attr(class, "0x%06x\n");
54pci_config_attr(irq, "%u\n");
55
Doug Thompsonbdee9d92006-06-14 16:59:48 -070056static ssize_t broken_parity_status_show(struct device *dev,
57 struct device_attribute *attr,
58 char *buf)
59{
60 struct pci_dev *pdev = to_pci_dev(dev);
Ryan Desfosses3c78bc62014-04-18 20:13:49 -040061 return sprintf(buf, "%u\n", pdev->broken_parity_status);
Doug Thompsonbdee9d92006-06-14 16:59:48 -070062}
63
64static ssize_t broken_parity_status_store(struct device *dev,
65 struct device_attribute *attr,
66 const char *buf, size_t count)
67{
68 struct pci_dev *pdev = to_pci_dev(dev);
Trent Piepho92425a42008-11-30 17:10:12 -080069 unsigned long val;
Doug Thompsonbdee9d92006-06-14 16:59:48 -070070
Jingoo Han9a994e82013-06-01 16:25:25 +090071 if (kstrtoul(buf, 0, &val) < 0)
Trent Piepho92425a42008-11-30 17:10:12 -080072 return -EINVAL;
73
74 pdev->broken_parity_status = !!val;
75
76 return count;
Doug Thompsonbdee9d92006-06-14 16:59:48 -070077}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -070078static DEVICE_ATTR_RW(broken_parity_status);
Doug Thompsonbdee9d92006-06-14 16:59:48 -070079
Sudeep Holla5aaba362014-09-30 14:48:22 +010080static ssize_t pci_dev_show_local_cpu(struct device *dev, bool list,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -040081 struct device_attribute *attr, char *buf)
Mike Travis39106dc2008-04-08 11:43:03 -070082{
Mike Travis3be83052009-01-04 05:18:01 -080083 const struct cpumask *mask;
Mike Travis39106dc2008-04-08 11:43:03 -070084
Andreas Herrmanne0cd5162009-04-17 12:01:55 +020085#ifdef CONFIG_NUMA
David John6be954d2010-01-04 20:28:57 +053086 mask = (dev_to_node(dev) == -1) ? cpu_online_mask :
87 cpumask_of_node(dev_to_node(dev));
Andreas Herrmanne0cd5162009-04-17 12:01:55 +020088#else
Mike Travis3be83052009-01-04 05:18:01 -080089 mask = cpumask_of_pcibus(to_pci_dev(dev)->bus);
Andreas Herrmanne0cd5162009-04-17 12:01:55 +020090#endif
Sudeep Holla5aaba362014-09-30 14:48:22 +010091 return cpumap_print_to_pagebuf(list, buf, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
Yijing Wangc489f5f2013-09-30 15:02:38 +080094static ssize_t local_cpus_show(struct device *dev,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -040095 struct device_attribute *attr, char *buf)
Yijing Wangc489f5f2013-09-30 15:02:38 +080096{
Sudeep Holla5aaba362014-09-30 14:48:22 +010097 return pci_dev_show_local_cpu(dev, false, attr, buf);
Yijing Wangc489f5f2013-09-30 15:02:38 +080098}
Bjorn Helgaas33de1b82013-10-31 14:12:40 -060099static DEVICE_ATTR_RO(local_cpus);
Yijing Wangc489f5f2013-09-30 15:02:38 +0800100
101static ssize_t local_cpulist_show(struct device *dev,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400102 struct device_attribute *attr, char *buf)
Yijing Wangc489f5f2013-09-30 15:02:38 +0800103{
Sudeep Holla5aaba362014-09-30 14:48:22 +0100104 return pci_dev_show_local_cpu(dev, true, attr, buf);
Yijing Wangc489f5f2013-09-30 15:02:38 +0800105}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700106static DEVICE_ATTR_RO(local_cpulist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700108/*
109 * PCI Bus Class Devices
110 */
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700111static ssize_t cpuaffinity_show(struct device *dev,
112 struct device_attribute *attr, char *buf)
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700113{
Sudeep Holla5aaba362014-09-30 14:48:22 +0100114 const struct cpumask *cpumask = cpumask_of_pcibus(to_pci_bus(dev));
115
116 return cpumap_print_to_pagebuf(false, buf, cpumask);
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700117}
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700118static DEVICE_ATTR_RO(cpuaffinity);
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700119
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700120static ssize_t cpulistaffinity_show(struct device *dev,
121 struct device_attribute *attr, char *buf)
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700122{
Sudeep Holla5aaba362014-09-30 14:48:22 +0100123 const struct cpumask *cpumask = cpumask_of_pcibus(to_pci_bus(dev));
124
125 return cpumap_print_to_pagebuf(true, buf, cpumask);
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700126}
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700127static DEVICE_ATTR_RO(cpulistaffinity);
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129/* show resources */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400130static ssize_t resource_show(struct device *dev, struct device_attribute *attr,
131 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400133 struct pci_dev *pci_dev = to_pci_dev(dev);
134 char *str = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 int i;
Yu Zhaofde09c62008-11-22 02:39:32 +0800136 int max;
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700137 resource_size_t start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 if (pci_dev->subordinate)
140 max = DEVICE_COUNT_RESOURCE;
Yu Zhaofde09c62008-11-22 02:39:32 +0800141 else
142 max = PCI_BRIDGE_RESOURCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 for (i = 0; i < max; i++) {
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000145 struct resource *res = &pci_dev->resource[i];
146 pci_resource_to_user(pci_dev, i, res, &start, &end);
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400147 str += sprintf(str, "0x%016llx 0x%016llx 0x%016llx\n",
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000148 (unsigned long long)start,
149 (unsigned long long)end,
150 (unsigned long long)res->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
152 return (str - buf);
153}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700154static DEVICE_ATTR_RO(resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400156static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
157 char *buf)
Greg KH98885492005-05-05 11:57:25 -0700158{
159 struct pci_dev *pci_dev = to_pci_dev(dev);
160
Ricardo Ribalda Delgado89ec3dc2014-08-27 14:57:57 +0200161 return sprintf(buf, "pci:v%08Xd%08Xsv%08Xsd%08Xbc%02Xsc%02Xi%02X\n",
Greg KH98885492005-05-05 11:57:25 -0700162 pci_dev->vendor, pci_dev->device,
163 pci_dev->subsystem_vendor, pci_dev->subsystem_device,
164 (u8)(pci_dev->class >> 16), (u8)(pci_dev->class >> 8),
165 (u8)(pci_dev->class));
166}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700167static DEVICE_ATTR_RO(modalias);
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800168
Greg Kroah-Hartmand8e7d532014-10-30 09:30:28 -0700169static ssize_t enable_store(struct device *dev, struct device_attribute *attr,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400170 const char *buf, size_t count)
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200171{
172 struct pci_dev *pdev = to_pci_dev(dev);
Trent Piepho92425a42008-11-30 17:10:12 -0800173 unsigned long val;
Jingoo Han9a994e82013-06-01 16:25:25 +0900174 ssize_t result = kstrtoul(buf, 0, &val);
Trent Piepho92425a42008-11-30 17:10:12 -0800175
176 if (result < 0)
177 return result;
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200178
179 /* this can crash the machine when done on the "wrong" device */
180 if (!capable(CAP_SYS_ADMIN))
Trent Piepho92425a42008-11-30 17:10:12 -0800181 return -EPERM;
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200182
Christoph Hellwigdb165712018-05-18 18:56:24 +0200183 device_lock(dev);
184 if (dev->driver)
185 result = -EBUSY;
186 else if (val)
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800187 result = pci_enable_device(pdev);
Christoph Hellwigdb165712018-05-18 18:56:24 +0200188 else if (pci_is_enabled(pdev))
189 pci_disable_device(pdev);
190 else
191 result = -EIO;
192 device_unlock(dev);
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200193
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800194 return result < 0 ? result : count;
195}
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200196
Greg Kroah-Hartmand8e7d532014-10-30 09:30:28 -0700197static ssize_t enable_show(struct device *dev, struct device_attribute *attr,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400198 char *buf)
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800199{
200 struct pci_dev *pdev;
201
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400202 pdev = to_pci_dev(dev);
203 return sprintf(buf, "%u\n", atomic_read(&pdev->enable_cnt));
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200204}
Greg Kroah-Hartmand8e7d532014-10-30 09:30:28 -0700205static DEVICE_ATTR_RW(enable);
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200206
Brice Goglin81bb0e12007-01-28 10:53:40 +0100207#ifdef CONFIG_NUMA
Prarit Bhargava63692df2014-10-23 14:22:12 -0400208static ssize_t numa_node_store(struct device *dev,
209 struct device_attribute *attr, const char *buf,
210 size_t count)
211{
212 struct pci_dev *pdev = to_pci_dev(dev);
213 int node, ret;
214
215 if (!capable(CAP_SYS_ADMIN))
216 return -EPERM;
217
218 ret = kstrtoint(buf, 0, &node);
219 if (ret)
220 return ret;
221
Mathias Krause3dcc8d32015-11-09 20:00:27 +0100222 if ((node < 0 && node != NUMA_NO_NODE) || node >= MAX_NUMNODES)
223 return -EINVAL;
224
225 if (node != NUMA_NO_NODE && !node_online(node))
Prarit Bhargava63692df2014-10-23 14:22:12 -0400226 return -EINVAL;
227
228 add_taint(TAINT_FIRMWARE_WORKAROUND, LOCKDEP_STILL_OK);
229 dev_alert(&pdev->dev, FW_BUG "Overriding NUMA node to %d. Contact your vendor for updates.",
230 node);
231
232 dev->numa_node = node;
233 return count;
234}
235
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400236static ssize_t numa_node_show(struct device *dev, struct device_attribute *attr,
237 char *buf)
Brice Goglin81bb0e12007-01-28 10:53:40 +0100238{
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400239 return sprintf(buf, "%d\n", dev->numa_node);
Brice Goglin81bb0e12007-01-28 10:53:40 +0100240}
Prarit Bhargava63692df2014-10-23 14:22:12 -0400241static DEVICE_ATTR_RW(numa_node);
Brice Goglin81bb0e12007-01-28 10:53:40 +0100242#endif
243
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400244static ssize_t dma_mask_bits_show(struct device *dev,
245 struct device_attribute *attr, char *buf)
Yinghai Lubb965402009-11-24 18:21:21 -0800246{
247 struct pci_dev *pdev = to_pci_dev(dev);
248
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400249 return sprintf(buf, "%d\n", fls64(pdev->dma_mask));
Yinghai Lubb965402009-11-24 18:21:21 -0800250}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700251static DEVICE_ATTR_RO(dma_mask_bits);
Yinghai Lubb965402009-11-24 18:21:21 -0800252
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400253static ssize_t consistent_dma_mask_bits_show(struct device *dev,
254 struct device_attribute *attr,
255 char *buf)
Yinghai Lubb965402009-11-24 18:21:21 -0800256{
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400257 return sprintf(buf, "%d\n", fls64(dev->coherent_dma_mask));
Yinghai Lubb965402009-11-24 18:21:21 -0800258}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700259static DEVICE_ATTR_RO(consistent_dma_mask_bits);
Yinghai Lubb965402009-11-24 18:21:21 -0800260
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400261static ssize_t msi_bus_show(struct device *dev, struct device_attribute *attr,
262 char *buf)
Brice Goglinfe970642006-08-31 01:55:15 -0400263{
264 struct pci_dev *pdev = to_pci_dev(dev);
Yijing Wang468ff152014-09-23 13:27:24 +0800265 struct pci_bus *subordinate = pdev->subordinate;
Brice Goglinfe970642006-08-31 01:55:15 -0400266
Yijing Wang468ff152014-09-23 13:27:24 +0800267 return sprintf(buf, "%u\n", subordinate ?
268 !(subordinate->bus_flags & PCI_BUS_FLAGS_NO_MSI)
269 : !pdev->no_msi);
Brice Goglinfe970642006-08-31 01:55:15 -0400270}
271
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400272static ssize_t msi_bus_store(struct device *dev, struct device_attribute *attr,
273 const char *buf, size_t count)
Brice Goglinfe970642006-08-31 01:55:15 -0400274{
275 struct pci_dev *pdev = to_pci_dev(dev);
Yijing Wang468ff152014-09-23 13:27:24 +0800276 struct pci_bus *subordinate = pdev->subordinate;
Trent Piepho92425a42008-11-30 17:10:12 -0800277 unsigned long val;
278
Jingoo Han9a994e82013-06-01 16:25:25 +0900279 if (kstrtoul(buf, 0, &val) < 0)
Trent Piepho92425a42008-11-30 17:10:12 -0800280 return -EINVAL;
Brice Goglinfe970642006-08-31 01:55:15 -0400281
Brice Goglinfe970642006-08-31 01:55:15 -0400282 if (!capable(CAP_SYS_ADMIN))
Trent Piepho92425a42008-11-30 17:10:12 -0800283 return -EPERM;
Brice Goglinfe970642006-08-31 01:55:15 -0400284
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700285 /*
Yijing Wang468ff152014-09-23 13:27:24 +0800286 * "no_msi" and "bus_flags" only affect what happens when a driver
287 * requests MSI or MSI-X. They don't affect any drivers that have
288 * already requested MSI or MSI-X.
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700289 */
Yijing Wang468ff152014-09-23 13:27:24 +0800290 if (!subordinate) {
291 pdev->no_msi = !val;
292 dev_info(&pdev->dev, "MSI/MSI-X %s for future drivers\n",
293 val ? "allowed" : "disallowed");
Brice Goglinfe970642006-08-31 01:55:15 -0400294 return count;
Brice Goglinfe970642006-08-31 01:55:15 -0400295 }
296
Yijing Wang468ff152014-09-23 13:27:24 +0800297 if (val)
298 subordinate->bus_flags &= ~PCI_BUS_FLAGS_NO_MSI;
299 else
300 subordinate->bus_flags |= PCI_BUS_FLAGS_NO_MSI;
301
302 dev_info(&subordinate->dev, "MSI/MSI-X %s for future drivers of devices on this bus\n",
303 val ? "allowed" : "disallowed");
Brice Goglinfe970642006-08-31 01:55:15 -0400304 return count;
305}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700306static DEVICE_ATTR_RW(msi_bus);
Greg KH98885492005-05-05 11:57:25 -0700307
Alex Chiang705b1aa2009-03-20 14:56:31 -0600308static ssize_t bus_rescan_store(struct bus_type *bus, const char *buf,
309 size_t count)
310{
311 unsigned long val;
312 struct pci_bus *b = NULL;
313
Jingoo Han9a994e82013-06-01 16:25:25 +0900314 if (kstrtoul(buf, 0, &val) < 0)
Alex Chiang705b1aa2009-03-20 14:56:31 -0600315 return -EINVAL;
316
317 if (val) {
Rafael J. Wysocki9d169472014-01-10 15:22:18 +0100318 pci_lock_rescan_remove();
Alex Chiang705b1aa2009-03-20 14:56:31 -0600319 while ((b = pci_find_next_bus(b)) != NULL)
320 pci_rescan_bus(b);
Rafael J. Wysocki9d169472014-01-10 15:22:18 +0100321 pci_unlock_rescan_remove();
Alex Chiang705b1aa2009-03-20 14:56:31 -0600322 }
323 return count;
324}
Greg Kroah-Hartman0f49ba52013-10-07 14:51:02 -0600325static BUS_ATTR(rescan, (S_IWUSR|S_IWGRP), NULL, bus_rescan_store);
Alex Chiang705b1aa2009-03-20 14:56:31 -0600326
Sachin Kamatbf22c902013-09-28 15:42:00 +0530327static struct attribute *pci_bus_attrs[] = {
Greg Kroah-Hartman0f49ba52013-10-07 14:51:02 -0600328 &bus_attr_rescan.attr,
329 NULL,
330};
331
332static const struct attribute_group pci_bus_group = {
333 .attrs = pci_bus_attrs,
334};
335
336const struct attribute_group *pci_bus_groups[] = {
337 &pci_bus_group,
338 NULL,
Alex Chiang705b1aa2009-03-20 14:56:31 -0600339};
Alex Chiang77c27c72009-03-20 14:56:36 -0600340
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400341static ssize_t dev_rescan_store(struct device *dev,
342 struct device_attribute *attr, const char *buf,
343 size_t count)
Alex Chiang738a6392009-03-20 14:56:41 -0600344{
345 unsigned long val;
346 struct pci_dev *pdev = to_pci_dev(dev);
347
Jingoo Han9a994e82013-06-01 16:25:25 +0900348 if (kstrtoul(buf, 0, &val) < 0)
Alex Chiang738a6392009-03-20 14:56:41 -0600349 return -EINVAL;
350
351 if (val) {
Rafael J. Wysocki9d169472014-01-10 15:22:18 +0100352 pci_lock_rescan_remove();
Alex Chiang738a6392009-03-20 14:56:41 -0600353 pci_rescan_bus(pdev->bus);
Rafael J. Wysocki9d169472014-01-10 15:22:18 +0100354 pci_unlock_rescan_remove();
Alex Chiang738a6392009-03-20 14:56:41 -0600355 }
356 return count;
357}
Sachin Kamatbf22c902013-09-28 15:42:00 +0530358static struct device_attribute dev_rescan_attr = __ATTR(rescan,
359 (S_IWUSR|S_IWGRP),
360 NULL, dev_rescan_store);
Alex Chiang738a6392009-03-20 14:56:41 -0600361
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400362static ssize_t remove_store(struct device *dev, struct device_attribute *attr,
363 const char *buf, size_t count)
Alex Chiang77c27c72009-03-20 14:56:36 -0600364{
Alex Chiang77c27c72009-03-20 14:56:36 -0600365 unsigned long val;
Alex Chiang77c27c72009-03-20 14:56:36 -0600366
Jingoo Han9a994e82013-06-01 16:25:25 +0900367 if (kstrtoul(buf, 0, &val) < 0)
Alex Chiang77c27c72009-03-20 14:56:36 -0600368 return -EINVAL;
369
Tejun Heobc6caf02014-02-03 14:03:02 -0500370 if (val && device_remove_file_self(dev, attr))
371 pci_stop_and_remove_bus_device_locked(to_pci_dev(dev));
Alex Chiang77c27c72009-03-20 14:56:36 -0600372 return count;
373}
Marek Vasut2abc45e2019-05-27 00:51:51 +0200374static struct device_attribute dev_remove_attr = __ATTR_IGNORE_LOCKDEP(remove,
Sachin Kamatbf22c902013-09-28 15:42:00 +0530375 (S_IWUSR|S_IWGRP),
376 NULL, remove_store);
Yinghai Lub9d320f2011-05-12 17:11:39 -0700377
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400378static ssize_t dev_bus_rescan_store(struct device *dev,
379 struct device_attribute *attr,
380 const char *buf, size_t count)
Yinghai Lub9d320f2011-05-12 17:11:39 -0700381{
382 unsigned long val;
383 struct pci_bus *bus = to_pci_bus(dev);
384
Jingoo Han9a994e82013-06-01 16:25:25 +0900385 if (kstrtoul(buf, 0, &val) < 0)
Yinghai Lub9d320f2011-05-12 17:11:39 -0700386 return -EINVAL;
387
388 if (val) {
Rafael J. Wysocki9d169472014-01-10 15:22:18 +0100389 pci_lock_rescan_remove();
Yinghai Lu2f320522012-01-21 02:08:22 -0800390 if (!pci_is_root_bus(bus) && list_empty(&bus->devices))
391 pci_rescan_bus_bridge_resize(bus->self);
392 else
393 pci_rescan_bus(bus);
Rafael J. Wysocki9d169472014-01-10 15:22:18 +0100394 pci_unlock_rescan_remove();
Yinghai Lub9d320f2011-05-12 17:11:39 -0700395 }
396 return count;
397}
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700398static DEVICE_ATTR(rescan, (S_IWUSR|S_IWGRP), NULL, dev_bus_rescan_store);
Yinghai Lub9d320f2011-05-12 17:11:39 -0700399
Rafael J. Wysockifbb988b2014-11-27 23:16:57 +0100400#if defined(CONFIG_PM) && defined(CONFIG_ACPI)
Huang Ying448bd852012-06-23 10:23:51 +0800401static ssize_t d3cold_allowed_store(struct device *dev,
402 struct device_attribute *attr,
403 const char *buf, size_t count)
404{
405 struct pci_dev *pdev = to_pci_dev(dev);
406 unsigned long val;
407
Jingoo Han9a994e82013-06-01 16:25:25 +0900408 if (kstrtoul(buf, 0, &val) < 0)
Huang Ying448bd852012-06-23 10:23:51 +0800409 return -EINVAL;
410
411 pdev->d3cold_allowed = !!val;
Mika Westerberg9d26d3a2016-06-02 11:17:12 +0300412 if (pdev->d3cold_allowed)
413 pci_d3cold_enable(pdev);
414 else
415 pci_d3cold_disable(pdev);
416
Huang Ying448bd852012-06-23 10:23:51 +0800417 pm_runtime_resume(dev);
418
419 return count;
420}
421
422static ssize_t d3cold_allowed_show(struct device *dev,
423 struct device_attribute *attr, char *buf)
424{
425 struct pci_dev *pdev = to_pci_dev(dev);
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400426 return sprintf(buf, "%u\n", pdev->d3cold_allowed);
Huang Ying448bd852012-06-23 10:23:51 +0800427}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700428static DEVICE_ATTR_RW(d3cold_allowed);
Huang Ying448bd852012-06-23 10:23:51 +0800429#endif
430
Sebastian Ottdfc73e72014-04-17 19:46:15 +0200431#ifdef CONFIG_OF
432static ssize_t devspec_show(struct device *dev,
433 struct device_attribute *attr, char *buf)
434{
435 struct pci_dev *pdev = to_pci_dev(dev);
436 struct device_node *np = pci_device_to_OF_node(pdev);
437
438 if (np == NULL || np->full_name == NULL)
439 return 0;
440 return sprintf(buf, "%s", np->full_name);
441}
442static DEVICE_ATTR_RO(devspec);
443#endif
444
Donald Dutile17893822012-11-05 15:20:36 -0500445#ifdef CONFIG_PCI_IOV
446static ssize_t sriov_totalvfs_show(struct device *dev,
447 struct device_attribute *attr,
448 char *buf)
449{
450 struct pci_dev *pdev = to_pci_dev(dev);
451
Donald Dutilebff73152012-11-05 15:20:37 -0500452 return sprintf(buf, "%u\n", pci_sriov_get_totalvfs(pdev));
Donald Dutile17893822012-11-05 15:20:36 -0500453}
454
455
456static ssize_t sriov_numvfs_show(struct device *dev,
457 struct device_attribute *attr,
458 char *buf)
459{
460 struct pci_dev *pdev = to_pci_dev(dev);
461
Bjorn Helgaas6b136722012-11-09 20:27:53 -0700462 return sprintf(buf, "%u\n", pdev->sriov->num_VFs);
Donald Dutile17893822012-11-05 15:20:36 -0500463}
464
465/*
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700466 * num_vfs > 0; number of VFs to enable
467 * num_vfs = 0; disable all VFs
Donald Dutile17893822012-11-05 15:20:36 -0500468 *
469 * Note: SRIOV spec doesn't allow partial VF
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700470 * disable, so it's all or none.
Donald Dutile17893822012-11-05 15:20:36 -0500471 */
472static ssize_t sriov_numvfs_store(struct device *dev,
473 struct device_attribute *attr,
474 const char *buf, size_t count)
475{
476 struct pci_dev *pdev = to_pci_dev(dev);
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700477 int ret;
478 u16 num_vfs;
Donald Dutile17893822012-11-05 15:20:36 -0500479
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700480 ret = kstrtou16(buf, 0, &num_vfs);
481 if (ret < 0)
482 return ret;
483
484 if (num_vfs > pci_sriov_get_totalvfs(pdev))
485 return -ERANGE;
486
487 if (num_vfs == pdev->sriov->num_VFs)
488 return count; /* no change */
Donald Dutile17893822012-11-05 15:20:36 -0500489
490 /* is PF driver loaded w/callback */
491 if (!pdev->driver || !pdev->driver->sriov_configure) {
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700492 dev_info(&pdev->dev, "Driver doesn't support SRIOV configuration via sysfs\n");
Donald Dutile17893822012-11-05 15:20:36 -0500493 return -ENOSYS;
494 }
495
Donald Dutile17893822012-11-05 15:20:36 -0500496 if (num_vfs == 0) {
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700497 /* disable VFs */
498 ret = pdev->driver->sriov_configure(pdev, 0);
499 if (ret < 0)
500 return ret;
501 return count;
Donald Dutile17893822012-11-05 15:20:36 -0500502 }
503
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700504 /* enable VFs */
505 if (pdev->sriov->num_VFs) {
506 dev_warn(&pdev->dev, "%d VFs already enabled. Disable before enabling %d VFs\n",
507 pdev->sriov->num_VFs, num_vfs);
508 return -EBUSY;
509 }
Donald Dutile17893822012-11-05 15:20:36 -0500510
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700511 ret = pdev->driver->sriov_configure(pdev, num_vfs);
512 if (ret < 0)
513 return ret;
514
515 if (ret != num_vfs)
516 dev_warn(&pdev->dev, "%d VFs requested; only %d enabled\n",
517 num_vfs, ret);
518
519 return count;
Donald Dutile17893822012-11-05 15:20:36 -0500520}
521
522static struct device_attribute sriov_totalvfs_attr = __ATTR_RO(sriov_totalvfs);
523static struct device_attribute sriov_numvfs_attr =
524 __ATTR(sriov_numvfs, (S_IRUGO|S_IWUSR|S_IWGRP),
525 sriov_numvfs_show, sriov_numvfs_store);
526#endif /* CONFIG_PCI_IOV */
527
Alex Williamson782a9852014-05-20 08:53:21 -0600528static ssize_t driver_override_store(struct device *dev,
529 struct device_attribute *attr,
530 const char *buf, size_t count)
531{
532 struct pci_dev *pdev = to_pci_dev(dev);
Nicolai Stangebb1e06d2017-09-11 09:45:40 +0200533 char *driver_override, *old, *cp;
Alex Williamson782a9852014-05-20 08:53:21 -0600534
Sasha Levin4efe8742015-02-04 17:38:15 -0500535 /* We need to keep extra room for a newline */
536 if (count >= (PAGE_SIZE - 1))
Alex Williamson782a9852014-05-20 08:53:21 -0600537 return -EINVAL;
538
539 driver_override = kstrndup(buf, count, GFP_KERNEL);
540 if (!driver_override)
541 return -ENOMEM;
542
543 cp = strchr(driver_override, '\n');
544 if (cp)
545 *cp = '\0';
546
Nicolai Stangebb1e06d2017-09-11 09:45:40 +0200547 device_lock(dev);
548 old = pdev->driver_override;
Alex Williamson782a9852014-05-20 08:53:21 -0600549 if (strlen(driver_override)) {
550 pdev->driver_override = driver_override;
551 } else {
552 kfree(driver_override);
553 pdev->driver_override = NULL;
554 }
Nicolai Stangebb1e06d2017-09-11 09:45:40 +0200555 device_unlock(dev);
Alex Williamson782a9852014-05-20 08:53:21 -0600556
557 kfree(old);
558
559 return count;
560}
561
562static ssize_t driver_override_show(struct device *dev,
563 struct device_attribute *attr, char *buf)
564{
565 struct pci_dev *pdev = to_pci_dev(dev);
Nicolai Stangebb1e06d2017-09-11 09:45:40 +0200566 ssize_t len;
Alex Williamson782a9852014-05-20 08:53:21 -0600567
Nicolai Stangebb1e06d2017-09-11 09:45:40 +0200568 device_lock(dev);
569 len = snprintf(buf, PAGE_SIZE, "%s\n", pdev->driver_override);
570 device_unlock(dev);
571 return len;
Alex Williamson782a9852014-05-20 08:53:21 -0600572}
573static DEVICE_ATTR_RW(driver_override);
574
Sachin Kamatbf22c902013-09-28 15:42:00 +0530575static struct attribute *pci_dev_attrs[] = {
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700576 &dev_attr_resource.attr,
577 &dev_attr_vendor.attr,
578 &dev_attr_device.attr,
579 &dev_attr_subsystem_vendor.attr,
580 &dev_attr_subsystem_device.attr,
581 &dev_attr_class.attr,
582 &dev_attr_irq.attr,
583 &dev_attr_local_cpus.attr,
584 &dev_attr_local_cpulist.attr,
585 &dev_attr_modalias.attr,
Brice Goglin81bb0e12007-01-28 10:53:40 +0100586#ifdef CONFIG_NUMA
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700587 &dev_attr_numa_node.attr,
Brice Goglin81bb0e12007-01-28 10:53:40 +0100588#endif
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700589 &dev_attr_dma_mask_bits.attr,
590 &dev_attr_consistent_dma_mask_bits.attr,
Greg Kroah-Hartmand8e7d532014-10-30 09:30:28 -0700591 &dev_attr_enable.attr,
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700592 &dev_attr_broken_parity_status.attr,
593 &dev_attr_msi_bus.attr,
Rafael J. Wysockifbb988b2014-11-27 23:16:57 +0100594#if defined(CONFIG_PM) && defined(CONFIG_ACPI)
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700595 &dev_attr_d3cold_allowed.attr,
Huang Ying448bd852012-06-23 10:23:51 +0800596#endif
Sebastian Ottdfc73e72014-04-17 19:46:15 +0200597#ifdef CONFIG_OF
598 &dev_attr_devspec.attr,
599#endif
Alex Williamson782a9852014-05-20 08:53:21 -0600600 &dev_attr_driver_override.attr,
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700601 NULL,
602};
603
604static const struct attribute_group pci_dev_group = {
605 .attrs = pci_dev_attrs,
606};
607
608const struct attribute_group *pci_dev_groups[] = {
609 &pci_dev_group,
610 NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611};
612
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700613static struct attribute *pcibus_attrs[] = {
614 &dev_attr_rescan.attr,
615 &dev_attr_cpuaffinity.attr,
616 &dev_attr_cpulistaffinity.attr,
617 NULL,
618};
619
620static const struct attribute_group pcibus_group = {
621 .attrs = pcibus_attrs,
622};
623
624const struct attribute_group *pcibus_groups[] = {
625 &pcibus_group,
626 NULL,
Yinghai Lub9d320f2011-05-12 17:11:39 -0700627};
628
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400629static ssize_t boot_vga_show(struct device *dev, struct device_attribute *attr,
630 char *buf)
Dave Airlie217f45d2009-03-04 05:57:05 +0000631{
632 struct pci_dev *pdev = to_pci_dev(dev);
Matthew Garrett1a39b312012-04-16 16:26:02 -0400633 struct pci_dev *vga_dev = vga_default_device();
634
635 if (vga_dev)
636 return sprintf(buf, "%u\n", (pdev == vga_dev));
Dave Airlie217f45d2009-03-04 05:57:05 +0000637
638 return sprintf(buf, "%u\n",
639 !!(pdev->resource[PCI_ROM_RESOURCE].flags &
640 IORESOURCE_ROM_SHADOW));
641}
Sachin Kamatbf22c902013-09-28 15:42:00 +0530642static struct device_attribute vga_attr = __ATTR_RO(boot_vga);
Dave Airlie217f45d2009-03-04 05:57:05 +0000643
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400644static ssize_t pci_read_config(struct file *filp, struct kobject *kobj,
645 struct bin_attribute *bin_attr, char *buf,
646 loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Geliang Tang554a6032015-12-23 20:28:13 +0800648 struct pci_dev *dev = to_pci_dev(kobj_to_dev(kobj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 unsigned int size = 64;
650 loff_t init_off = off;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400651 u8 *data = (u8 *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 /* Several chips lock up trying to read undefined config space */
Linus Torvaldsab0fa822016-04-14 12:00:21 -0700654 if (file_ns_capable(filp, &init_user_ns, CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 size = dev->cfg_size;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400656 else if (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 size = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 if (off > size)
660 return 0;
661 if (off + count > size) {
662 size -= off;
663 count = size;
664 } else {
665 size = count;
666 }
667
Huang Ying3d8387e2012-08-15 09:43:03 +0800668 pci_config_pm_runtime_get(dev);
669
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900670 if ((off & 1) && size) {
671 u8 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700672 pci_user_read_config_byte(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900673 data[off - init_off] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 off++;
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900675 size--;
676 }
677
678 if ((off & 3) && size > 2) {
679 u16 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700680 pci_user_read_config_word(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900681 data[off - init_off] = val & 0xff;
682 data[off - init_off + 1] = (val >> 8) & 0xff;
683 off += 2;
684 size -= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
686
687 while (size > 3) {
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900688 u32 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700689 pci_user_read_config_dword(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900690 data[off - init_off] = val & 0xff;
691 data[off - init_off + 1] = (val >> 8) & 0xff;
692 data[off - init_off + 2] = (val >> 16) & 0xff;
693 data[off - init_off + 3] = (val >> 24) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 off += 4;
695 size -= 4;
696 }
697
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900698 if (size >= 2) {
699 u16 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700700 pci_user_read_config_word(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900701 data[off - init_off] = val & 0xff;
702 data[off - init_off + 1] = (val >> 8) & 0xff;
703 off += 2;
704 size -= 2;
705 }
706
707 if (size > 0) {
708 u8 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700709 pci_user_read_config_byte(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900710 data[off - init_off] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 off++;
712 --size;
713 }
714
Huang Ying3d8387e2012-08-15 09:43:03 +0800715 pci_config_pm_runtime_put(dev);
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return count;
718}
719
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400720static ssize_t pci_write_config(struct file *filp, struct kobject *kobj,
721 struct bin_attribute *bin_attr, char *buf,
722 loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
Geliang Tang554a6032015-12-23 20:28:13 +0800724 struct pci_dev *dev = to_pci_dev(kobj_to_dev(kobj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 unsigned int size = count;
726 loff_t init_off = off;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400727 u8 *data = (u8 *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 if (off > dev->cfg_size)
730 return 0;
731 if (off + count > dev->cfg_size) {
732 size = dev->cfg_size - off;
733 count = size;
734 }
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700735
Huang Ying3d8387e2012-08-15 09:43:03 +0800736 pci_config_pm_runtime_get(dev);
737
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900738 if ((off & 1) && size) {
Brian Kinge04b0ea2005-09-27 01:21:55 -0700739 pci_user_write_config_byte(dev, off, data[off - init_off]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 off++;
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900741 size--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700743
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900744 if ((off & 3) && size > 2) {
745 u16 val = data[off - init_off];
746 val |= (u16) data[off - init_off + 1] << 8;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400747 pci_user_write_config_word(dev, off, val);
748 off += 2;
749 size -= 2;
750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 while (size > 3) {
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900753 u32 val = data[off - init_off];
754 val |= (u32) data[off - init_off + 1] << 8;
755 val |= (u32) data[off - init_off + 2] << 16;
756 val |= (u32) data[off - init_off + 3] << 24;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700757 pci_user_write_config_dword(dev, off, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 off += 4;
759 size -= 4;
760 }
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700761
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900762 if (size >= 2) {
763 u16 val = data[off - init_off];
764 val |= (u16) data[off - init_off + 1] << 8;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700765 pci_user_write_config_word(dev, off, val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900766 off += 2;
767 size -= 2;
768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900770 if (size) {
Brian Kinge04b0ea2005-09-27 01:21:55 -0700771 pci_user_write_config_byte(dev, off, data[off - init_off]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 off++;
773 --size;
774 }
775
Huang Ying3d8387e2012-08-15 09:43:03 +0800776 pci_config_pm_runtime_put(dev);
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 return count;
779}
780
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400781static ssize_t read_vpd_attr(struct file *filp, struct kobject *kobj,
782 struct bin_attribute *bin_attr, char *buf,
783 loff_t off, size_t count)
Ben Hutchings94e61082008-03-05 16:52:39 +0000784{
Geliang Tang554a6032015-12-23 20:28:13 +0800785 struct pci_dev *dev = to_pci_dev(kobj_to_dev(kobj));
Ben Hutchings94e61082008-03-05 16:52:39 +0000786
Hannes Reineckef52e5622016-02-15 09:42:00 +0100787 if (bin_attr->size > 0) {
788 if (off > bin_attr->size)
789 count = 0;
790 else if (count > bin_attr->size - off)
791 count = bin_attr->size - off;
792 }
Ben Hutchings94e61082008-03-05 16:52:39 +0000793
Stephen Hemminger287d19c2008-12-18 09:17:16 -0800794 return pci_read_vpd(dev, off, count, buf);
795}
Ben Hutchings94e61082008-03-05 16:52:39 +0000796
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400797static ssize_t write_vpd_attr(struct file *filp, struct kobject *kobj,
798 struct bin_attribute *bin_attr, char *buf,
799 loff_t off, size_t count)
Stephen Hemminger287d19c2008-12-18 09:17:16 -0800800{
Geliang Tang554a6032015-12-23 20:28:13 +0800801 struct pci_dev *dev = to_pci_dev(kobj_to_dev(kobj));
Stephen Hemminger287d19c2008-12-18 09:17:16 -0800802
Hannes Reineckef52e5622016-02-15 09:42:00 +0100803 if (bin_attr->size > 0) {
804 if (off > bin_attr->size)
805 count = 0;
806 else if (count > bin_attr->size - off)
807 count = bin_attr->size - off;
808 }
Stephen Hemminger287d19c2008-12-18 09:17:16 -0800809
810 return pci_write_vpd(dev, off, count, buf);
Ben Hutchings94e61082008-03-05 16:52:39 +0000811}
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813#ifdef HAVE_PCI_LEGACY
814/**
815 * pci_read_legacy_io - read byte(s) from legacy I/O port space
Chris Wright2c3c8be2010-05-12 18:28:57 -0700816 * @filp: open sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 * @kobj: kobject corresponding to file to read from
Randy Dunlapcffb2fa2009-04-10 15:17:50 -0700818 * @bin_attr: struct bin_attribute for this file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 * @buf: buffer to store results
820 * @off: offset into legacy I/O port space
821 * @count: number of bytes to read
822 *
823 * Reads 1, 2, or 4 bytes from legacy I/O port space using an arch specific
824 * callback routine (pci_legacy_read).
825 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400826static ssize_t pci_read_legacy_io(struct file *filp, struct kobject *kobj,
827 struct bin_attribute *bin_attr, char *buf,
828 loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
Geliang Tang554a6032015-12-23 20:28:13 +0800830 struct pci_bus *bus = to_pci_bus(kobj_to_dev(kobj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400832 /* Only support 1, 2 or 4 byte accesses */
833 if (count != 1 && count != 2 && count != 4)
834 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400836 return pci_legacy_read(bus, off, (u32 *)buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837}
838
839/**
840 * pci_write_legacy_io - write byte(s) to legacy I/O port space
Chris Wright2c3c8be2010-05-12 18:28:57 -0700841 * @filp: open sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 * @kobj: kobject corresponding to file to read from
Randy Dunlapcffb2fa2009-04-10 15:17:50 -0700843 * @bin_attr: struct bin_attribute for this file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 * @buf: buffer containing value to be written
845 * @off: offset into legacy I/O port space
846 * @count: number of bytes to write
847 *
848 * Writes 1, 2, or 4 bytes from legacy I/O port space using an arch specific
849 * callback routine (pci_legacy_write).
850 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400851static ssize_t pci_write_legacy_io(struct file *filp, struct kobject *kobj,
852 struct bin_attribute *bin_attr, char *buf,
853 loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
Geliang Tang554a6032015-12-23 20:28:13 +0800855 struct pci_bus *bus = to_pci_bus(kobj_to_dev(kobj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400857 /* Only support 1, 2 or 4 byte accesses */
858 if (count != 1 && count != 2 && count != 4)
859 return -EINVAL;
860
861 return pci_legacy_write(bus, off, *(u32 *)buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
863
864/**
865 * pci_mmap_legacy_mem - map legacy PCI memory into user memory space
Chris Wright2c3c8be2010-05-12 18:28:57 -0700866 * @filp: open sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 * @kobj: kobject corresponding to device to be mapped
868 * @attr: struct bin_attribute for this file
869 * @vma: struct vm_area_struct passed to mmap
870 *
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000871 * Uses an arch specific callback, pci_mmap_legacy_mem_page_range, to mmap
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 * legacy memory space (first meg of bus space) into application virtual
873 * memory space.
874 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400875static int pci_mmap_legacy_mem(struct file *filp, struct kobject *kobj,
876 struct bin_attribute *attr,
877 struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
Geliang Tang554a6032015-12-23 20:28:13 +0800879 struct pci_bus *bus = to_pci_bus(kobj_to_dev(kobj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400881 return pci_mmap_legacy_page_range(bus, vma, pci_mmap_mem);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000882}
883
884/**
885 * pci_mmap_legacy_io - map legacy PCI IO into user memory space
Chris Wright2c3c8be2010-05-12 18:28:57 -0700886 * @filp: open sysfs file
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000887 * @kobj: kobject corresponding to device to be mapped
888 * @attr: struct bin_attribute for this file
889 * @vma: struct vm_area_struct passed to mmap
890 *
891 * Uses an arch specific callback, pci_mmap_legacy_io_page_range, to mmap
892 * legacy IO space (first meg of bus space) into application virtual
893 * memory space. Returns -ENOSYS if the operation isn't supported
894 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400895static int pci_mmap_legacy_io(struct file *filp, struct kobject *kobj,
896 struct bin_attribute *attr,
897 struct vm_area_struct *vma)
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000898{
Geliang Tang554a6032015-12-23 20:28:13 +0800899 struct pci_bus *bus = to_pci_bus(kobj_to_dev(kobj));
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000900
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400901 return pci_mmap_legacy_page_range(bus, vma, pci_mmap_io);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000902}
903
904/**
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +0300905 * pci_adjust_legacy_attr - adjustment of legacy file attributes
906 * @b: bus to create files under
907 * @mmap_type: I/O port or memory
908 *
909 * Stub implementation. Can be overridden by arch if necessary.
910 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400911void __weak pci_adjust_legacy_attr(struct pci_bus *b,
912 enum pci_mmap_state mmap_type)
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +0300913{
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +0300914}
915
916/**
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000917 * pci_create_legacy_files - create legacy I/O port and memory files
918 * @b: bus to create files under
919 *
920 * Some platforms allow access to legacy I/O port and ISA memory space on
921 * a per-bus basis. This routine creates the files and ties them into
922 * their associated read, write and mmap files from pci-sysfs.c
923 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300924 * On error unwind, but don't propagate the error to the caller
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000925 * as it is ok to set up the PCI bus without these files.
926 */
927void pci_create_legacy_files(struct pci_bus *b)
928{
929 int error;
930
931 b->legacy_io = kzalloc(sizeof(struct bin_attribute) * 2,
932 GFP_ATOMIC);
933 if (!b->legacy_io)
934 goto kzalloc_err;
935
Stephen Rothwell62e877b82010-03-01 20:38:36 +1100936 sysfs_bin_attr_init(b->legacy_io);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000937 b->legacy_io->attr.name = "legacy_io";
938 b->legacy_io->size = 0xffff;
939 b->legacy_io->attr.mode = S_IRUSR | S_IWUSR;
940 b->legacy_io->read = pci_read_legacy_io;
941 b->legacy_io->write = pci_write_legacy_io;
942 b->legacy_io->mmap = pci_mmap_legacy_io;
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +0300943 pci_adjust_legacy_attr(b, pci_mmap_io);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000944 error = device_create_bin_file(&b->dev, b->legacy_io);
945 if (error)
946 goto legacy_io_err;
947
948 /* Allocated above after the legacy_io struct */
949 b->legacy_mem = b->legacy_io + 1;
Mel Gorman6757eca32010-03-10 22:48:34 +0000950 sysfs_bin_attr_init(b->legacy_mem);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000951 b->legacy_mem->attr.name = "legacy_mem";
952 b->legacy_mem->size = 1024*1024;
953 b->legacy_mem->attr.mode = S_IRUSR | S_IWUSR;
954 b->legacy_mem->mmap = pci_mmap_legacy_mem;
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +0300955 pci_adjust_legacy_attr(b, pci_mmap_mem);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000956 error = device_create_bin_file(&b->dev, b->legacy_mem);
957 if (error)
958 goto legacy_mem_err;
959
960 return;
961
962legacy_mem_err:
963 device_remove_bin_file(&b->dev, b->legacy_io);
964legacy_io_err:
965 kfree(b->legacy_io);
966 b->legacy_io = NULL;
967kzalloc_err:
Ryan Desfosses227f0642014-04-18 20:13:50 -0400968 printk(KERN_WARNING "pci: warning: could not create legacy I/O port and ISA memory resources to sysfs\n");
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000969 return;
970}
971
972void pci_remove_legacy_files(struct pci_bus *b)
973{
974 if (b->legacy_io) {
975 device_remove_bin_file(&b->dev, b->legacy_io);
976 device_remove_bin_file(&b->dev, b->legacy_mem);
977 kfree(b->legacy_io); /* both are allocated here */
978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979}
980#endif /* HAVE_PCI_LEGACY */
981
982#ifdef HAVE_PCI_MMAP
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -0700983
Martin Wilck3b519e42010-11-10 11:03:21 +0100984int pci_mmap_fits(struct pci_dev *pdev, int resno, struct vm_area_struct *vma,
985 enum pci_mmap_api mmap_api)
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -0700986{
David Woodhousefa3bbb12017-04-12 13:25:50 +0100987 unsigned long nr, start, size;
988 resource_size_t pci_start = 0, pci_end;
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -0700989
Martin Wilck3b519e42010-11-10 11:03:21 +0100990 if (pci_resource_len(pdev, resno) == 0)
991 return 0;
Libin64b00172013-04-15 02:48:54 +0000992 nr = vma_pages(vma);
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -0700993 start = vma->vm_pgoff;
Ed Swierk88e7df02008-11-03 14:41:16 -0800994 size = ((pci_resource_len(pdev, resno) - 1) >> PAGE_SHIFT) + 1;
David Woodhousefa3bbb12017-04-12 13:25:50 +0100995 if (mmap_api == PCI_MMAP_PROCFS) {
996 pci_resource_to_user(pdev, resno, &pdev->resource[resno],
997 &pci_start, &pci_end);
998 pci_start >>= PAGE_SHIFT;
999 }
Martin Wilck3b519e42010-11-10 11:03:21 +01001000 if (start >= pci_start && start < pci_start + size &&
1001 start + nr <= pci_start + size)
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -07001002 return 1;
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -07001003 return 0;
1004}
1005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006/**
1007 * pci_mmap_resource - map a PCI resource into user memory space
1008 * @kobj: kobject for mapping
1009 * @attr: struct bin_attribute for the file being mapped
1010 * @vma: struct vm_area_struct passed into the mmap
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001011 * @write_combine: 1 for write_combine mapping
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 *
1013 * Use the regular PCI mapping routines to map a PCI resource into userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001015static int pci_mmap_resource(struct kobject *kobj, struct bin_attribute *attr,
1016 struct vm_area_struct *vma, int write_combine)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
Geliang Tang554a6032015-12-23 20:28:13 +08001018 struct pci_dev *pdev = to_pci_dev(kobj_to_dev(kobj));
Kulikov Vasiliya3f58352010-06-29 14:15:28 +04001019 struct resource *res = attr->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 enum pci_mmap_state mmap_type;
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -07001021 resource_size_t start, end;
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001022 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001024 for (i = 0; i < PCI_ROM_RESOURCE; i++)
1025 if (res == &pdev->resource[i])
1026 break;
1027 if (i >= PCI_ROM_RESOURCE)
1028 return -ENODEV;
1029
Bjorn Helgaasca620722016-04-07 17:15:14 -07001030 if (res->flags & IORESOURCE_MEM && iomem_is_exclusive(res->start))
1031 return -EINVAL;
1032
Martin Wilck3b519e42010-11-10 11:03:21 +01001033 if (!pci_mmap_fits(pdev, i, vma, PCI_MMAP_SYSFS)) {
Ryan Desfosses227f0642014-04-18 20:13:50 -04001034 WARN(1, "process \"%s\" tried to map 0x%08lx bytes at page 0x%08lx on %s BAR %d (start 0x%16Lx, size 0x%16Lx)\n",
Martin Wilck3b519e42010-11-10 11:03:21 +01001035 current->comm, vma->vm_end-vma->vm_start, vma->vm_pgoff,
1036 pci_name(pdev), i,
Randy Dunlape25cd062010-11-13 08:44:33 -08001037 (u64)pci_resource_start(pdev, i),
1038 (u64)pci_resource_len(pdev, i));
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -07001039 return -EINVAL;
Martin Wilck3b519e42010-11-10 11:03:21 +01001040 }
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -07001041
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001042 /* pci_mmap_page_range() expects the same kind of entry as coming
1043 * from /proc/bus/pci/ which is a "user visible" value. If this is
1044 * different from the resource itself, arch will do necessary fixup.
1045 */
1046 pci_resource_to_user(pdev, i, res, &start, &end);
1047 vma->vm_pgoff += start >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 mmap_type = res->flags & IORESOURCE_MEM ? pci_mmap_mem : pci_mmap_io;
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001049 return pci_mmap_page_range(pdev, vma, mmap_type, write_combine);
1050}
1051
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001052static int pci_mmap_resource_uc(struct file *filp, struct kobject *kobj,
1053 struct bin_attribute *attr,
1054 struct vm_area_struct *vma)
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001055{
1056 return pci_mmap_resource(kobj, attr, vma, 0);
1057}
1058
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001059static int pci_mmap_resource_wc(struct file *filp, struct kobject *kobj,
1060 struct bin_attribute *attr,
1061 struct vm_area_struct *vma)
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001062{
1063 return pci_mmap_resource(kobj, attr, vma, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
1065
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001066static ssize_t pci_resource_io(struct file *filp, struct kobject *kobj,
1067 struct bin_attribute *attr, char *buf,
1068 loff_t off, size_t count, bool write)
Alex Williamson86333282010-07-19 09:45:34 -06001069{
Geliang Tang554a6032015-12-23 20:28:13 +08001070 struct pci_dev *pdev = to_pci_dev(kobj_to_dev(kobj));
Alex Williamson86333282010-07-19 09:45:34 -06001071 struct resource *res = attr->private;
1072 unsigned long port = off;
1073 int i;
1074
1075 for (i = 0; i < PCI_ROM_RESOURCE; i++)
1076 if (res == &pdev->resource[i])
1077 break;
1078 if (i >= PCI_ROM_RESOURCE)
1079 return -ENODEV;
1080
1081 port += pci_resource_start(pdev, i);
1082
1083 if (port > pci_resource_end(pdev, i))
1084 return 0;
1085
1086 if (port + count - 1 > pci_resource_end(pdev, i))
1087 return -EINVAL;
1088
1089 switch (count) {
1090 case 1:
1091 if (write)
1092 outb(*(u8 *)buf, port);
1093 else
1094 *(u8 *)buf = inb(port);
1095 return 1;
1096 case 2:
1097 if (write)
1098 outw(*(u16 *)buf, port);
1099 else
1100 *(u16 *)buf = inw(port);
1101 return 2;
1102 case 4:
1103 if (write)
1104 outl(*(u32 *)buf, port);
1105 else
1106 *(u32 *)buf = inl(port);
1107 return 4;
1108 }
1109 return -EINVAL;
1110}
1111
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001112static ssize_t pci_read_resource_io(struct file *filp, struct kobject *kobj,
1113 struct bin_attribute *attr, char *buf,
1114 loff_t off, size_t count)
Alex Williamson86333282010-07-19 09:45:34 -06001115{
1116 return pci_resource_io(filp, kobj, attr, buf, off, count, false);
1117}
1118
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001119static ssize_t pci_write_resource_io(struct file *filp, struct kobject *kobj,
1120 struct bin_attribute *attr, char *buf,
1121 loff_t off, size_t count)
Alex Williamson86333282010-07-19 09:45:34 -06001122{
1123 return pci_resource_io(filp, kobj, attr, buf, off, count, true);
1124}
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126/**
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001127 * pci_remove_resource_files - cleanup resource files
Randy Dunlapcffb2fa2009-04-10 15:17:50 -07001128 * @pdev: dev to cleanup
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001129 *
Randy Dunlapcffb2fa2009-04-10 15:17:50 -07001130 * If we created resource files for @pdev, remove them from sysfs and
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001131 * free their resources.
1132 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001133static void pci_remove_resource_files(struct pci_dev *pdev)
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001134{
1135 int i;
1136
1137 for (i = 0; i < PCI_ROM_RESOURCE; i++) {
1138 struct bin_attribute *res_attr;
1139
1140 res_attr = pdev->res_attr[i];
1141 if (res_attr) {
1142 sysfs_remove_bin_file(&pdev->dev.kobj, res_attr);
1143 kfree(res_attr);
1144 }
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001145
1146 res_attr = pdev->res_attr_wc[i];
1147 if (res_attr) {
1148 sysfs_remove_bin_file(&pdev->dev.kobj, res_attr);
1149 kfree(res_attr);
1150 }
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001151 }
1152}
1153
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001154static int pci_create_attr(struct pci_dev *pdev, int num, int write_combine)
1155{
1156 /* allocate attribute structure, piggyback attribute name */
1157 int name_len = write_combine ? 13 : 10;
1158 struct bin_attribute *res_attr;
Bjorn Helgaasbd5174d2016-03-10 14:36:34 -06001159 char *res_attr_name;
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001160 int retval;
1161
1162 res_attr = kzalloc(sizeof(*res_attr) + name_len, GFP_ATOMIC);
Bjorn Helgaasbd5174d2016-03-10 14:36:34 -06001163 if (!res_attr)
1164 return -ENOMEM;
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001165
Bjorn Helgaasbd5174d2016-03-10 14:36:34 -06001166 res_attr_name = (char *)(res_attr + 1);
1167
1168 sysfs_bin_attr_init(res_attr);
1169 if (write_combine) {
1170 pdev->res_attr_wc[num] = res_attr;
1171 sprintf(res_attr_name, "resource%d_wc", num);
1172 res_attr->mmap = pci_mmap_resource_wc;
1173 } else {
1174 pdev->res_attr[num] = res_attr;
1175 sprintf(res_attr_name, "resource%d", num);
1176 res_attr->mmap = pci_mmap_resource_uc;
1177 }
1178 if (pci_resource_flags(pdev, num) & IORESOURCE_IO) {
1179 res_attr->read = pci_read_resource_io;
1180 res_attr->write = pci_write_resource_io;
1181 }
1182 res_attr->attr.name = res_attr_name;
1183 res_attr->attr.mode = S_IRUSR | S_IWUSR;
1184 res_attr->size = pci_resource_len(pdev, num);
1185 res_attr->private = &pdev->resource[num];
1186 retval = sysfs_create_bin_file(&pdev->dev.kobj, res_attr);
1187 if (retval)
1188 kfree(res_attr);
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001189
1190 return retval;
1191}
1192
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001193/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 * pci_create_resource_files - create resource files in sysfs for @dev
Randy Dunlapcffb2fa2009-04-10 15:17:50 -07001195 * @pdev: dev in question
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 *
Randy Dunlapcffb2fa2009-04-10 15:17:50 -07001197 * Walk the resources in @pdev creating files for each resource available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 */
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001199static int pci_create_resource_files(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
1201 int i;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001202 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204 /* Expose the PCI resources from this device as files */
1205 for (i = 0; i < PCI_ROM_RESOURCE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 /* skip empty resources */
1208 if (!pci_resource_len(pdev, i))
1209 continue;
1210
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001211 retval = pci_create_attr(pdev, i, 0);
1212 /* for prefetchable resources, create a WC mappable file */
1213 if (!retval && pdev->resource[i].flags & IORESOURCE_PREFETCH)
1214 retval = pci_create_attr(pdev, i, 1);
Dmitry Torokhovd48593b2005-04-29 00:58:46 -05001215
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001216 if (retval) {
1217 pci_remove_resource_files(pdev);
1218 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 }
1220 }
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001221 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222}
1223#else /* !HAVE_PCI_MMAP */
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +03001224int __weak pci_create_resource_files(struct pci_dev *dev) { return 0; }
1225void __weak pci_remove_resource_files(struct pci_dev *dev) { return; }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226#endif /* HAVE_PCI_MMAP */
1227
1228/**
1229 * pci_write_rom - used to enable access to the PCI ROM display
Chris Wright2c3c8be2010-05-12 18:28:57 -07001230 * @filp: sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 * @kobj: kernel object handle
Randy Dunlapcffb2fa2009-04-10 15:17:50 -07001232 * @bin_attr: struct bin_attribute for this file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 * @buf: user input
1234 * @off: file offset
1235 * @count: number of byte in input
1236 *
1237 * writing anything except 0 enables it
1238 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001239static ssize_t pci_write_rom(struct file *filp, struct kobject *kobj,
1240 struct bin_attribute *bin_attr, char *buf,
1241 loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
Geliang Tang554a6032015-12-23 20:28:13 +08001243 struct pci_dev *pdev = to_pci_dev(kobj_to_dev(kobj));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 if ((off == 0) && (*buf == '0') && (count == 2))
1246 pdev->rom_attr_enabled = 0;
1247 else
1248 pdev->rom_attr_enabled = 1;
1249
1250 return count;
1251}
1252
1253/**
1254 * pci_read_rom - read a PCI ROM
Chris Wright2c3c8be2010-05-12 18:28:57 -07001255 * @filp: sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 * @kobj: kernel object handle
Randy Dunlapcffb2fa2009-04-10 15:17:50 -07001257 * @bin_attr: struct bin_attribute for this file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 * @buf: where to put the data we read from the ROM
1259 * @off: file offset
1260 * @count: number of bytes to read
1261 *
1262 * Put @count bytes starting at @off into @buf from the ROM in the PCI
1263 * device corresponding to @kobj.
1264 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001265static ssize_t pci_read_rom(struct file *filp, struct kobject *kobj,
1266 struct bin_attribute *bin_attr, char *buf,
1267 loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
Geliang Tang554a6032015-12-23 20:28:13 +08001269 struct pci_dev *pdev = to_pci_dev(kobj_to_dev(kobj));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 void __iomem *rom;
1271 size_t size;
1272
1273 if (!pdev->rom_attr_enabled)
1274 return -EINVAL;
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 rom = pci_map_rom(pdev, &size); /* size starts out as PCI window size */
Timothy S. Nelson97c44832009-01-30 06:12:47 +11001277 if (!rom || !size)
1278 return -EIO;
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 if (off >= size)
1281 count = 0;
1282 else {
1283 if (off + count > size)
1284 count = size - off;
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 memcpy_fromio(buf, rom + off, count);
1287 }
1288 pci_unmap_rom(pdev, rom);
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 return count;
1291}
1292
1293static struct bin_attribute pci_config_attr = {
1294 .attr = {
1295 .name = "config",
1296 .mode = S_IRUGO | S_IWUSR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 },
Zhao, Yu557848c2008-10-13 19:18:07 +08001298 .size = PCI_CFG_SPACE_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 .read = pci_read_config,
1300 .write = pci_write_config,
1301};
1302
1303static struct bin_attribute pcie_config_attr = {
1304 .attr = {
1305 .name = "config",
1306 .mode = S_IRUGO | S_IWUSR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 },
Zhao, Yu557848c2008-10-13 19:18:07 +08001308 .size = PCI_CFG_SPACE_EXP_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 .read = pci_read_config,
1310 .write = pci_write_config,
1311};
1312
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001313static ssize_t reset_store(struct device *dev, struct device_attribute *attr,
1314 const char *buf, size_t count)
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001315{
1316 struct pci_dev *pdev = to_pci_dev(dev);
1317 unsigned long val;
Jingoo Han9a994e82013-06-01 16:25:25 +09001318 ssize_t result = kstrtoul(buf, 0, &val);
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001319
1320 if (result < 0)
1321 return result;
1322
1323 if (val != 1)
1324 return -EINVAL;
Michal Schmidt447c5dd2010-05-11 11:44:54 +02001325
1326 result = pci_reset_function(pdev);
1327 if (result < 0)
1328 return result;
1329
1330 return count;
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001331}
1332
1333static struct device_attribute reset_attr = __ATTR(reset, 0200, NULL, reset_store);
1334
Zhao, Yu280c73d2008-10-13 20:01:00 +08001335static int pci_create_capabilities_sysfs(struct pci_dev *dev)
1336{
1337 int retval;
1338 struct bin_attribute *attr;
1339
1340 /* If the device has VPD, try to expose it in sysfs. */
1341 if (dev->vpd) {
1342 attr = kzalloc(sizeof(*attr), GFP_ATOMIC);
1343 if (!attr)
1344 return -ENOMEM;
1345
Eric W. Biedermana07e4152010-02-11 15:23:05 -08001346 sysfs_bin_attr_init(attr);
Hannes Reinecke104daa72016-02-15 09:42:01 +01001347 attr->size = 0;
Zhao, Yu280c73d2008-10-13 20:01:00 +08001348 attr->attr.name = "vpd";
1349 attr->attr.mode = S_IRUSR | S_IWUSR;
Stephen Hemminger287d19c2008-12-18 09:17:16 -08001350 attr->read = read_vpd_attr;
1351 attr->write = write_vpd_attr;
Zhao, Yu280c73d2008-10-13 20:01:00 +08001352 retval = sysfs_create_bin_file(&dev->dev.kobj, attr);
1353 if (retval) {
Ben Hutchings0f12a4e2011-01-13 19:47:56 +00001354 kfree(attr);
Zhao, Yu280c73d2008-10-13 20:01:00 +08001355 return retval;
1356 }
1357 dev->vpd->attr = attr;
1358 }
1359
1360 /* Active State Power Management */
1361 pcie_aspm_create_sysfs_dev_files(dev);
1362
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001363 if (!pci_probe_reset_function(dev)) {
1364 retval = device_create_file(&dev->dev, &reset_attr);
1365 if (retval)
1366 goto error;
1367 dev->reset_fn = 1;
1368 }
Zhao, Yu280c73d2008-10-13 20:01:00 +08001369 return 0;
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001370
1371error:
1372 pcie_aspm_remove_sysfs_dev_files(dev);
1373 if (dev->vpd && dev->vpd->attr) {
1374 sysfs_remove_bin_file(&dev->dev.kobj, dev->vpd->attr);
1375 kfree(dev->vpd->attr);
1376 }
1377
1378 return retval;
Zhao, Yu280c73d2008-10-13 20:01:00 +08001379}
1380
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001381int __must_check pci_create_sysfs_dev_files(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382{
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001383 int retval;
Bjorn Helgaasac0c3022016-03-12 05:48:08 -06001384 int rom_size;
Zhao, Yu280c73d2008-10-13 20:01:00 +08001385 struct bin_attribute *attr;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 if (!sysfs_initialized)
1388 return -EACCES;
1389
Jason S. McMullanc20aecf2015-09-30 15:35:05 +09001390 if (pdev->cfg_size > PCI_CFG_SPACE_SIZE)
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001391 retval = sysfs_create_bin_file(&pdev->dev.kobj, &pcie_config_attr);
Jason S. McMullanc20aecf2015-09-30 15:35:05 +09001392 else
1393 retval = sysfs_create_bin_file(&pdev->dev.kobj, &pci_config_attr);
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001394 if (retval)
1395 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001397 retval = pci_create_resource_files(pdev);
1398 if (retval)
Zhao, Yu280c73d2008-10-13 20:01:00 +08001399 goto err_config_file;
1400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 /* If the device has a ROM, try to expose it in sysfs. */
Bjorn Helgaasac0c3022016-03-12 05:48:08 -06001402 rom_size = pci_resource_len(pdev, PCI_ROM_RESOURCE);
Zhao, Yu280c73d2008-10-13 20:01:00 +08001403 if (rom_size) {
Ben Hutchings94e61082008-03-05 16:52:39 +00001404 attr = kzalloc(sizeof(*attr), GFP_ATOMIC);
Zhao, Yu280c73d2008-10-13 20:01:00 +08001405 if (!attr) {
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001406 retval = -ENOMEM;
Michael Ellerman9890b122007-04-18 13:34:12 +10001407 goto err_resource_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
Eric W. Biedermana07e4152010-02-11 15:23:05 -08001409 sysfs_bin_attr_init(attr);
Zhao, Yu280c73d2008-10-13 20:01:00 +08001410 attr->size = rom_size;
1411 attr->attr.name = "rom";
Alex Williamsonff295302011-01-05 10:26:41 -07001412 attr->attr.mode = S_IRUSR | S_IWUSR;
Zhao, Yu280c73d2008-10-13 20:01:00 +08001413 attr->read = pci_read_rom;
1414 attr->write = pci_write_rom;
1415 retval = sysfs_create_bin_file(&pdev->dev.kobj, attr);
1416 if (retval) {
1417 kfree(attr);
1418 goto err_resource_files;
1419 }
1420 pdev->rom_attr = attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 }
Zhao, Yu280c73d2008-10-13 20:01:00 +08001422
Zhao, Yu280c73d2008-10-13 20:01:00 +08001423 /* add sysfs entries for various capabilities */
1424 retval = pci_create_capabilities_sysfs(pdev);
1425 if (retval)
Yinghai Lu625e1d52012-11-05 15:20:35 -05001426 goto err_rom_file;
Shaohua Li7d715a62008-02-25 09:46:41 +08001427
Narendra K911e1c92010-07-26 05:56:50 -05001428 pci_create_firmware_label_files(pdev);
1429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 return 0;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001431
Michael Ellermana2cd52c2007-05-08 12:03:08 +10001432err_rom_file:
Bjorn Helgaas9d88b932016-03-01 09:37:10 -06001433 if (pdev->rom_attr) {
Ben Hutchings94e61082008-03-05 16:52:39 +00001434 sysfs_remove_bin_file(&pdev->dev.kobj, pdev->rom_attr);
Zhao, Yu280c73d2008-10-13 20:01:00 +08001435 kfree(pdev->rom_attr);
1436 pdev->rom_attr = NULL;
1437 }
Michael Ellerman9890b122007-04-18 13:34:12 +10001438err_resource_files:
1439 pci_remove_resource_files(pdev);
Ben Hutchings94e61082008-03-05 16:52:39 +00001440err_config_file:
Jason S. McMullanc20aecf2015-09-30 15:35:05 +09001441 if (pdev->cfg_size > PCI_CFG_SPACE_SIZE)
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001442 sysfs_remove_bin_file(&pdev->dev.kobj, &pcie_config_attr);
Jason S. McMullanc20aecf2015-09-30 15:35:05 +09001443 else
1444 sysfs_remove_bin_file(&pdev->dev.kobj, &pci_config_attr);
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001445err:
1446 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447}
1448
Zhao, Yu280c73d2008-10-13 20:01:00 +08001449static void pci_remove_capabilities_sysfs(struct pci_dev *dev)
1450{
1451 if (dev->vpd && dev->vpd->attr) {
1452 sysfs_remove_bin_file(&dev->dev.kobj, dev->vpd->attr);
1453 kfree(dev->vpd->attr);
1454 }
1455
1456 pcie_aspm_remove_sysfs_dev_files(dev);
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001457 if (dev->reset_fn) {
1458 device_remove_file(&dev->dev, &reset_attr);
1459 dev->reset_fn = 0;
1460 }
Zhao, Yu280c73d2008-10-13 20:01:00 +08001461}
1462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463/**
1464 * pci_remove_sysfs_dev_files - cleanup PCI specific sysfs files
1465 * @pdev: device whose entries we should free
1466 *
1467 * Cleanup when @pdev is removed from sysfs.
1468 */
1469void pci_remove_sysfs_dev_files(struct pci_dev *pdev)
1470{
David Millerd67afe52006-11-10 12:27:48 -08001471 if (!sysfs_initialized)
1472 return;
1473
Zhao, Yu280c73d2008-10-13 20:01:00 +08001474 pci_remove_capabilities_sysfs(pdev);
Shaohua Li7d715a62008-02-25 09:46:41 +08001475
Jason S. McMullanc20aecf2015-09-30 15:35:05 +09001476 if (pdev->cfg_size > PCI_CFG_SPACE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 sysfs_remove_bin_file(&pdev->dev.kobj, &pcie_config_attr);
Jason S. McMullanc20aecf2015-09-30 15:35:05 +09001478 else
1479 sysfs_remove_bin_file(&pdev->dev.kobj, &pci_config_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
1481 pci_remove_resource_files(pdev);
1482
Bjorn Helgaas9d88b932016-03-01 09:37:10 -06001483 if (pdev->rom_attr) {
Zhao, Yu280c73d2008-10-13 20:01:00 +08001484 sysfs_remove_bin_file(&pdev->dev.kobj, pdev->rom_attr);
1485 kfree(pdev->rom_attr);
Bjorn Helgaas9d88b932016-03-01 09:37:10 -06001486 pdev->rom_attr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 }
Narendra K911e1c92010-07-26 05:56:50 -05001488
1489 pci_remove_firmware_label_files(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490}
1491
1492static int __init pci_sysfs_init(void)
1493{
1494 struct pci_dev *pdev = NULL;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001495 int retval;
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 sysfs_initialized = 1;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001498 for_each_pci_dev(pdev) {
1499 retval = pci_create_sysfs_dev_files(pdev);
Julia Lawall151fc5d2007-11-20 08:41:16 +01001500 if (retval) {
1501 pci_dev_put(pdev);
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001502 return retval;
Julia Lawall151fc5d2007-11-20 08:41:16 +01001503 }
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
1506 return 0;
1507}
Jesse Barnes40ee9e92007-03-24 11:03:32 -07001508late_initcall(pci_sysfs_init);
Yinghai Lu4e15c462012-11-05 15:20:34 -05001509
1510static struct attribute *pci_dev_dev_attrs[] = {
Yinghai Lu625e1d52012-11-05 15:20:35 -05001511 &vga_attr.attr,
Yinghai Lu4e15c462012-11-05 15:20:34 -05001512 NULL,
1513};
1514
1515static umode_t pci_dev_attrs_are_visible(struct kobject *kobj,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001516 struct attribute *a, int n)
Yinghai Lu4e15c462012-11-05 15:20:34 -05001517{
Geliang Tang554a6032015-12-23 20:28:13 +08001518 struct device *dev = kobj_to_dev(kobj);
Yinghai Lu625e1d52012-11-05 15:20:35 -05001519 struct pci_dev *pdev = to_pci_dev(dev);
1520
1521 if (a == &vga_attr.attr)
1522 if ((pdev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
1523 return 0;
1524
Yinghai Lu4e15c462012-11-05 15:20:34 -05001525 return a->mode;
1526}
1527
Jiang Liudfab88b2013-05-31 12:21:31 +08001528static struct attribute *pci_dev_hp_attrs[] = {
1529 &dev_remove_attr.attr,
1530 &dev_rescan_attr.attr,
1531 NULL,
1532};
1533
1534static umode_t pci_dev_hp_attrs_are_visible(struct kobject *kobj,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001535 struct attribute *a, int n)
Jiang Liudfab88b2013-05-31 12:21:31 +08001536{
Geliang Tang554a6032015-12-23 20:28:13 +08001537 struct device *dev = kobj_to_dev(kobj);
Jiang Liudfab88b2013-05-31 12:21:31 +08001538 struct pci_dev *pdev = to_pci_dev(dev);
1539
1540 if (pdev->is_virtfn)
1541 return 0;
1542
1543 return a->mode;
1544}
1545
1546static struct attribute_group pci_dev_hp_attr_group = {
1547 .attrs = pci_dev_hp_attrs,
1548 .is_visible = pci_dev_hp_attrs_are_visible,
1549};
1550
Donald Dutile17893822012-11-05 15:20:36 -05001551#ifdef CONFIG_PCI_IOV
1552static struct attribute *sriov_dev_attrs[] = {
1553 &sriov_totalvfs_attr.attr,
1554 &sriov_numvfs_attr.attr,
1555 NULL,
1556};
1557
1558static umode_t sriov_attrs_are_visible(struct kobject *kobj,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001559 struct attribute *a, int n)
Donald Dutile17893822012-11-05 15:20:36 -05001560{
Geliang Tang554a6032015-12-23 20:28:13 +08001561 struct device *dev = kobj_to_dev(kobj);
Donald Dutile17893822012-11-05 15:20:36 -05001562
1563 if (!dev_is_pf(dev))
1564 return 0;
1565
1566 return a->mode;
1567}
1568
1569static struct attribute_group sriov_dev_attr_group = {
1570 .attrs = sriov_dev_attrs,
1571 .is_visible = sriov_attrs_are_visible,
1572};
1573#endif /* CONFIG_PCI_IOV */
1574
Yinghai Lu4e15c462012-11-05 15:20:34 -05001575static struct attribute_group pci_dev_attr_group = {
1576 .attrs = pci_dev_dev_attrs,
1577 .is_visible = pci_dev_attrs_are_visible,
1578};
1579
1580static const struct attribute_group *pci_dev_attr_groups[] = {
1581 &pci_dev_attr_group,
Jiang Liudfab88b2013-05-31 12:21:31 +08001582 &pci_dev_hp_attr_group,
Donald Dutile17893822012-11-05 15:20:36 -05001583#ifdef CONFIG_PCI_IOV
1584 &sriov_dev_attr_group,
1585#endif
Yinghai Lu4e15c462012-11-05 15:20:34 -05001586 NULL,
1587};
1588
1589struct device_type pci_dev_type = {
1590 .groups = pci_dev_attr_groups,
1591};