blob: 9ff0a901ecf7ed2691418845bf46d82bb2d68754 [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
Ryan Desfosses3c78bc62014-04-18 20:13:49 -040080static ssize_t pci_dev_show_local_cpu(struct device *dev, int type,
81 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 int len;
85
Andreas Herrmanne0cd5162009-04-17 12:01:55 +020086#ifdef CONFIG_NUMA
David John6be954d2010-01-04 20:28:57 +053087 mask = (dev_to_node(dev) == -1) ? cpu_online_mask :
88 cpumask_of_node(dev_to_node(dev));
Andreas Herrmanne0cd5162009-04-17 12:01:55 +020089#else
Mike Travis3be83052009-01-04 05:18:01 -080090 mask = cpumask_of_pcibus(to_pci_dev(dev)->bus);
Andreas Herrmanne0cd5162009-04-17 12:01:55 +020091#endif
Yijing Wangc489f5f2013-09-30 15:02:38 +080092 len = type ?
93 cpumask_scnprintf(buf, PAGE_SIZE-2, mask) :
94 cpulist_scnprintf(buf, PAGE_SIZE-2, mask);
95
Mike Travis39106dc2008-04-08 11:43:03 -070096 buf[len++] = '\n';
97 buf[len] = '\0';
98 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Yijing Wangc489f5f2013-09-30 15:02:38 +0800101static ssize_t local_cpus_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{
104 return pci_dev_show_local_cpu(dev, 1, attr, buf);
105}
Bjorn Helgaas33de1b82013-10-31 14:12:40 -0600106static DEVICE_ATTR_RO(local_cpus);
Yijing Wangc489f5f2013-09-30 15:02:38 +0800107
108static ssize_t local_cpulist_show(struct device *dev,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400109 struct device_attribute *attr, char *buf)
Yijing Wangc489f5f2013-09-30 15:02:38 +0800110{
111 return pci_dev_show_local_cpu(dev, 0, attr, buf);
112}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700113static DEVICE_ATTR_RO(local_cpulist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700115/*
116 * PCI Bus Class Devices
117 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400118static ssize_t pci_bus_show_cpuaffinity(struct device *dev, int type,
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700119 struct device_attribute *attr,
120 char *buf)
121{
122 int ret;
123 const struct cpumask *cpumask;
124
125 cpumask = cpumask_of_pcibus(to_pci_bus(dev));
126 ret = type ?
127 cpulist_scnprintf(buf, PAGE_SIZE-2, cpumask) :
128 cpumask_scnprintf(buf, PAGE_SIZE-2, cpumask);
129 buf[ret++] = '\n';
130 buf[ret] = '\0';
131 return ret;
132}
133
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700134static ssize_t cpuaffinity_show(struct device *dev,
135 struct device_attribute *attr, char *buf)
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700136{
137 return pci_bus_show_cpuaffinity(dev, 0, attr, buf);
138}
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700139static DEVICE_ATTR_RO(cpuaffinity);
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700140
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700141static ssize_t cpulistaffinity_show(struct device *dev,
142 struct device_attribute *attr, char *buf)
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700143{
144 return pci_bus_show_cpuaffinity(dev, 1, attr, buf);
145}
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700146static DEVICE_ATTR_RO(cpulistaffinity);
Yinghai Ludc2c2c92011-05-12 17:11:40 -0700147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148/* show resources */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400149static ssize_t resource_show(struct device *dev, struct device_attribute *attr,
150 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400152 struct pci_dev *pci_dev = to_pci_dev(dev);
153 char *str = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 int i;
Yu Zhaofde09c62008-11-22 02:39:32 +0800155 int max;
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700156 resource_size_t start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 if (pci_dev->subordinate)
159 max = DEVICE_COUNT_RESOURCE;
Yu Zhaofde09c62008-11-22 02:39:32 +0800160 else
161 max = PCI_BRIDGE_RESOURCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 for (i = 0; i < max; i++) {
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000164 struct resource *res = &pci_dev->resource[i];
165 pci_resource_to_user(pci_dev, i, res, &start, &end);
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400166 str += sprintf(str, "0x%016llx 0x%016llx 0x%016llx\n",
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000167 (unsigned long long)start,
168 (unsigned long long)end,
169 (unsigned long long)res->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
171 return (str - buf);
172}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700173static DEVICE_ATTR_RO(resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400175static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
176 char *buf)
Greg KH98885492005-05-05 11:57:25 -0700177{
178 struct pci_dev *pci_dev = to_pci_dev(dev);
179
180 return sprintf(buf, "pci:v%08Xd%08Xsv%08Xsd%08Xbc%02Xsc%02Xi%02x\n",
181 pci_dev->vendor, pci_dev->device,
182 pci_dev->subsystem_vendor, pci_dev->subsystem_device,
183 (u8)(pci_dev->class >> 16), (u8)(pci_dev->class >> 8),
184 (u8)(pci_dev->class));
185}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700186static DEVICE_ATTR_RO(modalias);
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800187
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400188static ssize_t enabled_store(struct device *dev, struct device_attribute *attr,
189 const char *buf, size_t count)
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200190{
191 struct pci_dev *pdev = to_pci_dev(dev);
Trent Piepho92425a42008-11-30 17:10:12 -0800192 unsigned long val;
Jingoo Han9a994e82013-06-01 16:25:25 +0900193 ssize_t result = kstrtoul(buf, 0, &val);
Trent Piepho92425a42008-11-30 17:10:12 -0800194
195 if (result < 0)
196 return result;
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200197
198 /* this can crash the machine when done on the "wrong" device */
199 if (!capable(CAP_SYS_ADMIN))
Trent Piepho92425a42008-11-30 17:10:12 -0800200 return -EPERM;
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200201
Trent Piepho92425a42008-11-30 17:10:12 -0800202 if (!val) {
Yuji Shimada296ccb02009-04-03 16:41:46 +0900203 if (pci_is_enabled(pdev))
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800204 pci_disable_device(pdev);
205 else
206 result = -EIO;
Trent Piepho92425a42008-11-30 17:10:12 -0800207 } else
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800208 result = pci_enable_device(pdev);
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200209
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800210 return result < 0 ? result : count;
211}
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200212
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400213static ssize_t enabled_show(struct device *dev, struct device_attribute *attr,
214 char *buf)
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800215{
216 struct pci_dev *pdev;
217
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400218 pdev = to_pci_dev(dev);
219 return sprintf(buf, "%u\n", atomic_read(&pdev->enable_cnt));
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200220}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700221static DEVICE_ATTR_RW(enabled);
Arjan van de Ven9f125d32006-04-29 10:59:08 +0200222
Brice Goglin81bb0e12007-01-28 10:53:40 +0100223#ifdef CONFIG_NUMA
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400224static ssize_t numa_node_show(struct device *dev, struct device_attribute *attr,
225 char *buf)
Brice Goglin81bb0e12007-01-28 10:53:40 +0100226{
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400227 return sprintf(buf, "%d\n", dev->numa_node);
Brice Goglin81bb0e12007-01-28 10:53:40 +0100228}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700229static DEVICE_ATTR_RO(numa_node);
Brice Goglin81bb0e12007-01-28 10:53:40 +0100230#endif
231
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400232static ssize_t dma_mask_bits_show(struct device *dev,
233 struct device_attribute *attr, char *buf)
Yinghai Lubb965402009-11-24 18:21:21 -0800234{
235 struct pci_dev *pdev = to_pci_dev(dev);
236
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400237 return sprintf(buf, "%d\n", fls64(pdev->dma_mask));
Yinghai Lubb965402009-11-24 18:21:21 -0800238}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700239static DEVICE_ATTR_RO(dma_mask_bits);
Yinghai Lubb965402009-11-24 18:21:21 -0800240
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400241static ssize_t consistent_dma_mask_bits_show(struct device *dev,
242 struct device_attribute *attr,
243 char *buf)
Yinghai Lubb965402009-11-24 18:21:21 -0800244{
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400245 return sprintf(buf, "%d\n", fls64(dev->coherent_dma_mask));
Yinghai Lubb965402009-11-24 18:21:21 -0800246}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700247static DEVICE_ATTR_RO(consistent_dma_mask_bits);
Yinghai Lubb965402009-11-24 18:21:21 -0800248
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400249static ssize_t msi_bus_show(struct device *dev, struct device_attribute *attr,
250 char *buf)
Brice Goglinfe970642006-08-31 01:55:15 -0400251{
252 struct pci_dev *pdev = to_pci_dev(dev);
253
254 if (!pdev->subordinate)
255 return 0;
256
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400257 return sprintf(buf, "%u\n",
258 !(pdev->subordinate->bus_flags & PCI_BUS_FLAGS_NO_MSI));
Brice Goglinfe970642006-08-31 01:55:15 -0400259}
260
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400261static ssize_t msi_bus_store(struct device *dev, struct device_attribute *attr,
262 const char *buf, size_t count)
Brice Goglinfe970642006-08-31 01:55:15 -0400263{
264 struct pci_dev *pdev = to_pci_dev(dev);
Trent Piepho92425a42008-11-30 17:10:12 -0800265 unsigned long val;
266
Jingoo Han9a994e82013-06-01 16:25:25 +0900267 if (kstrtoul(buf, 0, &val) < 0)
Trent Piepho92425a42008-11-30 17:10:12 -0800268 return -EINVAL;
Brice Goglinfe970642006-08-31 01:55:15 -0400269
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700270 /*
271 * Bad things may happen if the no_msi flag is changed
272 * while drivers are loaded.
273 */
Brice Goglinfe970642006-08-31 01:55:15 -0400274 if (!capable(CAP_SYS_ADMIN))
Trent Piepho92425a42008-11-30 17:10:12 -0800275 return -EPERM;
Brice Goglinfe970642006-08-31 01:55:15 -0400276
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700277 /*
278 * Maybe devices without subordinate buses shouldn't have this
279 * attribute in the first place?
280 */
Brice Goglinfe970642006-08-31 01:55:15 -0400281 if (!pdev->subordinate)
282 return count;
283
Trent Piepho92425a42008-11-30 17:10:12 -0800284 /* Is the flag going to change, or keep the value it already had? */
285 if (!(pdev->subordinate->bus_flags & PCI_BUS_FLAGS_NO_MSI) ^
286 !!val) {
287 pdev->subordinate->bus_flags ^= PCI_BUS_FLAGS_NO_MSI;
Brice Goglinfe970642006-08-31 01:55:15 -0400288
Ryan Desfosses227f0642014-04-18 20:13:50 -0400289 dev_warn(&pdev->dev, "forced subordinate bus to%s support MSI, bad things could happen\n",
290 val ? "" : " not");
Brice Goglinfe970642006-08-31 01:55:15 -0400291 }
292
293 return count;
294}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700295static DEVICE_ATTR_RW(msi_bus);
Greg KH98885492005-05-05 11:57:25 -0700296
Alex Chiang705b1aa2009-03-20 14:56:31 -0600297static ssize_t bus_rescan_store(struct bus_type *bus, const char *buf,
298 size_t count)
299{
300 unsigned long val;
301 struct pci_bus *b = NULL;
302
Jingoo Han9a994e82013-06-01 16:25:25 +0900303 if (kstrtoul(buf, 0, &val) < 0)
Alex Chiang705b1aa2009-03-20 14:56:31 -0600304 return -EINVAL;
305
306 if (val) {
Rafael J. Wysocki9d169472014-01-10 15:22:18 +0100307 pci_lock_rescan_remove();
Alex Chiang705b1aa2009-03-20 14:56:31 -0600308 while ((b = pci_find_next_bus(b)) != NULL)
309 pci_rescan_bus(b);
Rafael J. Wysocki9d169472014-01-10 15:22:18 +0100310 pci_unlock_rescan_remove();
Alex Chiang705b1aa2009-03-20 14:56:31 -0600311 }
312 return count;
313}
Greg Kroah-Hartman0f49ba52013-10-07 14:51:02 -0600314static BUS_ATTR(rescan, (S_IWUSR|S_IWGRP), NULL, bus_rescan_store);
Alex Chiang705b1aa2009-03-20 14:56:31 -0600315
Sachin Kamatbf22c902013-09-28 15:42:00 +0530316static struct attribute *pci_bus_attrs[] = {
Greg Kroah-Hartman0f49ba52013-10-07 14:51:02 -0600317 &bus_attr_rescan.attr,
318 NULL,
319};
320
321static const struct attribute_group pci_bus_group = {
322 .attrs = pci_bus_attrs,
323};
324
325const struct attribute_group *pci_bus_groups[] = {
326 &pci_bus_group,
327 NULL,
Alex Chiang705b1aa2009-03-20 14:56:31 -0600328};
Alex Chiang77c27c72009-03-20 14:56:36 -0600329
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400330static ssize_t dev_rescan_store(struct device *dev,
331 struct device_attribute *attr, const char *buf,
332 size_t count)
Alex Chiang738a6392009-03-20 14:56:41 -0600333{
334 unsigned long val;
335 struct pci_dev *pdev = to_pci_dev(dev);
336
Jingoo Han9a994e82013-06-01 16:25:25 +0900337 if (kstrtoul(buf, 0, &val) < 0)
Alex Chiang738a6392009-03-20 14:56:41 -0600338 return -EINVAL;
339
340 if (val) {
Rafael J. Wysocki9d169472014-01-10 15:22:18 +0100341 pci_lock_rescan_remove();
Alex Chiang738a6392009-03-20 14:56:41 -0600342 pci_rescan_bus(pdev->bus);
Rafael J. Wysocki9d169472014-01-10 15:22:18 +0100343 pci_unlock_rescan_remove();
Alex Chiang738a6392009-03-20 14:56:41 -0600344 }
345 return count;
346}
Sachin Kamatbf22c902013-09-28 15:42:00 +0530347static struct device_attribute dev_rescan_attr = __ATTR(rescan,
348 (S_IWUSR|S_IWGRP),
349 NULL, dev_rescan_store);
Alex Chiang738a6392009-03-20 14:56:41 -0600350
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400351static ssize_t remove_store(struct device *dev, struct device_attribute *attr,
352 const char *buf, size_t count)
Alex Chiang77c27c72009-03-20 14:56:36 -0600353{
Alex Chiang77c27c72009-03-20 14:56:36 -0600354 unsigned long val;
Alex Chiang77c27c72009-03-20 14:56:36 -0600355
Jingoo Han9a994e82013-06-01 16:25:25 +0900356 if (kstrtoul(buf, 0, &val) < 0)
Alex Chiang77c27c72009-03-20 14:56:36 -0600357 return -EINVAL;
358
Tejun Heobc6caf02014-02-03 14:03:02 -0500359 if (val && device_remove_file_self(dev, attr))
360 pci_stop_and_remove_bus_device_locked(to_pci_dev(dev));
Alex Chiang77c27c72009-03-20 14:56:36 -0600361 return count;
362}
Sachin Kamatbf22c902013-09-28 15:42:00 +0530363static struct device_attribute dev_remove_attr = __ATTR(remove,
364 (S_IWUSR|S_IWGRP),
365 NULL, remove_store);
Yinghai Lub9d320f2011-05-12 17:11:39 -0700366
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400367static ssize_t dev_bus_rescan_store(struct device *dev,
368 struct device_attribute *attr,
369 const char *buf, size_t count)
Yinghai Lub9d320f2011-05-12 17:11:39 -0700370{
371 unsigned long val;
372 struct pci_bus *bus = to_pci_bus(dev);
373
Jingoo Han9a994e82013-06-01 16:25:25 +0900374 if (kstrtoul(buf, 0, &val) < 0)
Yinghai Lub9d320f2011-05-12 17:11:39 -0700375 return -EINVAL;
376
377 if (val) {
Rafael J. Wysocki9d169472014-01-10 15:22:18 +0100378 pci_lock_rescan_remove();
Yinghai Lu2f320522012-01-21 02:08:22 -0800379 if (!pci_is_root_bus(bus) && list_empty(&bus->devices))
380 pci_rescan_bus_bridge_resize(bus->self);
381 else
382 pci_rescan_bus(bus);
Rafael J. Wysocki9d169472014-01-10 15:22:18 +0100383 pci_unlock_rescan_remove();
Yinghai Lub9d320f2011-05-12 17:11:39 -0700384 }
385 return count;
386}
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700387static DEVICE_ATTR(rescan, (S_IWUSR|S_IWGRP), NULL, dev_bus_rescan_store);
Yinghai Lub9d320f2011-05-12 17:11:39 -0700388
Huang Ying448bd852012-06-23 10:23:51 +0800389#if defined(CONFIG_PM_RUNTIME) && defined(CONFIG_ACPI)
390static ssize_t d3cold_allowed_store(struct device *dev,
391 struct device_attribute *attr,
392 const char *buf, size_t count)
393{
394 struct pci_dev *pdev = to_pci_dev(dev);
395 unsigned long val;
396
Jingoo Han9a994e82013-06-01 16:25:25 +0900397 if (kstrtoul(buf, 0, &val) < 0)
Huang Ying448bd852012-06-23 10:23:51 +0800398 return -EINVAL;
399
400 pdev->d3cold_allowed = !!val;
401 pm_runtime_resume(dev);
402
403 return count;
404}
405
406static ssize_t d3cold_allowed_show(struct device *dev,
407 struct device_attribute *attr, char *buf)
408{
409 struct pci_dev *pdev = to_pci_dev(dev);
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400410 return sprintf(buf, "%u\n", pdev->d3cold_allowed);
Huang Ying448bd852012-06-23 10:23:51 +0800411}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700412static DEVICE_ATTR_RW(d3cold_allowed);
Huang Ying448bd852012-06-23 10:23:51 +0800413#endif
414
Sebastian Ottdfc73e72014-04-17 19:46:15 +0200415#ifdef CONFIG_OF
416static ssize_t devspec_show(struct device *dev,
417 struct device_attribute *attr, char *buf)
418{
419 struct pci_dev *pdev = to_pci_dev(dev);
420 struct device_node *np = pci_device_to_OF_node(pdev);
421
422 if (np == NULL || np->full_name == NULL)
423 return 0;
424 return sprintf(buf, "%s", np->full_name);
425}
426static DEVICE_ATTR_RO(devspec);
427#endif
428
Donald Dutile17893822012-11-05 15:20:36 -0500429#ifdef CONFIG_PCI_IOV
430static ssize_t sriov_totalvfs_show(struct device *dev,
431 struct device_attribute *attr,
432 char *buf)
433{
434 struct pci_dev *pdev = to_pci_dev(dev);
435
Donald Dutilebff73152012-11-05 15:20:37 -0500436 return sprintf(buf, "%u\n", pci_sriov_get_totalvfs(pdev));
Donald Dutile17893822012-11-05 15:20:36 -0500437}
438
439
440static ssize_t sriov_numvfs_show(struct device *dev,
441 struct device_attribute *attr,
442 char *buf)
443{
444 struct pci_dev *pdev = to_pci_dev(dev);
445
Bjorn Helgaas6b136722012-11-09 20:27:53 -0700446 return sprintf(buf, "%u\n", pdev->sriov->num_VFs);
Donald Dutile17893822012-11-05 15:20:36 -0500447}
448
449/*
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700450 * num_vfs > 0; number of VFs to enable
451 * num_vfs = 0; disable all VFs
Donald Dutile17893822012-11-05 15:20:36 -0500452 *
453 * Note: SRIOV spec doesn't allow partial VF
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700454 * disable, so it's all or none.
Donald Dutile17893822012-11-05 15:20:36 -0500455 */
456static ssize_t sriov_numvfs_store(struct device *dev,
457 struct device_attribute *attr,
458 const char *buf, size_t count)
459{
460 struct pci_dev *pdev = to_pci_dev(dev);
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700461 int ret;
462 u16 num_vfs;
Donald Dutile17893822012-11-05 15:20:36 -0500463
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700464 ret = kstrtou16(buf, 0, &num_vfs);
465 if (ret < 0)
466 return ret;
467
468 if (num_vfs > pci_sriov_get_totalvfs(pdev))
469 return -ERANGE;
470
471 if (num_vfs == pdev->sriov->num_VFs)
472 return count; /* no change */
Donald Dutile17893822012-11-05 15:20:36 -0500473
474 /* is PF driver loaded w/callback */
475 if (!pdev->driver || !pdev->driver->sriov_configure) {
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700476 dev_info(&pdev->dev, "Driver doesn't support SRIOV configuration via sysfs\n");
Donald Dutile17893822012-11-05 15:20:36 -0500477 return -ENOSYS;
478 }
479
Donald Dutile17893822012-11-05 15:20:36 -0500480 if (num_vfs == 0) {
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700481 /* disable VFs */
482 ret = pdev->driver->sriov_configure(pdev, 0);
483 if (ret < 0)
484 return ret;
485 return count;
Donald Dutile17893822012-11-05 15:20:36 -0500486 }
487
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700488 /* enable VFs */
489 if (pdev->sriov->num_VFs) {
490 dev_warn(&pdev->dev, "%d VFs already enabled. Disable before enabling %d VFs\n",
491 pdev->sriov->num_VFs, num_vfs);
492 return -EBUSY;
493 }
Donald Dutile17893822012-11-05 15:20:36 -0500494
Bjorn Helgaasfaa48a52012-12-26 10:39:22 -0700495 ret = pdev->driver->sriov_configure(pdev, num_vfs);
496 if (ret < 0)
497 return ret;
498
499 if (ret != num_vfs)
500 dev_warn(&pdev->dev, "%d VFs requested; only %d enabled\n",
501 num_vfs, ret);
502
503 return count;
Donald Dutile17893822012-11-05 15:20:36 -0500504}
505
506static struct device_attribute sriov_totalvfs_attr = __ATTR_RO(sriov_totalvfs);
507static struct device_attribute sriov_numvfs_attr =
508 __ATTR(sriov_numvfs, (S_IRUGO|S_IWUSR|S_IWGRP),
509 sriov_numvfs_show, sriov_numvfs_store);
510#endif /* CONFIG_PCI_IOV */
511
Alex Williamson782a9852014-05-20 08:53:21 -0600512static ssize_t driver_override_store(struct device *dev,
513 struct device_attribute *attr,
514 const char *buf, size_t count)
515{
516 struct pci_dev *pdev = to_pci_dev(dev);
517 char *driver_override, *old = pdev->driver_override, *cp;
518
519 if (count > PATH_MAX)
520 return -EINVAL;
521
522 driver_override = kstrndup(buf, count, GFP_KERNEL);
523 if (!driver_override)
524 return -ENOMEM;
525
526 cp = strchr(driver_override, '\n');
527 if (cp)
528 *cp = '\0';
529
530 if (strlen(driver_override)) {
531 pdev->driver_override = driver_override;
532 } else {
533 kfree(driver_override);
534 pdev->driver_override = NULL;
535 }
536
537 kfree(old);
538
539 return count;
540}
541
542static ssize_t driver_override_show(struct device *dev,
543 struct device_attribute *attr, char *buf)
544{
545 struct pci_dev *pdev = to_pci_dev(dev);
546
547 return sprintf(buf, "%s\n", pdev->driver_override);
548}
549static DEVICE_ATTR_RW(driver_override);
550
Sachin Kamatbf22c902013-09-28 15:42:00 +0530551static struct attribute *pci_dev_attrs[] = {
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700552 &dev_attr_resource.attr,
553 &dev_attr_vendor.attr,
554 &dev_attr_device.attr,
555 &dev_attr_subsystem_vendor.attr,
556 &dev_attr_subsystem_device.attr,
557 &dev_attr_class.attr,
558 &dev_attr_irq.attr,
559 &dev_attr_local_cpus.attr,
560 &dev_attr_local_cpulist.attr,
561 &dev_attr_modalias.attr,
Brice Goglin81bb0e12007-01-28 10:53:40 +0100562#ifdef CONFIG_NUMA
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700563 &dev_attr_numa_node.attr,
Brice Goglin81bb0e12007-01-28 10:53:40 +0100564#endif
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700565 &dev_attr_dma_mask_bits.attr,
566 &dev_attr_consistent_dma_mask_bits.attr,
567 &dev_attr_enabled.attr,
568 &dev_attr_broken_parity_status.attr,
569 &dev_attr_msi_bus.attr,
Huang Ying448bd852012-06-23 10:23:51 +0800570#if defined(CONFIG_PM_RUNTIME) && defined(CONFIG_ACPI)
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700571 &dev_attr_d3cold_allowed.attr,
Huang Ying448bd852012-06-23 10:23:51 +0800572#endif
Sebastian Ottdfc73e72014-04-17 19:46:15 +0200573#ifdef CONFIG_OF
574 &dev_attr_devspec.attr,
575#endif
Alex Williamson782a9852014-05-20 08:53:21 -0600576 &dev_attr_driver_override.attr,
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700577 NULL,
578};
579
580static const struct attribute_group pci_dev_group = {
581 .attrs = pci_dev_attrs,
582};
583
584const struct attribute_group *pci_dev_groups[] = {
585 &pci_dev_group,
586 NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587};
588
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700589static struct attribute *pcibus_attrs[] = {
590 &dev_attr_rescan.attr,
591 &dev_attr_cpuaffinity.attr,
592 &dev_attr_cpulistaffinity.attr,
593 NULL,
594};
595
596static const struct attribute_group pcibus_group = {
597 .attrs = pcibus_attrs,
598};
599
600const struct attribute_group *pcibus_groups[] = {
601 &pcibus_group,
602 NULL,
Yinghai Lub9d320f2011-05-12 17:11:39 -0700603};
604
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400605static ssize_t boot_vga_show(struct device *dev, struct device_attribute *attr,
606 char *buf)
Dave Airlie217f45d2009-03-04 05:57:05 +0000607{
608 struct pci_dev *pdev = to_pci_dev(dev);
Matthew Garrett1a39b312012-04-16 16:26:02 -0400609 struct pci_dev *vga_dev = vga_default_device();
610
611 if (vga_dev)
612 return sprintf(buf, "%u\n", (pdev == vga_dev));
Dave Airlie217f45d2009-03-04 05:57:05 +0000613
614 return sprintf(buf, "%u\n",
615 !!(pdev->resource[PCI_ROM_RESOURCE].flags &
616 IORESOURCE_ROM_SHADOW));
617}
Sachin Kamatbf22c902013-09-28 15:42:00 +0530618static struct device_attribute vga_attr = __ATTR_RO(boot_vga);
Dave Airlie217f45d2009-03-04 05:57:05 +0000619
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400620static ssize_t pci_read_config(struct file *filp, struct kobject *kobj,
621 struct bin_attribute *bin_attr, char *buf,
622 loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400624 struct pci_dev *dev = to_pci_dev(container_of(kobj, struct device,
625 kobj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 unsigned int size = 64;
627 loff_t init_off = off;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400628 u8 *data = (u8 *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 /* Several chips lock up trying to read undefined config space */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400631 if (security_capable(filp->f_cred, &init_user_ns, CAP_SYS_ADMIN) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 size = dev->cfg_size;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400633 else if (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 size = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 if (off > size)
637 return 0;
638 if (off + count > size) {
639 size -= off;
640 count = size;
641 } else {
642 size = count;
643 }
644
Huang Ying3d8387e2012-08-15 09:43:03 +0800645 pci_config_pm_runtime_get(dev);
646
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900647 if ((off & 1) && size) {
648 u8 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700649 pci_user_read_config_byte(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900650 data[off - init_off] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 off++;
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900652 size--;
653 }
654
655 if ((off & 3) && size > 2) {
656 u16 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700657 pci_user_read_config_word(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900658 data[off - init_off] = val & 0xff;
659 data[off - init_off + 1] = (val >> 8) & 0xff;
660 off += 2;
661 size -= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
663
664 while (size > 3) {
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900665 u32 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700666 pci_user_read_config_dword(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900667 data[off - init_off] = val & 0xff;
668 data[off - init_off + 1] = (val >> 8) & 0xff;
669 data[off - init_off + 2] = (val >> 16) & 0xff;
670 data[off - init_off + 3] = (val >> 24) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 off += 4;
672 size -= 4;
673 }
674
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900675 if (size >= 2) {
676 u16 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700677 pci_user_read_config_word(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900678 data[off - init_off] = val & 0xff;
679 data[off - init_off + 1] = (val >> 8) & 0xff;
680 off += 2;
681 size -= 2;
682 }
683
684 if (size > 0) {
685 u8 val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700686 pci_user_read_config_byte(dev, off, &val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900687 data[off - init_off] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 off++;
689 --size;
690 }
691
Huang Ying3d8387e2012-08-15 09:43:03 +0800692 pci_config_pm_runtime_put(dev);
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return count;
695}
696
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400697static ssize_t pci_write_config(struct file *filp, struct kobject *kobj,
698 struct bin_attribute *bin_attr, char *buf,
699 loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400701 struct pci_dev *dev = to_pci_dev(container_of(kobj, struct device,
702 kobj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 unsigned int size = count;
704 loff_t init_off = off;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400705 u8 *data = (u8 *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 if (off > dev->cfg_size)
708 return 0;
709 if (off + count > dev->cfg_size) {
710 size = dev->cfg_size - off;
711 count = size;
712 }
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700713
Huang Ying3d8387e2012-08-15 09:43:03 +0800714 pci_config_pm_runtime_get(dev);
715
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900716 if ((off & 1) && size) {
Brian Kinge04b0ea2005-09-27 01:21:55 -0700717 pci_user_write_config_byte(dev, off, data[off - init_off]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 off++;
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900719 size--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700721
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900722 if ((off & 3) && size > 2) {
723 u16 val = data[off - init_off];
724 val |= (u16) data[off - init_off + 1] << 8;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400725 pci_user_write_config_word(dev, off, val);
726 off += 2;
727 size -= 2;
728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 while (size > 3) {
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900731 u32 val = data[off - init_off];
732 val |= (u32) data[off - init_off + 1] << 8;
733 val |= (u32) data[off - init_off + 2] << 16;
734 val |= (u32) data[off - init_off + 3] << 24;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700735 pci_user_write_config_dword(dev, off, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 off += 4;
737 size -= 4;
738 }
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700739
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900740 if (size >= 2) {
741 u16 val = data[off - init_off];
742 val |= (u16) data[off - init_off + 1] << 8;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700743 pci_user_write_config_word(dev, off, val);
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900744 off += 2;
745 size -= 2;
746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
ssant@in.ibm.com4c0619a2005-04-08 14:53:31 +0900748 if (size) {
Brian Kinge04b0ea2005-09-27 01:21:55 -0700749 pci_user_write_config_byte(dev, off, data[off - init_off]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 off++;
751 --size;
752 }
753
Huang Ying3d8387e2012-08-15 09:43:03 +0800754 pci_config_pm_runtime_put(dev);
755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return count;
757}
758
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400759static ssize_t read_vpd_attr(struct file *filp, struct kobject *kobj,
760 struct bin_attribute *bin_attr, char *buf,
761 loff_t off, size_t count)
Ben Hutchings94e61082008-03-05 16:52:39 +0000762{
763 struct pci_dev *dev =
764 to_pci_dev(container_of(kobj, struct device, kobj));
Ben Hutchings94e61082008-03-05 16:52:39 +0000765
766 if (off > bin_attr->size)
767 count = 0;
768 else if (count > bin_attr->size - off)
769 count = bin_attr->size - off;
Ben Hutchings94e61082008-03-05 16:52:39 +0000770
Stephen Hemminger287d19c2008-12-18 09:17:16 -0800771 return pci_read_vpd(dev, off, count, buf);
772}
Ben Hutchings94e61082008-03-05 16:52:39 +0000773
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400774static ssize_t write_vpd_attr(struct file *filp, struct kobject *kobj,
775 struct bin_attribute *bin_attr, char *buf,
776 loff_t off, size_t count)
Stephen Hemminger287d19c2008-12-18 09:17:16 -0800777{
778 struct pci_dev *dev =
779 to_pci_dev(container_of(kobj, struct device, kobj));
780
781 if (off > bin_attr->size)
782 count = 0;
783 else if (count > bin_attr->size - off)
784 count = bin_attr->size - off;
785
786 return pci_write_vpd(dev, off, count, buf);
Ben Hutchings94e61082008-03-05 16:52:39 +0000787}
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789#ifdef HAVE_PCI_LEGACY
790/**
791 * pci_read_legacy_io - read byte(s) from legacy I/O port space
Chris Wright2c3c8be2010-05-12 18:28:57 -0700792 * @filp: open sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 * @kobj: kobject corresponding to file to read from
Randy Dunlapcffb2fa2009-04-10 15:17:50 -0700794 * @bin_attr: struct bin_attribute for this file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 * @buf: buffer to store results
796 * @off: offset into legacy I/O port space
797 * @count: number of bytes to read
798 *
799 * Reads 1, 2, or 4 bytes from legacy I/O port space using an arch specific
800 * callback routine (pci_legacy_read).
801 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400802static ssize_t pci_read_legacy_io(struct file *filp, struct kobject *kobj,
803 struct bin_attribute *bin_attr, char *buf,
804 loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400806 struct pci_bus *bus = to_pci_bus(container_of(kobj, struct device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 kobj));
808
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400809 /* Only support 1, 2 or 4 byte accesses */
810 if (count != 1 && count != 2 && count != 4)
811 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400813 return pci_legacy_read(bus, off, (u32 *)buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814}
815
816/**
817 * pci_write_legacy_io - write byte(s) to legacy I/O port space
Chris Wright2c3c8be2010-05-12 18:28:57 -0700818 * @filp: open sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 * @kobj: kobject corresponding to file to read from
Randy Dunlapcffb2fa2009-04-10 15:17:50 -0700820 * @bin_attr: struct bin_attribute for this file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 * @buf: buffer containing value to be written
822 * @off: offset into legacy I/O port space
823 * @count: number of bytes to write
824 *
825 * Writes 1, 2, or 4 bytes from legacy I/O port space using an arch specific
826 * callback routine (pci_legacy_write).
827 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400828static ssize_t pci_write_legacy_io(struct file *filp, struct kobject *kobj,
829 struct bin_attribute *bin_attr, char *buf,
830 loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400832 struct pci_bus *bus = to_pci_bus(container_of(kobj, struct device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 kobj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400835 /* Only support 1, 2 or 4 byte accesses */
836 if (count != 1 && count != 2 && count != 4)
837 return -EINVAL;
838
839 return pci_legacy_write(bus, off, *(u32 *)buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
842/**
843 * pci_mmap_legacy_mem - map legacy PCI memory into user memory space
Chris Wright2c3c8be2010-05-12 18:28:57 -0700844 * @filp: open sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 * @kobj: kobject corresponding to device to be mapped
846 * @attr: struct bin_attribute for this file
847 * @vma: struct vm_area_struct passed to mmap
848 *
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000849 * Uses an arch specific callback, pci_mmap_legacy_mem_page_range, to mmap
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 * legacy memory space (first meg of bus space) into application virtual
851 * memory space.
852 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400853static int pci_mmap_legacy_mem(struct file *filp, struct kobject *kobj,
854 struct bin_attribute *attr,
855 struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400857 struct pci_bus *bus = to_pci_bus(container_of(kobj, struct device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 kobj));
859
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400860 return pci_mmap_legacy_page_range(bus, vma, pci_mmap_mem);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000861}
862
863/**
864 * pci_mmap_legacy_io - map legacy PCI IO into user memory space
Chris Wright2c3c8be2010-05-12 18:28:57 -0700865 * @filp: open sysfs file
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000866 * @kobj: kobject corresponding to device to be mapped
867 * @attr: struct bin_attribute for this file
868 * @vma: struct vm_area_struct passed to mmap
869 *
870 * Uses an arch specific callback, pci_mmap_legacy_io_page_range, to mmap
871 * legacy IO space (first meg of bus space) into application virtual
872 * memory space. Returns -ENOSYS if the operation isn't supported
873 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400874static int pci_mmap_legacy_io(struct file *filp, struct kobject *kobj,
875 struct bin_attribute *attr,
876 struct vm_area_struct *vma)
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000877{
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400878 struct pci_bus *bus = to_pci_bus(container_of(kobj, struct device,
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000879 kobj));
880
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400881 return pci_mmap_legacy_page_range(bus, vma, pci_mmap_io);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000882}
883
884/**
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +0300885 * pci_adjust_legacy_attr - adjustment of legacy file attributes
886 * @b: bus to create files under
887 * @mmap_type: I/O port or memory
888 *
889 * Stub implementation. Can be overridden by arch if necessary.
890 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400891void __weak pci_adjust_legacy_attr(struct pci_bus *b,
892 enum pci_mmap_state mmap_type)
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +0300893{
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +0300894}
895
896/**
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000897 * pci_create_legacy_files - create legacy I/O port and memory files
898 * @b: bus to create files under
899 *
900 * Some platforms allow access to legacy I/O port and ISA memory space on
901 * a per-bus basis. This routine creates the files and ties them into
902 * their associated read, write and mmap files from pci-sysfs.c
903 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300904 * On error unwind, but don't propagate the error to the caller
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000905 * as it is ok to set up the PCI bus without these files.
906 */
907void pci_create_legacy_files(struct pci_bus *b)
908{
909 int error;
910
911 b->legacy_io = kzalloc(sizeof(struct bin_attribute) * 2,
912 GFP_ATOMIC);
913 if (!b->legacy_io)
914 goto kzalloc_err;
915
Stephen Rothwell62e877b82010-03-01 20:38:36 +1100916 sysfs_bin_attr_init(b->legacy_io);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000917 b->legacy_io->attr.name = "legacy_io";
918 b->legacy_io->size = 0xffff;
919 b->legacy_io->attr.mode = S_IRUSR | S_IWUSR;
920 b->legacy_io->read = pci_read_legacy_io;
921 b->legacy_io->write = pci_write_legacy_io;
922 b->legacy_io->mmap = pci_mmap_legacy_io;
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +0300923 pci_adjust_legacy_attr(b, pci_mmap_io);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000924 error = device_create_bin_file(&b->dev, b->legacy_io);
925 if (error)
926 goto legacy_io_err;
927
928 /* Allocated above after the legacy_io struct */
929 b->legacy_mem = b->legacy_io + 1;
Mel Gorman6757eca32010-03-10 22:48:34 +0000930 sysfs_bin_attr_init(b->legacy_mem);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000931 b->legacy_mem->attr.name = "legacy_mem";
932 b->legacy_mem->size = 1024*1024;
933 b->legacy_mem->attr.mode = S_IRUSR | S_IWUSR;
934 b->legacy_mem->mmap = pci_mmap_legacy_mem;
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +0300935 pci_adjust_legacy_attr(b, pci_mmap_mem);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000936 error = device_create_bin_file(&b->dev, b->legacy_mem);
937 if (error)
938 goto legacy_mem_err;
939
940 return;
941
942legacy_mem_err:
943 device_remove_bin_file(&b->dev, b->legacy_io);
944legacy_io_err:
945 kfree(b->legacy_io);
946 b->legacy_io = NULL;
947kzalloc_err:
Ryan Desfosses227f0642014-04-18 20:13:50 -0400948 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 +1000949 return;
950}
951
952void pci_remove_legacy_files(struct pci_bus *b)
953{
954 if (b->legacy_io) {
955 device_remove_bin_file(&b->dev, b->legacy_io);
956 device_remove_bin_file(&b->dev, b->legacy_mem);
957 kfree(b->legacy_io); /* both are allocated here */
958 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959}
960#endif /* HAVE_PCI_LEGACY */
961
962#ifdef HAVE_PCI_MMAP
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -0700963
Martin Wilck3b519e42010-11-10 11:03:21 +0100964int pci_mmap_fits(struct pci_dev *pdev, int resno, struct vm_area_struct *vma,
965 enum pci_mmap_api mmap_api)
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -0700966{
Martin Wilck3b519e42010-11-10 11:03:21 +0100967 unsigned long nr, start, size, pci_start;
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -0700968
Martin Wilck3b519e42010-11-10 11:03:21 +0100969 if (pci_resource_len(pdev, resno) == 0)
970 return 0;
Libin64b00172013-04-15 02:48:54 +0000971 nr = vma_pages(vma);
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -0700972 start = vma->vm_pgoff;
Ed Swierk88e7df02008-11-03 14:41:16 -0800973 size = ((pci_resource_len(pdev, resno) - 1) >> PAGE_SHIFT) + 1;
Darrick J. Wong8c05cd02010-11-16 09:13:41 -0800974 pci_start = (mmap_api == PCI_MMAP_PROCFS) ?
Martin Wilck3b519e42010-11-10 11:03:21 +0100975 pci_resource_start(pdev, resno) >> PAGE_SHIFT : 0;
976 if (start >= pci_start && start < pci_start + size &&
977 start + nr <= pci_start + size)
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -0700978 return 1;
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -0700979 return 0;
980}
981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982/**
983 * pci_mmap_resource - map a PCI resource into user memory space
984 * @kobj: kobject for mapping
985 * @attr: struct bin_attribute for the file being mapped
986 * @vma: struct vm_area_struct passed into the mmap
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -0700987 * @write_combine: 1 for write_combine mapping
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 *
989 * Use the regular PCI mapping routines to map a PCI resource into userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400991static int pci_mmap_resource(struct kobject *kobj, struct bin_attribute *attr,
992 struct vm_area_struct *vma, int write_combine)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
994 struct pci_dev *pdev = to_pci_dev(container_of(kobj,
995 struct device, kobj));
Kulikov Vasiliya3f58352010-06-29 14:15:28 +0400996 struct resource *res = attr->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 enum pci_mmap_state mmap_type;
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700998 resource_size_t start, end;
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000999 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001001 for (i = 0; i < PCI_ROM_RESOURCE; i++)
1002 if (res == &pdev->resource[i])
1003 break;
1004 if (i >= PCI_ROM_RESOURCE)
1005 return -ENODEV;
1006
Martin Wilck3b519e42010-11-10 11:03:21 +01001007 if (!pci_mmap_fits(pdev, i, vma, PCI_MMAP_SYSFS)) {
Ryan Desfosses227f0642014-04-18 20:13:50 -04001008 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 +01001009 current->comm, vma->vm_end-vma->vm_start, vma->vm_pgoff,
1010 pci_name(pdev), i,
Randy Dunlape25cd062010-11-13 08:44:33 -08001011 (u64)pci_resource_start(pdev, i),
1012 (u64)pci_resource_len(pdev, i));
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -07001013 return -EINVAL;
Martin Wilck3b519e42010-11-10 11:03:21 +01001014 }
Linus Torvaldsb5ff7df2008-10-02 18:52:51 -07001015
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001016 /* pci_mmap_page_range() expects the same kind of entry as coming
1017 * from /proc/bus/pci/ which is a "user visible" value. If this is
1018 * different from the resource itself, arch will do necessary fixup.
1019 */
1020 pci_resource_to_user(pdev, i, res, &start, &end);
1021 vma->vm_pgoff += start >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 mmap_type = res->flags & IORESOURCE_MEM ? pci_mmap_mem : pci_mmap_io;
1023
Arjan van de Vene8de1482008-10-22 19:55:31 -07001024 if (res->flags & IORESOURCE_MEM && iomem_is_exclusive(start))
1025 return -EINVAL;
1026
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001027 return pci_mmap_page_range(pdev, vma, mmap_type, write_combine);
1028}
1029
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001030static int pci_mmap_resource_uc(struct file *filp, struct kobject *kobj,
1031 struct bin_attribute *attr,
1032 struct vm_area_struct *vma)
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001033{
1034 return pci_mmap_resource(kobj, attr, vma, 0);
1035}
1036
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001037static int pci_mmap_resource_wc(struct file *filp, struct kobject *kobj,
1038 struct bin_attribute *attr,
1039 struct vm_area_struct *vma)
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001040{
1041 return pci_mmap_resource(kobj, attr, vma, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042}
1043
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001044static ssize_t pci_resource_io(struct file *filp, struct kobject *kobj,
1045 struct bin_attribute *attr, char *buf,
1046 loff_t off, size_t count, bool write)
Alex Williamson86333282010-07-19 09:45:34 -06001047{
1048 struct pci_dev *pdev = to_pci_dev(container_of(kobj,
1049 struct device, kobj));
1050 struct resource *res = attr->private;
1051 unsigned long port = off;
1052 int i;
1053
1054 for (i = 0; i < PCI_ROM_RESOURCE; i++)
1055 if (res == &pdev->resource[i])
1056 break;
1057 if (i >= PCI_ROM_RESOURCE)
1058 return -ENODEV;
1059
1060 port += pci_resource_start(pdev, i);
1061
1062 if (port > pci_resource_end(pdev, i))
1063 return 0;
1064
1065 if (port + count - 1 > pci_resource_end(pdev, i))
1066 return -EINVAL;
1067
1068 switch (count) {
1069 case 1:
1070 if (write)
1071 outb(*(u8 *)buf, port);
1072 else
1073 *(u8 *)buf = inb(port);
1074 return 1;
1075 case 2:
1076 if (write)
1077 outw(*(u16 *)buf, port);
1078 else
1079 *(u16 *)buf = inw(port);
1080 return 2;
1081 case 4:
1082 if (write)
1083 outl(*(u32 *)buf, port);
1084 else
1085 *(u32 *)buf = inl(port);
1086 return 4;
1087 }
1088 return -EINVAL;
1089}
1090
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001091static ssize_t pci_read_resource_io(struct file *filp, struct kobject *kobj,
1092 struct bin_attribute *attr, char *buf,
1093 loff_t off, size_t count)
Alex Williamson86333282010-07-19 09:45:34 -06001094{
1095 return pci_resource_io(filp, kobj, attr, buf, off, count, false);
1096}
1097
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001098static ssize_t pci_write_resource_io(struct file *filp, struct kobject *kobj,
1099 struct bin_attribute *attr, char *buf,
1100 loff_t off, size_t count)
Alex Williamson86333282010-07-19 09:45:34 -06001101{
1102 return pci_resource_io(filp, kobj, attr, buf, off, count, true);
1103}
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105/**
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001106 * pci_remove_resource_files - cleanup resource files
Randy Dunlapcffb2fa2009-04-10 15:17:50 -07001107 * @pdev: dev to cleanup
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001108 *
Randy Dunlapcffb2fa2009-04-10 15:17:50 -07001109 * If we created resource files for @pdev, remove them from sysfs and
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001110 * free their resources.
1111 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001112static void pci_remove_resource_files(struct pci_dev *pdev)
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001113{
1114 int i;
1115
1116 for (i = 0; i < PCI_ROM_RESOURCE; i++) {
1117 struct bin_attribute *res_attr;
1118
1119 res_attr = pdev->res_attr[i];
1120 if (res_attr) {
1121 sysfs_remove_bin_file(&pdev->dev.kobj, res_attr);
1122 kfree(res_attr);
1123 }
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001124
1125 res_attr = pdev->res_attr_wc[i];
1126 if (res_attr) {
1127 sysfs_remove_bin_file(&pdev->dev.kobj, res_attr);
1128 kfree(res_attr);
1129 }
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001130 }
1131}
1132
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001133static int pci_create_attr(struct pci_dev *pdev, int num, int write_combine)
1134{
1135 /* allocate attribute structure, piggyback attribute name */
1136 int name_len = write_combine ? 13 : 10;
1137 struct bin_attribute *res_attr;
1138 int retval;
1139
1140 res_attr = kzalloc(sizeof(*res_attr) + name_len, GFP_ATOMIC);
1141 if (res_attr) {
1142 char *res_attr_name = (char *)(res_attr + 1);
1143
Eric W. Biedermana07e4152010-02-11 15:23:05 -08001144 sysfs_bin_attr_init(res_attr);
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001145 if (write_combine) {
1146 pdev->res_attr_wc[num] = res_attr;
1147 sprintf(res_attr_name, "resource%d_wc", num);
1148 res_attr->mmap = pci_mmap_resource_wc;
1149 } else {
1150 pdev->res_attr[num] = res_attr;
1151 sprintf(res_attr_name, "resource%d", num);
1152 res_attr->mmap = pci_mmap_resource_uc;
1153 }
Alex Williamson86333282010-07-19 09:45:34 -06001154 if (pci_resource_flags(pdev, num) & IORESOURCE_IO) {
1155 res_attr->read = pci_read_resource_io;
1156 res_attr->write = pci_write_resource_io;
1157 }
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001158 res_attr->attr.name = res_attr_name;
1159 res_attr->attr.mode = S_IRUSR | S_IWUSR;
1160 res_attr->size = pci_resource_len(pdev, num);
1161 res_attr->private = &pdev->resource[num];
1162 retval = sysfs_create_bin_file(&pdev->dev.kobj, res_attr);
1163 } else
1164 retval = -ENOMEM;
1165
1166 return retval;
1167}
1168
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001169/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 * pci_create_resource_files - create resource files in sysfs for @dev
Randy Dunlapcffb2fa2009-04-10 15:17:50 -07001171 * @pdev: dev in question
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 *
Randy Dunlapcffb2fa2009-04-10 15:17:50 -07001173 * Walk the resources in @pdev creating files for each resource available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 */
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001175static int pci_create_resource_files(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
1177 int i;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001178 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
1180 /* Expose the PCI resources from this device as files */
1181 for (i = 0; i < PCI_ROM_RESOURCE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 /* skip empty resources */
1184 if (!pci_resource_len(pdev, i))
1185 continue;
1186
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001187 retval = pci_create_attr(pdev, i, 0);
1188 /* for prefetchable resources, create a WC mappable file */
1189 if (!retval && pdev->resource[i].flags & IORESOURCE_PREFETCH)
1190 retval = pci_create_attr(pdev, i, 1);
Dmitry Torokhovd48593b2005-04-29 00:58:46 -05001191
venkatesh.pallipadi@intel.com45aec1ae2008-03-18 17:00:22 -07001192 if (retval) {
1193 pci_remove_resource_files(pdev);
1194 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 }
1196 }
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001197 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198}
1199#else /* !HAVE_PCI_MMAP */
Ivan Kokshaysky10a0ef32009-02-17 13:46:53 +03001200int __weak pci_create_resource_files(struct pci_dev *dev) { return 0; }
1201void __weak pci_remove_resource_files(struct pci_dev *dev) { return; }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202#endif /* HAVE_PCI_MMAP */
1203
1204/**
1205 * pci_write_rom - used to enable access to the PCI ROM display
Chris Wright2c3c8be2010-05-12 18:28:57 -07001206 * @filp: sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 * @kobj: kernel object handle
Randy Dunlapcffb2fa2009-04-10 15:17:50 -07001208 * @bin_attr: struct bin_attribute for this file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 * @buf: user input
1210 * @off: file offset
1211 * @count: number of byte in input
1212 *
1213 * writing anything except 0 enables it
1214 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001215static ssize_t pci_write_rom(struct file *filp, struct kobject *kobj,
1216 struct bin_attribute *bin_attr, char *buf,
1217 loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
1219 struct pci_dev *pdev = to_pci_dev(container_of(kobj, struct device, kobj));
1220
1221 if ((off == 0) && (*buf == '0') && (count == 2))
1222 pdev->rom_attr_enabled = 0;
1223 else
1224 pdev->rom_attr_enabled = 1;
1225
1226 return count;
1227}
1228
1229/**
1230 * pci_read_rom - read a PCI ROM
Chris Wright2c3c8be2010-05-12 18:28:57 -07001231 * @filp: sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 * @kobj: kernel object handle
Randy Dunlapcffb2fa2009-04-10 15:17:50 -07001233 * @bin_attr: struct bin_attribute for this file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 * @buf: where to put the data we read from the ROM
1235 * @off: file offset
1236 * @count: number of bytes to read
1237 *
1238 * Put @count bytes starting at @off into @buf from the ROM in the PCI
1239 * device corresponding to @kobj.
1240 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001241static ssize_t pci_read_rom(struct file *filp, struct kobject *kobj,
1242 struct bin_attribute *bin_attr, char *buf,
1243 loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
1245 struct pci_dev *pdev = to_pci_dev(container_of(kobj, struct device, kobj));
1246 void __iomem *rom;
1247 size_t size;
1248
1249 if (!pdev->rom_attr_enabled)
1250 return -EINVAL;
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 rom = pci_map_rom(pdev, &size); /* size starts out as PCI window size */
Timothy S. Nelson97c44832009-01-30 06:12:47 +11001253 if (!rom || !size)
1254 return -EIO;
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 if (off >= size)
1257 count = 0;
1258 else {
1259 if (off + count > size)
1260 count = size - off;
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 memcpy_fromio(buf, rom + off, count);
1263 }
1264 pci_unmap_rom(pdev, rom);
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 return count;
1267}
1268
1269static struct bin_attribute pci_config_attr = {
1270 .attr = {
1271 .name = "config",
1272 .mode = S_IRUGO | S_IWUSR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 },
Zhao, Yu557848c2008-10-13 19:18:07 +08001274 .size = PCI_CFG_SPACE_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 .read = pci_read_config,
1276 .write = pci_write_config,
1277};
1278
1279static struct bin_attribute pcie_config_attr = {
1280 .attr = {
1281 .name = "config",
1282 .mode = S_IRUGO | S_IWUSR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 },
Zhao, Yu557848c2008-10-13 19:18:07 +08001284 .size = PCI_CFG_SPACE_EXP_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 .read = pci_read_config,
1286 .write = pci_write_config,
1287};
1288
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001289static ssize_t reset_store(struct device *dev, struct device_attribute *attr,
1290 const char *buf, size_t count)
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001291{
1292 struct pci_dev *pdev = to_pci_dev(dev);
1293 unsigned long val;
Jingoo Han9a994e82013-06-01 16:25:25 +09001294 ssize_t result = kstrtoul(buf, 0, &val);
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001295
1296 if (result < 0)
1297 return result;
1298
1299 if (val != 1)
1300 return -EINVAL;
Michal Schmidt447c5dd2010-05-11 11:44:54 +02001301
1302 result = pci_reset_function(pdev);
1303 if (result < 0)
1304 return result;
1305
1306 return count;
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001307}
1308
1309static struct device_attribute reset_attr = __ATTR(reset, 0200, NULL, reset_store);
1310
Zhao, Yu280c73d2008-10-13 20:01:00 +08001311static int pci_create_capabilities_sysfs(struct pci_dev *dev)
1312{
1313 int retval;
1314 struct bin_attribute *attr;
1315
1316 /* If the device has VPD, try to expose it in sysfs. */
1317 if (dev->vpd) {
1318 attr = kzalloc(sizeof(*attr), GFP_ATOMIC);
1319 if (!attr)
1320 return -ENOMEM;
1321
Eric W. Biedermana07e4152010-02-11 15:23:05 -08001322 sysfs_bin_attr_init(attr);
Zhao, Yu280c73d2008-10-13 20:01:00 +08001323 attr->size = dev->vpd->len;
1324 attr->attr.name = "vpd";
1325 attr->attr.mode = S_IRUSR | S_IWUSR;
Stephen Hemminger287d19c2008-12-18 09:17:16 -08001326 attr->read = read_vpd_attr;
1327 attr->write = write_vpd_attr;
Zhao, Yu280c73d2008-10-13 20:01:00 +08001328 retval = sysfs_create_bin_file(&dev->dev.kobj, attr);
1329 if (retval) {
Ben Hutchings0f12a4e2011-01-13 19:47:56 +00001330 kfree(attr);
Zhao, Yu280c73d2008-10-13 20:01:00 +08001331 return retval;
1332 }
1333 dev->vpd->attr = attr;
1334 }
1335
1336 /* Active State Power Management */
1337 pcie_aspm_create_sysfs_dev_files(dev);
1338
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001339 if (!pci_probe_reset_function(dev)) {
1340 retval = device_create_file(&dev->dev, &reset_attr);
1341 if (retval)
1342 goto error;
1343 dev->reset_fn = 1;
1344 }
Zhao, Yu280c73d2008-10-13 20:01:00 +08001345 return 0;
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001346
1347error:
1348 pcie_aspm_remove_sysfs_dev_files(dev);
1349 if (dev->vpd && dev->vpd->attr) {
1350 sysfs_remove_bin_file(&dev->dev.kobj, dev->vpd->attr);
1351 kfree(dev->vpd->attr);
1352 }
1353
1354 return retval;
Zhao, Yu280c73d2008-10-13 20:01:00 +08001355}
1356
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001357int __must_check pci_create_sysfs_dev_files(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001359 int retval;
Zhao, Yu280c73d2008-10-13 20:01:00 +08001360 int rom_size = 0;
1361 struct bin_attribute *attr;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 if (!sysfs_initialized)
1364 return -EACCES;
1365
Zhao, Yu557848c2008-10-13 19:18:07 +08001366 if (pdev->cfg_size < PCI_CFG_SPACE_EXP_SIZE)
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001367 retval = sysfs_create_bin_file(&pdev->dev.kobj, &pci_config_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 else
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001369 retval = sysfs_create_bin_file(&pdev->dev.kobj, &pcie_config_attr);
1370 if (retval)
1371 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001373 retval = pci_create_resource_files(pdev);
1374 if (retval)
Zhao, Yu280c73d2008-10-13 20:01:00 +08001375 goto err_config_file;
1376
1377 if (pci_resource_len(pdev, PCI_ROM_RESOURCE))
1378 rom_size = pci_resource_len(pdev, PCI_ROM_RESOURCE);
1379 else if (pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW)
1380 rom_size = 0x20000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
1382 /* If the device has a ROM, try to expose it in sysfs. */
Zhao, Yu280c73d2008-10-13 20:01:00 +08001383 if (rom_size) {
Ben Hutchings94e61082008-03-05 16:52:39 +00001384 attr = kzalloc(sizeof(*attr), GFP_ATOMIC);
Zhao, Yu280c73d2008-10-13 20:01:00 +08001385 if (!attr) {
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001386 retval = -ENOMEM;
Michael Ellerman9890b122007-04-18 13:34:12 +10001387 goto err_resource_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 }
Eric W. Biedermana07e4152010-02-11 15:23:05 -08001389 sysfs_bin_attr_init(attr);
Zhao, Yu280c73d2008-10-13 20:01:00 +08001390 attr->size = rom_size;
1391 attr->attr.name = "rom";
Alex Williamsonff295302011-01-05 10:26:41 -07001392 attr->attr.mode = S_IRUSR | S_IWUSR;
Zhao, Yu280c73d2008-10-13 20:01:00 +08001393 attr->read = pci_read_rom;
1394 attr->write = pci_write_rom;
1395 retval = sysfs_create_bin_file(&pdev->dev.kobj, attr);
1396 if (retval) {
1397 kfree(attr);
1398 goto err_resource_files;
1399 }
1400 pdev->rom_attr = attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
Zhao, Yu280c73d2008-10-13 20:01:00 +08001402
Zhao, Yu280c73d2008-10-13 20:01:00 +08001403 /* add sysfs entries for various capabilities */
1404 retval = pci_create_capabilities_sysfs(pdev);
1405 if (retval)
Yinghai Lu625e1d52012-11-05 15:20:35 -05001406 goto err_rom_file;
Shaohua Li7d715a62008-02-25 09:46:41 +08001407
Narendra K911e1c92010-07-26 05:56:50 -05001408 pci_create_firmware_label_files(pdev);
1409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 return 0;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001411
Michael Ellermana2cd52c2007-05-08 12:03:08 +10001412err_rom_file:
Zhao, Yu280c73d2008-10-13 20:01:00 +08001413 if (rom_size) {
Ben Hutchings94e61082008-03-05 16:52:39 +00001414 sysfs_remove_bin_file(&pdev->dev.kobj, pdev->rom_attr);
Zhao, Yu280c73d2008-10-13 20:01:00 +08001415 kfree(pdev->rom_attr);
1416 pdev->rom_attr = NULL;
1417 }
Michael Ellerman9890b122007-04-18 13:34:12 +10001418err_resource_files:
1419 pci_remove_resource_files(pdev);
Ben Hutchings94e61082008-03-05 16:52:39 +00001420err_config_file:
Zhao, Yu557848c2008-10-13 19:18:07 +08001421 if (pdev->cfg_size < PCI_CFG_SPACE_EXP_SIZE)
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001422 sysfs_remove_bin_file(&pdev->dev.kobj, &pci_config_attr);
1423 else
1424 sysfs_remove_bin_file(&pdev->dev.kobj, &pcie_config_attr);
1425err:
1426 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427}
1428
Zhao, Yu280c73d2008-10-13 20:01:00 +08001429static void pci_remove_capabilities_sysfs(struct pci_dev *dev)
1430{
1431 if (dev->vpd && dev->vpd->attr) {
1432 sysfs_remove_bin_file(&dev->dev.kobj, dev->vpd->attr);
1433 kfree(dev->vpd->attr);
1434 }
1435
1436 pcie_aspm_remove_sysfs_dev_files(dev);
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03001437 if (dev->reset_fn) {
1438 device_remove_file(&dev->dev, &reset_attr);
1439 dev->reset_fn = 0;
1440 }
Zhao, Yu280c73d2008-10-13 20:01:00 +08001441}
1442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443/**
1444 * pci_remove_sysfs_dev_files - cleanup PCI specific sysfs files
1445 * @pdev: device whose entries we should free
1446 *
1447 * Cleanup when @pdev is removed from sysfs.
1448 */
1449void pci_remove_sysfs_dev_files(struct pci_dev *pdev)
1450{
Zhao, Yu280c73d2008-10-13 20:01:00 +08001451 int rom_size = 0;
1452
David Millerd67afe52006-11-10 12:27:48 -08001453 if (!sysfs_initialized)
1454 return;
1455
Zhao, Yu280c73d2008-10-13 20:01:00 +08001456 pci_remove_capabilities_sysfs(pdev);
Shaohua Li7d715a62008-02-25 09:46:41 +08001457
Zhao, Yu557848c2008-10-13 19:18:07 +08001458 if (pdev->cfg_size < PCI_CFG_SPACE_EXP_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 sysfs_remove_bin_file(&pdev->dev.kobj, &pci_config_attr);
1460 else
1461 sysfs_remove_bin_file(&pdev->dev.kobj, &pcie_config_attr);
1462
1463 pci_remove_resource_files(pdev);
1464
Zhao, Yu280c73d2008-10-13 20:01:00 +08001465 if (pci_resource_len(pdev, PCI_ROM_RESOURCE))
1466 rom_size = pci_resource_len(pdev, PCI_ROM_RESOURCE);
1467 else if (pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW)
1468 rom_size = 0x20000;
1469
1470 if (rom_size && pdev->rom_attr) {
1471 sysfs_remove_bin_file(&pdev->dev.kobj, pdev->rom_attr);
1472 kfree(pdev->rom_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 }
Narendra K911e1c92010-07-26 05:56:50 -05001474
1475 pci_remove_firmware_label_files(pdev);
1476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477}
1478
1479static int __init pci_sysfs_init(void)
1480{
1481 struct pci_dev *pdev = NULL;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001482 int retval;
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 sysfs_initialized = 1;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001485 for_each_pci_dev(pdev) {
1486 retval = pci_create_sysfs_dev_files(pdev);
Julia Lawall151fc5d2007-11-20 08:41:16 +01001487 if (retval) {
1488 pci_dev_put(pdev);
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001489 return retval;
Julia Lawall151fc5d2007-11-20 08:41:16 +01001490 }
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -07001491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
1493 return 0;
1494}
Jesse Barnes40ee9e92007-03-24 11:03:32 -07001495late_initcall(pci_sysfs_init);
Yinghai Lu4e15c462012-11-05 15:20:34 -05001496
1497static struct attribute *pci_dev_dev_attrs[] = {
Yinghai Lu625e1d52012-11-05 15:20:35 -05001498 &vga_attr.attr,
Yinghai Lu4e15c462012-11-05 15:20:34 -05001499 NULL,
1500};
1501
1502static umode_t pci_dev_attrs_are_visible(struct kobject *kobj,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001503 struct attribute *a, int n)
Yinghai Lu4e15c462012-11-05 15:20:34 -05001504{
Yinghai Lu625e1d52012-11-05 15:20:35 -05001505 struct device *dev = container_of(kobj, struct device, kobj);
1506 struct pci_dev *pdev = to_pci_dev(dev);
1507
1508 if (a == &vga_attr.attr)
1509 if ((pdev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
1510 return 0;
1511
Yinghai Lu4e15c462012-11-05 15:20:34 -05001512 return a->mode;
1513}
1514
Jiang Liudfab88b2013-05-31 12:21:31 +08001515static struct attribute *pci_dev_hp_attrs[] = {
1516 &dev_remove_attr.attr,
1517 &dev_rescan_attr.attr,
1518 NULL,
1519};
1520
1521static umode_t pci_dev_hp_attrs_are_visible(struct kobject *kobj,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001522 struct attribute *a, int n)
Jiang Liudfab88b2013-05-31 12:21:31 +08001523{
1524 struct device *dev = container_of(kobj, struct device, kobj);
1525 struct pci_dev *pdev = to_pci_dev(dev);
1526
1527 if (pdev->is_virtfn)
1528 return 0;
1529
1530 return a->mode;
1531}
1532
1533static struct attribute_group pci_dev_hp_attr_group = {
1534 .attrs = pci_dev_hp_attrs,
1535 .is_visible = pci_dev_hp_attrs_are_visible,
1536};
1537
Donald Dutile17893822012-11-05 15:20:36 -05001538#ifdef CONFIG_PCI_IOV
1539static struct attribute *sriov_dev_attrs[] = {
1540 &sriov_totalvfs_attr.attr,
1541 &sriov_numvfs_attr.attr,
1542 NULL,
1543};
1544
1545static umode_t sriov_attrs_are_visible(struct kobject *kobj,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001546 struct attribute *a, int n)
Donald Dutile17893822012-11-05 15:20:36 -05001547{
1548 struct device *dev = container_of(kobj, struct device, kobj);
1549
1550 if (!dev_is_pf(dev))
1551 return 0;
1552
1553 return a->mode;
1554}
1555
1556static struct attribute_group sriov_dev_attr_group = {
1557 .attrs = sriov_dev_attrs,
1558 .is_visible = sriov_attrs_are_visible,
1559};
1560#endif /* CONFIG_PCI_IOV */
1561
Yinghai Lu4e15c462012-11-05 15:20:34 -05001562static struct attribute_group pci_dev_attr_group = {
1563 .attrs = pci_dev_dev_attrs,
1564 .is_visible = pci_dev_attrs_are_visible,
1565};
1566
1567static const struct attribute_group *pci_dev_attr_groups[] = {
1568 &pci_dev_attr_group,
Jiang Liudfab88b2013-05-31 12:21:31 +08001569 &pci_dev_hp_attr_group,
Donald Dutile17893822012-11-05 15:20:36 -05001570#ifdef CONFIG_PCI_IOV
1571 &sriov_dev_attr_group,
1572#endif
Yinghai Lu4e15c462012-11-05 15:20:34 -05001573 NULL,
1574};
1575
1576struct device_type pci_dev_type = {
1577 .groups = pci_dev_attr_groups,
1578};