Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * (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 Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 12 | * Modeled after usb's driverfs.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/kernel.h> |
Linus Torvalds | b5ff7df | 2008-10-02 18:52:51 -0700 | [diff] [blame] | 17 | #include <linux/sched.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/pci.h> |
| 19 | #include <linux/stat.h> |
Paul Gortmaker | 363c75d | 2011-05-27 09:37:25 -0400 | [diff] [blame] | 20 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/topology.h> |
| 22 | #include <linux/mm.h> |
Chris Wright | de139a3 | 2010-05-13 10:43:07 -0700 | [diff] [blame] | 23 | #include <linux/fs.h> |
Alexey Dobriyan | aa0ac36 | 2007-07-15 23:40:39 -0700 | [diff] [blame] | 24 | #include <linux/capability.h> |
Chris Wright | a628e7b | 2011-02-14 17:21:49 -0800 | [diff] [blame] | 25 | #include <linux/security.h> |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 26 | #include <linux/pci-aspm.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 27 | #include <linux/slab.h> |
Matthew Garrett | 1a39b31 | 2012-04-16 16:26:02 -0400 | [diff] [blame] | 28 | #include <linux/vgaarb.h> |
Huang Ying | 448bd85 | 2012-06-23 10:23:51 +0800 | [diff] [blame] | 29 | #include <linux/pm_runtime.h> |
Sebastian Ott | dfc73e7 | 2014-04-17 19:46:15 +0200 | [diff] [blame] | 30 | #include <linux/of.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include "pci.h" |
| 32 | |
| 33 | static int sysfs_initialized; /* = 0 */ |
| 34 | |
| 35 | /* show configuration fields */ |
| 36 | #define pci_config_attr(field, format_string) \ |
| 37 | static ssize_t \ |
Yani Ioannou | e404e27 | 2005-05-17 06:42:58 -0400 | [diff] [blame] | 38 | field##_show(struct device *dev, struct device_attribute *attr, char *buf) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | { \ |
| 40 | struct pci_dev *pdev; \ |
| 41 | \ |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 42 | pdev = to_pci_dev(dev); \ |
| 43 | return sprintf(buf, format_string, pdev->field); \ |
Greg Kroah-Hartman | 5136b2d | 2013-10-06 23:55:40 -0700 | [diff] [blame] | 44 | } \ |
| 45 | static DEVICE_ATTR_RO(field) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
| 47 | pci_config_attr(vendor, "0x%04x\n"); |
| 48 | pci_config_attr(device, "0x%04x\n"); |
| 49 | pci_config_attr(subsystem_vendor, "0x%04x\n"); |
| 50 | pci_config_attr(subsystem_device, "0x%04x\n"); |
Emil Velikov | 702ed3b | 2016-11-21 16:24:49 -0600 | [diff] [blame] | 51 | pci_config_attr(revision, "0x%02x\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | pci_config_attr(class, "0x%06x\n"); |
| 53 | pci_config_attr(irq, "%u\n"); |
| 54 | |
Doug Thompson | bdee9d9 | 2006-06-14 16:59:48 -0700 | [diff] [blame] | 55 | static ssize_t broken_parity_status_show(struct device *dev, |
| 56 | struct device_attribute *attr, |
| 57 | char *buf) |
| 58 | { |
| 59 | struct pci_dev *pdev = to_pci_dev(dev); |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 60 | return sprintf(buf, "%u\n", pdev->broken_parity_status); |
Doug Thompson | bdee9d9 | 2006-06-14 16:59:48 -0700 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | static ssize_t broken_parity_status_store(struct device *dev, |
| 64 | struct device_attribute *attr, |
| 65 | const char *buf, size_t count) |
| 66 | { |
| 67 | struct pci_dev *pdev = to_pci_dev(dev); |
Trent Piepho | 92425a4 | 2008-11-30 17:10:12 -0800 | [diff] [blame] | 68 | unsigned long val; |
Doug Thompson | bdee9d9 | 2006-06-14 16:59:48 -0700 | [diff] [blame] | 69 | |
Jingoo Han | 9a994e8 | 2013-06-01 16:25:25 +0900 | [diff] [blame] | 70 | if (kstrtoul(buf, 0, &val) < 0) |
Trent Piepho | 92425a4 | 2008-11-30 17:10:12 -0800 | [diff] [blame] | 71 | return -EINVAL; |
| 72 | |
| 73 | pdev->broken_parity_status = !!val; |
| 74 | |
| 75 | return count; |
Doug Thompson | bdee9d9 | 2006-06-14 16:59:48 -0700 | [diff] [blame] | 76 | } |
Greg Kroah-Hartman | 5136b2d | 2013-10-06 23:55:40 -0700 | [diff] [blame] | 77 | static DEVICE_ATTR_RW(broken_parity_status); |
Doug Thompson | bdee9d9 | 2006-06-14 16:59:48 -0700 | [diff] [blame] | 78 | |
Sudeep Holla | 5aaba36 | 2014-09-30 14:48:22 +0100 | [diff] [blame] | 79 | static ssize_t pci_dev_show_local_cpu(struct device *dev, bool list, |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 80 | struct device_attribute *attr, char *buf) |
Mike Travis | 39106dc | 2008-04-08 11:43:03 -0700 | [diff] [blame] | 81 | { |
Mike Travis | 3be8305 | 2009-01-04 05:18:01 -0800 | [diff] [blame] | 82 | const struct cpumask *mask; |
Mike Travis | 39106dc | 2008-04-08 11:43:03 -0700 | [diff] [blame] | 83 | |
Andreas Herrmann | e0cd516 | 2009-04-17 12:01:55 +0200 | [diff] [blame] | 84 | #ifdef CONFIG_NUMA |
David John | 6be954d | 2010-01-04 20:28:57 +0530 | [diff] [blame] | 85 | mask = (dev_to_node(dev) == -1) ? cpu_online_mask : |
| 86 | cpumask_of_node(dev_to_node(dev)); |
Andreas Herrmann | e0cd516 | 2009-04-17 12:01:55 +0200 | [diff] [blame] | 87 | #else |
Mike Travis | 3be8305 | 2009-01-04 05:18:01 -0800 | [diff] [blame] | 88 | mask = cpumask_of_pcibus(to_pci_dev(dev)->bus); |
Andreas Herrmann | e0cd516 | 2009-04-17 12:01:55 +0200 | [diff] [blame] | 89 | #endif |
Sudeep Holla | 5aaba36 | 2014-09-30 14:48:22 +0100 | [diff] [blame] | 90 | return cpumap_print_to_pagebuf(list, buf, mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | } |
| 92 | |
Yijing Wang | c489f5f | 2013-09-30 15:02:38 +0800 | [diff] [blame] | 93 | static ssize_t local_cpus_show(struct device *dev, |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 94 | struct device_attribute *attr, char *buf) |
Yijing Wang | c489f5f | 2013-09-30 15:02:38 +0800 | [diff] [blame] | 95 | { |
Sudeep Holla | 5aaba36 | 2014-09-30 14:48:22 +0100 | [diff] [blame] | 96 | return pci_dev_show_local_cpu(dev, false, attr, buf); |
Yijing Wang | c489f5f | 2013-09-30 15:02:38 +0800 | [diff] [blame] | 97 | } |
Bjorn Helgaas | 33de1b8 | 2013-10-31 14:12:40 -0600 | [diff] [blame] | 98 | static DEVICE_ATTR_RO(local_cpus); |
Yijing Wang | c489f5f | 2013-09-30 15:02:38 +0800 | [diff] [blame] | 99 | |
| 100 | static ssize_t local_cpulist_show(struct device *dev, |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 101 | struct device_attribute *attr, char *buf) |
Yijing Wang | c489f5f | 2013-09-30 15:02:38 +0800 | [diff] [blame] | 102 | { |
Sudeep Holla | 5aaba36 | 2014-09-30 14:48:22 +0100 | [diff] [blame] | 103 | return pci_dev_show_local_cpu(dev, true, attr, buf); |
Yijing Wang | c489f5f | 2013-09-30 15:02:38 +0800 | [diff] [blame] | 104 | } |
Greg Kroah-Hartman | 5136b2d | 2013-10-06 23:55:40 -0700 | [diff] [blame] | 105 | static DEVICE_ATTR_RO(local_cpulist); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
Yinghai Lu | dc2c2c9 | 2011-05-12 17:11:40 -0700 | [diff] [blame] | 107 | /* |
| 108 | * PCI Bus Class Devices |
| 109 | */ |
Greg Kroah-Hartman | 56039e6 | 2013-07-24 15:05:17 -0700 | [diff] [blame] | 110 | static ssize_t cpuaffinity_show(struct device *dev, |
| 111 | struct device_attribute *attr, char *buf) |
Yinghai Lu | dc2c2c9 | 2011-05-12 17:11:40 -0700 | [diff] [blame] | 112 | { |
Sudeep Holla | 5aaba36 | 2014-09-30 14:48:22 +0100 | [diff] [blame] | 113 | const struct cpumask *cpumask = cpumask_of_pcibus(to_pci_bus(dev)); |
| 114 | |
| 115 | return cpumap_print_to_pagebuf(false, buf, cpumask); |
Yinghai Lu | dc2c2c9 | 2011-05-12 17:11:40 -0700 | [diff] [blame] | 116 | } |
Greg Kroah-Hartman | 56039e6 | 2013-07-24 15:05:17 -0700 | [diff] [blame] | 117 | static DEVICE_ATTR_RO(cpuaffinity); |
Yinghai Lu | dc2c2c9 | 2011-05-12 17:11:40 -0700 | [diff] [blame] | 118 | |
Greg Kroah-Hartman | 56039e6 | 2013-07-24 15:05:17 -0700 | [diff] [blame] | 119 | static ssize_t cpulistaffinity_show(struct device *dev, |
| 120 | struct device_attribute *attr, char *buf) |
Yinghai Lu | dc2c2c9 | 2011-05-12 17:11:40 -0700 | [diff] [blame] | 121 | { |
Sudeep Holla | 5aaba36 | 2014-09-30 14:48:22 +0100 | [diff] [blame] | 122 | const struct cpumask *cpumask = cpumask_of_pcibus(to_pci_bus(dev)); |
| 123 | |
| 124 | return cpumap_print_to_pagebuf(true, buf, cpumask); |
Yinghai Lu | dc2c2c9 | 2011-05-12 17:11:40 -0700 | [diff] [blame] | 125 | } |
Greg Kroah-Hartman | 56039e6 | 2013-07-24 15:05:17 -0700 | [diff] [blame] | 126 | static DEVICE_ATTR_RO(cpulistaffinity); |
Yinghai Lu | dc2c2c9 | 2011-05-12 17:11:40 -0700 | [diff] [blame] | 127 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | /* show resources */ |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 129 | static ssize_t resource_show(struct device *dev, struct device_attribute *attr, |
| 130 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | { |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 132 | struct pci_dev *pci_dev = to_pci_dev(dev); |
| 133 | char *str = buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | int i; |
Yu Zhao | fde09c6 | 2008-11-22 02:39:32 +0800 | [diff] [blame] | 135 | int max; |
Greg Kroah-Hartman | e31dd6e | 2006-06-12 17:06:02 -0700 | [diff] [blame] | 136 | resource_size_t start, end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
| 138 | if (pci_dev->subordinate) |
| 139 | max = DEVICE_COUNT_RESOURCE; |
Yu Zhao | fde09c6 | 2008-11-22 02:39:32 +0800 | [diff] [blame] | 140 | else |
| 141 | max = PCI_BRIDGE_RESOURCES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
| 143 | for (i = 0; i < max; i++) { |
Michael Ellerman | 2311b1f | 2005-05-13 17:44:10 +1000 | [diff] [blame] | 144 | struct resource *res = &pci_dev->resource[i]; |
| 145 | pci_resource_to_user(pci_dev, i, res, &start, &end); |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 146 | str += sprintf(str, "0x%016llx 0x%016llx 0x%016llx\n", |
Michael Ellerman | 2311b1f | 2005-05-13 17:44:10 +1000 | [diff] [blame] | 147 | (unsigned long long)start, |
| 148 | (unsigned long long)end, |
| 149 | (unsigned long long)res->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | } |
| 151 | return (str - buf); |
| 152 | } |
Greg Kroah-Hartman | 5136b2d | 2013-10-06 23:55:40 -0700 | [diff] [blame] | 153 | static DEVICE_ATTR_RO(resource); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
Wong Vee Khee | 56c1af4 | 2017-06-01 17:43:06 +0800 | [diff] [blame] | 155 | static ssize_t max_link_speed_show(struct device *dev, |
| 156 | struct device_attribute *attr, char *buf) |
| 157 | { |
Tal Gilboa | 6cf57be | 2018-03-30 07:44:05 -0500 | [diff] [blame] | 158 | struct pci_dev *pdev = to_pci_dev(dev); |
Wong Vee Khee | 56c1af4 | 2017-06-01 17:43:06 +0800 | [diff] [blame] | 159 | |
Tal Gilboa | 6cf57be | 2018-03-30 07:44:05 -0500 | [diff] [blame] | 160 | return sprintf(buf, "%s\n", PCIE_SPEED2STR(pcie_get_speed_cap(pdev))); |
Wong Vee Khee | 56c1af4 | 2017-06-01 17:43:06 +0800 | [diff] [blame] | 161 | } |
| 162 | static DEVICE_ATTR_RO(max_link_speed); |
| 163 | |
| 164 | static ssize_t max_link_width_show(struct device *dev, |
| 165 | struct device_attribute *attr, char *buf) |
| 166 | { |
Tal Gilboa | c70b65f | 2018-03-30 08:24:36 -0500 | [diff] [blame] | 167 | struct pci_dev *pdev = to_pci_dev(dev); |
Wong Vee Khee | 56c1af4 | 2017-06-01 17:43:06 +0800 | [diff] [blame] | 168 | |
Tal Gilboa | c70b65f | 2018-03-30 08:24:36 -0500 | [diff] [blame] | 169 | return sprintf(buf, "%u\n", pcie_get_width_cap(pdev)); |
Wong Vee Khee | 56c1af4 | 2017-06-01 17:43:06 +0800 | [diff] [blame] | 170 | } |
| 171 | static DEVICE_ATTR_RO(max_link_width); |
| 172 | |
| 173 | static ssize_t current_link_speed_show(struct device *dev, |
| 174 | struct device_attribute *attr, char *buf) |
| 175 | { |
| 176 | struct pci_dev *pci_dev = to_pci_dev(dev); |
| 177 | u16 linkstat; |
| 178 | int err; |
| 179 | const char *speed; |
| 180 | |
| 181 | err = pcie_capability_read_word(pci_dev, PCI_EXP_LNKSTA, &linkstat); |
| 182 | if (err) |
| 183 | return -EINVAL; |
| 184 | |
| 185 | switch (linkstat & PCI_EXP_LNKSTA_CLS) { |
Jay Fang | 1acfb9b | 2018-03-12 17:13:32 +0800 | [diff] [blame] | 186 | case PCI_EXP_LNKSTA_CLS_16_0GB: |
| 187 | speed = "16 GT/s"; |
| 188 | break; |
Wong Vee Khee | 56c1af4 | 2017-06-01 17:43:06 +0800 | [diff] [blame] | 189 | case PCI_EXP_LNKSTA_CLS_8_0GB: |
| 190 | speed = "8 GT/s"; |
| 191 | break; |
| 192 | case PCI_EXP_LNKSTA_CLS_5_0GB: |
| 193 | speed = "5 GT/s"; |
| 194 | break; |
| 195 | case PCI_EXP_LNKSTA_CLS_2_5GB: |
| 196 | speed = "2.5 GT/s"; |
| 197 | break; |
| 198 | default: |
| 199 | speed = "Unknown speed"; |
| 200 | } |
| 201 | |
| 202 | return sprintf(buf, "%s\n", speed); |
| 203 | } |
| 204 | static DEVICE_ATTR_RO(current_link_speed); |
| 205 | |
| 206 | static ssize_t current_link_width_show(struct device *dev, |
| 207 | struct device_attribute *attr, char *buf) |
| 208 | { |
| 209 | struct pci_dev *pci_dev = to_pci_dev(dev); |
| 210 | u16 linkstat; |
| 211 | int err; |
| 212 | |
| 213 | err = pcie_capability_read_word(pci_dev, PCI_EXP_LNKSTA, &linkstat); |
| 214 | if (err) |
| 215 | return -EINVAL; |
| 216 | |
| 217 | return sprintf(buf, "%u\n", |
| 218 | (linkstat & PCI_EXP_LNKSTA_NLW) >> PCI_EXP_LNKSTA_NLW_SHIFT); |
| 219 | } |
| 220 | static DEVICE_ATTR_RO(current_link_width); |
| 221 | |
| 222 | static ssize_t secondary_bus_number_show(struct device *dev, |
| 223 | struct device_attribute *attr, |
| 224 | char *buf) |
| 225 | { |
| 226 | struct pci_dev *pci_dev = to_pci_dev(dev); |
| 227 | u8 sec_bus; |
| 228 | int err; |
| 229 | |
| 230 | err = pci_read_config_byte(pci_dev, PCI_SECONDARY_BUS, &sec_bus); |
| 231 | if (err) |
| 232 | return -EINVAL; |
| 233 | |
| 234 | return sprintf(buf, "%u\n", sec_bus); |
| 235 | } |
| 236 | static DEVICE_ATTR_RO(secondary_bus_number); |
| 237 | |
| 238 | static ssize_t subordinate_bus_number_show(struct device *dev, |
| 239 | struct device_attribute *attr, |
| 240 | char *buf) |
| 241 | { |
| 242 | struct pci_dev *pci_dev = to_pci_dev(dev); |
| 243 | u8 sub_bus; |
| 244 | int err; |
| 245 | |
| 246 | err = pci_read_config_byte(pci_dev, PCI_SUBORDINATE_BUS, &sub_bus); |
| 247 | if (err) |
| 248 | return -EINVAL; |
| 249 | |
| 250 | return sprintf(buf, "%u\n", sub_bus); |
| 251 | } |
| 252 | static DEVICE_ATTR_RO(subordinate_bus_number); |
| 253 | |
Stuart Hayes | 0077a84 | 2018-01-05 12:51:55 -0600 | [diff] [blame] | 254 | static ssize_t ari_enabled_show(struct device *dev, |
| 255 | struct device_attribute *attr, |
| 256 | char *buf) |
| 257 | { |
| 258 | struct pci_dev *pci_dev = to_pci_dev(dev); |
| 259 | |
| 260 | return sprintf(buf, "%u\n", pci_ari_enabled(pci_dev->bus)); |
| 261 | } |
| 262 | static DEVICE_ATTR_RO(ari_enabled); |
| 263 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 264 | static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, |
| 265 | char *buf) |
Greg KH | 9888549 | 2005-05-05 11:57:25 -0700 | [diff] [blame] | 266 | { |
| 267 | struct pci_dev *pci_dev = to_pci_dev(dev); |
| 268 | |
Ricardo Ribalda Delgado | 89ec3dc | 2014-08-27 14:57:57 +0200 | [diff] [blame] | 269 | return sprintf(buf, "pci:v%08Xd%08Xsv%08Xsd%08Xbc%02Xsc%02Xi%02X\n", |
Greg KH | 9888549 | 2005-05-05 11:57:25 -0700 | [diff] [blame] | 270 | pci_dev->vendor, pci_dev->device, |
| 271 | pci_dev->subsystem_vendor, pci_dev->subsystem_device, |
| 272 | (u8)(pci_dev->class >> 16), (u8)(pci_dev->class >> 8), |
| 273 | (u8)(pci_dev->class)); |
| 274 | } |
Greg Kroah-Hartman | 5136b2d | 2013-10-06 23:55:40 -0700 | [diff] [blame] | 275 | static DEVICE_ATTR_RO(modalias); |
Inaky Perez-Gonzalez | bae94d0 | 2006-11-22 12:40:31 -0800 | [diff] [blame] | 276 | |
Greg Kroah-Hartman | d8e7d53 | 2014-10-30 09:30:28 -0700 | [diff] [blame] | 277 | static ssize_t enable_store(struct device *dev, struct device_attribute *attr, |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 278 | const char *buf, size_t count) |
Arjan van de Ven | 9f125d3 | 2006-04-29 10:59:08 +0200 | [diff] [blame] | 279 | { |
| 280 | struct pci_dev *pdev = to_pci_dev(dev); |
Trent Piepho | 92425a4 | 2008-11-30 17:10:12 -0800 | [diff] [blame] | 281 | unsigned long val; |
Jingoo Han | 9a994e8 | 2013-06-01 16:25:25 +0900 | [diff] [blame] | 282 | ssize_t result = kstrtoul(buf, 0, &val); |
Trent Piepho | 92425a4 | 2008-11-30 17:10:12 -0800 | [diff] [blame] | 283 | |
| 284 | if (result < 0) |
| 285 | return result; |
Arjan van de Ven | 9f125d3 | 2006-04-29 10:59:08 +0200 | [diff] [blame] | 286 | |
| 287 | /* this can crash the machine when done on the "wrong" device */ |
| 288 | if (!capable(CAP_SYS_ADMIN)) |
Trent Piepho | 92425a4 | 2008-11-30 17:10:12 -0800 | [diff] [blame] | 289 | return -EPERM; |
Arjan van de Ven | 9f125d3 | 2006-04-29 10:59:08 +0200 | [diff] [blame] | 290 | |
Christoph Hellwig | 6f5cdfa | 2018-05-18 18:56:24 +0200 | [diff] [blame] | 291 | device_lock(dev); |
| 292 | if (dev->driver) |
| 293 | result = -EBUSY; |
| 294 | else if (val) |
Inaky Perez-Gonzalez | bae94d0 | 2006-11-22 12:40:31 -0800 | [diff] [blame] | 295 | result = pci_enable_device(pdev); |
Christoph Hellwig | 6f5cdfa | 2018-05-18 18:56:24 +0200 | [diff] [blame] | 296 | else if (pci_is_enabled(pdev)) |
| 297 | pci_disable_device(pdev); |
| 298 | else |
| 299 | result = -EIO; |
| 300 | device_unlock(dev); |
Arjan van de Ven | 9f125d3 | 2006-04-29 10:59:08 +0200 | [diff] [blame] | 301 | |
Inaky Perez-Gonzalez | bae94d0 | 2006-11-22 12:40:31 -0800 | [diff] [blame] | 302 | return result < 0 ? result : count; |
| 303 | } |
Arjan van de Ven | 9f125d3 | 2006-04-29 10:59:08 +0200 | [diff] [blame] | 304 | |
Greg Kroah-Hartman | d8e7d53 | 2014-10-30 09:30:28 -0700 | [diff] [blame] | 305 | static ssize_t enable_show(struct device *dev, struct device_attribute *attr, |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 306 | char *buf) |
Inaky Perez-Gonzalez | bae94d0 | 2006-11-22 12:40:31 -0800 | [diff] [blame] | 307 | { |
| 308 | struct pci_dev *pdev; |
| 309 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 310 | pdev = to_pci_dev(dev); |
| 311 | return sprintf(buf, "%u\n", atomic_read(&pdev->enable_cnt)); |
Arjan van de Ven | 9f125d3 | 2006-04-29 10:59:08 +0200 | [diff] [blame] | 312 | } |
Greg Kroah-Hartman | d8e7d53 | 2014-10-30 09:30:28 -0700 | [diff] [blame] | 313 | static DEVICE_ATTR_RW(enable); |
Arjan van de Ven | 9f125d3 | 2006-04-29 10:59:08 +0200 | [diff] [blame] | 314 | |
Brice Goglin | 81bb0e1 | 2007-01-28 10:53:40 +0100 | [diff] [blame] | 315 | #ifdef CONFIG_NUMA |
Prarit Bhargava | 63692df | 2014-10-23 14:22:12 -0400 | [diff] [blame] | 316 | static ssize_t numa_node_store(struct device *dev, |
| 317 | struct device_attribute *attr, const char *buf, |
| 318 | size_t count) |
| 319 | { |
| 320 | struct pci_dev *pdev = to_pci_dev(dev); |
| 321 | int node, ret; |
| 322 | |
| 323 | if (!capable(CAP_SYS_ADMIN)) |
| 324 | return -EPERM; |
| 325 | |
| 326 | ret = kstrtoint(buf, 0, &node); |
| 327 | if (ret) |
| 328 | return ret; |
| 329 | |
Mathias Krause | 3dcc8d3 | 2015-11-09 20:00:27 +0100 | [diff] [blame] | 330 | if ((node < 0 && node != NUMA_NO_NODE) || node >= MAX_NUMNODES) |
| 331 | return -EINVAL; |
| 332 | |
| 333 | if (node != NUMA_NO_NODE && !node_online(node)) |
Prarit Bhargava | 63692df | 2014-10-23 14:22:12 -0400 | [diff] [blame] | 334 | return -EINVAL; |
| 335 | |
| 336 | add_taint(TAINT_FIRMWARE_WORKAROUND, LOCKDEP_STILL_OK); |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 337 | pci_alert(pdev, FW_BUG "Overriding NUMA node to %d. Contact your vendor for updates.", |
Prarit Bhargava | 63692df | 2014-10-23 14:22:12 -0400 | [diff] [blame] | 338 | node); |
| 339 | |
| 340 | dev->numa_node = node; |
| 341 | return count; |
| 342 | } |
| 343 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 344 | static ssize_t numa_node_show(struct device *dev, struct device_attribute *attr, |
| 345 | char *buf) |
Brice Goglin | 81bb0e1 | 2007-01-28 10:53:40 +0100 | [diff] [blame] | 346 | { |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 347 | return sprintf(buf, "%d\n", dev->numa_node); |
Brice Goglin | 81bb0e1 | 2007-01-28 10:53:40 +0100 | [diff] [blame] | 348 | } |
Prarit Bhargava | 63692df | 2014-10-23 14:22:12 -0400 | [diff] [blame] | 349 | static DEVICE_ATTR_RW(numa_node); |
Brice Goglin | 81bb0e1 | 2007-01-28 10:53:40 +0100 | [diff] [blame] | 350 | #endif |
| 351 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 352 | static ssize_t dma_mask_bits_show(struct device *dev, |
| 353 | struct device_attribute *attr, char *buf) |
Yinghai Lu | bb96540 | 2009-11-24 18:21:21 -0800 | [diff] [blame] | 354 | { |
| 355 | struct pci_dev *pdev = to_pci_dev(dev); |
| 356 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 357 | return sprintf(buf, "%d\n", fls64(pdev->dma_mask)); |
Yinghai Lu | bb96540 | 2009-11-24 18:21:21 -0800 | [diff] [blame] | 358 | } |
Greg Kroah-Hartman | 5136b2d | 2013-10-06 23:55:40 -0700 | [diff] [blame] | 359 | static DEVICE_ATTR_RO(dma_mask_bits); |
Yinghai Lu | bb96540 | 2009-11-24 18:21:21 -0800 | [diff] [blame] | 360 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 361 | static ssize_t consistent_dma_mask_bits_show(struct device *dev, |
| 362 | struct device_attribute *attr, |
| 363 | char *buf) |
Yinghai Lu | bb96540 | 2009-11-24 18:21:21 -0800 | [diff] [blame] | 364 | { |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 365 | return sprintf(buf, "%d\n", fls64(dev->coherent_dma_mask)); |
Yinghai Lu | bb96540 | 2009-11-24 18:21:21 -0800 | [diff] [blame] | 366 | } |
Greg Kroah-Hartman | 5136b2d | 2013-10-06 23:55:40 -0700 | [diff] [blame] | 367 | static DEVICE_ATTR_RO(consistent_dma_mask_bits); |
Yinghai Lu | bb96540 | 2009-11-24 18:21:21 -0800 | [diff] [blame] | 368 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 369 | static ssize_t msi_bus_show(struct device *dev, struct device_attribute *attr, |
| 370 | char *buf) |
Brice Goglin | fe97064 | 2006-08-31 01:55:15 -0400 | [diff] [blame] | 371 | { |
| 372 | struct pci_dev *pdev = to_pci_dev(dev); |
Yijing Wang | 468ff15 | 2014-09-23 13:27:24 +0800 | [diff] [blame] | 373 | struct pci_bus *subordinate = pdev->subordinate; |
Brice Goglin | fe97064 | 2006-08-31 01:55:15 -0400 | [diff] [blame] | 374 | |
Yijing Wang | 468ff15 | 2014-09-23 13:27:24 +0800 | [diff] [blame] | 375 | return sprintf(buf, "%u\n", subordinate ? |
| 376 | !(subordinate->bus_flags & PCI_BUS_FLAGS_NO_MSI) |
| 377 | : !pdev->no_msi); |
Brice Goglin | fe97064 | 2006-08-31 01:55:15 -0400 | [diff] [blame] | 378 | } |
| 379 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 380 | static ssize_t msi_bus_store(struct device *dev, struct device_attribute *attr, |
| 381 | const char *buf, size_t count) |
Brice Goglin | fe97064 | 2006-08-31 01:55:15 -0400 | [diff] [blame] | 382 | { |
| 383 | struct pci_dev *pdev = to_pci_dev(dev); |
Yijing Wang | 468ff15 | 2014-09-23 13:27:24 +0800 | [diff] [blame] | 384 | struct pci_bus *subordinate = pdev->subordinate; |
Trent Piepho | 92425a4 | 2008-11-30 17:10:12 -0800 | [diff] [blame] | 385 | unsigned long val; |
| 386 | |
Jingoo Han | 9a994e8 | 2013-06-01 16:25:25 +0900 | [diff] [blame] | 387 | if (kstrtoul(buf, 0, &val) < 0) |
Trent Piepho | 92425a4 | 2008-11-30 17:10:12 -0800 | [diff] [blame] | 388 | return -EINVAL; |
Brice Goglin | fe97064 | 2006-08-31 01:55:15 -0400 | [diff] [blame] | 389 | |
Brice Goglin | fe97064 | 2006-08-31 01:55:15 -0400 | [diff] [blame] | 390 | if (!capable(CAP_SYS_ADMIN)) |
Trent Piepho | 92425a4 | 2008-11-30 17:10:12 -0800 | [diff] [blame] | 391 | return -EPERM; |
Brice Goglin | fe97064 | 2006-08-31 01:55:15 -0400 | [diff] [blame] | 392 | |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 393 | /* |
Yijing Wang | 468ff15 | 2014-09-23 13:27:24 +0800 | [diff] [blame] | 394 | * "no_msi" and "bus_flags" only affect what happens when a driver |
| 395 | * requests MSI or MSI-X. They don't affect any drivers that have |
| 396 | * already requested MSI or MSI-X. |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 397 | */ |
Yijing Wang | 468ff15 | 2014-09-23 13:27:24 +0800 | [diff] [blame] | 398 | if (!subordinate) { |
| 399 | pdev->no_msi = !val; |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 400 | pci_info(pdev, "MSI/MSI-X %s for future drivers\n", |
Yijing Wang | 468ff15 | 2014-09-23 13:27:24 +0800 | [diff] [blame] | 401 | val ? "allowed" : "disallowed"); |
Brice Goglin | fe97064 | 2006-08-31 01:55:15 -0400 | [diff] [blame] | 402 | return count; |
Brice Goglin | fe97064 | 2006-08-31 01:55:15 -0400 | [diff] [blame] | 403 | } |
| 404 | |
Yijing Wang | 468ff15 | 2014-09-23 13:27:24 +0800 | [diff] [blame] | 405 | if (val) |
| 406 | subordinate->bus_flags &= ~PCI_BUS_FLAGS_NO_MSI; |
| 407 | else |
| 408 | subordinate->bus_flags |= PCI_BUS_FLAGS_NO_MSI; |
| 409 | |
| 410 | dev_info(&subordinate->dev, "MSI/MSI-X %s for future drivers of devices on this bus\n", |
| 411 | val ? "allowed" : "disallowed"); |
Brice Goglin | fe97064 | 2006-08-31 01:55:15 -0400 | [diff] [blame] | 412 | return count; |
| 413 | } |
Greg Kroah-Hartman | 5136b2d | 2013-10-06 23:55:40 -0700 | [diff] [blame] | 414 | static DEVICE_ATTR_RW(msi_bus); |
Greg KH | 9888549 | 2005-05-05 11:57:25 -0700 | [diff] [blame] | 415 | |
Alex Chiang | 705b1aa | 2009-03-20 14:56:31 -0600 | [diff] [blame] | 416 | static ssize_t bus_rescan_store(struct bus_type *bus, const char *buf, |
| 417 | size_t count) |
| 418 | { |
| 419 | unsigned long val; |
| 420 | struct pci_bus *b = NULL; |
| 421 | |
Jingoo Han | 9a994e8 | 2013-06-01 16:25:25 +0900 | [diff] [blame] | 422 | if (kstrtoul(buf, 0, &val) < 0) |
Alex Chiang | 705b1aa | 2009-03-20 14:56:31 -0600 | [diff] [blame] | 423 | return -EINVAL; |
| 424 | |
| 425 | if (val) { |
Rafael J. Wysocki | 9d16947 | 2014-01-10 15:22:18 +0100 | [diff] [blame] | 426 | pci_lock_rescan_remove(); |
Alex Chiang | 705b1aa | 2009-03-20 14:56:31 -0600 | [diff] [blame] | 427 | while ((b = pci_find_next_bus(b)) != NULL) |
| 428 | pci_rescan_bus(b); |
Rafael J. Wysocki | 9d16947 | 2014-01-10 15:22:18 +0100 | [diff] [blame] | 429 | pci_unlock_rescan_remove(); |
Alex Chiang | 705b1aa | 2009-03-20 14:56:31 -0600 | [diff] [blame] | 430 | } |
| 431 | return count; |
| 432 | } |
Greg Kroah-Hartman | 0f49ba5 | 2013-10-07 14:51:02 -0600 | [diff] [blame] | 433 | static BUS_ATTR(rescan, (S_IWUSR|S_IWGRP), NULL, bus_rescan_store); |
Alex Chiang | 705b1aa | 2009-03-20 14:56:31 -0600 | [diff] [blame] | 434 | |
Sachin Kamat | bf22c90 | 2013-09-28 15:42:00 +0530 | [diff] [blame] | 435 | static struct attribute *pci_bus_attrs[] = { |
Greg Kroah-Hartman | 0f49ba5 | 2013-10-07 14:51:02 -0600 | [diff] [blame] | 436 | &bus_attr_rescan.attr, |
| 437 | NULL, |
| 438 | }; |
| 439 | |
| 440 | static const struct attribute_group pci_bus_group = { |
| 441 | .attrs = pci_bus_attrs, |
| 442 | }; |
| 443 | |
| 444 | const struct attribute_group *pci_bus_groups[] = { |
| 445 | &pci_bus_group, |
| 446 | NULL, |
Alex Chiang | 705b1aa | 2009-03-20 14:56:31 -0600 | [diff] [blame] | 447 | }; |
Alex Chiang | 77c27c7 | 2009-03-20 14:56:36 -0600 | [diff] [blame] | 448 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 449 | static ssize_t dev_rescan_store(struct device *dev, |
| 450 | struct device_attribute *attr, const char *buf, |
| 451 | size_t count) |
Alex Chiang | 738a639 | 2009-03-20 14:56:41 -0600 | [diff] [blame] | 452 | { |
| 453 | unsigned long val; |
| 454 | struct pci_dev *pdev = to_pci_dev(dev); |
| 455 | |
Jingoo Han | 9a994e8 | 2013-06-01 16:25:25 +0900 | [diff] [blame] | 456 | if (kstrtoul(buf, 0, &val) < 0) |
Alex Chiang | 738a639 | 2009-03-20 14:56:41 -0600 | [diff] [blame] | 457 | return -EINVAL; |
| 458 | |
| 459 | if (val) { |
Rafael J. Wysocki | 9d16947 | 2014-01-10 15:22:18 +0100 | [diff] [blame] | 460 | pci_lock_rescan_remove(); |
Alex Chiang | 738a639 | 2009-03-20 14:56:41 -0600 | [diff] [blame] | 461 | pci_rescan_bus(pdev->bus); |
Rafael J. Wysocki | 9d16947 | 2014-01-10 15:22:18 +0100 | [diff] [blame] | 462 | pci_unlock_rescan_remove(); |
Alex Chiang | 738a639 | 2009-03-20 14:56:41 -0600 | [diff] [blame] | 463 | } |
| 464 | return count; |
| 465 | } |
Sachin Kamat | bf22c90 | 2013-09-28 15:42:00 +0530 | [diff] [blame] | 466 | static struct device_attribute dev_rescan_attr = __ATTR(rescan, |
| 467 | (S_IWUSR|S_IWGRP), |
| 468 | NULL, dev_rescan_store); |
Alex Chiang | 738a639 | 2009-03-20 14:56:41 -0600 | [diff] [blame] | 469 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 470 | static ssize_t remove_store(struct device *dev, struct device_attribute *attr, |
| 471 | const char *buf, size_t count) |
Alex Chiang | 77c27c7 | 2009-03-20 14:56:36 -0600 | [diff] [blame] | 472 | { |
Alex Chiang | 77c27c7 | 2009-03-20 14:56:36 -0600 | [diff] [blame] | 473 | unsigned long val; |
Alex Chiang | 77c27c7 | 2009-03-20 14:56:36 -0600 | [diff] [blame] | 474 | |
Jingoo Han | 9a994e8 | 2013-06-01 16:25:25 +0900 | [diff] [blame] | 475 | if (kstrtoul(buf, 0, &val) < 0) |
Alex Chiang | 77c27c7 | 2009-03-20 14:56:36 -0600 | [diff] [blame] | 476 | return -EINVAL; |
| 477 | |
Tejun Heo | bc6caf0 | 2014-02-03 14:03:02 -0500 | [diff] [blame] | 478 | if (val && device_remove_file_self(dev, attr)) |
| 479 | pci_stop_and_remove_bus_device_locked(to_pci_dev(dev)); |
Alex Chiang | 77c27c7 | 2009-03-20 14:56:36 -0600 | [diff] [blame] | 480 | return count; |
| 481 | } |
Sachin Kamat | bf22c90 | 2013-09-28 15:42:00 +0530 | [diff] [blame] | 482 | static struct device_attribute dev_remove_attr = __ATTR(remove, |
| 483 | (S_IWUSR|S_IWGRP), |
| 484 | NULL, remove_store); |
Yinghai Lu | b9d320f | 2011-05-12 17:11:39 -0700 | [diff] [blame] | 485 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 486 | static ssize_t dev_bus_rescan_store(struct device *dev, |
| 487 | struct device_attribute *attr, |
| 488 | const char *buf, size_t count) |
Yinghai Lu | b9d320f | 2011-05-12 17:11:39 -0700 | [diff] [blame] | 489 | { |
| 490 | unsigned long val; |
| 491 | struct pci_bus *bus = to_pci_bus(dev); |
| 492 | |
Jingoo Han | 9a994e8 | 2013-06-01 16:25:25 +0900 | [diff] [blame] | 493 | if (kstrtoul(buf, 0, &val) < 0) |
Yinghai Lu | b9d320f | 2011-05-12 17:11:39 -0700 | [diff] [blame] | 494 | return -EINVAL; |
| 495 | |
| 496 | if (val) { |
Rafael J. Wysocki | 9d16947 | 2014-01-10 15:22:18 +0100 | [diff] [blame] | 497 | pci_lock_rescan_remove(); |
Yinghai Lu | 2f32052 | 2012-01-21 02:08:22 -0800 | [diff] [blame] | 498 | if (!pci_is_root_bus(bus) && list_empty(&bus->devices)) |
| 499 | pci_rescan_bus_bridge_resize(bus->self); |
| 500 | else |
| 501 | pci_rescan_bus(bus); |
Rafael J. Wysocki | 9d16947 | 2014-01-10 15:22:18 +0100 | [diff] [blame] | 502 | pci_unlock_rescan_remove(); |
Yinghai Lu | b9d320f | 2011-05-12 17:11:39 -0700 | [diff] [blame] | 503 | } |
| 504 | return count; |
| 505 | } |
Greg Kroah-Hartman | 56039e6 | 2013-07-24 15:05:17 -0700 | [diff] [blame] | 506 | static DEVICE_ATTR(rescan, (S_IWUSR|S_IWGRP), NULL, dev_bus_rescan_store); |
Yinghai Lu | b9d320f | 2011-05-12 17:11:39 -0700 | [diff] [blame] | 507 | |
Rafael J. Wysocki | fbb988b | 2014-11-27 23:16:57 +0100 | [diff] [blame] | 508 | #if defined(CONFIG_PM) && defined(CONFIG_ACPI) |
Huang Ying | 448bd85 | 2012-06-23 10:23:51 +0800 | [diff] [blame] | 509 | static ssize_t d3cold_allowed_store(struct device *dev, |
| 510 | struct device_attribute *attr, |
| 511 | const char *buf, size_t count) |
| 512 | { |
| 513 | struct pci_dev *pdev = to_pci_dev(dev); |
| 514 | unsigned long val; |
| 515 | |
Jingoo Han | 9a994e8 | 2013-06-01 16:25:25 +0900 | [diff] [blame] | 516 | if (kstrtoul(buf, 0, &val) < 0) |
Huang Ying | 448bd85 | 2012-06-23 10:23:51 +0800 | [diff] [blame] | 517 | return -EINVAL; |
| 518 | |
| 519 | pdev->d3cold_allowed = !!val; |
Mika Westerberg | 9d26d3a | 2016-06-02 11:17:12 +0300 | [diff] [blame] | 520 | if (pdev->d3cold_allowed) |
| 521 | pci_d3cold_enable(pdev); |
| 522 | else |
| 523 | pci_d3cold_disable(pdev); |
| 524 | |
Huang Ying | 448bd85 | 2012-06-23 10:23:51 +0800 | [diff] [blame] | 525 | pm_runtime_resume(dev); |
| 526 | |
| 527 | return count; |
| 528 | } |
| 529 | |
| 530 | static ssize_t d3cold_allowed_show(struct device *dev, |
| 531 | struct device_attribute *attr, char *buf) |
| 532 | { |
| 533 | struct pci_dev *pdev = to_pci_dev(dev); |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 534 | return sprintf(buf, "%u\n", pdev->d3cold_allowed); |
Huang Ying | 448bd85 | 2012-06-23 10:23:51 +0800 | [diff] [blame] | 535 | } |
Greg Kroah-Hartman | 5136b2d | 2013-10-06 23:55:40 -0700 | [diff] [blame] | 536 | static DEVICE_ATTR_RW(d3cold_allowed); |
Huang Ying | 448bd85 | 2012-06-23 10:23:51 +0800 | [diff] [blame] | 537 | #endif |
| 538 | |
Sebastian Ott | dfc73e7 | 2014-04-17 19:46:15 +0200 | [diff] [blame] | 539 | #ifdef CONFIG_OF |
| 540 | static ssize_t devspec_show(struct device *dev, |
| 541 | struct device_attribute *attr, char *buf) |
| 542 | { |
| 543 | struct pci_dev *pdev = to_pci_dev(dev); |
| 544 | struct device_node *np = pci_device_to_OF_node(pdev); |
| 545 | |
Rob Herring | b63773a | 2017-07-18 16:43:21 -0500 | [diff] [blame] | 546 | if (np == NULL) |
Sebastian Ott | dfc73e7 | 2014-04-17 19:46:15 +0200 | [diff] [blame] | 547 | return 0; |
Rob Herring | b63773a | 2017-07-18 16:43:21 -0500 | [diff] [blame] | 548 | return sprintf(buf, "%pOF", np); |
Sebastian Ott | dfc73e7 | 2014-04-17 19:46:15 +0200 | [diff] [blame] | 549 | } |
| 550 | static DEVICE_ATTR_RO(devspec); |
| 551 | #endif |
| 552 | |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 553 | #ifdef CONFIG_PCI_IOV |
| 554 | static ssize_t sriov_totalvfs_show(struct device *dev, |
| 555 | struct device_attribute *attr, |
| 556 | char *buf) |
| 557 | { |
| 558 | struct pci_dev *pdev = to_pci_dev(dev); |
| 559 | |
Donald Dutile | bff7315 | 2012-11-05 15:20:37 -0500 | [diff] [blame] | 560 | return sprintf(buf, "%u\n", pci_sriov_get_totalvfs(pdev)); |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | |
| 564 | static ssize_t sriov_numvfs_show(struct device *dev, |
| 565 | struct device_attribute *attr, |
| 566 | char *buf) |
| 567 | { |
| 568 | struct pci_dev *pdev = to_pci_dev(dev); |
| 569 | |
Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 570 | return sprintf(buf, "%u\n", pdev->sriov->num_VFs); |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 571 | } |
| 572 | |
| 573 | /* |
Bjorn Helgaas | faa48a5 | 2012-12-26 10:39:22 -0700 | [diff] [blame] | 574 | * num_vfs > 0; number of VFs to enable |
| 575 | * num_vfs = 0; disable all VFs |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 576 | * |
| 577 | * Note: SRIOV spec doesn't allow partial VF |
Bjorn Helgaas | faa48a5 | 2012-12-26 10:39:22 -0700 | [diff] [blame] | 578 | * disable, so it's all or none. |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 579 | */ |
| 580 | static ssize_t sriov_numvfs_store(struct device *dev, |
| 581 | struct device_attribute *attr, |
| 582 | const char *buf, size_t count) |
| 583 | { |
| 584 | struct pci_dev *pdev = to_pci_dev(dev); |
Bjorn Helgaas | faa48a5 | 2012-12-26 10:39:22 -0700 | [diff] [blame] | 585 | int ret; |
| 586 | u16 num_vfs; |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 587 | |
Bjorn Helgaas | faa48a5 | 2012-12-26 10:39:22 -0700 | [diff] [blame] | 588 | ret = kstrtou16(buf, 0, &num_vfs); |
| 589 | if (ret < 0) |
| 590 | return ret; |
| 591 | |
| 592 | if (num_vfs > pci_sriov_get_totalvfs(pdev)) |
| 593 | return -ERANGE; |
| 594 | |
Jakub Kicinski | 17530e7 | 2017-05-22 15:50:23 -0700 | [diff] [blame] | 595 | device_lock(&pdev->dev); |
Emil Tantilov | 5b0948d | 2017-01-06 13:59:08 -0800 | [diff] [blame] | 596 | |
Bjorn Helgaas | faa48a5 | 2012-12-26 10:39:22 -0700 | [diff] [blame] | 597 | if (num_vfs == pdev->sriov->num_VFs) |
Emil Tantilov | 5b0948d | 2017-01-06 13:59:08 -0800 | [diff] [blame] | 598 | goto exit; |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 599 | |
| 600 | /* is PF driver loaded w/callback */ |
| 601 | if (!pdev->driver || !pdev->driver->sriov_configure) { |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 602 | pci_info(pdev, "Driver doesn't support SRIOV configuration via sysfs\n"); |
Emil Tantilov | 5b0948d | 2017-01-06 13:59:08 -0800 | [diff] [blame] | 603 | ret = -ENOENT; |
| 604 | goto exit; |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 605 | } |
| 606 | |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 607 | if (num_vfs == 0) { |
Bjorn Helgaas | faa48a5 | 2012-12-26 10:39:22 -0700 | [diff] [blame] | 608 | /* disable VFs */ |
| 609 | ret = pdev->driver->sriov_configure(pdev, 0); |
Emil Tantilov | 5b0948d | 2017-01-06 13:59:08 -0800 | [diff] [blame] | 610 | goto exit; |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 611 | } |
| 612 | |
Bjorn Helgaas | faa48a5 | 2012-12-26 10:39:22 -0700 | [diff] [blame] | 613 | /* enable VFs */ |
| 614 | if (pdev->sriov->num_VFs) { |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 615 | pci_warn(pdev, "%d VFs already enabled. Disable before enabling %d VFs\n", |
Bjorn Helgaas | faa48a5 | 2012-12-26 10:39:22 -0700 | [diff] [blame] | 616 | pdev->sriov->num_VFs, num_vfs); |
Emil Tantilov | 5b0948d | 2017-01-06 13:59:08 -0800 | [diff] [blame] | 617 | ret = -EBUSY; |
| 618 | goto exit; |
Bjorn Helgaas | faa48a5 | 2012-12-26 10:39:22 -0700 | [diff] [blame] | 619 | } |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 620 | |
Bjorn Helgaas | faa48a5 | 2012-12-26 10:39:22 -0700 | [diff] [blame] | 621 | ret = pdev->driver->sriov_configure(pdev, num_vfs); |
| 622 | if (ret < 0) |
Emil Tantilov | 5b0948d | 2017-01-06 13:59:08 -0800 | [diff] [blame] | 623 | goto exit; |
Bjorn Helgaas | faa48a5 | 2012-12-26 10:39:22 -0700 | [diff] [blame] | 624 | |
| 625 | if (ret != num_vfs) |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 626 | pci_warn(pdev, "%d VFs requested; only %d enabled\n", |
Bjorn Helgaas | faa48a5 | 2012-12-26 10:39:22 -0700 | [diff] [blame] | 627 | num_vfs, ret); |
| 628 | |
Emil Tantilov | 5b0948d | 2017-01-06 13:59:08 -0800 | [diff] [blame] | 629 | exit: |
Jakub Kicinski | 17530e7 | 2017-05-22 15:50:23 -0700 | [diff] [blame] | 630 | device_unlock(&pdev->dev); |
Emil Tantilov | 5b0948d | 2017-01-06 13:59:08 -0800 | [diff] [blame] | 631 | |
| 632 | if (ret < 0) |
| 633 | return ret; |
| 634 | |
Bjorn Helgaas | faa48a5 | 2012-12-26 10:39:22 -0700 | [diff] [blame] | 635 | return count; |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 636 | } |
| 637 | |
Filippo Sironi | 7dfca15 | 2017-10-09 01:09:11 +0200 | [diff] [blame] | 638 | static ssize_t sriov_offset_show(struct device *dev, |
| 639 | struct device_attribute *attr, |
| 640 | char *buf) |
| 641 | { |
| 642 | struct pci_dev *pdev = to_pci_dev(dev); |
| 643 | |
| 644 | return sprintf(buf, "%u\n", pdev->sriov->offset); |
| 645 | } |
| 646 | |
| 647 | static ssize_t sriov_stride_show(struct device *dev, |
| 648 | struct device_attribute *attr, |
| 649 | char *buf) |
| 650 | { |
| 651 | struct pci_dev *pdev = to_pci_dev(dev); |
| 652 | |
| 653 | return sprintf(buf, "%u\n", pdev->sriov->stride); |
| 654 | } |
| 655 | |
| 656 | static ssize_t sriov_vf_device_show(struct device *dev, |
| 657 | struct device_attribute *attr, |
| 658 | char *buf) |
| 659 | { |
| 660 | struct pci_dev *pdev = to_pci_dev(dev); |
| 661 | |
| 662 | return sprintf(buf, "%x\n", pdev->sriov->vf_device); |
| 663 | } |
| 664 | |
Bodong Wang | 0e7df22 | 2017-04-13 01:51:40 +0300 | [diff] [blame] | 665 | static ssize_t sriov_drivers_autoprobe_show(struct device *dev, |
| 666 | struct device_attribute *attr, |
| 667 | char *buf) |
| 668 | { |
| 669 | struct pci_dev *pdev = to_pci_dev(dev); |
| 670 | |
| 671 | return sprintf(buf, "%u\n", pdev->sriov->drivers_autoprobe); |
| 672 | } |
| 673 | |
| 674 | static ssize_t sriov_drivers_autoprobe_store(struct device *dev, |
| 675 | struct device_attribute *attr, |
| 676 | const char *buf, size_t count) |
| 677 | { |
| 678 | struct pci_dev *pdev = to_pci_dev(dev); |
| 679 | bool drivers_autoprobe; |
| 680 | |
| 681 | if (kstrtobool(buf, &drivers_autoprobe) < 0) |
| 682 | return -EINVAL; |
| 683 | |
| 684 | pdev->sriov->drivers_autoprobe = drivers_autoprobe; |
| 685 | |
| 686 | return count; |
| 687 | } |
| 688 | |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 689 | static struct device_attribute sriov_totalvfs_attr = __ATTR_RO(sriov_totalvfs); |
| 690 | static struct device_attribute sriov_numvfs_attr = |
| 691 | __ATTR(sriov_numvfs, (S_IRUGO|S_IWUSR|S_IWGRP), |
| 692 | sriov_numvfs_show, sriov_numvfs_store); |
Filippo Sironi | 7dfca15 | 2017-10-09 01:09:11 +0200 | [diff] [blame] | 693 | static struct device_attribute sriov_offset_attr = __ATTR_RO(sriov_offset); |
| 694 | static struct device_attribute sriov_stride_attr = __ATTR_RO(sriov_stride); |
| 695 | static struct device_attribute sriov_vf_device_attr = __ATTR_RO(sriov_vf_device); |
Bodong Wang | 0e7df22 | 2017-04-13 01:51:40 +0300 | [diff] [blame] | 696 | static struct device_attribute sriov_drivers_autoprobe_attr = |
| 697 | __ATTR(sriov_drivers_autoprobe, (S_IRUGO|S_IWUSR|S_IWGRP), |
| 698 | sriov_drivers_autoprobe_show, sriov_drivers_autoprobe_store); |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 699 | #endif /* CONFIG_PCI_IOV */ |
| 700 | |
Alex Williamson | 782a985 | 2014-05-20 08:53:21 -0600 | [diff] [blame] | 701 | static ssize_t driver_override_store(struct device *dev, |
| 702 | struct device_attribute *attr, |
| 703 | const char *buf, size_t count) |
| 704 | { |
| 705 | struct pci_dev *pdev = to_pci_dev(dev); |
Nicolai Stange | 9561475 | 2017-09-11 09:45:40 +0200 | [diff] [blame] | 706 | char *driver_override, *old, *cp; |
Alex Williamson | 782a985 | 2014-05-20 08:53:21 -0600 | [diff] [blame] | 707 | |
Sasha Levin | 4efe874 | 2015-02-04 17:38:15 -0500 | [diff] [blame] | 708 | /* We need to keep extra room for a newline */ |
| 709 | if (count >= (PAGE_SIZE - 1)) |
Alex Williamson | 782a985 | 2014-05-20 08:53:21 -0600 | [diff] [blame] | 710 | return -EINVAL; |
| 711 | |
| 712 | driver_override = kstrndup(buf, count, GFP_KERNEL); |
| 713 | if (!driver_override) |
| 714 | return -ENOMEM; |
| 715 | |
| 716 | cp = strchr(driver_override, '\n'); |
| 717 | if (cp) |
| 718 | *cp = '\0'; |
| 719 | |
Nicolai Stange | 9561475 | 2017-09-11 09:45:40 +0200 | [diff] [blame] | 720 | device_lock(dev); |
| 721 | old = pdev->driver_override; |
Alex Williamson | 782a985 | 2014-05-20 08:53:21 -0600 | [diff] [blame] | 722 | if (strlen(driver_override)) { |
| 723 | pdev->driver_override = driver_override; |
| 724 | } else { |
| 725 | kfree(driver_override); |
| 726 | pdev->driver_override = NULL; |
| 727 | } |
Nicolai Stange | 9561475 | 2017-09-11 09:45:40 +0200 | [diff] [blame] | 728 | device_unlock(dev); |
Alex Williamson | 782a985 | 2014-05-20 08:53:21 -0600 | [diff] [blame] | 729 | |
| 730 | kfree(old); |
| 731 | |
| 732 | return count; |
| 733 | } |
| 734 | |
| 735 | static ssize_t driver_override_show(struct device *dev, |
| 736 | struct device_attribute *attr, char *buf) |
| 737 | { |
| 738 | struct pci_dev *pdev = to_pci_dev(dev); |
Nicolai Stange | 9561475 | 2017-09-11 09:45:40 +0200 | [diff] [blame] | 739 | ssize_t len; |
Alex Williamson | 782a985 | 2014-05-20 08:53:21 -0600 | [diff] [blame] | 740 | |
Nicolai Stange | 9561475 | 2017-09-11 09:45:40 +0200 | [diff] [blame] | 741 | device_lock(dev); |
| 742 | len = snprintf(buf, PAGE_SIZE, "%s\n", pdev->driver_override); |
| 743 | device_unlock(dev); |
| 744 | return len; |
Alex Williamson | 782a985 | 2014-05-20 08:53:21 -0600 | [diff] [blame] | 745 | } |
| 746 | static DEVICE_ATTR_RW(driver_override); |
| 747 | |
Sachin Kamat | bf22c90 | 2013-09-28 15:42:00 +0530 | [diff] [blame] | 748 | static struct attribute *pci_dev_attrs[] = { |
Greg Kroah-Hartman | 5136b2d | 2013-10-06 23:55:40 -0700 | [diff] [blame] | 749 | &dev_attr_resource.attr, |
| 750 | &dev_attr_vendor.attr, |
| 751 | &dev_attr_device.attr, |
| 752 | &dev_attr_subsystem_vendor.attr, |
| 753 | &dev_attr_subsystem_device.attr, |
Emil Velikov | 702ed3b | 2016-11-21 16:24:49 -0600 | [diff] [blame] | 754 | &dev_attr_revision.attr, |
Greg Kroah-Hartman | 5136b2d | 2013-10-06 23:55:40 -0700 | [diff] [blame] | 755 | &dev_attr_class.attr, |
| 756 | &dev_attr_irq.attr, |
| 757 | &dev_attr_local_cpus.attr, |
| 758 | &dev_attr_local_cpulist.attr, |
| 759 | &dev_attr_modalias.attr, |
Brice Goglin | 81bb0e1 | 2007-01-28 10:53:40 +0100 | [diff] [blame] | 760 | #ifdef CONFIG_NUMA |
Greg Kroah-Hartman | 5136b2d | 2013-10-06 23:55:40 -0700 | [diff] [blame] | 761 | &dev_attr_numa_node.attr, |
Brice Goglin | 81bb0e1 | 2007-01-28 10:53:40 +0100 | [diff] [blame] | 762 | #endif |
Greg Kroah-Hartman | 5136b2d | 2013-10-06 23:55:40 -0700 | [diff] [blame] | 763 | &dev_attr_dma_mask_bits.attr, |
| 764 | &dev_attr_consistent_dma_mask_bits.attr, |
Greg Kroah-Hartman | d8e7d53 | 2014-10-30 09:30:28 -0700 | [diff] [blame] | 765 | &dev_attr_enable.attr, |
Greg Kroah-Hartman | 5136b2d | 2013-10-06 23:55:40 -0700 | [diff] [blame] | 766 | &dev_attr_broken_parity_status.attr, |
| 767 | &dev_attr_msi_bus.attr, |
Rafael J. Wysocki | fbb988b | 2014-11-27 23:16:57 +0100 | [diff] [blame] | 768 | #if defined(CONFIG_PM) && defined(CONFIG_ACPI) |
Greg Kroah-Hartman | 5136b2d | 2013-10-06 23:55:40 -0700 | [diff] [blame] | 769 | &dev_attr_d3cold_allowed.attr, |
Huang Ying | 448bd85 | 2012-06-23 10:23:51 +0800 | [diff] [blame] | 770 | #endif |
Sebastian Ott | dfc73e7 | 2014-04-17 19:46:15 +0200 | [diff] [blame] | 771 | #ifdef CONFIG_OF |
| 772 | &dev_attr_devspec.attr, |
| 773 | #endif |
Alex Williamson | 782a985 | 2014-05-20 08:53:21 -0600 | [diff] [blame] | 774 | &dev_attr_driver_override.attr, |
Stuart Hayes | 0077a84 | 2018-01-05 12:51:55 -0600 | [diff] [blame] | 775 | &dev_attr_ari_enabled.attr, |
Greg Kroah-Hartman | 5136b2d | 2013-10-06 23:55:40 -0700 | [diff] [blame] | 776 | NULL, |
| 777 | }; |
| 778 | |
Wong Vee Khee | 56c1af4 | 2017-06-01 17:43:06 +0800 | [diff] [blame] | 779 | static struct attribute *pci_bridge_attrs[] = { |
| 780 | &dev_attr_subordinate_bus_number.attr, |
| 781 | &dev_attr_secondary_bus_number.attr, |
| 782 | NULL, |
Greg Kroah-Hartman | 5136b2d | 2013-10-06 23:55:40 -0700 | [diff] [blame] | 783 | }; |
| 784 | |
Wong Vee Khee | 56c1af4 | 2017-06-01 17:43:06 +0800 | [diff] [blame] | 785 | static struct attribute *pcie_dev_attrs[] = { |
| 786 | &dev_attr_current_link_speed.attr, |
| 787 | &dev_attr_current_link_width.attr, |
| 788 | &dev_attr_max_link_width.attr, |
| 789 | &dev_attr_max_link_speed.attr, |
Greg Kroah-Hartman | 5136b2d | 2013-10-06 23:55:40 -0700 | [diff] [blame] | 790 | NULL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | }; |
| 792 | |
Greg Kroah-Hartman | 56039e6 | 2013-07-24 15:05:17 -0700 | [diff] [blame] | 793 | static struct attribute *pcibus_attrs[] = { |
| 794 | &dev_attr_rescan.attr, |
| 795 | &dev_attr_cpuaffinity.attr, |
| 796 | &dev_attr_cpulistaffinity.attr, |
| 797 | NULL, |
| 798 | }; |
| 799 | |
| 800 | static const struct attribute_group pcibus_group = { |
| 801 | .attrs = pcibus_attrs, |
| 802 | }; |
| 803 | |
| 804 | const struct attribute_group *pcibus_groups[] = { |
| 805 | &pcibus_group, |
| 806 | NULL, |
Yinghai Lu | b9d320f | 2011-05-12 17:11:39 -0700 | [diff] [blame] | 807 | }; |
| 808 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 809 | static ssize_t boot_vga_show(struct device *dev, struct device_attribute *attr, |
| 810 | char *buf) |
Dave Airlie | 217f45d | 2009-03-04 05:57:05 +0000 | [diff] [blame] | 811 | { |
| 812 | struct pci_dev *pdev = to_pci_dev(dev); |
Matthew Garrett | 1a39b31 | 2012-04-16 16:26:02 -0400 | [diff] [blame] | 813 | struct pci_dev *vga_dev = vga_default_device(); |
| 814 | |
| 815 | if (vga_dev) |
| 816 | return sprintf(buf, "%u\n", (pdev == vga_dev)); |
Dave Airlie | 217f45d | 2009-03-04 05:57:05 +0000 | [diff] [blame] | 817 | |
| 818 | return sprintf(buf, "%u\n", |
| 819 | !!(pdev->resource[PCI_ROM_RESOURCE].flags & |
| 820 | IORESOURCE_ROM_SHADOW)); |
| 821 | } |
Sachin Kamat | bf22c90 | 2013-09-28 15:42:00 +0530 | [diff] [blame] | 822 | static struct device_attribute vga_attr = __ATTR_RO(boot_vga); |
Dave Airlie | 217f45d | 2009-03-04 05:57:05 +0000 | [diff] [blame] | 823 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 824 | static ssize_t pci_read_config(struct file *filp, struct kobject *kobj, |
| 825 | struct bin_attribute *bin_attr, char *buf, |
| 826 | loff_t off, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | { |
Geliang Tang | 554a603 | 2015-12-23 20:28:13 +0800 | [diff] [blame] | 828 | struct pci_dev *dev = to_pci_dev(kobj_to_dev(kobj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | unsigned int size = 64; |
| 830 | loff_t init_off = off; |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 831 | u8 *data = (u8 *) buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | |
| 833 | /* Several chips lock up trying to read undefined config space */ |
Linus Torvalds | ab0fa82 | 2016-04-14 12:00:21 -0700 | [diff] [blame] | 834 | if (file_ns_capable(filp, &init_user_ns, CAP_SYS_ADMIN)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | size = dev->cfg_size; |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 836 | else if (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | size = 128; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | |
| 839 | if (off > size) |
| 840 | return 0; |
| 841 | if (off + count > size) { |
| 842 | size -= off; |
| 843 | count = size; |
| 844 | } else { |
| 845 | size = count; |
| 846 | } |
| 847 | |
Huang Ying | 3d8387e | 2012-08-15 09:43:03 +0800 | [diff] [blame] | 848 | pci_config_pm_runtime_get(dev); |
| 849 | |
ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 850 | if ((off & 1) && size) { |
| 851 | u8 val; |
Brian King | e04b0ea | 2005-09-27 01:21:55 -0700 | [diff] [blame] | 852 | pci_user_read_config_byte(dev, off, &val); |
ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 853 | data[off - init_off] = val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | off++; |
ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 855 | size--; |
| 856 | } |
| 857 | |
| 858 | if ((off & 3) && size > 2) { |
| 859 | u16 val; |
Brian King | e04b0ea | 2005-09-27 01:21:55 -0700 | [diff] [blame] | 860 | pci_user_read_config_word(dev, off, &val); |
ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 861 | data[off - init_off] = val & 0xff; |
| 862 | data[off - init_off + 1] = (val >> 8) & 0xff; |
| 863 | off += 2; |
| 864 | size -= 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | } |
| 866 | |
| 867 | while (size > 3) { |
ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 868 | u32 val; |
Brian King | e04b0ea | 2005-09-27 01:21:55 -0700 | [diff] [blame] | 869 | pci_user_read_config_dword(dev, off, &val); |
ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 870 | data[off - init_off] = val & 0xff; |
| 871 | data[off - init_off + 1] = (val >> 8) & 0xff; |
| 872 | data[off - init_off + 2] = (val >> 16) & 0xff; |
| 873 | data[off - init_off + 3] = (val >> 24) & 0xff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | off += 4; |
| 875 | size -= 4; |
| 876 | } |
| 877 | |
ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 878 | if (size >= 2) { |
| 879 | u16 val; |
Brian King | e04b0ea | 2005-09-27 01:21:55 -0700 | [diff] [blame] | 880 | pci_user_read_config_word(dev, off, &val); |
ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 881 | data[off - init_off] = val & 0xff; |
| 882 | data[off - init_off + 1] = (val >> 8) & 0xff; |
| 883 | off += 2; |
| 884 | size -= 2; |
| 885 | } |
| 886 | |
| 887 | if (size > 0) { |
| 888 | u8 val; |
Brian King | e04b0ea | 2005-09-27 01:21:55 -0700 | [diff] [blame] | 889 | pci_user_read_config_byte(dev, off, &val); |
ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 890 | data[off - init_off] = val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | off++; |
| 892 | --size; |
| 893 | } |
| 894 | |
Huang Ying | 3d8387e | 2012-08-15 09:43:03 +0800 | [diff] [blame] | 895 | pci_config_pm_runtime_put(dev); |
| 896 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | return count; |
| 898 | } |
| 899 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 900 | static ssize_t pci_write_config(struct file *filp, struct kobject *kobj, |
| 901 | struct bin_attribute *bin_attr, char *buf, |
| 902 | loff_t off, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | { |
Geliang Tang | 554a603 | 2015-12-23 20:28:13 +0800 | [diff] [blame] | 904 | struct pci_dev *dev = to_pci_dev(kobj_to_dev(kobj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | unsigned int size = count; |
| 906 | loff_t init_off = off; |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 907 | u8 *data = (u8 *) buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | |
| 909 | if (off > dev->cfg_size) |
| 910 | return 0; |
| 911 | if (off + count > dev->cfg_size) { |
| 912 | size = dev->cfg_size - off; |
| 913 | count = size; |
| 914 | } |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 915 | |
Huang Ying | 3d8387e | 2012-08-15 09:43:03 +0800 | [diff] [blame] | 916 | pci_config_pm_runtime_get(dev); |
| 917 | |
ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 918 | if ((off & 1) && size) { |
Brian King | e04b0ea | 2005-09-27 01:21:55 -0700 | [diff] [blame] | 919 | pci_user_write_config_byte(dev, off, data[off - init_off]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | off++; |
ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 921 | size--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | } |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 923 | |
ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 924 | if ((off & 3) && size > 2) { |
| 925 | u16 val = data[off - init_off]; |
| 926 | val |= (u16) data[off - init_off + 1] << 8; |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 927 | pci_user_write_config_word(dev, off, val); |
| 928 | off += 2; |
| 929 | size -= 2; |
| 930 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | |
| 932 | while (size > 3) { |
ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 933 | u32 val = data[off - init_off]; |
| 934 | val |= (u32) data[off - init_off + 1] << 8; |
| 935 | val |= (u32) data[off - init_off + 2] << 16; |
| 936 | val |= (u32) data[off - init_off + 3] << 24; |
Brian King | e04b0ea | 2005-09-27 01:21:55 -0700 | [diff] [blame] | 937 | pci_user_write_config_dword(dev, off, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | off += 4; |
| 939 | size -= 4; |
| 940 | } |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 941 | |
ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 942 | if (size >= 2) { |
| 943 | u16 val = data[off - init_off]; |
| 944 | val |= (u16) data[off - init_off + 1] << 8; |
Brian King | e04b0ea | 2005-09-27 01:21:55 -0700 | [diff] [blame] | 945 | pci_user_write_config_word(dev, off, val); |
ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 946 | off += 2; |
| 947 | size -= 2; |
| 948 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | |
ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 950 | if (size) { |
Brian King | e04b0ea | 2005-09-27 01:21:55 -0700 | [diff] [blame] | 951 | pci_user_write_config_byte(dev, off, data[off - init_off]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | off++; |
| 953 | --size; |
| 954 | } |
| 955 | |
Huang Ying | 3d8387e | 2012-08-15 09:43:03 +0800 | [diff] [blame] | 956 | pci_config_pm_runtime_put(dev); |
| 957 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | return count; |
| 959 | } |
| 960 | |
| 961 | #ifdef HAVE_PCI_LEGACY |
| 962 | /** |
| 963 | * pci_read_legacy_io - read byte(s) from legacy I/O port space |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 964 | * @filp: open sysfs file |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | * @kobj: kobject corresponding to file to read from |
Randy Dunlap | cffb2fa | 2009-04-10 15:17:50 -0700 | [diff] [blame] | 966 | * @bin_attr: struct bin_attribute for this file |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | * @buf: buffer to store results |
| 968 | * @off: offset into legacy I/O port space |
| 969 | * @count: number of bytes to read |
| 970 | * |
| 971 | * Reads 1, 2, or 4 bytes from legacy I/O port space using an arch specific |
| 972 | * callback routine (pci_legacy_read). |
| 973 | */ |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 974 | static ssize_t pci_read_legacy_io(struct file *filp, struct kobject *kobj, |
| 975 | struct bin_attribute *bin_attr, char *buf, |
| 976 | loff_t off, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | { |
Geliang Tang | 554a603 | 2015-12-23 20:28:13 +0800 | [diff] [blame] | 978 | struct pci_bus *bus = to_pci_bus(kobj_to_dev(kobj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 980 | /* Only support 1, 2 or 4 byte accesses */ |
| 981 | if (count != 1 && count != 2 && count != 4) |
| 982 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 984 | return pci_legacy_read(bus, off, (u32 *)buf, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | } |
| 986 | |
| 987 | /** |
| 988 | * pci_write_legacy_io - write byte(s) to legacy I/O port space |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 989 | * @filp: open sysfs file |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | * @kobj: kobject corresponding to file to read from |
Randy Dunlap | cffb2fa | 2009-04-10 15:17:50 -0700 | [diff] [blame] | 991 | * @bin_attr: struct bin_attribute for this file |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | * @buf: buffer containing value to be written |
| 993 | * @off: offset into legacy I/O port space |
| 994 | * @count: number of bytes to write |
| 995 | * |
| 996 | * Writes 1, 2, or 4 bytes from legacy I/O port space using an arch specific |
| 997 | * callback routine (pci_legacy_write). |
| 998 | */ |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 999 | static ssize_t pci_write_legacy_io(struct file *filp, struct kobject *kobj, |
| 1000 | struct bin_attribute *bin_attr, char *buf, |
| 1001 | loff_t off, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | { |
Geliang Tang | 554a603 | 2015-12-23 20:28:13 +0800 | [diff] [blame] | 1003 | struct pci_bus *bus = to_pci_bus(kobj_to_dev(kobj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1005 | /* Only support 1, 2 or 4 byte accesses */ |
| 1006 | if (count != 1 && count != 2 && count != 4) |
| 1007 | return -EINVAL; |
| 1008 | |
| 1009 | return pci_legacy_write(bus, off, *(u32 *)buf, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | } |
| 1011 | |
| 1012 | /** |
| 1013 | * pci_mmap_legacy_mem - map legacy PCI memory into user memory space |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 1014 | * @filp: open sysfs file |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | * @kobj: kobject corresponding to device to be mapped |
| 1016 | * @attr: struct bin_attribute for this file |
| 1017 | * @vma: struct vm_area_struct passed to mmap |
| 1018 | * |
Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 1019 | * Uses an arch specific callback, pci_mmap_legacy_mem_page_range, to mmap |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | * legacy memory space (first meg of bus space) into application virtual |
| 1021 | * memory space. |
| 1022 | */ |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1023 | static int pci_mmap_legacy_mem(struct file *filp, struct kobject *kobj, |
| 1024 | struct bin_attribute *attr, |
| 1025 | struct vm_area_struct *vma) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | { |
Geliang Tang | 554a603 | 2015-12-23 20:28:13 +0800 | [diff] [blame] | 1027 | struct pci_bus *bus = to_pci_bus(kobj_to_dev(kobj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1029 | return pci_mmap_legacy_page_range(bus, vma, pci_mmap_mem); |
Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 1030 | } |
| 1031 | |
| 1032 | /** |
| 1033 | * pci_mmap_legacy_io - map legacy PCI IO into user memory space |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 1034 | * @filp: open sysfs file |
Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 1035 | * @kobj: kobject corresponding to device to be mapped |
| 1036 | * @attr: struct bin_attribute for this file |
| 1037 | * @vma: struct vm_area_struct passed to mmap |
| 1038 | * |
| 1039 | * Uses an arch specific callback, pci_mmap_legacy_io_page_range, to mmap |
| 1040 | * legacy IO space (first meg of bus space) into application virtual |
| 1041 | * memory space. Returns -ENOSYS if the operation isn't supported |
| 1042 | */ |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1043 | static int pci_mmap_legacy_io(struct file *filp, struct kobject *kobj, |
| 1044 | struct bin_attribute *attr, |
| 1045 | struct vm_area_struct *vma) |
Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 1046 | { |
Geliang Tang | 554a603 | 2015-12-23 20:28:13 +0800 | [diff] [blame] | 1047 | struct pci_bus *bus = to_pci_bus(kobj_to_dev(kobj)); |
Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 1048 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1049 | return pci_mmap_legacy_page_range(bus, vma, pci_mmap_io); |
Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 1050 | } |
| 1051 | |
| 1052 | /** |
Ivan Kokshaysky | 10a0ef3 | 2009-02-17 13:46:53 +0300 | [diff] [blame] | 1053 | * pci_adjust_legacy_attr - adjustment of legacy file attributes |
| 1054 | * @b: bus to create files under |
| 1055 | * @mmap_type: I/O port or memory |
| 1056 | * |
| 1057 | * Stub implementation. Can be overridden by arch if necessary. |
| 1058 | */ |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1059 | void __weak pci_adjust_legacy_attr(struct pci_bus *b, |
| 1060 | enum pci_mmap_state mmap_type) |
Ivan Kokshaysky | 10a0ef3 | 2009-02-17 13:46:53 +0300 | [diff] [blame] | 1061 | { |
Ivan Kokshaysky | 10a0ef3 | 2009-02-17 13:46:53 +0300 | [diff] [blame] | 1062 | } |
| 1063 | |
| 1064 | /** |
Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 1065 | * pci_create_legacy_files - create legacy I/O port and memory files |
| 1066 | * @b: bus to create files under |
| 1067 | * |
| 1068 | * Some platforms allow access to legacy I/O port and ISA memory space on |
| 1069 | * a per-bus basis. This routine creates the files and ties them into |
| 1070 | * their associated read, write and mmap files from pci-sysfs.c |
| 1071 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1072 | * On error unwind, but don't propagate the error to the caller |
Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 1073 | * as it is ok to set up the PCI bus without these files. |
| 1074 | */ |
| 1075 | void pci_create_legacy_files(struct pci_bus *b) |
| 1076 | { |
| 1077 | int error; |
| 1078 | |
Kees Cook | 6396bb2 | 2018-06-12 14:03:40 -0700 | [diff] [blame] | 1079 | b->legacy_io = kcalloc(2, sizeof(struct bin_attribute), |
Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 1080 | GFP_ATOMIC); |
| 1081 | if (!b->legacy_io) |
| 1082 | goto kzalloc_err; |
| 1083 | |
Stephen Rothwell | 62e877b8 | 2010-03-01 20:38:36 +1100 | [diff] [blame] | 1084 | sysfs_bin_attr_init(b->legacy_io); |
Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 1085 | b->legacy_io->attr.name = "legacy_io"; |
| 1086 | b->legacy_io->size = 0xffff; |
| 1087 | b->legacy_io->attr.mode = S_IRUSR | S_IWUSR; |
| 1088 | b->legacy_io->read = pci_read_legacy_io; |
| 1089 | b->legacy_io->write = pci_write_legacy_io; |
| 1090 | b->legacy_io->mmap = pci_mmap_legacy_io; |
Ivan Kokshaysky | 10a0ef3 | 2009-02-17 13:46:53 +0300 | [diff] [blame] | 1091 | pci_adjust_legacy_attr(b, pci_mmap_io); |
Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 1092 | error = device_create_bin_file(&b->dev, b->legacy_io); |
| 1093 | if (error) |
| 1094 | goto legacy_io_err; |
| 1095 | |
| 1096 | /* Allocated above after the legacy_io struct */ |
| 1097 | b->legacy_mem = b->legacy_io + 1; |
Mel Gorman | 6757eca3 | 2010-03-10 22:48:34 +0000 | [diff] [blame] | 1098 | sysfs_bin_attr_init(b->legacy_mem); |
Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 1099 | b->legacy_mem->attr.name = "legacy_mem"; |
| 1100 | b->legacy_mem->size = 1024*1024; |
| 1101 | b->legacy_mem->attr.mode = S_IRUSR | S_IWUSR; |
| 1102 | b->legacy_mem->mmap = pci_mmap_legacy_mem; |
Ivan Kokshaysky | 10a0ef3 | 2009-02-17 13:46:53 +0300 | [diff] [blame] | 1103 | pci_adjust_legacy_attr(b, pci_mmap_mem); |
Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 1104 | error = device_create_bin_file(&b->dev, b->legacy_mem); |
| 1105 | if (error) |
| 1106 | goto legacy_mem_err; |
| 1107 | |
| 1108 | return; |
| 1109 | |
| 1110 | legacy_mem_err: |
| 1111 | device_remove_bin_file(&b->dev, b->legacy_io); |
| 1112 | legacy_io_err: |
| 1113 | kfree(b->legacy_io); |
| 1114 | b->legacy_io = NULL; |
| 1115 | kzalloc_err: |
Ryan Desfosses | 227f064 | 2014-04-18 20:13:50 -0400 | [diff] [blame] | 1116 | printk(KERN_WARNING "pci: warning: could not create legacy I/O port and ISA memory resources to sysfs\n"); |
Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 1117 | return; |
| 1118 | } |
| 1119 | |
| 1120 | void pci_remove_legacy_files(struct pci_bus *b) |
| 1121 | { |
| 1122 | if (b->legacy_io) { |
| 1123 | device_remove_bin_file(&b->dev, b->legacy_io); |
| 1124 | device_remove_bin_file(&b->dev, b->legacy_mem); |
| 1125 | kfree(b->legacy_io); /* both are allocated here */ |
| 1126 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | } |
| 1128 | #endif /* HAVE_PCI_LEGACY */ |
| 1129 | |
David Woodhouse | f719582 | 2017-04-12 13:25:59 +0100 | [diff] [blame] | 1130 | #if defined(HAVE_PCI_MMAP) || defined(ARCH_GENERIC_PCI_MMAP_RESOURCE) |
Linus Torvalds | b5ff7df | 2008-10-02 18:52:51 -0700 | [diff] [blame] | 1131 | |
Martin Wilck | 3b519e4 | 2010-11-10 11:03:21 +0100 | [diff] [blame] | 1132 | int pci_mmap_fits(struct pci_dev *pdev, int resno, struct vm_area_struct *vma, |
| 1133 | enum pci_mmap_api mmap_api) |
Linus Torvalds | b5ff7df | 2008-10-02 18:52:51 -0700 | [diff] [blame] | 1134 | { |
David Woodhouse | 6bccc7f | 2017-04-12 13:25:50 +0100 | [diff] [blame] | 1135 | unsigned long nr, start, size; |
| 1136 | resource_size_t pci_start = 0, pci_end; |
Linus Torvalds | b5ff7df | 2008-10-02 18:52:51 -0700 | [diff] [blame] | 1137 | |
Martin Wilck | 3b519e4 | 2010-11-10 11:03:21 +0100 | [diff] [blame] | 1138 | if (pci_resource_len(pdev, resno) == 0) |
| 1139 | return 0; |
Libin | 64b0017 | 2013-04-15 02:48:54 +0000 | [diff] [blame] | 1140 | nr = vma_pages(vma); |
Linus Torvalds | b5ff7df | 2008-10-02 18:52:51 -0700 | [diff] [blame] | 1141 | start = vma->vm_pgoff; |
Ed Swierk | 88e7df0 | 2008-11-03 14:41:16 -0800 | [diff] [blame] | 1142 | size = ((pci_resource_len(pdev, resno) - 1) >> PAGE_SHIFT) + 1; |
David Woodhouse | 6bccc7f | 2017-04-12 13:25:50 +0100 | [diff] [blame] | 1143 | if (mmap_api == PCI_MMAP_PROCFS) { |
| 1144 | pci_resource_to_user(pdev, resno, &pdev->resource[resno], |
| 1145 | &pci_start, &pci_end); |
| 1146 | pci_start >>= PAGE_SHIFT; |
| 1147 | } |
Martin Wilck | 3b519e4 | 2010-11-10 11:03:21 +0100 | [diff] [blame] | 1148 | if (start >= pci_start && start < pci_start + size && |
| 1149 | start + nr <= pci_start + size) |
Linus Torvalds | b5ff7df | 2008-10-02 18:52:51 -0700 | [diff] [blame] | 1150 | return 1; |
Linus Torvalds | b5ff7df | 2008-10-02 18:52:51 -0700 | [diff] [blame] | 1151 | return 0; |
| 1152 | } |
| 1153 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | /** |
| 1155 | * pci_mmap_resource - map a PCI resource into user memory space |
| 1156 | * @kobj: kobject for mapping |
| 1157 | * @attr: struct bin_attribute for the file being mapped |
| 1158 | * @vma: struct vm_area_struct passed into the mmap |
venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 1159 | * @write_combine: 1 for write_combine mapping |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | * |
| 1161 | * Use the regular PCI mapping routines to map a PCI resource into userspace. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | */ |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1163 | static int pci_mmap_resource(struct kobject *kobj, struct bin_attribute *attr, |
| 1164 | struct vm_area_struct *vma, int write_combine) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | { |
Geliang Tang | 554a603 | 2015-12-23 20:28:13 +0800 | [diff] [blame] | 1166 | struct pci_dev *pdev = to_pci_dev(kobj_to_dev(kobj)); |
David Woodhouse | dca40b1 | 2017-04-12 13:25:57 +0100 | [diff] [blame] | 1167 | int bar = (unsigned long)attr->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | enum pci_mmap_state mmap_type; |
David Woodhouse | dca40b1 | 2017-04-12 13:25:57 +0100 | [diff] [blame] | 1169 | struct resource *res = &pdev->resource[bar]; |
Michael Ellerman | 2311b1f | 2005-05-13 17:44:10 +1000 | [diff] [blame] | 1170 | |
Bjorn Helgaas | ca62072 | 2016-04-07 17:15:14 -0700 | [diff] [blame] | 1171 | if (res->flags & IORESOURCE_MEM && iomem_is_exclusive(res->start)) |
| 1172 | return -EINVAL; |
| 1173 | |
Bjorn Helgaas | 7a09490 | 2017-11-29 11:47:29 -0600 | [diff] [blame] | 1174 | if (!pci_mmap_fits(pdev, bar, vma, PCI_MMAP_SYSFS)) |
Linus Torvalds | b5ff7df | 2008-10-02 18:52:51 -0700 | [diff] [blame] | 1175 | return -EINVAL; |
Bjorn Helgaas | 7a09490 | 2017-11-29 11:47:29 -0600 | [diff] [blame] | 1176 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | mmap_type = res->flags & IORESOURCE_MEM ? pci_mmap_mem : pci_mmap_io; |
David Woodhouse | f719582 | 2017-04-12 13:25:59 +0100 | [diff] [blame] | 1178 | |
| 1179 | return pci_mmap_resource_range(pdev, bar, vma, mmap_type, write_combine); |
venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 1180 | } |
| 1181 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1182 | static int pci_mmap_resource_uc(struct file *filp, struct kobject *kobj, |
| 1183 | struct bin_attribute *attr, |
| 1184 | struct vm_area_struct *vma) |
venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 1185 | { |
| 1186 | return pci_mmap_resource(kobj, attr, vma, 0); |
| 1187 | } |
| 1188 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1189 | static int pci_mmap_resource_wc(struct file *filp, struct kobject *kobj, |
| 1190 | struct bin_attribute *attr, |
| 1191 | struct vm_area_struct *vma) |
venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 1192 | { |
| 1193 | return pci_mmap_resource(kobj, attr, vma, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | } |
| 1195 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1196 | static ssize_t pci_resource_io(struct file *filp, struct kobject *kobj, |
| 1197 | struct bin_attribute *attr, char *buf, |
| 1198 | loff_t off, size_t count, bool write) |
Alex Williamson | 8633328 | 2010-07-19 09:45:34 -0600 | [diff] [blame] | 1199 | { |
Geliang Tang | 554a603 | 2015-12-23 20:28:13 +0800 | [diff] [blame] | 1200 | struct pci_dev *pdev = to_pci_dev(kobj_to_dev(kobj)); |
David Woodhouse | dca40b1 | 2017-04-12 13:25:57 +0100 | [diff] [blame] | 1201 | int bar = (unsigned long)attr->private; |
Alex Williamson | 8633328 | 2010-07-19 09:45:34 -0600 | [diff] [blame] | 1202 | unsigned long port = off; |
Alex Williamson | 8633328 | 2010-07-19 09:45:34 -0600 | [diff] [blame] | 1203 | |
David Woodhouse | dca40b1 | 2017-04-12 13:25:57 +0100 | [diff] [blame] | 1204 | port += pci_resource_start(pdev, bar); |
Alex Williamson | 8633328 | 2010-07-19 09:45:34 -0600 | [diff] [blame] | 1205 | |
David Woodhouse | dca40b1 | 2017-04-12 13:25:57 +0100 | [diff] [blame] | 1206 | if (port > pci_resource_end(pdev, bar)) |
Alex Williamson | 8633328 | 2010-07-19 09:45:34 -0600 | [diff] [blame] | 1207 | return 0; |
| 1208 | |
David Woodhouse | dca40b1 | 2017-04-12 13:25:57 +0100 | [diff] [blame] | 1209 | if (port + count - 1 > pci_resource_end(pdev, bar)) |
Alex Williamson | 8633328 | 2010-07-19 09:45:34 -0600 | [diff] [blame] | 1210 | return -EINVAL; |
| 1211 | |
| 1212 | switch (count) { |
| 1213 | case 1: |
| 1214 | if (write) |
| 1215 | outb(*(u8 *)buf, port); |
| 1216 | else |
| 1217 | *(u8 *)buf = inb(port); |
| 1218 | return 1; |
| 1219 | case 2: |
| 1220 | if (write) |
| 1221 | outw(*(u16 *)buf, port); |
| 1222 | else |
| 1223 | *(u16 *)buf = inw(port); |
| 1224 | return 2; |
| 1225 | case 4: |
| 1226 | if (write) |
| 1227 | outl(*(u32 *)buf, port); |
| 1228 | else |
| 1229 | *(u32 *)buf = inl(port); |
| 1230 | return 4; |
| 1231 | } |
| 1232 | return -EINVAL; |
| 1233 | } |
| 1234 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1235 | static ssize_t pci_read_resource_io(struct file *filp, struct kobject *kobj, |
| 1236 | struct bin_attribute *attr, char *buf, |
| 1237 | loff_t off, size_t count) |
Alex Williamson | 8633328 | 2010-07-19 09:45:34 -0600 | [diff] [blame] | 1238 | { |
| 1239 | return pci_resource_io(filp, kobj, attr, buf, off, count, false); |
| 1240 | } |
| 1241 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1242 | static ssize_t pci_write_resource_io(struct file *filp, struct kobject *kobj, |
| 1243 | struct bin_attribute *attr, char *buf, |
| 1244 | loff_t off, size_t count) |
Alex Williamson | 8633328 | 2010-07-19 09:45:34 -0600 | [diff] [blame] | 1245 | { |
| 1246 | return pci_resource_io(filp, kobj, attr, buf, off, count, true); |
| 1247 | } |
| 1248 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | /** |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1250 | * pci_remove_resource_files - cleanup resource files |
Randy Dunlap | cffb2fa | 2009-04-10 15:17:50 -0700 | [diff] [blame] | 1251 | * @pdev: dev to cleanup |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1252 | * |
Randy Dunlap | cffb2fa | 2009-04-10 15:17:50 -0700 | [diff] [blame] | 1253 | * If we created resource files for @pdev, remove them from sysfs and |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1254 | * free their resources. |
| 1255 | */ |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1256 | static void pci_remove_resource_files(struct pci_dev *pdev) |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1257 | { |
| 1258 | int i; |
| 1259 | |
| 1260 | for (i = 0; i < PCI_ROM_RESOURCE; i++) { |
| 1261 | struct bin_attribute *res_attr; |
| 1262 | |
| 1263 | res_attr = pdev->res_attr[i]; |
| 1264 | if (res_attr) { |
| 1265 | sysfs_remove_bin_file(&pdev->dev.kobj, res_attr); |
| 1266 | kfree(res_attr); |
| 1267 | } |
venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 1268 | |
| 1269 | res_attr = pdev->res_attr_wc[i]; |
| 1270 | if (res_attr) { |
| 1271 | sysfs_remove_bin_file(&pdev->dev.kobj, res_attr); |
| 1272 | kfree(res_attr); |
| 1273 | } |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1274 | } |
| 1275 | } |
| 1276 | |
venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 1277 | static int pci_create_attr(struct pci_dev *pdev, int num, int write_combine) |
| 1278 | { |
| 1279 | /* allocate attribute structure, piggyback attribute name */ |
| 1280 | int name_len = write_combine ? 13 : 10; |
| 1281 | struct bin_attribute *res_attr; |
Bjorn Helgaas | bd5174d | 2016-03-10 14:36:34 -0600 | [diff] [blame] | 1282 | char *res_attr_name; |
venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 1283 | int retval; |
| 1284 | |
| 1285 | res_attr = kzalloc(sizeof(*res_attr) + name_len, GFP_ATOMIC); |
Bjorn Helgaas | bd5174d | 2016-03-10 14:36:34 -0600 | [diff] [blame] | 1286 | if (!res_attr) |
| 1287 | return -ENOMEM; |
venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 1288 | |
Bjorn Helgaas | bd5174d | 2016-03-10 14:36:34 -0600 | [diff] [blame] | 1289 | res_attr_name = (char *)(res_attr + 1); |
| 1290 | |
| 1291 | sysfs_bin_attr_init(res_attr); |
| 1292 | if (write_combine) { |
| 1293 | pdev->res_attr_wc[num] = res_attr; |
| 1294 | sprintf(res_attr_name, "resource%d_wc", num); |
| 1295 | res_attr->mmap = pci_mmap_resource_wc; |
| 1296 | } else { |
| 1297 | pdev->res_attr[num] = res_attr; |
| 1298 | sprintf(res_attr_name, "resource%d", num); |
David Woodhouse | e854d8b | 2017-04-12 13:25:56 +0100 | [diff] [blame] | 1299 | if (pci_resource_flags(pdev, num) & IORESOURCE_IO) { |
| 1300 | res_attr->read = pci_read_resource_io; |
| 1301 | res_attr->write = pci_write_resource_io; |
| 1302 | if (arch_can_pci_mmap_io()) |
| 1303 | res_attr->mmap = pci_mmap_resource_uc; |
| 1304 | } else { |
| 1305 | res_attr->mmap = pci_mmap_resource_uc; |
| 1306 | } |
Bjorn Helgaas | bd5174d | 2016-03-10 14:36:34 -0600 | [diff] [blame] | 1307 | } |
| 1308 | res_attr->attr.name = res_attr_name; |
| 1309 | res_attr->attr.mode = S_IRUSR | S_IWUSR; |
| 1310 | res_attr->size = pci_resource_len(pdev, num); |
David Woodhouse | dca40b1 | 2017-04-12 13:25:57 +0100 | [diff] [blame] | 1311 | res_attr->private = (void *)(unsigned long)num; |
Bjorn Helgaas | bd5174d | 2016-03-10 14:36:34 -0600 | [diff] [blame] | 1312 | retval = sysfs_create_bin_file(&pdev->dev.kobj, res_attr); |
| 1313 | if (retval) |
| 1314 | kfree(res_attr); |
venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 1315 | |
| 1316 | return retval; |
| 1317 | } |
| 1318 | |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1319 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | * pci_create_resource_files - create resource files in sysfs for @dev |
Randy Dunlap | cffb2fa | 2009-04-10 15:17:50 -0700 | [diff] [blame] | 1321 | * @pdev: dev in question |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 | * |
Randy Dunlap | cffb2fa | 2009-04-10 15:17:50 -0700 | [diff] [blame] | 1323 | * Walk the resources in @pdev creating files for each resource available. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 | */ |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1325 | static int pci_create_resource_files(struct pci_dev *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | { |
| 1327 | int i; |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1328 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1329 | |
| 1330 | /* Expose the PCI resources from this device as files */ |
| 1331 | for (i = 0; i < PCI_ROM_RESOURCE; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | |
| 1333 | /* skip empty resources */ |
| 1334 | if (!pci_resource_len(pdev, i)) |
| 1335 | continue; |
| 1336 | |
venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 1337 | retval = pci_create_attr(pdev, i, 0); |
| 1338 | /* for prefetchable resources, create a WC mappable file */ |
David Woodhouse | ae749c7 | 2017-04-12 13:25:54 +0100 | [diff] [blame] | 1339 | if (!retval && arch_can_pci_mmap_wc() && |
| 1340 | pdev->resource[i].flags & IORESOURCE_PREFETCH) |
venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 1341 | retval = pci_create_attr(pdev, i, 1); |
venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 1342 | if (retval) { |
| 1343 | pci_remove_resource_files(pdev); |
| 1344 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | } |
| 1346 | } |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1347 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | } |
| 1349 | #else /* !HAVE_PCI_MMAP */ |
Ivan Kokshaysky | 10a0ef3 | 2009-02-17 13:46:53 +0300 | [diff] [blame] | 1350 | int __weak pci_create_resource_files(struct pci_dev *dev) { return 0; } |
| 1351 | void __weak pci_remove_resource_files(struct pci_dev *dev) { return; } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | #endif /* HAVE_PCI_MMAP */ |
| 1353 | |
| 1354 | /** |
| 1355 | * pci_write_rom - used to enable access to the PCI ROM display |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 1356 | * @filp: sysfs file |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | * @kobj: kernel object handle |
Randy Dunlap | cffb2fa | 2009-04-10 15:17:50 -0700 | [diff] [blame] | 1358 | * @bin_attr: struct bin_attribute for this file |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | * @buf: user input |
| 1360 | * @off: file offset |
| 1361 | * @count: number of byte in input |
| 1362 | * |
| 1363 | * writing anything except 0 enables it |
| 1364 | */ |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1365 | static ssize_t pci_write_rom(struct file *filp, struct kobject *kobj, |
| 1366 | struct bin_attribute *bin_attr, char *buf, |
| 1367 | loff_t off, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 | { |
Geliang Tang | 554a603 | 2015-12-23 20:28:13 +0800 | [diff] [blame] | 1369 | struct pci_dev *pdev = to_pci_dev(kobj_to_dev(kobj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | |
| 1371 | if ((off == 0) && (*buf == '0') && (count == 2)) |
| 1372 | pdev->rom_attr_enabled = 0; |
| 1373 | else |
| 1374 | pdev->rom_attr_enabled = 1; |
| 1375 | |
| 1376 | return count; |
| 1377 | } |
| 1378 | |
| 1379 | /** |
| 1380 | * pci_read_rom - read a PCI ROM |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 1381 | * @filp: sysfs file |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | * @kobj: kernel object handle |
Randy Dunlap | cffb2fa | 2009-04-10 15:17:50 -0700 | [diff] [blame] | 1383 | * @bin_attr: struct bin_attribute for this file |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | * @buf: where to put the data we read from the ROM |
| 1385 | * @off: file offset |
| 1386 | * @count: number of bytes to read |
| 1387 | * |
| 1388 | * Put @count bytes starting at @off into @buf from the ROM in the PCI |
| 1389 | * device corresponding to @kobj. |
| 1390 | */ |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1391 | static ssize_t pci_read_rom(struct file *filp, struct kobject *kobj, |
| 1392 | struct bin_attribute *bin_attr, char *buf, |
| 1393 | loff_t off, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | { |
Geliang Tang | 554a603 | 2015-12-23 20:28:13 +0800 | [diff] [blame] | 1395 | struct pci_dev *pdev = to_pci_dev(kobj_to_dev(kobj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1396 | void __iomem *rom; |
| 1397 | size_t size; |
| 1398 | |
| 1399 | if (!pdev->rom_attr_enabled) |
| 1400 | return -EINVAL; |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 1401 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | rom = pci_map_rom(pdev, &size); /* size starts out as PCI window size */ |
Timothy S. Nelson | 97c4483 | 2009-01-30 06:12:47 +1100 | [diff] [blame] | 1403 | if (!rom || !size) |
| 1404 | return -EIO; |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 1405 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | if (off >= size) |
| 1407 | count = 0; |
| 1408 | else { |
| 1409 | if (off + count > size) |
| 1410 | count = size - off; |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 1411 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | memcpy_fromio(buf, rom + off, count); |
| 1413 | } |
| 1414 | pci_unmap_rom(pdev, rom); |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 1415 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 | return count; |
| 1417 | } |
| 1418 | |
Bhumika Goyal | 8bdc50a | 2017-08-02 20:57:27 +0530 | [diff] [blame] | 1419 | static const struct bin_attribute pci_config_attr = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | .attr = { |
| 1421 | .name = "config", |
| 1422 | .mode = S_IRUGO | S_IWUSR, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1423 | }, |
Zhao, Yu | 557848c | 2008-10-13 19:18:07 +0800 | [diff] [blame] | 1424 | .size = PCI_CFG_SPACE_SIZE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | .read = pci_read_config, |
| 1426 | .write = pci_write_config, |
| 1427 | }; |
| 1428 | |
Bhumika Goyal | 8bdc50a | 2017-08-02 20:57:27 +0530 | [diff] [blame] | 1429 | static const struct bin_attribute pcie_config_attr = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | .attr = { |
| 1431 | .name = "config", |
| 1432 | .mode = S_IRUGO | S_IWUSR, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1433 | }, |
Zhao, Yu | 557848c | 2008-10-13 19:18:07 +0800 | [diff] [blame] | 1434 | .size = PCI_CFG_SPACE_EXP_SIZE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1435 | .read = pci_read_config, |
| 1436 | .write = pci_write_config, |
| 1437 | }; |
| 1438 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1439 | static ssize_t reset_store(struct device *dev, struct device_attribute *attr, |
| 1440 | const char *buf, size_t count) |
Michael S. Tsirkin | 711d577 | 2009-07-27 23:37:48 +0300 | [diff] [blame] | 1441 | { |
| 1442 | struct pci_dev *pdev = to_pci_dev(dev); |
| 1443 | unsigned long val; |
Jingoo Han | 9a994e8 | 2013-06-01 16:25:25 +0900 | [diff] [blame] | 1444 | ssize_t result = kstrtoul(buf, 0, &val); |
Michael S. Tsirkin | 711d577 | 2009-07-27 23:37:48 +0300 | [diff] [blame] | 1445 | |
| 1446 | if (result < 0) |
| 1447 | return result; |
| 1448 | |
| 1449 | if (val != 1) |
| 1450 | return -EINVAL; |
Michal Schmidt | 447c5dd | 2010-05-11 11:44:54 +0200 | [diff] [blame] | 1451 | |
| 1452 | result = pci_reset_function(pdev); |
| 1453 | if (result < 0) |
| 1454 | return result; |
| 1455 | |
| 1456 | return count; |
Michael S. Tsirkin | 711d577 | 2009-07-27 23:37:48 +0300 | [diff] [blame] | 1457 | } |
| 1458 | |
| 1459 | static struct device_attribute reset_attr = __ATTR(reset, 0200, NULL, reset_store); |
| 1460 | |
Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1461 | static int pci_create_capabilities_sysfs(struct pci_dev *dev) |
| 1462 | { |
| 1463 | int retval; |
Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1464 | |
Bjorn Helgaas | b1c615c | 2018-03-19 13:06:17 -0500 | [diff] [blame] | 1465 | pcie_vpd_create_sysfs_dev_files(dev); |
Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1466 | pcie_aspm_create_sysfs_dev_files(dev); |
| 1467 | |
Bjorn Helgaas | 5b0764c | 2018-02-16 10:55:38 -0600 | [diff] [blame] | 1468 | if (dev->reset_fn) { |
Michael S. Tsirkin | 711d577 | 2009-07-27 23:37:48 +0300 | [diff] [blame] | 1469 | retval = device_create_file(&dev->dev, &reset_attr); |
| 1470 | if (retval) |
| 1471 | goto error; |
Michael S. Tsirkin | 711d577 | 2009-07-27 23:37:48 +0300 | [diff] [blame] | 1472 | } |
Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1473 | return 0; |
Michael S. Tsirkin | 711d577 | 2009-07-27 23:37:48 +0300 | [diff] [blame] | 1474 | |
| 1475 | error: |
| 1476 | pcie_aspm_remove_sysfs_dev_files(dev); |
Bjorn Helgaas | b1c615c | 2018-03-19 13:06:17 -0500 | [diff] [blame] | 1477 | pcie_vpd_remove_sysfs_dev_files(dev); |
Michael S. Tsirkin | 711d577 | 2009-07-27 23:37:48 +0300 | [diff] [blame] | 1478 | return retval; |
Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1479 | } |
| 1480 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1481 | int __must_check pci_create_sysfs_dev_files(struct pci_dev *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1482 | { |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1483 | int retval; |
Bjorn Helgaas | ac0c302 | 2016-03-12 05:48:08 -0600 | [diff] [blame] | 1484 | int rom_size; |
Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1485 | struct bin_attribute *attr; |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1486 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | if (!sysfs_initialized) |
| 1488 | return -EACCES; |
| 1489 | |
Jason S. McMullan | c20aecf | 2015-09-30 15:35:05 +0900 | [diff] [blame] | 1490 | if (pdev->cfg_size > PCI_CFG_SPACE_SIZE) |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1491 | retval = sysfs_create_bin_file(&pdev->dev.kobj, &pcie_config_attr); |
Jason S. McMullan | c20aecf | 2015-09-30 15:35:05 +0900 | [diff] [blame] | 1492 | else |
| 1493 | retval = sysfs_create_bin_file(&pdev->dev.kobj, &pci_config_attr); |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1494 | if (retval) |
| 1495 | goto err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1497 | retval = pci_create_resource_files(pdev); |
| 1498 | if (retval) |
Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1499 | goto err_config_file; |
| 1500 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1501 | /* If the device has a ROM, try to expose it in sysfs. */ |
Bjorn Helgaas | ac0c302 | 2016-03-12 05:48:08 -0600 | [diff] [blame] | 1502 | rom_size = pci_resource_len(pdev, PCI_ROM_RESOURCE); |
Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1503 | if (rom_size) { |
Ben Hutchings | 94e6108 | 2008-03-05 16:52:39 +0000 | [diff] [blame] | 1504 | attr = kzalloc(sizeof(*attr), GFP_ATOMIC); |
Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1505 | if (!attr) { |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1506 | retval = -ENOMEM; |
Michael Ellerman | 9890b12 | 2007-04-18 13:34:12 +1000 | [diff] [blame] | 1507 | goto err_resource_files; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | } |
Eric W. Biederman | a07e415 | 2010-02-11 15:23:05 -0800 | [diff] [blame] | 1509 | sysfs_bin_attr_init(attr); |
Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1510 | attr->size = rom_size; |
| 1511 | attr->attr.name = "rom"; |
Alex Williamson | ff29530 | 2011-01-05 10:26:41 -0700 | [diff] [blame] | 1512 | attr->attr.mode = S_IRUSR | S_IWUSR; |
Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1513 | attr->read = pci_read_rom; |
| 1514 | attr->write = pci_write_rom; |
| 1515 | retval = sysfs_create_bin_file(&pdev->dev.kobj, attr); |
| 1516 | if (retval) { |
| 1517 | kfree(attr); |
| 1518 | goto err_resource_files; |
| 1519 | } |
| 1520 | pdev->rom_attr = attr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1521 | } |
Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1522 | |
Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1523 | /* add sysfs entries for various capabilities */ |
| 1524 | retval = pci_create_capabilities_sysfs(pdev); |
| 1525 | if (retval) |
Yinghai Lu | 625e1d5 | 2012-11-05 15:20:35 -0500 | [diff] [blame] | 1526 | goto err_rom_file; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 1527 | |
Narendra K | 911e1c9 | 2010-07-26 05:56:50 -0500 | [diff] [blame] | 1528 | pci_create_firmware_label_files(pdev); |
| 1529 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1530 | return 0; |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1531 | |
Michael Ellerman | a2cd52c | 2007-05-08 12:03:08 +1000 | [diff] [blame] | 1532 | err_rom_file: |
Bjorn Helgaas | 9d88b93 | 2016-03-01 09:37:10 -0600 | [diff] [blame] | 1533 | if (pdev->rom_attr) { |
Ben Hutchings | 94e6108 | 2008-03-05 16:52:39 +0000 | [diff] [blame] | 1534 | sysfs_remove_bin_file(&pdev->dev.kobj, pdev->rom_attr); |
Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1535 | kfree(pdev->rom_attr); |
| 1536 | pdev->rom_attr = NULL; |
| 1537 | } |
Michael Ellerman | 9890b12 | 2007-04-18 13:34:12 +1000 | [diff] [blame] | 1538 | err_resource_files: |
| 1539 | pci_remove_resource_files(pdev); |
Ben Hutchings | 94e6108 | 2008-03-05 16:52:39 +0000 | [diff] [blame] | 1540 | err_config_file: |
Jason S. McMullan | c20aecf | 2015-09-30 15:35:05 +0900 | [diff] [blame] | 1541 | if (pdev->cfg_size > PCI_CFG_SPACE_SIZE) |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1542 | sysfs_remove_bin_file(&pdev->dev.kobj, &pcie_config_attr); |
Jason S. McMullan | c20aecf | 2015-09-30 15:35:05 +0900 | [diff] [blame] | 1543 | else |
| 1544 | sysfs_remove_bin_file(&pdev->dev.kobj, &pci_config_attr); |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1545 | err: |
| 1546 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1547 | } |
| 1548 | |
Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1549 | static void pci_remove_capabilities_sysfs(struct pci_dev *dev) |
| 1550 | { |
Bjorn Helgaas | b1c615c | 2018-03-19 13:06:17 -0500 | [diff] [blame] | 1551 | pcie_vpd_remove_sysfs_dev_files(dev); |
Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1552 | pcie_aspm_remove_sysfs_dev_files(dev); |
Michael S. Tsirkin | 711d577 | 2009-07-27 23:37:48 +0300 | [diff] [blame] | 1553 | if (dev->reset_fn) { |
| 1554 | device_remove_file(&dev->dev, &reset_attr); |
| 1555 | dev->reset_fn = 0; |
| 1556 | } |
Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1557 | } |
| 1558 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1559 | /** |
| 1560 | * pci_remove_sysfs_dev_files - cleanup PCI specific sysfs files |
| 1561 | * @pdev: device whose entries we should free |
| 1562 | * |
| 1563 | * Cleanup when @pdev is removed from sysfs. |
| 1564 | */ |
| 1565 | void pci_remove_sysfs_dev_files(struct pci_dev *pdev) |
| 1566 | { |
David Miller | d67afe5 | 2006-11-10 12:27:48 -0800 | [diff] [blame] | 1567 | if (!sysfs_initialized) |
| 1568 | return; |
| 1569 | |
Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1570 | pci_remove_capabilities_sysfs(pdev); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 1571 | |
Jason S. McMullan | c20aecf | 2015-09-30 15:35:05 +0900 | [diff] [blame] | 1572 | if (pdev->cfg_size > PCI_CFG_SPACE_SIZE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1573 | sysfs_remove_bin_file(&pdev->dev.kobj, &pcie_config_attr); |
Jason S. McMullan | c20aecf | 2015-09-30 15:35:05 +0900 | [diff] [blame] | 1574 | else |
| 1575 | sysfs_remove_bin_file(&pdev->dev.kobj, &pci_config_attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | |
| 1577 | pci_remove_resource_files(pdev); |
| 1578 | |
Bjorn Helgaas | 9d88b93 | 2016-03-01 09:37:10 -0600 | [diff] [blame] | 1579 | if (pdev->rom_attr) { |
Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1580 | sysfs_remove_bin_file(&pdev->dev.kobj, pdev->rom_attr); |
| 1581 | kfree(pdev->rom_attr); |
Bjorn Helgaas | 9d88b93 | 2016-03-01 09:37:10 -0600 | [diff] [blame] | 1582 | pdev->rom_attr = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 | } |
Narendra K | 911e1c9 | 2010-07-26 05:56:50 -0500 | [diff] [blame] | 1584 | |
| 1585 | pci_remove_firmware_label_files(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1586 | } |
| 1587 | |
| 1588 | static int __init pci_sysfs_init(void) |
| 1589 | { |
| 1590 | struct pci_dev *pdev = NULL; |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1591 | int retval; |
| 1592 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1593 | sysfs_initialized = 1; |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1594 | for_each_pci_dev(pdev) { |
| 1595 | retval = pci_create_sysfs_dev_files(pdev); |
Julia Lawall | 151fc5d | 2007-11-20 08:41:16 +0100 | [diff] [blame] | 1596 | if (retval) { |
| 1597 | pci_dev_put(pdev); |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1598 | return retval; |
Julia Lawall | 151fc5d | 2007-11-20 08:41:16 +0100 | [diff] [blame] | 1599 | } |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1600 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1601 | |
| 1602 | return 0; |
| 1603 | } |
Jesse Barnes | 40ee9e9 | 2007-03-24 11:03:32 -0700 | [diff] [blame] | 1604 | late_initcall(pci_sysfs_init); |
Yinghai Lu | 4e15c46 | 2012-11-05 15:20:34 -0500 | [diff] [blame] | 1605 | |
| 1606 | static struct attribute *pci_dev_dev_attrs[] = { |
Yinghai Lu | 625e1d5 | 2012-11-05 15:20:35 -0500 | [diff] [blame] | 1607 | &vga_attr.attr, |
Yinghai Lu | 4e15c46 | 2012-11-05 15:20:34 -0500 | [diff] [blame] | 1608 | NULL, |
| 1609 | }; |
| 1610 | |
| 1611 | static umode_t pci_dev_attrs_are_visible(struct kobject *kobj, |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1612 | struct attribute *a, int n) |
Yinghai Lu | 4e15c46 | 2012-11-05 15:20:34 -0500 | [diff] [blame] | 1613 | { |
Geliang Tang | 554a603 | 2015-12-23 20:28:13 +0800 | [diff] [blame] | 1614 | struct device *dev = kobj_to_dev(kobj); |
Yinghai Lu | 625e1d5 | 2012-11-05 15:20:35 -0500 | [diff] [blame] | 1615 | struct pci_dev *pdev = to_pci_dev(dev); |
| 1616 | |
| 1617 | if (a == &vga_attr.attr) |
| 1618 | if ((pdev->class >> 8) != PCI_CLASS_DISPLAY_VGA) |
| 1619 | return 0; |
| 1620 | |
Yinghai Lu | 4e15c46 | 2012-11-05 15:20:34 -0500 | [diff] [blame] | 1621 | return a->mode; |
| 1622 | } |
| 1623 | |
Jiang Liu | dfab88b | 2013-05-31 12:21:31 +0800 | [diff] [blame] | 1624 | static struct attribute *pci_dev_hp_attrs[] = { |
| 1625 | &dev_remove_attr.attr, |
| 1626 | &dev_rescan_attr.attr, |
| 1627 | NULL, |
| 1628 | }; |
| 1629 | |
| 1630 | static umode_t pci_dev_hp_attrs_are_visible(struct kobject *kobj, |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1631 | struct attribute *a, int n) |
Jiang Liu | dfab88b | 2013-05-31 12:21:31 +0800 | [diff] [blame] | 1632 | { |
Geliang Tang | 554a603 | 2015-12-23 20:28:13 +0800 | [diff] [blame] | 1633 | struct device *dev = kobj_to_dev(kobj); |
Jiang Liu | dfab88b | 2013-05-31 12:21:31 +0800 | [diff] [blame] | 1634 | struct pci_dev *pdev = to_pci_dev(dev); |
| 1635 | |
| 1636 | if (pdev->is_virtfn) |
| 1637 | return 0; |
| 1638 | |
| 1639 | return a->mode; |
| 1640 | } |
| 1641 | |
Wong Vee Khee | 56c1af4 | 2017-06-01 17:43:06 +0800 | [diff] [blame] | 1642 | static umode_t pci_bridge_attrs_are_visible(struct kobject *kobj, |
| 1643 | struct attribute *a, int n) |
| 1644 | { |
| 1645 | struct device *dev = kobj_to_dev(kobj); |
| 1646 | struct pci_dev *pdev = to_pci_dev(dev); |
| 1647 | |
| 1648 | if (pci_is_bridge(pdev)) |
| 1649 | return a->mode; |
| 1650 | |
| 1651 | return 0; |
| 1652 | } |
| 1653 | |
| 1654 | static umode_t pcie_dev_attrs_are_visible(struct kobject *kobj, |
| 1655 | struct attribute *a, int n) |
| 1656 | { |
| 1657 | struct device *dev = kobj_to_dev(kobj); |
| 1658 | struct pci_dev *pdev = to_pci_dev(dev); |
| 1659 | |
| 1660 | if (pci_is_pcie(pdev)) |
| 1661 | return a->mode; |
| 1662 | |
| 1663 | return 0; |
| 1664 | } |
| 1665 | |
| 1666 | static const struct attribute_group pci_dev_group = { |
| 1667 | .attrs = pci_dev_attrs, |
| 1668 | }; |
| 1669 | |
| 1670 | const struct attribute_group *pci_dev_groups[] = { |
| 1671 | &pci_dev_group, |
| 1672 | NULL, |
| 1673 | }; |
| 1674 | |
| 1675 | static const struct attribute_group pci_bridge_group = { |
| 1676 | .attrs = pci_bridge_attrs, |
| 1677 | }; |
| 1678 | |
| 1679 | const struct attribute_group *pci_bridge_groups[] = { |
| 1680 | &pci_bridge_group, |
| 1681 | NULL, |
| 1682 | }; |
| 1683 | |
| 1684 | static const struct attribute_group pcie_dev_group = { |
| 1685 | .attrs = pcie_dev_attrs, |
| 1686 | }; |
| 1687 | |
| 1688 | const struct attribute_group *pcie_dev_groups[] = { |
| 1689 | &pcie_dev_group, |
| 1690 | NULL, |
| 1691 | }; |
| 1692 | |
Arvind Yadav | e7ea982 | 2017-07-11 14:57:07 +0530 | [diff] [blame] | 1693 | static const struct attribute_group pci_dev_hp_attr_group = { |
Jiang Liu | dfab88b | 2013-05-31 12:21:31 +0800 | [diff] [blame] | 1694 | .attrs = pci_dev_hp_attrs, |
| 1695 | .is_visible = pci_dev_hp_attrs_are_visible, |
| 1696 | }; |
| 1697 | |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 1698 | #ifdef CONFIG_PCI_IOV |
| 1699 | static struct attribute *sriov_dev_attrs[] = { |
| 1700 | &sriov_totalvfs_attr.attr, |
| 1701 | &sriov_numvfs_attr.attr, |
Filippo Sironi | 7dfca15 | 2017-10-09 01:09:11 +0200 | [diff] [blame] | 1702 | &sriov_offset_attr.attr, |
| 1703 | &sriov_stride_attr.attr, |
| 1704 | &sriov_vf_device_attr.attr, |
Bodong Wang | 0e7df22 | 2017-04-13 01:51:40 +0300 | [diff] [blame] | 1705 | &sriov_drivers_autoprobe_attr.attr, |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 1706 | NULL, |
| 1707 | }; |
| 1708 | |
| 1709 | static umode_t sriov_attrs_are_visible(struct kobject *kobj, |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1710 | struct attribute *a, int n) |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 1711 | { |
Geliang Tang | 554a603 | 2015-12-23 20:28:13 +0800 | [diff] [blame] | 1712 | struct device *dev = kobj_to_dev(kobj); |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 1713 | |
| 1714 | if (!dev_is_pf(dev)) |
| 1715 | return 0; |
| 1716 | |
| 1717 | return a->mode; |
| 1718 | } |
| 1719 | |
Arvind Yadav | e7ea982 | 2017-07-11 14:57:07 +0530 | [diff] [blame] | 1720 | static const struct attribute_group sriov_dev_attr_group = { |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 1721 | .attrs = sriov_dev_attrs, |
| 1722 | .is_visible = sriov_attrs_are_visible, |
| 1723 | }; |
| 1724 | #endif /* CONFIG_PCI_IOV */ |
| 1725 | |
Arvind Yadav | e7ea982 | 2017-07-11 14:57:07 +0530 | [diff] [blame] | 1726 | static const struct attribute_group pci_dev_attr_group = { |
Yinghai Lu | 4e15c46 | 2012-11-05 15:20:34 -0500 | [diff] [blame] | 1727 | .attrs = pci_dev_dev_attrs, |
| 1728 | .is_visible = pci_dev_attrs_are_visible, |
| 1729 | }; |
| 1730 | |
Arvind Yadav | e7ea982 | 2017-07-11 14:57:07 +0530 | [diff] [blame] | 1731 | static const struct attribute_group pci_bridge_attr_group = { |
Wong Vee Khee | 56c1af4 | 2017-06-01 17:43:06 +0800 | [diff] [blame] | 1732 | .attrs = pci_bridge_attrs, |
| 1733 | .is_visible = pci_bridge_attrs_are_visible, |
| 1734 | }; |
| 1735 | |
Arvind Yadav | e7ea982 | 2017-07-11 14:57:07 +0530 | [diff] [blame] | 1736 | static const struct attribute_group pcie_dev_attr_group = { |
Wong Vee Khee | 56c1af4 | 2017-06-01 17:43:06 +0800 | [diff] [blame] | 1737 | .attrs = pcie_dev_attrs, |
| 1738 | .is_visible = pcie_dev_attrs_are_visible, |
| 1739 | }; |
| 1740 | |
Yinghai Lu | 4e15c46 | 2012-11-05 15:20:34 -0500 | [diff] [blame] | 1741 | static const struct attribute_group *pci_dev_attr_groups[] = { |
| 1742 | &pci_dev_attr_group, |
Jiang Liu | dfab88b | 2013-05-31 12:21:31 +0800 | [diff] [blame] | 1743 | &pci_dev_hp_attr_group, |
Donald Dutile | 1789382 | 2012-11-05 15:20:36 -0500 | [diff] [blame] | 1744 | #ifdef CONFIG_PCI_IOV |
| 1745 | &sriov_dev_attr_group, |
| 1746 | #endif |
Wong Vee Khee | 56c1af4 | 2017-06-01 17:43:06 +0800 | [diff] [blame] | 1747 | &pci_bridge_attr_group, |
| 1748 | &pcie_dev_attr_group, |
Yinghai Lu | 4e15c46 | 2012-11-05 15:20:34 -0500 | [diff] [blame] | 1749 | NULL, |
| 1750 | }; |
| 1751 | |
Bhumika Goyal | 69f2dc2 | 2017-09-12 16:43:33 +0530 | [diff] [blame] | 1752 | const struct device_type pci_dev_type = { |
Yinghai Lu | 4e15c46 | 2012-11-05 15:20:34 -0500 | [diff] [blame] | 1753 | .groups = pci_dev_attr_groups, |
| 1754 | }; |