blob: ec103a7e13fc4020daa08ade916389403a65dd22 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * (C) Copyright 2002-2004 Greg Kroah-Hartman <greg@kroah.com>
4 * (C) Copyright 2002-2004 IBM Corp.
5 * (C) Copyright 2003 Matthew Wilcox
6 * (C) Copyright 2003 Hewlett-Packard
7 * (C) Copyright 2004 Jon Smirl <jonsmirl@yahoo.com>
8 * (C) Copyright 2004 Silicon Graphics, Inc. Jesse Barnes <jbarnes@sgi.com>
9 *
10 * File attributes for PCI devices
11 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -070012 * Modeled after usb's driverfs.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
14
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/kernel.h>
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -070017#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/pci.h>
19#include <linux/stat.h>
Paul Gortmaker363c75d2011-05-27 09:37:25 -040020#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/topology.h>
22#include <linux/mm.h>
Chris Wrightde139a32010-05-13 10:43:07 -070023#include <linux/fs.h>
Alexey Dobriyanaa0ac362007-07-15 23:40:39 -070024#include <linux/capability.h>
Chris Wrighta628e7b2011-02-14 17:21:49 -080025#include <linux/security.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Matthew Garrett1a39b312012-04-16 16:26:02 -040027#include <linux/vgaarb.h>
Huang Ying448bd852012-06-23 10:23:51 +080028#include <linux/pm_runtime.h>
Sebastian Ottdfc73e72014-04-17 19:46:15 +020029#include <linux/of.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "pci.h"
31
32static int sysfs_initialized; /* = 0 */
33
34/* show configuration fields */
35#define pci_config_attr(field, format_string) \
36static ssize_t \
Yani Ioannoue404e272005-05-17 06:42:58 -040037field##_show(struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{ \
39 struct pci_dev *pdev; \
40 \
Ryan Desfosses3c78bc62014-04-18 20:13:49 -040041 pdev = to_pci_dev(dev); \
42 return sprintf(buf, format_string, pdev->field); \
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -070043} \
44static DEVICE_ATTR_RO(field)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46pci_config_attr(vendor, "0x%04x\n");
47pci_config_attr(device, "0x%04x\n");
48pci_config_attr(subsystem_vendor, "0x%04x\n");
49pci_config_attr(subsystem_device, "0x%04x\n");
Emil Velikov702ed3b2016-11-21 16:24:49 -060050pci_config_attr(revision, "0x%02x\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070051pci_config_attr(class, "0x%06x\n");
52pci_config_attr(irq, "%u\n");
53
Doug Thompsonbdee9d92006-06-14 16:59:48 -070054static ssize_t broken_parity_status_show(struct device *dev,
55 struct device_attribute *attr,
56 char *buf)
57{
58 struct pci_dev *pdev = to_pci_dev(dev);
Ryan Desfosses3c78bc62014-04-18 20:13:49 -040059 return sprintf(buf, "%u\n", pdev->broken_parity_status);
Doug Thompsonbdee9d92006-06-14 16:59:48 -070060}
61
62static ssize_t broken_parity_status_store(struct device *dev,
63 struct device_attribute *attr,
64 const char *buf, size_t count)
65{
66 struct pci_dev *pdev = to_pci_dev(dev);
Trent Piepho92425a42008-11-30 17:10:12 -080067 unsigned long val;
Doug Thompsonbdee9d92006-06-14 16:59:48 -070068
Jingoo Han9a994e82013-06-01 16:25:25 +090069 if (kstrtoul(buf, 0, &val) < 0)
Trent Piepho92425a42008-11-30 17:10:12 -080070 return -EINVAL;
71
72 pdev->broken_parity_status = !!val;
73
74 return count;
Doug Thompsonbdee9d92006-06-14 16:59:48 -070075}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -070076static DEVICE_ATTR_RW(broken_parity_status);
Doug Thompsonbdee9d92006-06-14 16:59:48 -070077
Sudeep Holla5aaba362014-09-30 14:48:22 +010078static ssize_t pci_dev_show_local_cpu(struct device *dev, bool list,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -040079 struct device_attribute *attr, char *buf)
Mike Travis39106dc2008-04-08 11:43:03 -070080{
Mike Travis3be83052009-01-04 05:18:01 -080081 const struct cpumask *mask;
Mike Travis39106dc2008-04-08 11:43:03 -070082
Andreas Herrmanne0cd5162009-04-17 12:01:55 +020083#ifdef CONFIG_NUMA
David John6be954d2010-01-04 20:28:57 +053084 mask = (dev_to_node(dev) == -1) ? cpu_online_mask :
85 cpumask_of_node(dev_to_node(dev));
Andreas Herrmanne0cd5162009-04-17 12:01:55 +020086#else
Mike Travis3be83052009-01-04 05:18:01 -080087 mask = cpumask_of_pcibus(to_pci_dev(dev)->bus);
Andreas Herrmanne0cd5162009-04-17 12:01:55 +020088#endif
Sudeep Holla5aaba362014-09-30 14:48:22 +010089 return cpumap_print_to_pagebuf(list, buf, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
Yijing Wangc489f5f2013-09-30 15:02:38 +080092static ssize_t local_cpus_show(struct device *dev,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -040093 struct device_attribute *attr, char *buf)
Yijing Wangc489f5f2013-09-30 15:02:38 +080094{
Sudeep Holla5aaba362014-09-30 14:48:22 +010095 return pci_dev_show_local_cpu(dev, false, attr, buf);
Yijing Wangc489f5f2013-09-30 15:02:38 +080096}
Bjorn Helgaas33de1b82013-10-31 14:12:40 -060097static DEVICE_ATTR_RO(local_cpus);
Yijing Wangc489f5f2013-09-30 15:02:38 +080098
99static ssize_t local_cpulist_show(struct device *dev,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400100 struct device_attribute *attr, char *buf)
Yijing Wangc489f5f2013-09-30 15:02:38 +0800101{
Sudeep Holla5aaba362014-09-30 14:48:22 +0100102 return pci_dev_show_local_cpu(dev, true, attr, buf);
Yijing Wangc489f5f2013-09-30 15:02:38 +0800103}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700104static DEVICE_ATTR_RO(local_cpulist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700106/*
107 * PCI Bus Class Devices
108 */
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700109static ssize_t cpuaffinity_show(struct device *dev,
110 struct device_attribute *attr, char *buf)
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700111{
Sudeep Holla5aaba362014-09-30 14:48:22 +0100112 const struct cpumask *cpumask = cpumask_of_pcibus(to_pci_bus(dev));
113
114 return cpumap_print_to_pagebuf(false, buf, cpumask);
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700115}
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700116static DEVICE_ATTR_RO(cpuaffinity);
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700117
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700118static ssize_t cpulistaffinity_show(struct device *dev,
119 struct device_attribute *attr, char *buf)
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700120{
Sudeep Holla5aaba362014-09-30 14:48:22 +0100121 const struct cpumask *cpumask = cpumask_of_pcibus(to_pci_bus(dev));
122
123 return cpumap_print_to_pagebuf(true, buf, cpumask);
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700124}
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700125static DEVICE_ATTR_RO(cpulistaffinity);
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/* show resources */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400128static ssize_t resource_show(struct device *dev, struct device_attribute *attr,
129 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400131 struct pci_dev *pci_dev = to_pci_dev(dev);
132 char *str = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 int i;
Yu Zhaofde09c62008-11-22 02:39:32 +0800134 int max;
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700135 resource_size_t start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 if (pci_dev->subordinate)
138 max = DEVICE_COUNT_RESOURCE;
Yu Zhaofde09c62008-11-22 02:39:32 +0800139 else
140 max = PCI_BRIDGE_RESOURCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 for (i = 0; i < max; i++) {
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000143 struct resource *res = &pci_dev->resource[i];
144 pci_resource_to_user(pci_dev, i, res, &start, &end);
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400145 str += sprintf(str, "0x%016llx 0x%016llx 0x%016llx\n",
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000146 (unsigned long long)start,
147 (unsigned long long)end,
148 (unsigned long long)res->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
150 return (str - buf);
151}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700152static DEVICE_ATTR_RO(resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Wong Vee Khee56c1af42017-06-01 17:43:06 +0800154static ssize_t max_link_speed_show(struct device *dev,
155 struct device_attribute *attr, char *buf)
156{
Tal Gilboa6cf57be2018-03-30 07:44:05 -0500157 struct pci_dev *pdev = to_pci_dev(dev);
Wong Vee Khee56c1af42017-06-01 17:43:06 +0800158
Tal Gilboa6cf57be2018-03-30 07:44:05 -0500159 return sprintf(buf, "%s\n", PCIE_SPEED2STR(pcie_get_speed_cap(pdev)));
Wong Vee Khee56c1af42017-06-01 17:43:06 +0800160}
161static DEVICE_ATTR_RO(max_link_speed);
162
163static ssize_t max_link_width_show(struct device *dev,
164 struct device_attribute *attr, char *buf)
165{
Tal Gilboac70b65f2018-03-30 08:24:36 -0500166 struct pci_dev *pdev = to_pci_dev(dev);
Wong Vee Khee56c1af42017-06-01 17:43:06 +0800167
Tal Gilboac70b65f2018-03-30 08:24:36 -0500168 return sprintf(buf, "%u\n", pcie_get_width_cap(pdev));
Wong Vee Khee56c1af42017-06-01 17:43:06 +0800169}
170static DEVICE_ATTR_RO(max_link_width);
171
172static ssize_t current_link_speed_show(struct device *dev,
173 struct device_attribute *attr, char *buf)
174{
175 struct pci_dev *pci_dev = to_pci_dev(dev);
176 u16 linkstat;
177 int err;
178 const char *speed;
179
180 err = pcie_capability_read_word(pci_dev, PCI_EXP_LNKSTA, &linkstat);
181 if (err)
182 return -EINVAL;
183
184 switch (linkstat & PCI_EXP_LNKSTA_CLS) {
Jay Fang1acfb9b2018-03-12 17:13:32 +0800185 case PCI_EXP_LNKSTA_CLS_16_0GB:
186 speed = "16 GT/s";
187 break;
Wong Vee Khee56c1af42017-06-01 17:43:06 +0800188 case PCI_EXP_LNKSTA_CLS_8_0GB:
189 speed = "8 GT/s";
190 break;
191 case PCI_EXP_LNKSTA_CLS_5_0GB:
192 speed = "5 GT/s";
193 break;
194 case PCI_EXP_LNKSTA_CLS_2_5GB:
195 speed = "2.5 GT/s";
196 break;
197 default:
198 speed = "Unknown speed";
199 }
200
201 return sprintf(buf, "%s\n", speed);
202}
203static DEVICE_ATTR_RO(current_link_speed);
204
205static ssize_t current_link_width_show(struct device *dev,
206 struct device_attribute *attr, char *buf)
207{
208 struct pci_dev *pci_dev = to_pci_dev(dev);
209 u16 linkstat;
210 int err;
211
212 err = pcie_capability_read_word(pci_dev, PCI_EXP_LNKSTA, &linkstat);
213 if (err)
214 return -EINVAL;
215
216 return sprintf(buf, "%u\n",
217 (linkstat & PCI_EXP_LNKSTA_NLW) >> PCI_EXP_LNKSTA_NLW_SHIFT);
218}
219static DEVICE_ATTR_RO(current_link_width);
220
221static ssize_t secondary_bus_number_show(struct device *dev,
222 struct device_attribute *attr,
223 char *buf)
224{
225 struct pci_dev *pci_dev = to_pci_dev(dev);
226 u8 sec_bus;
227 int err;
228
229 err = pci_read_config_byte(pci_dev, PCI_SECONDARY_BUS, &sec_bus);
230 if (err)
231 return -EINVAL;
232
233 return sprintf(buf, "%u\n", sec_bus);
234}
235static DEVICE_ATTR_RO(secondary_bus_number);
236
237static ssize_t subordinate_bus_number_show(struct device *dev,
238 struct device_attribute *attr,
239 char *buf)
240{
241 struct pci_dev *pci_dev = to_pci_dev(dev);
242 u8 sub_bus;
243 int err;
244
245 err = pci_read_config_byte(pci_dev, PCI_SUBORDINATE_BUS, &sub_bus);
246 if (err)
247 return -EINVAL;
248
249 return sprintf(buf, "%u\n", sub_bus);
250}
251static DEVICE_ATTR_RO(subordinate_bus_number);
252
Stuart Hayes0077a842018-01-05 12:51:55 -0600253static ssize_t ari_enabled_show(struct device *dev,
254 struct device_attribute *attr,
255 char *buf)
256{
257 struct pci_dev *pci_dev = to_pci_dev(dev);
258
259 return sprintf(buf, "%u\n", pci_ari_enabled(pci_dev->bus));
260}
261static DEVICE_ATTR_RO(ari_enabled);
262
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400263static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
264 char *buf)
Greg KH98885492005-05-05 11:57:25 -0700265{
266 struct pci_dev *pci_dev = to_pci_dev(dev);
267
Ricardo Ribalda Delgado89ec3dc2014-08-27 14:57:57 +0200268 return sprintf(buf, "pci:v%08Xd%08Xsv%08Xsd%08Xbc%02Xsc%02Xi%02X\n",
Greg KH98885492005-05-05 11:57:25 -0700269 pci_dev->vendor, pci_dev->device,
270 pci_dev->subsystem_vendor, pci_dev->subsystem_device,
271 (u8)(pci_dev->class >> 16), (u8)(pci_dev->class >> 8),
272 (u8)(pci_dev->class));
273}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700274static DEVICE_ATTR_RO(modalias);
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800275
Greg Kroah-Hartmand8e7d532014-10-30 09:30:28 -0700276static ssize_t enable_store(struct device *dev, struct device_attribute *attr,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400277 const char *buf, size_t count)
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200278{
279 struct pci_dev *pdev = to_pci_dev(dev);
Trent Piepho92425a42008-11-30 17:10:12 -0800280 unsigned long val;
Jingoo Han9a994e82013-06-01 16:25:25 +0900281 ssize_t result = kstrtoul(buf, 0, &val);
Trent Piepho92425a42008-11-30 17:10:12 -0800282
283 if (result < 0)
284 return result;
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200285
286 /* this can crash the machine when done on the "wrong" device */
287 if (!capable(CAP_SYS_ADMIN))
Trent Piepho92425a42008-11-30 17:10:12 -0800288 return -EPERM;
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200289
Christoph Hellwig6f5cdfa2018-05-18 18:56:24 +0200290 device_lock(dev);
291 if (dev->driver)
292 result = -EBUSY;
293 else if (val)
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800294 result = pci_enable_device(pdev);
Christoph Hellwig6f5cdfa2018-05-18 18:56:24 +0200295 else if (pci_is_enabled(pdev))
296 pci_disable_device(pdev);
297 else
298 result = -EIO;
299 device_unlock(dev);
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200300
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800301 return result < 0 ? result : count;
302}
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200303
Greg Kroah-Hartmand8e7d532014-10-30 09:30:28 -0700304static ssize_t enable_show(struct device *dev, struct device_attribute *attr,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400305 char *buf)
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800306{
307 struct pci_dev *pdev;
308
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400309 pdev = to_pci_dev(dev);
310 return sprintf(buf, "%u\n", atomic_read(&pdev->enable_cnt));
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200311}
Greg Kroah-Hartmand8e7d532014-10-30 09:30:28 -0700312static DEVICE_ATTR_RW(enable);
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200313
Brice Goglin81bb0e12007-01-28 10:53:40 +0100314#ifdef CONFIG_NUMA
Prarit Bhargava63692df2014-10-23 14:22:12 -0400315static ssize_t numa_node_store(struct device *dev,
316 struct device_attribute *attr, const char *buf,
317 size_t count)
318{
319 struct pci_dev *pdev = to_pci_dev(dev);
320 int node, ret;
321
322 if (!capable(CAP_SYS_ADMIN))
323 return -EPERM;
324
325 ret = kstrtoint(buf, 0, &node);
326 if (ret)
327 return ret;
328
Mathias Krause3dcc8d32015-11-09 20:00:27 +0100329 if ((node < 0 && node != NUMA_NO_NODE) || node >= MAX_NUMNODES)
330 return -EINVAL;
331
332 if (node != NUMA_NO_NODE && !node_online(node))
Prarit Bhargava63692df2014-10-23 14:22:12 -0400333 return -EINVAL;
334
335 add_taint(TAINT_FIRMWARE_WORKAROUND, LOCKDEP_STILL_OK);
Frederick Lawler7506dc72018-01-18 12:55:24 -0600336 pci_alert(pdev, FW_BUG "Overriding NUMA node to %d. Contact your vendor for updates.",
Prarit Bhargava63692df2014-10-23 14:22:12 -0400337 node);
338
339 dev->numa_node = node;
340 return count;
341}
342
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400343static ssize_t numa_node_show(struct device *dev, struct device_attribute *attr,
344 char *buf)
Brice Goglin81bb0e12007-01-28 10:53:40 +0100345{
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400346 return sprintf(buf, "%d\n", dev->numa_node);
Brice Goglin81bb0e12007-01-28 10:53:40 +0100347}
Prarit Bhargava63692df2014-10-23 14:22:12 -0400348static DEVICE_ATTR_RW(numa_node);
Brice Goglin81bb0e12007-01-28 10:53:40 +0100349#endif
350
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400351static ssize_t dma_mask_bits_show(struct device *dev,
352 struct device_attribute *attr, char *buf)
Yinghai Lubb965402009-11-24 18:21:21 -0800353{
354 struct pci_dev *pdev = to_pci_dev(dev);
355
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400356 return sprintf(buf, "%d\n", fls64(pdev->dma_mask));
Yinghai Lubb965402009-11-24 18:21:21 -0800357}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700358static DEVICE_ATTR_RO(dma_mask_bits);
Yinghai Lubb965402009-11-24 18:21:21 -0800359
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400360static ssize_t consistent_dma_mask_bits_show(struct device *dev,
361 struct device_attribute *attr,
362 char *buf)
Yinghai Lubb965402009-11-24 18:21:21 -0800363{
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400364 return sprintf(buf, "%d\n", fls64(dev->coherent_dma_mask));
Yinghai Lubb965402009-11-24 18:21:21 -0800365}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700366static DEVICE_ATTR_RO(consistent_dma_mask_bits);
Yinghai Lubb965402009-11-24 18:21:21 -0800367
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400368static ssize_t msi_bus_show(struct device *dev, struct device_attribute *attr,
369 char *buf)
Brice Goglinfe970642006-08-31 01:55:15 -0400370{
371 struct pci_dev *pdev = to_pci_dev(dev);
Yijing Wang468ff152014-09-23 13:27:24 +0800372 struct pci_bus *subordinate = pdev->subordinate;
Brice Goglinfe970642006-08-31 01:55:15 -0400373
Yijing Wang468ff152014-09-23 13:27:24 +0800374 return sprintf(buf, "%u\n", subordinate ?
375 !(subordinate->bus_flags & PCI_BUS_FLAGS_NO_MSI)
376 : !pdev->no_msi);
Brice Goglinfe970642006-08-31 01:55:15 -0400377}
378
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400379static ssize_t msi_bus_store(struct device *dev, struct device_attribute *attr,
380 const char *buf, size_t count)
Brice Goglinfe970642006-08-31 01:55:15 -0400381{
382 struct pci_dev *pdev = to_pci_dev(dev);
Yijing Wang468ff152014-09-23 13:27:24 +0800383 struct pci_bus *subordinate = pdev->subordinate;
Trent Piepho92425a42008-11-30 17:10:12 -0800384 unsigned long val;
385
Jingoo Han9a994e82013-06-01 16:25:25 +0900386 if (kstrtoul(buf, 0, &val) < 0)
Trent Piepho92425a42008-11-30 17:10:12 -0800387 return -EINVAL;
Brice Goglinfe970642006-08-31 01:55:15 -0400388
Brice Goglinfe970642006-08-31 01:55:15 -0400389 if (!capable(CAP_SYS_ADMIN))
Trent Piepho92425a42008-11-30 17:10:12 -0800390 return -EPERM;
Brice Goglinfe970642006-08-31 01:55:15 -0400391
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700392 /*
Yijing Wang468ff152014-09-23 13:27:24 +0800393 * "no_msi" and "bus_flags" only affect what happens when a driver
394 * requests MSI or MSI-X. They don't affect any drivers that have
395 * already requested MSI or MSI-X.
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700396 */
Yijing Wang468ff152014-09-23 13:27:24 +0800397 if (!subordinate) {
398 pdev->no_msi = !val;
Frederick Lawler7506dc72018-01-18 12:55:24 -0600399 pci_info(pdev, "MSI/MSI-X %s for future drivers\n",
Yijing Wang468ff152014-09-23 13:27:24 +0800400 val ? "allowed" : "disallowed");
Brice Goglinfe970642006-08-31 01:55:15 -0400401 return count;
Brice Goglinfe970642006-08-31 01:55:15 -0400402 }
403
Yijing Wang468ff152014-09-23 13:27:24 +0800404 if (val)
405 subordinate->bus_flags &= ~PCI_BUS_FLAGS_NO_MSI;
406 else
407 subordinate->bus_flags |= PCI_BUS_FLAGS_NO_MSI;
408
409 dev_info(&subordinate->dev, "MSI/MSI-X %s for future drivers of devices on this bus\n",
410 val ? "allowed" : "disallowed");
Brice Goglinfe970642006-08-31 01:55:15 -0400411 return count;
412}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700413static DEVICE_ATTR_RW(msi_bus);
Greg KH98885492005-05-05 11:57:25 -0700414
Greg Kroah-Hartman1094f6d2018-12-21 08:54:34 +0100415static ssize_t rescan_store(struct bus_type *bus, const char *buf, size_t count)
Alex Chiang705b1aa2009-03-20 14:56:31 -0600416{
417 unsigned long val;
418 struct pci_bus *b = NULL;
419
Jingoo Han9a994e82013-06-01 16:25:25 +0900420 if (kstrtoul(buf, 0, &val) < 0)
Alex Chiang705b1aa2009-03-20 14:56:31 -0600421 return -EINVAL;
422
423 if (val) {
Rafael J. Wysocki9d169472014-01-10 15:22:18 +0100424 pci_lock_rescan_remove();
Alex Chiang705b1aa2009-03-20 14:56:31 -0600425 while ((b = pci_find_next_bus(b)) != NULL)
426 pci_rescan_bus(b);
Rafael J. Wysocki9d169472014-01-10 15:22:18 +0100427 pci_unlock_rescan_remove();
Alex Chiang705b1aa2009-03-20 14:56:31 -0600428 }
429 return count;
430}
Greg Kroah-Hartman1094f6d2018-12-21 08:54:34 +0100431static BUS_ATTR_WO(rescan);
Alex Chiang705b1aa2009-03-20 14:56:31 -0600432
Sachin Kamatbf22c902013-09-28 15:42:00 +0530433static struct attribute *pci_bus_attrs[] = {
Greg Kroah-Hartman0f49ba52013-10-07 14:51:02 -0600434 &bus_attr_rescan.attr,
435 NULL,
436};
437
438static const struct attribute_group pci_bus_group = {
439 .attrs = pci_bus_attrs,
440};
441
442const struct attribute_group *pci_bus_groups[] = {
443 &pci_bus_group,
444 NULL,
Alex Chiang705b1aa2009-03-20 14:56:31 -0600445};
Alex Chiang77c27c72009-03-20 14:56:36 -0600446
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400447static ssize_t dev_rescan_store(struct device *dev,
448 struct device_attribute *attr, const char *buf,
449 size_t count)
Alex Chiang738a6392009-03-20 14:56:41 -0600450{
451 unsigned long val;
452 struct pci_dev *pdev = to_pci_dev(dev);
453
Jingoo Han9a994e82013-06-01 16:25:25 +0900454 if (kstrtoul(buf, 0, &val) < 0)
Alex Chiang738a6392009-03-20 14:56:41 -0600455 return -EINVAL;
456
457 if (val) {
Rafael J. Wysocki9d169472014-01-10 15:22:18 +0100458 pci_lock_rescan_remove();
Alex Chiang738a6392009-03-20 14:56:41 -0600459 pci_rescan_bus(pdev->bus);
Rafael J. Wysocki9d169472014-01-10 15:22:18 +0100460 pci_unlock_rescan_remove();
Alex Chiang738a6392009-03-20 14:56:41 -0600461 }
462 return count;
463}
Sachin Kamatbf22c902013-09-28 15:42:00 +0530464static struct device_attribute dev_rescan_attr = __ATTR(rescan,
465 (S_IWUSR|S_IWGRP),
466 NULL, dev_rescan_store);
Alex Chiang738a6392009-03-20 14:56:41 -0600467
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400468static ssize_t remove_store(struct device *dev, struct device_attribute *attr,
469 const char *buf, size_t count)
Alex Chiang77c27c72009-03-20 14:56:36 -0600470{
Alex Chiang77c27c72009-03-20 14:56:36 -0600471 unsigned long val;
Alex Chiang77c27c72009-03-20 14:56:36 -0600472
Jingoo Han9a994e82013-06-01 16:25:25 +0900473 if (kstrtoul(buf, 0, &val) < 0)
Alex Chiang77c27c72009-03-20 14:56:36 -0600474 return -EINVAL;
475
Tejun Heobc6caf02014-02-03 14:03:02 -0500476 if (val && device_remove_file_self(dev, attr))
477 pci_stop_and_remove_bus_device_locked(to_pci_dev(dev));
Alex Chiang77c27c72009-03-20 14:56:36 -0600478 return count;
479}
Sachin Kamatbf22c902013-09-28 15:42:00 +0530480static struct device_attribute dev_remove_attr = __ATTR(remove,
481 (S_IWUSR|S_IWGRP),
482 NULL, remove_store);
Yinghai Lub9d320f2011-05-12 17:11:39 -0700483
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400484static ssize_t dev_bus_rescan_store(struct device *dev,
485 struct device_attribute *attr,
486 const char *buf, size_t count)
Yinghai Lub9d320f2011-05-12 17:11:39 -0700487{
488 unsigned long val;
489 struct pci_bus *bus = to_pci_bus(dev);
490
Jingoo Han9a994e82013-06-01 16:25:25 +0900491 if (kstrtoul(buf, 0, &val) < 0)
Yinghai Lub9d320f2011-05-12 17:11:39 -0700492 return -EINVAL;
493
494 if (val) {
Rafael J. Wysocki9d169472014-01-10 15:22:18 +0100495 pci_lock_rescan_remove();
Yinghai Lu2f320522012-01-21 02:08:22 -0800496 if (!pci_is_root_bus(bus) && list_empty(&bus->devices))
497 pci_rescan_bus_bridge_resize(bus->self);
498 else
499 pci_rescan_bus(bus);
Rafael J. Wysocki9d169472014-01-10 15:22:18 +0100500 pci_unlock_rescan_remove();
Yinghai Lub9d320f2011-05-12 17:11:39 -0700501 }
502 return count;
503}
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700504static DEVICE_ATTR(rescan, (S_IWUSR|S_IWGRP), NULL, dev_bus_rescan_store);
Yinghai Lub9d320f2011-05-12 17:11:39 -0700505
Rafael J. Wysockifbb988b2014-11-27 23:16:57 +0100506#if defined(CONFIG_PM) && defined(CONFIG_ACPI)
Huang Ying448bd852012-06-23 10:23:51 +0800507static ssize_t d3cold_allowed_store(struct device *dev,
508 struct device_attribute *attr,
509 const char *buf, size_t count)
510{
511 struct pci_dev *pdev = to_pci_dev(dev);
512 unsigned long val;
513
Jingoo Han9a994e82013-06-01 16:25:25 +0900514 if (kstrtoul(buf, 0, &val) < 0)
Huang Ying448bd852012-06-23 10:23:51 +0800515 return -EINVAL;
516
517 pdev->d3cold_allowed = !!val;
Mika Westerberg9d26d3a2016-06-02 11:17:12 +0300518 if (pdev->d3cold_allowed)
519 pci_d3cold_enable(pdev);
520 else
521 pci_d3cold_disable(pdev);
522
Huang Ying448bd852012-06-23 10:23:51 +0800523 pm_runtime_resume(dev);
524
525 return count;
526}
527
528static ssize_t d3cold_allowed_show(struct device *dev,
529 struct device_attribute *attr, char *buf)
530{
531 struct pci_dev *pdev = to_pci_dev(dev);
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400532 return sprintf(buf, "%u\n", pdev->d3cold_allowed);
Huang Ying448bd852012-06-23 10:23:51 +0800533}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700534static DEVICE_ATTR_RW(d3cold_allowed);
Huang Ying448bd852012-06-23 10:23:51 +0800535#endif
536
Sebastian Ottdfc73e72014-04-17 19:46:15 +0200537#ifdef CONFIG_OF
538static ssize_t devspec_show(struct device *dev,
539 struct device_attribute *attr, char *buf)
540{
541 struct pci_dev *pdev = to_pci_dev(dev);
542 struct device_node *np = pci_device_to_OF_node(pdev);
543
Rob Herringb63773a2017-07-18 16:43:21 -0500544 if (np == NULL)
Sebastian Ottdfc73e72014-04-17 19:46:15 +0200545 return 0;
Rob Herringb63773a2017-07-18 16:43:21 -0500546 return sprintf(buf, "%pOF", np);
Sebastian Ottdfc73e72014-04-17 19:46:15 +0200547}
548static DEVICE_ATTR_RO(devspec);
549#endif
550
Donald Dutile17893822012-11-05 15:20:36 -0500551#ifdef CONFIG_PCI_IOV
552static ssize_t sriov_totalvfs_show(struct device *dev,
553 struct device_attribute *attr,
554 char *buf)
555{
556 struct pci_dev *pdev = to_pci_dev(dev);
557
Donald Dutilebff73152012-11-05 15:20:37 -0500558 return sprintf(buf, "%u\n", pci_sriov_get_totalvfs(pdev));
Donald Dutile17893822012-11-05 15:20:36 -0500559}
560
561
562static ssize_t sriov_numvfs_show(struct device *dev,
563 struct device_attribute *attr,
564 char *buf)
565{
566 struct pci_dev *pdev = to_pci_dev(dev);
567
Bjorn Helgaas6b136722012-11-09 20:27:53 -0700568 return sprintf(buf, "%u\n", pdev->sriov->num_VFs);
Donald Dutile17893822012-11-05 15:20:36 -0500569}
570
571/*
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700572 * num_vfs > 0; number of VFs to enable
573 * num_vfs = 0; disable all VFs
Donald Dutile17893822012-11-05 15:20:36 -0500574 *
575 * Note: SRIOV spec doesn't allow partial VF
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700576 * disable, so it's all or none.
Donald Dutile17893822012-11-05 15:20:36 -0500577 */
578static ssize_t sriov_numvfs_store(struct device *dev,
579 struct device_attribute *attr,
580 const char *buf, size_t count)
581{
582 struct pci_dev *pdev = to_pci_dev(dev);
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700583 int ret;
584 u16 num_vfs;
Donald Dutile17893822012-11-05 15:20:36 -0500585
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700586 ret = kstrtou16(buf, 0, &num_vfs);
587 if (ret < 0)
588 return ret;
589
590 if (num_vfs > pci_sriov_get_totalvfs(pdev))
591 return -ERANGE;
592
Jakub Kicinski17530e72017-05-22 15:50:23 -0700593 device_lock(&pdev->dev);
Emil Tantilov5b0948d2017-01-06 13:59:08 -0800594
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700595 if (num_vfs == pdev->sriov->num_VFs)
Emil Tantilov5b0948d2017-01-06 13:59:08 -0800596 goto exit;
Donald Dutile17893822012-11-05 15:20:36 -0500597
598 /* is PF driver loaded w/callback */
599 if (!pdev->driver || !pdev->driver->sriov_configure) {
Frederick Lawler7506dc72018-01-18 12:55:24 -0600600 pci_info(pdev, "Driver doesn't support SRIOV configuration via sysfs\n");
Emil Tantilov5b0948d2017-01-06 13:59:08 -0800601 ret = -ENOENT;
602 goto exit;
Donald Dutile17893822012-11-05 15:20:36 -0500603 }
604
Donald Dutile17893822012-11-05 15:20:36 -0500605 if (num_vfs == 0) {
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700606 /* disable VFs */
607 ret = pdev->driver->sriov_configure(pdev, 0);
Emil Tantilov5b0948d2017-01-06 13:59:08 -0800608 goto exit;
Donald Dutile17893822012-11-05 15:20:36 -0500609 }
610
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700611 /* enable VFs */
612 if (pdev->sriov->num_VFs) {
Frederick Lawler7506dc72018-01-18 12:55:24 -0600613 pci_warn(pdev, "%d VFs already enabled. Disable before enabling %d VFs\n",
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700614 pdev->sriov->num_VFs, num_vfs);
Emil Tantilov5b0948d2017-01-06 13:59:08 -0800615 ret = -EBUSY;
616 goto exit;
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700617 }
Donald Dutile17893822012-11-05 15:20:36 -0500618
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700619 ret = pdev->driver->sriov_configure(pdev, num_vfs);
620 if (ret < 0)
Emil Tantilov5b0948d2017-01-06 13:59:08 -0800621 goto exit;
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700622
623 if (ret != num_vfs)
Frederick Lawler7506dc72018-01-18 12:55:24 -0600624 pci_warn(pdev, "%d VFs requested; only %d enabled\n",
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700625 num_vfs, ret);
626
Emil Tantilov5b0948d2017-01-06 13:59:08 -0800627exit:
Jakub Kicinski17530e72017-05-22 15:50:23 -0700628 device_unlock(&pdev->dev);
Emil Tantilov5b0948d2017-01-06 13:59:08 -0800629
630 if (ret < 0)
631 return ret;
632
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700633 return count;
Donald Dutile17893822012-11-05 15:20:36 -0500634}
635
Filippo Sironi7dfca152017-10-09 01:09:11 +0200636static ssize_t sriov_offset_show(struct device *dev,
637 struct device_attribute *attr,
638 char *buf)
639{
640 struct pci_dev *pdev = to_pci_dev(dev);
641
642 return sprintf(buf, "%u\n", pdev->sriov->offset);
643}
644
645static ssize_t sriov_stride_show(struct device *dev,
646 struct device_attribute *attr,
647 char *buf)
648{
649 struct pci_dev *pdev = to_pci_dev(dev);
650
651 return sprintf(buf, "%u\n", pdev->sriov->stride);
652}
653
654static ssize_t sriov_vf_device_show(struct device *dev,
655 struct device_attribute *attr,
656 char *buf)
657{
658 struct pci_dev *pdev = to_pci_dev(dev);
659
660 return sprintf(buf, "%x\n", pdev->sriov->vf_device);
661}
662
Bodong Wang0e7df222017-04-13 01:51:40 +0300663static ssize_t sriov_drivers_autoprobe_show(struct device *dev,
664 struct device_attribute *attr,
665 char *buf)
666{
667 struct pci_dev *pdev = to_pci_dev(dev);
668
669 return sprintf(buf, "%u\n", pdev->sriov->drivers_autoprobe);
670}
671
672static ssize_t sriov_drivers_autoprobe_store(struct device *dev,
673 struct device_attribute *attr,
674 const char *buf, size_t count)
675{
676 struct pci_dev *pdev = to_pci_dev(dev);
677 bool drivers_autoprobe;
678
679 if (kstrtobool(buf, &drivers_autoprobe) < 0)
680 return -EINVAL;
681
682 pdev->sriov->drivers_autoprobe = drivers_autoprobe;
683
684 return count;
685}
686
Donald Dutile17893822012-11-05 15:20:36 -0500687static struct device_attribute sriov_totalvfs_attr = __ATTR_RO(sriov_totalvfs);
688static struct device_attribute sriov_numvfs_attr =
689 __ATTR(sriov_numvfs, (S_IRUGO|S_IWUSR|S_IWGRP),
690 sriov_numvfs_show, sriov_numvfs_store);
Filippo Sironi7dfca152017-10-09 01:09:11 +0200691static struct device_attribute sriov_offset_attr = __ATTR_RO(sriov_offset);
692static struct device_attribute sriov_stride_attr = __ATTR_RO(sriov_stride);
693static struct device_attribute sriov_vf_device_attr = __ATTR_RO(sriov_vf_device);
Bodong Wang0e7df222017-04-13 01:51:40 +0300694static struct device_attribute sriov_drivers_autoprobe_attr =
695 __ATTR(sriov_drivers_autoprobe, (S_IRUGO|S_IWUSR|S_IWGRP),
696 sriov_drivers_autoprobe_show, sriov_drivers_autoprobe_store);
Donald Dutile17893822012-11-05 15:20:36 -0500697#endif /* CONFIG_PCI_IOV */
698
Alex Williamson782a9852014-05-20 08:53:21 -0600699static ssize_t driver_override_store(struct device *dev,
700 struct device_attribute *attr,
701 const char *buf, size_t count)
702{
703 struct pci_dev *pdev = to_pci_dev(dev);
Nicolai Stange95614752017-09-11 09:45:40 +0200704 char *driver_override, *old, *cp;
Alex Williamson782a9852014-05-20 08:53:21 -0600705
Sasha Levin4efe8742015-02-04 17:38:15 -0500706 /* We need to keep extra room for a newline */
707 if (count >= (PAGE_SIZE - 1))
Alex Williamson782a9852014-05-20 08:53:21 -0600708 return -EINVAL;
709
710 driver_override = kstrndup(buf, count, GFP_KERNEL);
711 if (!driver_override)
712 return -ENOMEM;
713
714 cp = strchr(driver_override, '\n');
715 if (cp)
716 *cp = '\0';
717
Nicolai Stange95614752017-09-11 09:45:40 +0200718 device_lock(dev);
719 old = pdev->driver_override;
Alex Williamson782a9852014-05-20 08:53:21 -0600720 if (strlen(driver_override)) {
721 pdev->driver_override = driver_override;
722 } else {
723 kfree(driver_override);
724 pdev->driver_override = NULL;
725 }
Nicolai Stange95614752017-09-11 09:45:40 +0200726 device_unlock(dev);
Alex Williamson782a9852014-05-20 08:53:21 -0600727
728 kfree(old);
729
730 return count;
731}
732
733static ssize_t driver_override_show(struct device *dev,
734 struct device_attribute *attr, char *buf)
735{
736 struct pci_dev *pdev = to_pci_dev(dev);
Nicolai Stange95614752017-09-11 09:45:40 +0200737 ssize_t len;
Alex Williamson782a9852014-05-20 08:53:21 -0600738
Nicolai Stange95614752017-09-11 09:45:40 +0200739 device_lock(dev);
740 len = snprintf(buf, PAGE_SIZE, "%s\n", pdev->driver_override);
741 device_unlock(dev);
742 return len;
Alex Williamson782a9852014-05-20 08:53:21 -0600743}
744static DEVICE_ATTR_RW(driver_override);
745
Sachin Kamatbf22c902013-09-28 15:42:00 +0530746static struct attribute *pci_dev_attrs[] = {
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700747 &dev_attr_resource.attr,
748 &dev_attr_vendor.attr,
749 &dev_attr_device.attr,
750 &dev_attr_subsystem_vendor.attr,
751 &dev_attr_subsystem_device.attr,
Emil Velikov702ed3b2016-11-21 16:24:49 -0600752 &dev_attr_revision.attr,
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700753 &dev_attr_class.attr,
754 &dev_attr_irq.attr,
755 &dev_attr_local_cpus.attr,
756 &dev_attr_local_cpulist.attr,
757 &dev_attr_modalias.attr,
Brice Goglin81bb0e12007-01-28 10:53:40 +0100758#ifdef CONFIG_NUMA
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700759 &dev_attr_numa_node.attr,
Brice Goglin81bb0e12007-01-28 10:53:40 +0100760#endif
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700761 &dev_attr_dma_mask_bits.attr,
762 &dev_attr_consistent_dma_mask_bits.attr,
Greg Kroah-Hartmand8e7d532014-10-30 09:30:28 -0700763 &dev_attr_enable.attr,
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700764 &dev_attr_broken_parity_status.attr,
765 &dev_attr_msi_bus.attr,
Rafael J. Wysockifbb988b2014-11-27 23:16:57 +0100766#if defined(CONFIG_PM) && defined(CONFIG_ACPI)
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700767 &dev_attr_d3cold_allowed.attr,
Huang Ying448bd852012-06-23 10:23:51 +0800768#endif
Sebastian Ottdfc73e72014-04-17 19:46:15 +0200769#ifdef CONFIG_OF
770 &dev_attr_devspec.attr,
771#endif
Alex Williamson782a9852014-05-20 08:53:21 -0600772 &dev_attr_driver_override.attr,
Stuart Hayes0077a842018-01-05 12:51:55 -0600773 &dev_attr_ari_enabled.attr,
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700774 NULL,
775};
776
Wong Vee Khee56c1af42017-06-01 17:43:06 +0800777static struct attribute *pci_bridge_attrs[] = {
778 &dev_attr_subordinate_bus_number.attr,
779 &dev_attr_secondary_bus_number.attr,
780 NULL,
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700781};
782
Wong Vee Khee56c1af42017-06-01 17:43:06 +0800783static struct attribute *pcie_dev_attrs[] = {
784 &dev_attr_current_link_speed.attr,
785 &dev_attr_current_link_width.attr,
786 &dev_attr_max_link_width.attr,
787 &dev_attr_max_link_speed.attr,
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700788 NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789};
790
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700791static struct attribute *pcibus_attrs[] = {
792 &dev_attr_rescan.attr,
793 &dev_attr_cpuaffinity.attr,
794 &dev_attr_cpulistaffinity.attr,
795 NULL,
796};
797
798static const struct attribute_group pcibus_group = {
799 .attrs = pcibus_attrs,
800};
801
802const struct attribute_group *pcibus_groups[] = {
803 &pcibus_group,
804 NULL,
Yinghai Lub9d320f2011-05-12 17:11:39 -0700805};
806
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400807static ssize_t boot_vga_show(struct device *dev, struct device_attribute *attr,
808 char *buf)
Dave Airlie217f45d2009-03-04 05:57:05 +0000809{
810 struct pci_dev *pdev = to_pci_dev(dev);
Matthew Garrett1a39b312012-04-16 16:26:02 -0400811 struct pci_dev *vga_dev = vga_default_device();
812
813 if (vga_dev)
814 return sprintf(buf, "%u\n", (pdev == vga_dev));
Dave Airlie217f45d2009-03-04 05:57:05 +0000815
816 return sprintf(buf, "%u\n",
817 !!(pdev->resource[PCI_ROM_RESOURCE].flags &
818 IORESOURCE_ROM_SHADOW));
819}
Sachin Kamatbf22c902013-09-28 15:42:00 +0530820static struct device_attribute vga_attr = __ATTR_RO(boot_vga);
Dave Airlie217f45d2009-03-04 05:57:05 +0000821
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400822static ssize_t pci_read_config(struct file *filp, struct kobject *kobj,
823 struct bin_attribute *bin_attr, char *buf,
824 loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
Geliang Tang554a6032015-12-23 20:28:13 +0800826 struct pci_dev *dev = to_pci_dev(kobj_to_dev(kobj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 unsigned int size = 64;
828 loff_t init_off = off;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400829 u8 *data = (u8 *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 /* Several chips lock up trying to read undefined config space */
Linus Torvaldsab0fa822016-04-14 12:00:21 -0700832 if (file_ns_capable(filp, &init_user_ns, CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 size = dev->cfg_size;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400834 else if (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 size = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 if (off > size)
838 return 0;
839 if (off + count > size) {
840 size -= off;
841 count = size;
842 } else {
843 size = count;
844 }
845
Huang Ying3d8387e2012-08-15 09:43:03 +0800846 pci_config_pm_runtime_get(dev);
847
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900848 if ((off & 1) && size) {
849 u8 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700850 pci_user_read_config_byte(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900851 data[off - init_off] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 off++;
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900853 size--;
854 }
855
856 if ((off & 3) && size > 2) {
857 u16 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700858 pci_user_read_config_word(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900859 data[off - init_off] = val & 0xff;
860 data[off - init_off + 1] = (val >> 8) & 0xff;
861 off += 2;
862 size -= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
864
865 while (size > 3) {
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900866 u32 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700867 pci_user_read_config_dword(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900868 data[off - init_off] = val & 0xff;
869 data[off - init_off + 1] = (val >> 8) & 0xff;
870 data[off - init_off + 2] = (val >> 16) & 0xff;
871 data[off - init_off + 3] = (val >> 24) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 off += 4;
873 size -= 4;
874 }
875
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900876 if (size >= 2) {
877 u16 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700878 pci_user_read_config_word(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900879 data[off - init_off] = val & 0xff;
880 data[off - init_off + 1] = (val >> 8) & 0xff;
881 off += 2;
882 size -= 2;
883 }
884
885 if (size > 0) {
886 u8 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700887 pci_user_read_config_byte(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900888 data[off - init_off] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 off++;
890 --size;
891 }
892
Huang Ying3d8387e2012-08-15 09:43:03 +0800893 pci_config_pm_runtime_put(dev);
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 return count;
896}
897
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400898static ssize_t pci_write_config(struct file *filp, struct kobject *kobj,
899 struct bin_attribute *bin_attr, char *buf,
900 loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
Geliang Tang554a6032015-12-23 20:28:13 +0800902 struct pci_dev *dev = to_pci_dev(kobj_to_dev(kobj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 unsigned int size = count;
904 loff_t init_off = off;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400905 u8 *data = (u8 *) buf;
Matthew Garretteb627e12019-08-19 17:17:47 -0700906 int ret;
907
908 ret = security_locked_down(LOCKDOWN_PCI_ACCESS);
909 if (ret)
910 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 if (off > dev->cfg_size)
913 return 0;
914 if (off + count > dev->cfg_size) {
915 size = dev->cfg_size - off;
916 count = size;
917 }
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700918
Huang Ying3d8387e2012-08-15 09:43:03 +0800919 pci_config_pm_runtime_get(dev);
920
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900921 if ((off & 1) && size) {
Brian Kinge04b0ea2005-09-27 01:21:55 -0700922 pci_user_write_config_byte(dev, off, data[off - init_off]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 off++;
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900924 size--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 }
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700926
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900927 if ((off & 3) && size > 2) {
928 u16 val = data[off - init_off];
929 val |= (u16) data[off - init_off + 1] << 8;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400930 pci_user_write_config_word(dev, off, val);
931 off += 2;
932 size -= 2;
933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 while (size > 3) {
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900936 u32 val = data[off - init_off];
937 val |= (u32) data[off - init_off + 1] << 8;
938 val |= (u32) data[off - init_off + 2] << 16;
939 val |= (u32) data[off - init_off + 3] << 24;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700940 pci_user_write_config_dword(dev, off, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 off += 4;
942 size -= 4;
943 }
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700944
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900945 if (size >= 2) {
946 u16 val = data[off - init_off];
947 val |= (u16) data[off - init_off + 1] << 8;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700948 pci_user_write_config_word(dev, off, val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900949 off += 2;
950 size -= 2;
951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900953 if (size) {
Brian Kinge04b0ea2005-09-27 01:21:55 -0700954 pci_user_write_config_byte(dev, off, data[off - init_off]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 off++;
956 --size;
957 }
958
Huang Ying3d8387e2012-08-15 09:43:03 +0800959 pci_config_pm_runtime_put(dev);
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 return count;
962}
963
964#ifdef HAVE_PCI_LEGACY
965/**
966 * pci_read_legacy_io - read byte(s) from legacy I/O port space
Chris Wright2c3c8be2010-05-12 18:28:57 -0700967 * @filp: open sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 * @kobj: kobject corresponding to file to read from
Randy Dunlapcffb2fa2009-04-10 15:17:50 -0700969 * @bin_attr: struct bin_attribute for this file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 * @buf: buffer to store results
971 * @off: offset into legacy I/O port space
972 * @count: number of bytes to read
973 *
974 * Reads 1, 2, or 4 bytes from legacy I/O port space using an arch specific
975 * callback routine (pci_legacy_read).
976 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400977static ssize_t pci_read_legacy_io(struct file *filp, struct kobject *kobj,
978 struct bin_attribute *bin_attr, char *buf,
979 loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
Geliang Tang554a6032015-12-23 20:28:13 +0800981 struct pci_bus *bus = to_pci_bus(kobj_to_dev(kobj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400983 /* Only support 1, 2 or 4 byte accesses */
984 if (count != 1 && count != 2 && count != 4)
985 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400987 return pci_legacy_read(bus, off, (u32 *)buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989
990/**
991 * pci_write_legacy_io - write byte(s) to legacy I/O port space
Chris Wright2c3c8be2010-05-12 18:28:57 -0700992 * @filp: open sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 * @kobj: kobject corresponding to file to read from
Randy Dunlapcffb2fa2009-04-10 15:17:50 -0700994 * @bin_attr: struct bin_attribute for this file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 * @buf: buffer containing value to be written
996 * @off: offset into legacy I/O port space
997 * @count: number of bytes to write
998 *
999 * Writes 1, 2, or 4 bytes from legacy I/O port space using an arch specific
1000 * callback routine (pci_legacy_write).
1001 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001002static ssize_t pci_write_legacy_io(struct file *filp, struct kobject *kobj,
1003 struct bin_attribute *bin_attr, char *buf,
1004 loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
Geliang Tang554a6032015-12-23 20:28:13 +08001006 struct pci_bus *bus = to_pci_bus(kobj_to_dev(kobj));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001008 /* Only support 1, 2 or 4 byte accesses */
1009 if (count != 1 && count != 2 && count != 4)
1010 return -EINVAL;
1011
1012 return pci_legacy_write(bus, off, *(u32 *)buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
1014
1015/**
1016 * pci_mmap_legacy_mem - map legacy PCI memory into user memory space
Chris Wright2c3c8be2010-05-12 18:28:57 -07001017 * @filp: open sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 * @kobj: kobject corresponding to device to be mapped
1019 * @attr: struct bin_attribute for this file
1020 * @vma: struct vm_area_struct passed to mmap
1021 *
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +10001022 * Uses an arch specific callback, pci_mmap_legacy_mem_page_range, to mmap
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 * legacy memory space (first meg of bus space) into application virtual
1024 * memory space.
1025 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001026static int pci_mmap_legacy_mem(struct file *filp, struct kobject *kobj,
1027 struct bin_attribute *attr,
1028 struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
Geliang Tang554a6032015-12-23 20:28:13 +08001030 struct pci_bus *bus = to_pci_bus(kobj_to_dev(kobj));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001032 return pci_mmap_legacy_page_range(bus, vma, pci_mmap_mem);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +10001033}
1034
1035/**
1036 * pci_mmap_legacy_io - map legacy PCI IO into user memory space
Chris Wright2c3c8be2010-05-12 18:28:57 -07001037 * @filp: open sysfs file
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +10001038 * @kobj: kobject corresponding to device to be mapped
1039 * @attr: struct bin_attribute for this file
1040 * @vma: struct vm_area_struct passed to mmap
1041 *
1042 * Uses an arch specific callback, pci_mmap_legacy_io_page_range, to mmap
1043 * legacy IO space (first meg of bus space) into application virtual
1044 * memory space. Returns -ENOSYS if the operation isn't supported
1045 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001046static int pci_mmap_legacy_io(struct file *filp, struct kobject *kobj,
1047 struct bin_attribute *attr,
1048 struct vm_area_struct *vma)
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +10001049{
Geliang Tang554a6032015-12-23 20:28:13 +08001050 struct pci_bus *bus = to_pci_bus(kobj_to_dev(kobj));
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +10001051
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001052 return pci_mmap_legacy_page_range(bus, vma, pci_mmap_io);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +10001053}
1054
1055/**
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +03001056 * pci_adjust_legacy_attr - adjustment of legacy file attributes
1057 * @b: bus to create files under
1058 * @mmap_type: I/O port or memory
1059 *
1060 * Stub implementation. Can be overridden by arch if necessary.
1061 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001062void __weak pci_adjust_legacy_attr(struct pci_bus *b,
1063 enum pci_mmap_state mmap_type)
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +03001064{
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +03001065}
1066
1067/**
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +10001068 * pci_create_legacy_files - create legacy I/O port and memory files
1069 * @b: bus to create files under
1070 *
1071 * Some platforms allow access to legacy I/O port and ISA memory space on
1072 * a per-bus basis. This routine creates the files and ties them into
1073 * their associated read, write and mmap files from pci-sysfs.c
1074 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001075 * On error unwind, but don't propagate the error to the caller
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +10001076 * as it is ok to set up the PCI bus without these files.
1077 */
1078void pci_create_legacy_files(struct pci_bus *b)
1079{
1080 int error;
1081
Kees Cook6396bb22018-06-12 14:03:40 -07001082 b->legacy_io = kcalloc(2, sizeof(struct bin_attribute),
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +10001083 GFP_ATOMIC);
1084 if (!b->legacy_io)
1085 goto kzalloc_err;
1086
Stephen Rothwell62e877b82010-03-01 20:38:36 +11001087 sysfs_bin_attr_init(b->legacy_io);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +10001088 b->legacy_io->attr.name = "legacy_io";
1089 b->legacy_io->size = 0xffff;
1090 b->legacy_io->attr.mode = S_IRUSR | S_IWUSR;
1091 b->legacy_io->read = pci_read_legacy_io;
1092 b->legacy_io->write = pci_write_legacy_io;
1093 b->legacy_io->mmap = pci_mmap_legacy_io;
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +03001094 pci_adjust_legacy_attr(b, pci_mmap_io);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +10001095 error = device_create_bin_file(&b->dev, b->legacy_io);
1096 if (error)
1097 goto legacy_io_err;
1098
1099 /* Allocated above after the legacy_io struct */
1100 b->legacy_mem = b->legacy_io + 1;
Mel Gorman6757eca32010-03-10 22:48:34 +00001101 sysfs_bin_attr_init(b->legacy_mem);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +10001102 b->legacy_mem->attr.name = "legacy_mem";
1103 b->legacy_mem->size = 1024*1024;
1104 b->legacy_mem->attr.mode = S_IRUSR | S_IWUSR;
1105 b->legacy_mem->mmap = pci_mmap_legacy_mem;
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +03001106 pci_adjust_legacy_attr(b, pci_mmap_mem);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +10001107 error = device_create_bin_file(&b->dev, b->legacy_mem);
1108 if (error)
1109 goto legacy_mem_err;
1110
1111 return;
1112
1113legacy_mem_err:
1114 device_remove_bin_file(&b->dev, b->legacy_io);
1115legacy_io_err:
1116 kfree(b->legacy_io);
1117 b->legacy_io = NULL;
1118kzalloc_err:
Bjorn Helgaas7db4af42019-05-07 17:37:53 -05001119 dev_warn(&b->dev, "could not create legacy I/O port and ISA memory resources in sysfs\n");
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +10001120}
1121
1122void pci_remove_legacy_files(struct pci_bus *b)
1123{
1124 if (b->legacy_io) {
1125 device_remove_bin_file(&b->dev, b->legacy_io);
1126 device_remove_bin_file(&b->dev, b->legacy_mem);
1127 kfree(b->legacy_io); /* both are allocated here */
1128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129}
1130#endif /* HAVE_PCI_LEGACY */
1131
David Woodhousef7195822017-04-12 13:25:59 +01001132#if defined(HAVE_PCI_MMAP) || defined(ARCH_GENERIC_PCI_MMAP_RESOURCE)
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -07001133
Martin Wilck3b519e42010-11-10 11:03:21 +01001134int pci_mmap_fits(struct pci_dev *pdev, int resno, struct vm_area_struct *vma,
1135 enum pci_mmap_api mmap_api)
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -07001136{
David Woodhouse6bccc7f2017-04-12 13:25:50 +01001137 unsigned long nr, start, size;
1138 resource_size_t pci_start = 0, pci_end;
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -07001139
Martin Wilck3b519e42010-11-10 11:03:21 +01001140 if (pci_resource_len(pdev, resno) == 0)
1141 return 0;
Libin64b00172013-04-15 02:48:54 +00001142 nr = vma_pages(vma);
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -07001143 start = vma->vm_pgoff;
Ed Swierk88e7df02008-11-03 14:41:16 -08001144 size = ((pci_resource_len(pdev, resno) - 1) >> PAGE_SHIFT) + 1;
David Woodhouse6bccc7f2017-04-12 13:25:50 +01001145 if (mmap_api == PCI_MMAP_PROCFS) {
1146 pci_resource_to_user(pdev, resno, &pdev->resource[resno],
1147 &pci_start, &pci_end);
1148 pci_start >>= PAGE_SHIFT;
1149 }
Martin Wilck3b519e42010-11-10 11:03:21 +01001150 if (start >= pci_start && start < pci_start + size &&
1151 start + nr <= pci_start + size)
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -07001152 return 1;
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -07001153 return 0;
1154}
1155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156/**
1157 * pci_mmap_resource - map a PCI resource into user memory space
1158 * @kobj: kobject for mapping
1159 * @attr: struct bin_attribute for the file being mapped
1160 * @vma: struct vm_area_struct passed into the mmap
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001161 * @write_combine: 1 for write_combine mapping
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 *
1163 * Use the regular PCI mapping routines to map a PCI resource into userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001165static int pci_mmap_resource(struct kobject *kobj, struct bin_attribute *attr,
1166 struct vm_area_struct *vma, int write_combine)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
Geliang Tang554a6032015-12-23 20:28:13 +08001168 struct pci_dev *pdev = to_pci_dev(kobj_to_dev(kobj));
David Woodhousedca40b12017-04-12 13:25:57 +01001169 int bar = (unsigned long)attr->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 enum pci_mmap_state mmap_type;
David Woodhousedca40b12017-04-12 13:25:57 +01001171 struct resource *res = &pdev->resource[bar];
Matthew Garretteb627e12019-08-19 17:17:47 -07001172 int ret;
1173
1174 ret = security_locked_down(LOCKDOWN_PCI_ACCESS);
1175 if (ret)
1176 return ret;
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001177
Bjorn Helgaasca620722016-04-07 17:15:14 -07001178 if (res->flags & IORESOURCE_MEM && iomem_is_exclusive(res->start))
1179 return -EINVAL;
1180
Bjorn Helgaas7a094902017-11-29 11:47:29 -06001181 if (!pci_mmap_fits(pdev, bar, vma, PCI_MMAP_SYSFS))
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -07001182 return -EINVAL;
Bjorn Helgaas7a094902017-11-29 11:47:29 -06001183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 mmap_type = res->flags & IORESOURCE_MEM ? pci_mmap_mem : pci_mmap_io;
David Woodhousef7195822017-04-12 13:25:59 +01001185
1186 return pci_mmap_resource_range(pdev, bar, vma, mmap_type, write_combine);
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001187}
1188
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001189static int pci_mmap_resource_uc(struct file *filp, struct kobject *kobj,
1190 struct bin_attribute *attr,
1191 struct vm_area_struct *vma)
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001192{
1193 return pci_mmap_resource(kobj, attr, vma, 0);
1194}
1195
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001196static int pci_mmap_resource_wc(struct file *filp, struct kobject *kobj,
1197 struct bin_attribute *attr,
1198 struct vm_area_struct *vma)
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001199{
1200 return pci_mmap_resource(kobj, attr, vma, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001203static ssize_t pci_resource_io(struct file *filp, struct kobject *kobj,
1204 struct bin_attribute *attr, char *buf,
1205 loff_t off, size_t count, bool write)
Alex Williamson86333282010-07-19 09:45:34 -06001206{
Geliang Tang554a6032015-12-23 20:28:13 +08001207 struct pci_dev *pdev = to_pci_dev(kobj_to_dev(kobj));
David Woodhousedca40b12017-04-12 13:25:57 +01001208 int bar = (unsigned long)attr->private;
Alex Williamson86333282010-07-19 09:45:34 -06001209 unsigned long port = off;
Alex Williamson86333282010-07-19 09:45:34 -06001210
David Woodhousedca40b12017-04-12 13:25:57 +01001211 port += pci_resource_start(pdev, bar);
Alex Williamson86333282010-07-19 09:45:34 -06001212
David Woodhousedca40b12017-04-12 13:25:57 +01001213 if (port > pci_resource_end(pdev, bar))
Alex Williamson86333282010-07-19 09:45:34 -06001214 return 0;
1215
David Woodhousedca40b12017-04-12 13:25:57 +01001216 if (port + count - 1 > pci_resource_end(pdev, bar))
Alex Williamson86333282010-07-19 09:45:34 -06001217 return -EINVAL;
1218
1219 switch (count) {
1220 case 1:
1221 if (write)
1222 outb(*(u8 *)buf, port);
1223 else
1224 *(u8 *)buf = inb(port);
1225 return 1;
1226 case 2:
1227 if (write)
1228 outw(*(u16 *)buf, port);
1229 else
1230 *(u16 *)buf = inw(port);
1231 return 2;
1232 case 4:
1233 if (write)
1234 outl(*(u32 *)buf, port);
1235 else
1236 *(u32 *)buf = inl(port);
1237 return 4;
1238 }
1239 return -EINVAL;
1240}
1241
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001242static ssize_t pci_read_resource_io(struct file *filp, struct kobject *kobj,
1243 struct bin_attribute *attr, char *buf,
1244 loff_t off, size_t count)
Alex Williamson86333282010-07-19 09:45:34 -06001245{
1246 return pci_resource_io(filp, kobj, attr, buf, off, count, false);
1247}
1248
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001249static ssize_t pci_write_resource_io(struct file *filp, struct kobject *kobj,
1250 struct bin_attribute *attr, char *buf,
1251 loff_t off, size_t count)
Alex Williamson86333282010-07-19 09:45:34 -06001252{
Matthew Garretteb627e12019-08-19 17:17:47 -07001253 int ret;
1254
1255 ret = security_locked_down(LOCKDOWN_PCI_ACCESS);
1256 if (ret)
1257 return ret;
1258
Alex Williamson86333282010-07-19 09:45:34 -06001259 return pci_resource_io(filp, kobj, attr, buf, off, count, true);
1260}
1261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262/**
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001263 * pci_remove_resource_files - cleanup resource files
Randy Dunlapcffb2fa2009-04-10 15:17:50 -07001264 * @pdev: dev to cleanup
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001265 *
Randy Dunlapcffb2fa2009-04-10 15:17:50 -07001266 * If we created resource files for @pdev, remove them from sysfs and
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001267 * free their resources.
1268 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001269static void pci_remove_resource_files(struct pci_dev *pdev)
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001270{
1271 int i;
1272
1273 for (i = 0; i < PCI_ROM_RESOURCE; i++) {
1274 struct bin_attribute *res_attr;
1275
1276 res_attr = pdev->res_attr[i];
1277 if (res_attr) {
1278 sysfs_remove_bin_file(&pdev->dev.kobj, res_attr);
1279 kfree(res_attr);
1280 }
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001281
1282 res_attr = pdev->res_attr_wc[i];
1283 if (res_attr) {
1284 sysfs_remove_bin_file(&pdev->dev.kobj, res_attr);
1285 kfree(res_attr);
1286 }
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001287 }
1288}
1289
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001290static int pci_create_attr(struct pci_dev *pdev, int num, int write_combine)
1291{
1292 /* allocate attribute structure, piggyback attribute name */
1293 int name_len = write_combine ? 13 : 10;
1294 struct bin_attribute *res_attr;
Bjorn Helgaasbd5174d2016-03-10 14:36:34 -06001295 char *res_attr_name;
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001296 int retval;
1297
1298 res_attr = kzalloc(sizeof(*res_attr) + name_len, GFP_ATOMIC);
Bjorn Helgaasbd5174d2016-03-10 14:36:34 -06001299 if (!res_attr)
1300 return -ENOMEM;
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001301
Bjorn Helgaasbd5174d2016-03-10 14:36:34 -06001302 res_attr_name = (char *)(res_attr + 1);
1303
1304 sysfs_bin_attr_init(res_attr);
1305 if (write_combine) {
1306 pdev->res_attr_wc[num] = res_attr;
1307 sprintf(res_attr_name, "resource%d_wc", num);
1308 res_attr->mmap = pci_mmap_resource_wc;
1309 } else {
1310 pdev->res_attr[num] = res_attr;
1311 sprintf(res_attr_name, "resource%d", num);
David Woodhousee854d8b2017-04-12 13:25:56 +01001312 if (pci_resource_flags(pdev, num) & IORESOURCE_IO) {
1313 res_attr->read = pci_read_resource_io;
1314 res_attr->write = pci_write_resource_io;
1315 if (arch_can_pci_mmap_io())
1316 res_attr->mmap = pci_mmap_resource_uc;
1317 } else {
1318 res_attr->mmap = pci_mmap_resource_uc;
1319 }
Bjorn Helgaasbd5174d2016-03-10 14:36:34 -06001320 }
1321 res_attr->attr.name = res_attr_name;
1322 res_attr->attr.mode = S_IRUSR | S_IWUSR;
1323 res_attr->size = pci_resource_len(pdev, num);
David Woodhousedca40b12017-04-12 13:25:57 +01001324 res_attr->private = (void *)(unsigned long)num;
Bjorn Helgaasbd5174d2016-03-10 14:36:34 -06001325 retval = sysfs_create_bin_file(&pdev->dev.kobj, res_attr);
1326 if (retval)
1327 kfree(res_attr);
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001328
1329 return retval;
1330}
1331
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001332/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 * pci_create_resource_files - create resource files in sysfs for @dev
Randy Dunlapcffb2fa2009-04-10 15:17:50 -07001334 * @pdev: dev in question
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 *
Randy Dunlapcffb2fa2009-04-10 15:17:50 -07001336 * Walk the resources in @pdev creating files for each resource available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 */
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001338static int pci_create_resource_files(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339{
1340 int i;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001341 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
1343 /* Expose the PCI resources from this device as files */
1344 for (i = 0; i < PCI_ROM_RESOURCE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 /* skip empty resources */
1347 if (!pci_resource_len(pdev, i))
1348 continue;
1349
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001350 retval = pci_create_attr(pdev, i, 0);
1351 /* for prefetchable resources, create a WC mappable file */
David Woodhouseae749c72017-04-12 13:25:54 +01001352 if (!retval && arch_can_pci_mmap_wc() &&
1353 pdev->resource[i].flags & IORESOURCE_PREFETCH)
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001354 retval = pci_create_attr(pdev, i, 1);
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001355 if (retval) {
1356 pci_remove_resource_files(pdev);
1357 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 }
1359 }
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001360 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361}
1362#else /* !HAVE_PCI_MMAP */
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +03001363int __weak pci_create_resource_files(struct pci_dev *dev) { return 0; }
1364void __weak pci_remove_resource_files(struct pci_dev *dev) { return; }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365#endif /* HAVE_PCI_MMAP */
1366
1367/**
1368 * pci_write_rom - used to enable access to the PCI ROM display
Chris Wright2c3c8be2010-05-12 18:28:57 -07001369 * @filp: sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 * @kobj: kernel object handle
Randy Dunlapcffb2fa2009-04-10 15:17:50 -07001371 * @bin_attr: struct bin_attribute for this file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 * @buf: user input
1373 * @off: file offset
1374 * @count: number of byte in input
1375 *
1376 * writing anything except 0 enables it
1377 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001378static ssize_t pci_write_rom(struct file *filp, struct kobject *kobj,
1379 struct bin_attribute *bin_attr, char *buf,
1380 loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
Geliang Tang554a6032015-12-23 20:28:13 +08001382 struct pci_dev *pdev = to_pci_dev(kobj_to_dev(kobj));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384 if ((off == 0) && (*buf == '0') && (count == 2))
1385 pdev->rom_attr_enabled = 0;
1386 else
1387 pdev->rom_attr_enabled = 1;
1388
1389 return count;
1390}
1391
1392/**
1393 * pci_read_rom - read a PCI ROM
Chris Wright2c3c8be2010-05-12 18:28:57 -07001394 * @filp: sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 * @kobj: kernel object handle
Randy Dunlapcffb2fa2009-04-10 15:17:50 -07001396 * @bin_attr: struct bin_attribute for this file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 * @buf: where to put the data we read from the ROM
1398 * @off: file offset
1399 * @count: number of bytes to read
1400 *
1401 * Put @count bytes starting at @off into @buf from the ROM in the PCI
1402 * device corresponding to @kobj.
1403 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001404static ssize_t pci_read_rom(struct file *filp, struct kobject *kobj,
1405 struct bin_attribute *bin_attr, char *buf,
1406 loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407{
Geliang Tang554a6032015-12-23 20:28:13 +08001408 struct pci_dev *pdev = to_pci_dev(kobj_to_dev(kobj));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 void __iomem *rom;
1410 size_t size;
1411
1412 if (!pdev->rom_attr_enabled)
1413 return -EINVAL;
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001414
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 rom = pci_map_rom(pdev, &size); /* size starts out as PCI window size */
Timothy S. Nelson97c44832009-01-30 06:12:47 +11001416 if (!rom || !size)
1417 return -EIO;
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (off >= size)
1420 count = 0;
1421 else {
1422 if (off + count > size)
1423 count = size - off;
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 memcpy_fromio(buf, rom + off, count);
1426 }
1427 pci_unmap_rom(pdev, rom);
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 return count;
1430}
1431
Bhumika Goyal8bdc50a2017-08-02 20:57:27 +05301432static const struct bin_attribute pci_config_attr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 .attr = {
1434 .name = "config",
1435 .mode = S_IRUGO | S_IWUSR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 },
Zhao, Yu557848c2008-10-13 19:18:07 +08001437 .size = PCI_CFG_SPACE_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 .read = pci_read_config,
1439 .write = pci_write_config,
1440};
1441
Bhumika Goyal8bdc50a2017-08-02 20:57:27 +05301442static const struct bin_attribute pcie_config_attr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 .attr = {
1444 .name = "config",
1445 .mode = S_IRUGO | S_IWUSR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 },
Zhao, Yu557848c2008-10-13 19:18:07 +08001447 .size = PCI_CFG_SPACE_EXP_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 .read = pci_read_config,
1449 .write = pci_write_config,
1450};
1451
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001452static ssize_t reset_store(struct device *dev, struct device_attribute *attr,
1453 const char *buf, size_t count)
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001454{
1455 struct pci_dev *pdev = to_pci_dev(dev);
1456 unsigned long val;
Jingoo Han9a994e82013-06-01 16:25:25 +09001457 ssize_t result = kstrtoul(buf, 0, &val);
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001458
1459 if (result < 0)
1460 return result;
1461
1462 if (val != 1)
1463 return -EINVAL;
Michal Schmidt447c5dd2010-05-11 11:44:54 +02001464
Lukas Wunner82c3fbf2018-07-19 17:27:58 -05001465 pm_runtime_get_sync(dev);
Michal Schmidt447c5dd2010-05-11 11:44:54 +02001466 result = pci_reset_function(pdev);
Lukas Wunner82c3fbf2018-07-19 17:27:58 -05001467 pm_runtime_put(dev);
Michal Schmidt447c5dd2010-05-11 11:44:54 +02001468 if (result < 0)
1469 return result;
1470
1471 return count;
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001472}
1473
1474static struct device_attribute reset_attr = __ATTR(reset, 0200, NULL, reset_store);
1475
Zhao, Yu280c73d2008-10-13 20:01:00 +08001476static int pci_create_capabilities_sysfs(struct pci_dev *dev)
1477{
1478 int retval;
Zhao, Yu280c73d2008-10-13 20:01:00 +08001479
Bjorn Helgaasb1c615c2018-03-19 13:06:17 -05001480 pcie_vpd_create_sysfs_dev_files(dev);
Zhao, Yu280c73d2008-10-13 20:01:00 +08001481 pcie_aspm_create_sysfs_dev_files(dev);
1482
Bjorn Helgaas5b0764c2018-02-16 10:55:38 -06001483 if (dev->reset_fn) {
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001484 retval = device_create_file(&dev->dev, &reset_attr);
1485 if (retval)
1486 goto error;
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001487 }
Zhao, Yu280c73d2008-10-13 20:01:00 +08001488 return 0;
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001489
1490error:
1491 pcie_aspm_remove_sysfs_dev_files(dev);
Bjorn Helgaasb1c615c2018-03-19 13:06:17 -05001492 pcie_vpd_remove_sysfs_dev_files(dev);
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001493 return retval;
Zhao, Yu280c73d2008-10-13 20:01:00 +08001494}
1495
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001496int __must_check pci_create_sysfs_dev_files(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001498 int retval;
Bjorn Helgaasac0c3022016-03-12 05:48:08 -06001499 int rom_size;
Zhao, Yu280c73d2008-10-13 20:01:00 +08001500 struct bin_attribute *attr;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 if (!sysfs_initialized)
1503 return -EACCES;
1504
Jason S. McMullanc20aecf2015-09-30 15:35:05 +09001505 if (pdev->cfg_size > PCI_CFG_SPACE_SIZE)
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001506 retval = sysfs_create_bin_file(&pdev->dev.kobj, &pcie_config_attr);
Jason S. McMullanc20aecf2015-09-30 15:35:05 +09001507 else
1508 retval = sysfs_create_bin_file(&pdev->dev.kobj, &pci_config_attr);
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001509 if (retval)
1510 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001512 retval = pci_create_resource_files(pdev);
1513 if (retval)
Zhao, Yu280c73d2008-10-13 20:01:00 +08001514 goto err_config_file;
1515
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 /* If the device has a ROM, try to expose it in sysfs. */
Bjorn Helgaasac0c3022016-03-12 05:48:08 -06001517 rom_size = pci_resource_len(pdev, PCI_ROM_RESOURCE);
Zhao, Yu280c73d2008-10-13 20:01:00 +08001518 if (rom_size) {
Ben Hutchings94e61082008-03-05 16:52:39 +00001519 attr = kzalloc(sizeof(*attr), GFP_ATOMIC);
Zhao, Yu280c73d2008-10-13 20:01:00 +08001520 if (!attr) {
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001521 retval = -ENOMEM;
Michael Ellerman9890b122007-04-18 13:34:12 +10001522 goto err_resource_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 }
Eric W. Biedermana07e4152010-02-11 15:23:05 -08001524 sysfs_bin_attr_init(attr);
Zhao, Yu280c73d2008-10-13 20:01:00 +08001525 attr->size = rom_size;
1526 attr->attr.name = "rom";
Alex Williamsonff295302011-01-05 10:26:41 -07001527 attr->attr.mode = S_IRUSR | S_IWUSR;
Zhao, Yu280c73d2008-10-13 20:01:00 +08001528 attr->read = pci_read_rom;
1529 attr->write = pci_write_rom;
1530 retval = sysfs_create_bin_file(&pdev->dev.kobj, attr);
1531 if (retval) {
1532 kfree(attr);
1533 goto err_resource_files;
1534 }
1535 pdev->rom_attr = attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 }
Zhao, Yu280c73d2008-10-13 20:01:00 +08001537
Zhao, Yu280c73d2008-10-13 20:01:00 +08001538 /* add sysfs entries for various capabilities */
1539 retval = pci_create_capabilities_sysfs(pdev);
1540 if (retval)
Yinghai Lu625e1d52012-11-05 15:20:35 -05001541 goto err_rom_file;
Shaohua Li7d715a62008-02-25 09:46:41 +08001542
Narendra K911e1c92010-07-26 05:56:50 -05001543 pci_create_firmware_label_files(pdev);
1544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 return 0;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001546
Michael Ellermana2cd52c2007-05-08 12:03:08 +10001547err_rom_file:
Bjorn Helgaas9d88b932016-03-01 09:37:10 -06001548 if (pdev->rom_attr) {
Ben Hutchings94e61082008-03-05 16:52:39 +00001549 sysfs_remove_bin_file(&pdev->dev.kobj, pdev->rom_attr);
Zhao, Yu280c73d2008-10-13 20:01:00 +08001550 kfree(pdev->rom_attr);
1551 pdev->rom_attr = NULL;
1552 }
Michael Ellerman9890b122007-04-18 13:34:12 +10001553err_resource_files:
1554 pci_remove_resource_files(pdev);
Ben Hutchings94e61082008-03-05 16:52:39 +00001555err_config_file:
Jason S. McMullanc20aecf2015-09-30 15:35:05 +09001556 if (pdev->cfg_size > PCI_CFG_SPACE_SIZE)
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001557 sysfs_remove_bin_file(&pdev->dev.kobj, &pcie_config_attr);
Jason S. McMullanc20aecf2015-09-30 15:35:05 +09001558 else
1559 sysfs_remove_bin_file(&pdev->dev.kobj, &pci_config_attr);
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001560err:
1561 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562}
1563
Zhao, Yu280c73d2008-10-13 20:01:00 +08001564static void pci_remove_capabilities_sysfs(struct pci_dev *dev)
1565{
Bjorn Helgaasb1c615c2018-03-19 13:06:17 -05001566 pcie_vpd_remove_sysfs_dev_files(dev);
Zhao, Yu280c73d2008-10-13 20:01:00 +08001567 pcie_aspm_remove_sysfs_dev_files(dev);
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001568 if (dev->reset_fn) {
1569 device_remove_file(&dev->dev, &reset_attr);
1570 dev->reset_fn = 0;
1571 }
Zhao, Yu280c73d2008-10-13 20:01:00 +08001572}
1573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574/**
1575 * pci_remove_sysfs_dev_files - cleanup PCI specific sysfs files
1576 * @pdev: device whose entries we should free
1577 *
1578 * Cleanup when @pdev is removed from sysfs.
1579 */
1580void pci_remove_sysfs_dev_files(struct pci_dev *pdev)
1581{
David Millerd67afe52006-11-10 12:27:48 -08001582 if (!sysfs_initialized)
1583 return;
1584
Zhao, Yu280c73d2008-10-13 20:01:00 +08001585 pci_remove_capabilities_sysfs(pdev);
Shaohua Li7d715a62008-02-25 09:46:41 +08001586
Jason S. McMullanc20aecf2015-09-30 15:35:05 +09001587 if (pdev->cfg_size > PCI_CFG_SPACE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 sysfs_remove_bin_file(&pdev->dev.kobj, &pcie_config_attr);
Jason S. McMullanc20aecf2015-09-30 15:35:05 +09001589 else
1590 sysfs_remove_bin_file(&pdev->dev.kobj, &pci_config_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592 pci_remove_resource_files(pdev);
1593
Bjorn Helgaas9d88b932016-03-01 09:37:10 -06001594 if (pdev->rom_attr) {
Zhao, Yu280c73d2008-10-13 20:01:00 +08001595 sysfs_remove_bin_file(&pdev->dev.kobj, pdev->rom_attr);
1596 kfree(pdev->rom_attr);
Bjorn Helgaas9d88b932016-03-01 09:37:10 -06001597 pdev->rom_attr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 }
Narendra K911e1c92010-07-26 05:56:50 -05001599
1600 pci_remove_firmware_label_files(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601}
1602
1603static int __init pci_sysfs_init(void)
1604{
1605 struct pci_dev *pdev = NULL;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001606 int retval;
1607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 sysfs_initialized = 1;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001609 for_each_pci_dev(pdev) {
1610 retval = pci_create_sysfs_dev_files(pdev);
Julia Lawall151fc5d2007-11-20 08:41:16 +01001611 if (retval) {
1612 pci_dev_put(pdev);
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001613 return retval;
Julia Lawall151fc5d2007-11-20 08:41:16 +01001614 }
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
1617 return 0;
1618}
Jesse Barnes40ee9e92007-03-24 11:03:32 -07001619late_initcall(pci_sysfs_init);
Yinghai Lu4e15c462012-11-05 15:20:34 -05001620
1621static struct attribute *pci_dev_dev_attrs[] = {
Yinghai Lu625e1d52012-11-05 15:20:35 -05001622 &vga_attr.attr,
Yinghai Lu4e15c462012-11-05 15:20:34 -05001623 NULL,
1624};
1625
1626static umode_t pci_dev_attrs_are_visible(struct kobject *kobj,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001627 struct attribute *a, int n)
Yinghai Lu4e15c462012-11-05 15:20:34 -05001628{
Geliang Tang554a6032015-12-23 20:28:13 +08001629 struct device *dev = kobj_to_dev(kobj);
Yinghai Lu625e1d52012-11-05 15:20:35 -05001630 struct pci_dev *pdev = to_pci_dev(dev);
1631
1632 if (a == &vga_attr.attr)
1633 if ((pdev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
1634 return 0;
1635
Yinghai Lu4e15c462012-11-05 15:20:34 -05001636 return a->mode;
1637}
1638
Jiang Liudfab88b2013-05-31 12:21:31 +08001639static struct attribute *pci_dev_hp_attrs[] = {
1640 &dev_remove_attr.attr,
1641 &dev_rescan_attr.attr,
1642 NULL,
1643};
1644
1645static umode_t pci_dev_hp_attrs_are_visible(struct kobject *kobj,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001646 struct attribute *a, int n)
Jiang Liudfab88b2013-05-31 12:21:31 +08001647{
Geliang Tang554a6032015-12-23 20:28:13 +08001648 struct device *dev = kobj_to_dev(kobj);
Jiang Liudfab88b2013-05-31 12:21:31 +08001649 struct pci_dev *pdev = to_pci_dev(dev);
1650
1651 if (pdev->is_virtfn)
1652 return 0;
1653
1654 return a->mode;
1655}
1656
Wong Vee Khee56c1af42017-06-01 17:43:06 +08001657static umode_t pci_bridge_attrs_are_visible(struct kobject *kobj,
1658 struct attribute *a, int n)
1659{
1660 struct device *dev = kobj_to_dev(kobj);
1661 struct pci_dev *pdev = to_pci_dev(dev);
1662
1663 if (pci_is_bridge(pdev))
1664 return a->mode;
1665
1666 return 0;
1667}
1668
1669static umode_t pcie_dev_attrs_are_visible(struct kobject *kobj,
1670 struct attribute *a, int n)
1671{
1672 struct device *dev = kobj_to_dev(kobj);
1673 struct pci_dev *pdev = to_pci_dev(dev);
1674
1675 if (pci_is_pcie(pdev))
1676 return a->mode;
1677
1678 return 0;
1679}
1680
1681static const struct attribute_group pci_dev_group = {
1682 .attrs = pci_dev_attrs,
1683};
1684
1685const struct attribute_group *pci_dev_groups[] = {
1686 &pci_dev_group,
1687 NULL,
1688};
1689
1690static const struct attribute_group pci_bridge_group = {
1691 .attrs = pci_bridge_attrs,
1692};
1693
1694const struct attribute_group *pci_bridge_groups[] = {
1695 &pci_bridge_group,
1696 NULL,
1697};
1698
1699static const struct attribute_group pcie_dev_group = {
1700 .attrs = pcie_dev_attrs,
1701};
1702
1703const struct attribute_group *pcie_dev_groups[] = {
1704 &pcie_dev_group,
1705 NULL,
1706};
1707
Arvind Yadave7ea9822017-07-11 14:57:07 +05301708static const struct attribute_group pci_dev_hp_attr_group = {
Jiang Liudfab88b2013-05-31 12:21:31 +08001709 .attrs = pci_dev_hp_attrs,
1710 .is_visible = pci_dev_hp_attrs_are_visible,
1711};
1712
Donald Dutile17893822012-11-05 15:20:36 -05001713#ifdef CONFIG_PCI_IOV
1714static struct attribute *sriov_dev_attrs[] = {
1715 &sriov_totalvfs_attr.attr,
1716 &sriov_numvfs_attr.attr,
Filippo Sironi7dfca152017-10-09 01:09:11 +02001717 &sriov_offset_attr.attr,
1718 &sriov_stride_attr.attr,
1719 &sriov_vf_device_attr.attr,
Bodong Wang0e7df222017-04-13 01:51:40 +03001720 &sriov_drivers_autoprobe_attr.attr,
Donald Dutile17893822012-11-05 15:20:36 -05001721 NULL,
1722};
1723
1724static umode_t sriov_attrs_are_visible(struct kobject *kobj,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001725 struct attribute *a, int n)
Donald Dutile17893822012-11-05 15:20:36 -05001726{
Geliang Tang554a6032015-12-23 20:28:13 +08001727 struct device *dev = kobj_to_dev(kobj);
Donald Dutile17893822012-11-05 15:20:36 -05001728
1729 if (!dev_is_pf(dev))
1730 return 0;
1731
1732 return a->mode;
1733}
1734
Arvind Yadave7ea9822017-07-11 14:57:07 +05301735static const struct attribute_group sriov_dev_attr_group = {
Donald Dutile17893822012-11-05 15:20:36 -05001736 .attrs = sriov_dev_attrs,
1737 .is_visible = sriov_attrs_are_visible,
1738};
1739#endif /* CONFIG_PCI_IOV */
1740
Arvind Yadave7ea9822017-07-11 14:57:07 +05301741static const struct attribute_group pci_dev_attr_group = {
Yinghai Lu4e15c462012-11-05 15:20:34 -05001742 .attrs = pci_dev_dev_attrs,
1743 .is_visible = pci_dev_attrs_are_visible,
1744};
1745
Arvind Yadave7ea9822017-07-11 14:57:07 +05301746static const struct attribute_group pci_bridge_attr_group = {
Wong Vee Khee56c1af42017-06-01 17:43:06 +08001747 .attrs = pci_bridge_attrs,
1748 .is_visible = pci_bridge_attrs_are_visible,
1749};
1750
Arvind Yadave7ea9822017-07-11 14:57:07 +05301751static const struct attribute_group pcie_dev_attr_group = {
Wong Vee Khee56c1af42017-06-01 17:43:06 +08001752 .attrs = pcie_dev_attrs,
1753 .is_visible = pcie_dev_attrs_are_visible,
1754};
1755
Yinghai Lu4e15c462012-11-05 15:20:34 -05001756static const struct attribute_group *pci_dev_attr_groups[] = {
1757 &pci_dev_attr_group,
Jiang Liudfab88b2013-05-31 12:21:31 +08001758 &pci_dev_hp_attr_group,
Donald Dutile17893822012-11-05 15:20:36 -05001759#ifdef CONFIG_PCI_IOV
1760 &sriov_dev_attr_group,
1761#endif
Wong Vee Khee56c1af42017-06-01 17:43:06 +08001762 &pci_bridge_attr_group,
1763 &pcie_dev_attr_group,
Rajat Jain81aa5202018-06-21 16:48:28 -07001764#ifdef CONFIG_PCIEAER
1765 &aer_stats_attr_group,
1766#endif
Yinghai Lu4e15c462012-11-05 15:20:34 -05001767 NULL,
1768};
1769
Bhumika Goyal69f2dc22017-09-12 16:43:33 +05301770const struct device_type pci_dev_type = {
Yinghai Lu4e15c462012-11-05 15:20:34 -05001771 .groups = pci_dev_attr_groups,
1772};