| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * drivers/pci/pci-sysfs.c | 
|  | 3 | * | 
|  | 4 | * (C) Copyright 2002-2004 Greg Kroah-Hartman <greg@kroah.com> | 
|  | 5 | * (C) Copyright 2002-2004 IBM Corp. | 
|  | 6 | * (C) Copyright 2003 Matthew Wilcox | 
|  | 7 | * (C) Copyright 2003 Hewlett-Packard | 
|  | 8 | * (C) Copyright 2004 Jon Smirl <jonsmirl@yahoo.com> | 
|  | 9 | * (C) Copyright 2004 Silicon Graphics, Inc. Jesse Barnes <jbarnes@sgi.com> | 
|  | 10 | * | 
|  | 11 | * File attributes for PCI devices | 
|  | 12 | * | 
|  | 13 | * Modeled after usb's driverfs.c | 
|  | 14 | * | 
|  | 15 | */ | 
|  | 16 |  | 
|  | 17 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/kernel.h> | 
| Linus Torvalds | b5ff7df | 2008-10-02 18:52:51 -0700 | [diff] [blame] | 19 | #include <linux/sched.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/pci.h> | 
|  | 21 | #include <linux/stat.h> | 
|  | 22 | #include <linux/topology.h> | 
|  | 23 | #include <linux/mm.h> | 
| Chris Wright | de139a3 | 2010-05-13 10:43:07 -0700 | [diff] [blame] | 24 | #include <linux/fs.h> | 
| Alexey Dobriyan | aa0ac36 | 2007-07-15 23:40:39 -0700 | [diff] [blame] | 25 | #include <linux/capability.h> | 
| Chris Wright | a628e7b | 2011-02-14 17:21:49 -0800 | [diff] [blame] | 26 | #include <linux/security.h> | 
| Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 27 | #include <linux/pci-aspm.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 28 | #include <linux/slab.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include "pci.h" | 
|  | 30 |  | 
|  | 31 | static int sysfs_initialized;	/* = 0 */ | 
|  | 32 |  | 
|  | 33 | /* show configuration fields */ | 
|  | 34 | #define pci_config_attr(field, format_string)				\ | 
|  | 35 | static ssize_t								\ | 
| Yani Ioannou | e404e27 | 2005-05-17 06:42:58 -0400 | [diff] [blame] | 36 | field##_show(struct device *dev, struct device_attribute *attr, char *buf)				\ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | {									\ | 
|  | 38 | struct pci_dev *pdev;						\ | 
|  | 39 | \ | 
|  | 40 | pdev = to_pci_dev (dev);					\ | 
|  | 41 | return sprintf (buf, format_string, pdev->field);		\ | 
|  | 42 | } | 
|  | 43 |  | 
|  | 44 | pci_config_attr(vendor, "0x%04x\n"); | 
|  | 45 | pci_config_attr(device, "0x%04x\n"); | 
|  | 46 | pci_config_attr(subsystem_vendor, "0x%04x\n"); | 
|  | 47 | pci_config_attr(subsystem_device, "0x%04x\n"); | 
|  | 48 | pci_config_attr(class, "0x%06x\n"); | 
|  | 49 | pci_config_attr(irq, "%u\n"); | 
|  | 50 |  | 
| Doug Thompson | bdee9d9 | 2006-06-14 16:59:48 -0700 | [diff] [blame] | 51 | static ssize_t broken_parity_status_show(struct device *dev, | 
|  | 52 | struct device_attribute *attr, | 
|  | 53 | char *buf) | 
|  | 54 | { | 
|  | 55 | struct pci_dev *pdev = to_pci_dev(dev); | 
|  | 56 | return sprintf (buf, "%u\n", pdev->broken_parity_status); | 
|  | 57 | } | 
|  | 58 |  | 
|  | 59 | static ssize_t broken_parity_status_store(struct device *dev, | 
|  | 60 | struct device_attribute *attr, | 
|  | 61 | const char *buf, size_t count) | 
|  | 62 | { | 
|  | 63 | struct pci_dev *pdev = to_pci_dev(dev); | 
| Trent Piepho | 92425a4 | 2008-11-30 17:10:12 -0800 | [diff] [blame] | 64 | unsigned long val; | 
| Doug Thompson | bdee9d9 | 2006-06-14 16:59:48 -0700 | [diff] [blame] | 65 |  | 
| Trent Piepho | 92425a4 | 2008-11-30 17:10:12 -0800 | [diff] [blame] | 66 | if (strict_strtoul(buf, 0, &val) < 0) | 
|  | 67 | return -EINVAL; | 
|  | 68 |  | 
|  | 69 | pdev->broken_parity_status = !!val; | 
|  | 70 |  | 
|  | 71 | return count; | 
| Doug Thompson | bdee9d9 | 2006-06-14 16:59:48 -0700 | [diff] [blame] | 72 | } | 
|  | 73 |  | 
| Alan Cox | 4327edf | 2005-09-10 00:25:49 -0700 | [diff] [blame] | 74 | static ssize_t local_cpus_show(struct device *dev, | 
|  | 75 | struct device_attribute *attr, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | { | 
| Mike Travis | 3be8305 | 2009-01-04 05:18:01 -0800 | [diff] [blame] | 77 | const struct cpumask *mask; | 
| Alan Cox | 4327edf | 2005-09-10 00:25:49 -0700 | [diff] [blame] | 78 | int len; | 
|  | 79 |  | 
| Andreas Herrmann | e0cd516 | 2009-04-17 12:01:55 +0200 | [diff] [blame] | 80 | #ifdef CONFIG_NUMA | 
| David John | 6be954d | 2010-01-04 20:28:57 +0530 | [diff] [blame] | 81 | mask = (dev_to_node(dev) == -1) ? cpu_online_mask : | 
|  | 82 | cpumask_of_node(dev_to_node(dev)); | 
| Andreas Herrmann | e0cd516 | 2009-04-17 12:01:55 +0200 | [diff] [blame] | 83 | #else | 
| Mike Travis | 3be8305 | 2009-01-04 05:18:01 -0800 | [diff] [blame] | 84 | mask = cpumask_of_pcibus(to_pci_dev(dev)->bus); | 
| Andreas Herrmann | e0cd516 | 2009-04-17 12:01:55 +0200 | [diff] [blame] | 85 | #endif | 
| Mike Travis | 3be8305 | 2009-01-04 05:18:01 -0800 | [diff] [blame] | 86 | len = cpumask_scnprintf(buf, PAGE_SIZE-2, mask); | 
| Mike Travis | 39106dc | 2008-04-08 11:43:03 -0700 | [diff] [blame] | 87 | buf[len++] = '\n'; | 
|  | 88 | buf[len] = '\0'; | 
|  | 89 | return len; | 
|  | 90 | } | 
|  | 91 |  | 
|  | 92 |  | 
|  | 93 | static ssize_t local_cpulist_show(struct device *dev, | 
|  | 94 | struct device_attribute *attr, char *buf) | 
|  | 95 | { | 
| Mike Travis | 3be8305 | 2009-01-04 05:18:01 -0800 | [diff] [blame] | 96 | const struct cpumask *mask; | 
| Mike Travis | 39106dc | 2008-04-08 11:43:03 -0700 | [diff] [blame] | 97 | int len; | 
|  | 98 |  | 
| Andreas Herrmann | e0cd516 | 2009-04-17 12:01:55 +0200 | [diff] [blame] | 99 | #ifdef CONFIG_NUMA | 
| David John | 6be954d | 2010-01-04 20:28:57 +0530 | [diff] [blame] | 100 | mask = (dev_to_node(dev) == -1) ? cpu_online_mask : | 
|  | 101 | cpumask_of_node(dev_to_node(dev)); | 
| Andreas Herrmann | e0cd516 | 2009-04-17 12:01:55 +0200 | [diff] [blame] | 102 | #else | 
| Mike Travis | 3be8305 | 2009-01-04 05:18:01 -0800 | [diff] [blame] | 103 | mask = cpumask_of_pcibus(to_pci_dev(dev)->bus); | 
| Andreas Herrmann | e0cd516 | 2009-04-17 12:01:55 +0200 | [diff] [blame] | 104 | #endif | 
| Mike Travis | 3be8305 | 2009-01-04 05:18:01 -0800 | [diff] [blame] | 105 | len = cpulist_scnprintf(buf, PAGE_SIZE-2, mask); | 
| Mike Travis | 39106dc | 2008-04-08 11:43:03 -0700 | [diff] [blame] | 106 | buf[len++] = '\n'; | 
|  | 107 | buf[len] = '\0'; | 
|  | 108 | return len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | } | 
|  | 110 |  | 
|  | 111 | /* show resources */ | 
|  | 112 | static ssize_t | 
| Yani Ioannou | e404e27 | 2005-05-17 06:42:58 -0400 | [diff] [blame] | 113 | resource_show(struct device * dev, struct device_attribute *attr, char * buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | { | 
|  | 115 | struct pci_dev * pci_dev = to_pci_dev(dev); | 
|  | 116 | char * str = buf; | 
|  | 117 | int i; | 
| Yu Zhao | fde09c6 | 2008-11-22 02:39:32 +0800 | [diff] [blame] | 118 | int max; | 
| Greg Kroah-Hartman | e31dd6e | 2006-06-12 17:06:02 -0700 | [diff] [blame] | 119 | resource_size_t start, end; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 |  | 
|  | 121 | if (pci_dev->subordinate) | 
|  | 122 | max = DEVICE_COUNT_RESOURCE; | 
| Yu Zhao | fde09c6 | 2008-11-22 02:39:32 +0800 | [diff] [blame] | 123 | else | 
|  | 124 | max = PCI_BRIDGE_RESOURCES; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 |  | 
|  | 126 | for (i = 0; i < max; i++) { | 
| Michael Ellerman | 2311b1f | 2005-05-13 17:44:10 +1000 | [diff] [blame] | 127 | struct resource *res =  &pci_dev->resource[i]; | 
|  | 128 | pci_resource_to_user(pci_dev, i, res, &start, &end); | 
|  | 129 | str += sprintf(str,"0x%016llx 0x%016llx 0x%016llx\n", | 
|  | 130 | (unsigned long long)start, | 
|  | 131 | (unsigned long long)end, | 
|  | 132 | (unsigned long long)res->flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | } | 
|  | 134 | return (str - buf); | 
|  | 135 | } | 
|  | 136 |  | 
| Greg Kroah-Hartman | 87c8a44 | 2005-06-19 12:21:43 +0200 | [diff] [blame] | 137 | static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf) | 
| Greg KH | 9888549 | 2005-05-05 11:57:25 -0700 | [diff] [blame] | 138 | { | 
|  | 139 | struct pci_dev *pci_dev = to_pci_dev(dev); | 
|  | 140 |  | 
|  | 141 | return sprintf(buf, "pci:v%08Xd%08Xsv%08Xsd%08Xbc%02Xsc%02Xi%02x\n", | 
|  | 142 | pci_dev->vendor, pci_dev->device, | 
|  | 143 | pci_dev->subsystem_vendor, pci_dev->subsystem_device, | 
|  | 144 | (u8)(pci_dev->class >> 16), (u8)(pci_dev->class >> 8), | 
|  | 145 | (u8)(pci_dev->class)); | 
|  | 146 | } | 
| Inaky Perez-Gonzalez | bae94d0 | 2006-11-22 12:40:31 -0800 | [diff] [blame] | 147 |  | 
|  | 148 | static ssize_t is_enabled_store(struct device *dev, | 
|  | 149 | struct device_attribute *attr, const char *buf, | 
|  | 150 | size_t count) | 
| Arjan van de Ven | 9f125d3 | 2006-04-29 10:59:08 +0200 | [diff] [blame] | 151 | { | 
|  | 152 | struct pci_dev *pdev = to_pci_dev(dev); | 
| Trent Piepho | 92425a4 | 2008-11-30 17:10:12 -0800 | [diff] [blame] | 153 | unsigned long val; | 
|  | 154 | ssize_t result = strict_strtoul(buf, 0, &val); | 
|  | 155 |  | 
|  | 156 | if (result < 0) | 
|  | 157 | return result; | 
| Arjan van de Ven | 9f125d3 | 2006-04-29 10:59:08 +0200 | [diff] [blame] | 158 |  | 
|  | 159 | /* this can crash the machine when done on the "wrong" device */ | 
|  | 160 | if (!capable(CAP_SYS_ADMIN)) | 
| Trent Piepho | 92425a4 | 2008-11-30 17:10:12 -0800 | [diff] [blame] | 161 | return -EPERM; | 
| Arjan van de Ven | 9f125d3 | 2006-04-29 10:59:08 +0200 | [diff] [blame] | 162 |  | 
| Trent Piepho | 92425a4 | 2008-11-30 17:10:12 -0800 | [diff] [blame] | 163 | if (!val) { | 
| Yuji Shimada | 296ccb0 | 2009-04-03 16:41:46 +0900 | [diff] [blame] | 164 | if (pci_is_enabled(pdev)) | 
| Inaky Perez-Gonzalez | bae94d0 | 2006-11-22 12:40:31 -0800 | [diff] [blame] | 165 | pci_disable_device(pdev); | 
|  | 166 | else | 
|  | 167 | result = -EIO; | 
| Trent Piepho | 92425a4 | 2008-11-30 17:10:12 -0800 | [diff] [blame] | 168 | } else | 
| Inaky Perez-Gonzalez | bae94d0 | 2006-11-22 12:40:31 -0800 | [diff] [blame] | 169 | result = pci_enable_device(pdev); | 
| Arjan van de Ven | 9f125d3 | 2006-04-29 10:59:08 +0200 | [diff] [blame] | 170 |  | 
| Inaky Perez-Gonzalez | bae94d0 | 2006-11-22 12:40:31 -0800 | [diff] [blame] | 171 | return result < 0 ? result : count; | 
|  | 172 | } | 
| Arjan van de Ven | 9f125d3 | 2006-04-29 10:59:08 +0200 | [diff] [blame] | 173 |  | 
| Inaky Perez-Gonzalez | bae94d0 | 2006-11-22 12:40:31 -0800 | [diff] [blame] | 174 | static ssize_t is_enabled_show(struct device *dev, | 
|  | 175 | struct device_attribute *attr, char *buf) | 
|  | 176 | { | 
|  | 177 | struct pci_dev *pdev; | 
|  | 178 |  | 
|  | 179 | pdev = to_pci_dev (dev); | 
|  | 180 | return sprintf (buf, "%u\n", atomic_read(&pdev->enable_cnt)); | 
| Arjan van de Ven | 9f125d3 | 2006-04-29 10:59:08 +0200 | [diff] [blame] | 181 | } | 
|  | 182 |  | 
| Brice Goglin | 81bb0e1 | 2007-01-28 10:53:40 +0100 | [diff] [blame] | 183 | #ifdef CONFIG_NUMA | 
|  | 184 | static ssize_t | 
|  | 185 | numa_node_show(struct device *dev, struct device_attribute *attr, char *buf) | 
|  | 186 | { | 
|  | 187 | return sprintf (buf, "%d\n", dev->numa_node); | 
|  | 188 | } | 
|  | 189 | #endif | 
|  | 190 |  | 
| Brice Goglin | fe97064 | 2006-08-31 01:55:15 -0400 | [diff] [blame] | 191 | static ssize_t | 
| Yinghai Lu | bb96540 | 2009-11-24 18:21:21 -0800 | [diff] [blame] | 192 | dma_mask_bits_show(struct device *dev, struct device_attribute *attr, char *buf) | 
|  | 193 | { | 
|  | 194 | struct pci_dev *pdev = to_pci_dev(dev); | 
|  | 195 |  | 
|  | 196 | return sprintf (buf, "%d\n", fls64(pdev->dma_mask)); | 
|  | 197 | } | 
|  | 198 |  | 
|  | 199 | static ssize_t | 
|  | 200 | consistent_dma_mask_bits_show(struct device *dev, struct device_attribute *attr, | 
|  | 201 | char *buf) | 
|  | 202 | { | 
|  | 203 | return sprintf (buf, "%d\n", fls64(dev->coherent_dma_mask)); | 
|  | 204 | } | 
|  | 205 |  | 
|  | 206 | static ssize_t | 
| Brice Goglin | fe97064 | 2006-08-31 01:55:15 -0400 | [diff] [blame] | 207 | msi_bus_show(struct device *dev, struct device_attribute *attr, char *buf) | 
|  | 208 | { | 
|  | 209 | struct pci_dev *pdev = to_pci_dev(dev); | 
|  | 210 |  | 
|  | 211 | if (!pdev->subordinate) | 
|  | 212 | return 0; | 
|  | 213 |  | 
|  | 214 | return sprintf (buf, "%u\n", | 
|  | 215 | !(pdev->subordinate->bus_flags & PCI_BUS_FLAGS_NO_MSI)); | 
|  | 216 | } | 
|  | 217 |  | 
|  | 218 | static ssize_t | 
|  | 219 | msi_bus_store(struct device *dev, struct device_attribute *attr, | 
|  | 220 | const char *buf, size_t count) | 
|  | 221 | { | 
|  | 222 | struct pci_dev *pdev = to_pci_dev(dev); | 
| Trent Piepho | 92425a4 | 2008-11-30 17:10:12 -0800 | [diff] [blame] | 223 | unsigned long val; | 
|  | 224 |  | 
|  | 225 | if (strict_strtoul(buf, 0, &val) < 0) | 
|  | 226 | return -EINVAL; | 
| Brice Goglin | fe97064 | 2006-08-31 01:55:15 -0400 | [diff] [blame] | 227 |  | 
|  | 228 | /* bad things may happen if the no_msi flag is changed | 
|  | 229 | * while some drivers are loaded */ | 
|  | 230 | if (!capable(CAP_SYS_ADMIN)) | 
| Trent Piepho | 92425a4 | 2008-11-30 17:10:12 -0800 | [diff] [blame] | 231 | return -EPERM; | 
| Brice Goglin | fe97064 | 2006-08-31 01:55:15 -0400 | [diff] [blame] | 232 |  | 
| Trent Piepho | 92425a4 | 2008-11-30 17:10:12 -0800 | [diff] [blame] | 233 | /* Maybe pci devices without subordinate busses shouldn't even have this | 
|  | 234 | * attribute in the first place?  */ | 
| Brice Goglin | fe97064 | 2006-08-31 01:55:15 -0400 | [diff] [blame] | 235 | if (!pdev->subordinate) | 
|  | 236 | return count; | 
|  | 237 |  | 
| Trent Piepho | 92425a4 | 2008-11-30 17:10:12 -0800 | [diff] [blame] | 238 | /* Is the flag going to change, or keep the value it already had? */ | 
|  | 239 | if (!(pdev->subordinate->bus_flags & PCI_BUS_FLAGS_NO_MSI) ^ | 
|  | 240 | !!val) { | 
|  | 241 | pdev->subordinate->bus_flags ^= PCI_BUS_FLAGS_NO_MSI; | 
| Brice Goglin | fe97064 | 2006-08-31 01:55:15 -0400 | [diff] [blame] | 242 |  | 
| Trent Piepho | 92425a4 | 2008-11-30 17:10:12 -0800 | [diff] [blame] | 243 | dev_warn(&pdev->dev, "forced subordinate bus to%s support MSI," | 
|  | 244 | " bad things could happen\n", val ? "" : " not"); | 
| Brice Goglin | fe97064 | 2006-08-31 01:55:15 -0400 | [diff] [blame] | 245 | } | 
|  | 246 |  | 
|  | 247 | return count; | 
|  | 248 | } | 
| Greg KH | 9888549 | 2005-05-05 11:57:25 -0700 | [diff] [blame] | 249 |  | 
| Alex Chiang | 705b1aa | 2009-03-20 14:56:31 -0600 | [diff] [blame] | 250 | #ifdef CONFIG_HOTPLUG | 
|  | 251 | static DEFINE_MUTEX(pci_remove_rescan_mutex); | 
|  | 252 | static ssize_t bus_rescan_store(struct bus_type *bus, const char *buf, | 
|  | 253 | size_t count) | 
|  | 254 | { | 
|  | 255 | unsigned long val; | 
|  | 256 | struct pci_bus *b = NULL; | 
|  | 257 |  | 
|  | 258 | if (strict_strtoul(buf, 0, &val) < 0) | 
|  | 259 | return -EINVAL; | 
|  | 260 |  | 
|  | 261 | if (val) { | 
|  | 262 | mutex_lock(&pci_remove_rescan_mutex); | 
|  | 263 | while ((b = pci_find_next_bus(b)) != NULL) | 
|  | 264 | pci_rescan_bus(b); | 
|  | 265 | mutex_unlock(&pci_remove_rescan_mutex); | 
|  | 266 | } | 
|  | 267 | return count; | 
|  | 268 | } | 
|  | 269 |  | 
|  | 270 | struct bus_attribute pci_bus_attrs[] = { | 
|  | 271 | __ATTR(rescan, (S_IWUSR|S_IWGRP), NULL, bus_rescan_store), | 
|  | 272 | __ATTR_NULL | 
|  | 273 | }; | 
| Alex Chiang | 77c27c7 | 2009-03-20 14:56:36 -0600 | [diff] [blame] | 274 |  | 
| Alex Chiang | 738a639 | 2009-03-20 14:56:41 -0600 | [diff] [blame] | 275 | static ssize_t | 
|  | 276 | dev_rescan_store(struct device *dev, struct device_attribute *attr, | 
|  | 277 | const char *buf, size_t count) | 
|  | 278 | { | 
|  | 279 | unsigned long val; | 
|  | 280 | struct pci_dev *pdev = to_pci_dev(dev); | 
|  | 281 |  | 
|  | 282 | if (strict_strtoul(buf, 0, &val) < 0) | 
|  | 283 | return -EINVAL; | 
|  | 284 |  | 
|  | 285 | if (val) { | 
|  | 286 | mutex_lock(&pci_remove_rescan_mutex); | 
|  | 287 | pci_rescan_bus(pdev->bus); | 
|  | 288 | mutex_unlock(&pci_remove_rescan_mutex); | 
|  | 289 | } | 
|  | 290 | return count; | 
|  | 291 | } | 
|  | 292 |  | 
| Alex Chiang | 77c27c7 | 2009-03-20 14:56:36 -0600 | [diff] [blame] | 293 | static void remove_callback(struct device *dev) | 
|  | 294 | { | 
|  | 295 | struct pci_dev *pdev = to_pci_dev(dev); | 
|  | 296 |  | 
|  | 297 | mutex_lock(&pci_remove_rescan_mutex); | 
|  | 298 | pci_remove_bus_device(pdev); | 
|  | 299 | mutex_unlock(&pci_remove_rescan_mutex); | 
|  | 300 | } | 
|  | 301 |  | 
|  | 302 | static ssize_t | 
|  | 303 | remove_store(struct device *dev, struct device_attribute *dummy, | 
|  | 304 | const char *buf, size_t count) | 
|  | 305 | { | 
|  | 306 | int ret = 0; | 
|  | 307 | unsigned long val; | 
| Alex Chiang | 77c27c7 | 2009-03-20 14:56:36 -0600 | [diff] [blame] | 308 |  | 
|  | 309 | if (strict_strtoul(buf, 0, &val) < 0) | 
|  | 310 | return -EINVAL; | 
|  | 311 |  | 
| Alex Chiang | 77c27c7 | 2009-03-20 14:56:36 -0600 | [diff] [blame] | 312 | /* An attribute cannot be unregistered by one of its own methods, | 
|  | 313 | * so we have to use this roundabout approach. | 
|  | 314 | */ | 
|  | 315 | if (val) | 
|  | 316 | ret = device_schedule_callback(dev, remove_callback); | 
|  | 317 | if (ret) | 
|  | 318 | count = ret; | 
|  | 319 | return count; | 
|  | 320 | } | 
| Alex Chiang | 705b1aa | 2009-03-20 14:56:31 -0600 | [diff] [blame] | 321 | #endif | 
|  | 322 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | struct device_attribute pci_dev_attrs[] = { | 
|  | 324 | __ATTR_RO(resource), | 
|  | 325 | __ATTR_RO(vendor), | 
|  | 326 | __ATTR_RO(device), | 
|  | 327 | __ATTR_RO(subsystem_vendor), | 
|  | 328 | __ATTR_RO(subsystem_device), | 
|  | 329 | __ATTR_RO(class), | 
|  | 330 | __ATTR_RO(irq), | 
|  | 331 | __ATTR_RO(local_cpus), | 
| Mike Travis | 39106dc | 2008-04-08 11:43:03 -0700 | [diff] [blame] | 332 | __ATTR_RO(local_cpulist), | 
| Greg KH | 9888549 | 2005-05-05 11:57:25 -0700 | [diff] [blame] | 333 | __ATTR_RO(modalias), | 
| Brice Goglin | 81bb0e1 | 2007-01-28 10:53:40 +0100 | [diff] [blame] | 334 | #ifdef CONFIG_NUMA | 
|  | 335 | __ATTR_RO(numa_node), | 
|  | 336 | #endif | 
| Yinghai Lu | bb96540 | 2009-11-24 18:21:21 -0800 | [diff] [blame] | 337 | __ATTR_RO(dma_mask_bits), | 
|  | 338 | __ATTR_RO(consistent_dma_mask_bits), | 
| Arjan van de Ven | 9f125d3 | 2006-04-29 10:59:08 +0200 | [diff] [blame] | 339 | __ATTR(enable, 0600, is_enabled_show, is_enabled_store), | 
| Doug Thompson | bdee9d9 | 2006-06-14 16:59:48 -0700 | [diff] [blame] | 340 | __ATTR(broken_parity_status,(S_IRUGO|S_IWUSR), | 
|  | 341 | broken_parity_status_show,broken_parity_status_store), | 
| Brice Goglin | fe97064 | 2006-08-31 01:55:15 -0400 | [diff] [blame] | 342 | __ATTR(msi_bus, 0644, msi_bus_show, msi_bus_store), | 
| Alex Chiang | 77c27c7 | 2009-03-20 14:56:36 -0600 | [diff] [blame] | 343 | #ifdef CONFIG_HOTPLUG | 
|  | 344 | __ATTR(remove, (S_IWUSR|S_IWGRP), NULL, remove_store), | 
| Alex Chiang | 738a639 | 2009-03-20 14:56:41 -0600 | [diff] [blame] | 345 | __ATTR(rescan, (S_IWUSR|S_IWGRP), NULL, dev_rescan_store), | 
| Alex Chiang | 77c27c7 | 2009-03-20 14:56:36 -0600 | [diff] [blame] | 346 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | __ATTR_NULL, | 
|  | 348 | }; | 
|  | 349 |  | 
|  | 350 | static ssize_t | 
| Dave Airlie | 217f45d | 2009-03-04 05:57:05 +0000 | [diff] [blame] | 351 | boot_vga_show(struct device *dev, struct device_attribute *attr, char *buf) | 
|  | 352 | { | 
|  | 353 | struct pci_dev *pdev = to_pci_dev(dev); | 
|  | 354 |  | 
|  | 355 | return sprintf(buf, "%u\n", | 
|  | 356 | !!(pdev->resource[PCI_ROM_RESOURCE].flags & | 
|  | 357 | IORESOURCE_ROM_SHADOW)); | 
|  | 358 | } | 
|  | 359 | struct device_attribute vga_attr = __ATTR_RO(boot_vga); | 
|  | 360 |  | 
|  | 361 | static ssize_t | 
| Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 362 | pci_read_config(struct file *filp, struct kobject *kobj, | 
|  | 363 | struct bin_attribute *bin_attr, | 
| Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 364 | char *buf, loff_t off, size_t count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | { | 
|  | 366 | struct pci_dev *dev = to_pci_dev(container_of(kobj,struct device,kobj)); | 
|  | 367 | unsigned int size = 64; | 
|  | 368 | loff_t init_off = off; | 
| ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 369 | u8 *data = (u8*) buf; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 |  | 
|  | 371 | /* Several chips lock up trying to read undefined config space */ | 
| Serge E. Hallyn | 3486740 | 2011-03-23 16:43:17 -0700 | [diff] [blame] | 372 | if (security_capable(&init_user_ns, filp->f_cred, CAP_SYS_ADMIN) == 0) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | size = dev->cfg_size; | 
|  | 374 | } else if (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) { | 
|  | 375 | size = 128; | 
|  | 376 | } | 
|  | 377 |  | 
|  | 378 | if (off > size) | 
|  | 379 | return 0; | 
|  | 380 | if (off + count > size) { | 
|  | 381 | size -= off; | 
|  | 382 | count = size; | 
|  | 383 | } else { | 
|  | 384 | size = count; | 
|  | 385 | } | 
|  | 386 |  | 
| ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 387 | if ((off & 1) && size) { | 
|  | 388 | u8 val; | 
| Brian King | e04b0ea | 2005-09-27 01:21:55 -0700 | [diff] [blame] | 389 | pci_user_read_config_byte(dev, off, &val); | 
| ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 390 | data[off - init_off] = val; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | off++; | 
| ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 392 | size--; | 
|  | 393 | } | 
|  | 394 |  | 
|  | 395 | if ((off & 3) && size > 2) { | 
|  | 396 | u16 val; | 
| Brian King | e04b0ea | 2005-09-27 01:21:55 -0700 | [diff] [blame] | 397 | pci_user_read_config_word(dev, off, &val); | 
| ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 398 | data[off - init_off] = val & 0xff; | 
|  | 399 | data[off - init_off + 1] = (val >> 8) & 0xff; | 
|  | 400 | off += 2; | 
|  | 401 | size -= 2; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | } | 
|  | 403 |  | 
|  | 404 | while (size > 3) { | 
| ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 405 | u32 val; | 
| Brian King | e04b0ea | 2005-09-27 01:21:55 -0700 | [diff] [blame] | 406 | pci_user_read_config_dword(dev, off, &val); | 
| ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 407 | data[off - init_off] = val & 0xff; | 
|  | 408 | data[off - init_off + 1] = (val >> 8) & 0xff; | 
|  | 409 | data[off - init_off + 2] = (val >> 16) & 0xff; | 
|  | 410 | data[off - init_off + 3] = (val >> 24) & 0xff; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | off += 4; | 
|  | 412 | size -= 4; | 
|  | 413 | } | 
|  | 414 |  | 
| ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 415 | if (size >= 2) { | 
|  | 416 | u16 val; | 
| Brian King | e04b0ea | 2005-09-27 01:21:55 -0700 | [diff] [blame] | 417 | pci_user_read_config_word(dev, off, &val); | 
| ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 418 | data[off - init_off] = val & 0xff; | 
|  | 419 | data[off - init_off + 1] = (val >> 8) & 0xff; | 
|  | 420 | off += 2; | 
|  | 421 | size -= 2; | 
|  | 422 | } | 
|  | 423 |  | 
|  | 424 | if (size > 0) { | 
|  | 425 | u8 val; | 
| Brian King | e04b0ea | 2005-09-27 01:21:55 -0700 | [diff] [blame] | 426 | pci_user_read_config_byte(dev, off, &val); | 
| ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 427 | data[off - init_off] = val; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | off++; | 
|  | 429 | --size; | 
|  | 430 | } | 
|  | 431 |  | 
|  | 432 | return count; | 
|  | 433 | } | 
|  | 434 |  | 
|  | 435 | static ssize_t | 
| Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 436 | pci_write_config(struct file* filp, struct kobject *kobj, | 
|  | 437 | struct bin_attribute *bin_attr, | 
| Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 438 | char *buf, loff_t off, size_t count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | { | 
|  | 440 | struct pci_dev *dev = to_pci_dev(container_of(kobj,struct device,kobj)); | 
|  | 441 | unsigned int size = count; | 
|  | 442 | loff_t init_off = off; | 
| ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 443 | u8 *data = (u8*) buf; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 |  | 
|  | 445 | if (off > dev->cfg_size) | 
|  | 446 | return 0; | 
|  | 447 | if (off + count > dev->cfg_size) { | 
|  | 448 | size = dev->cfg_size - off; | 
|  | 449 | count = size; | 
|  | 450 | } | 
| ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 451 |  | 
|  | 452 | if ((off & 1) && size) { | 
| Brian King | e04b0ea | 2005-09-27 01:21:55 -0700 | [diff] [blame] | 453 | pci_user_write_config_byte(dev, off, data[off - init_off]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | off++; | 
| ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 455 | size--; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | } | 
| ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 457 |  | 
|  | 458 | if ((off & 3) && size > 2) { | 
|  | 459 | u16 val = data[off - init_off]; | 
|  | 460 | val |= (u16) data[off - init_off + 1] << 8; | 
| Brian King | e04b0ea | 2005-09-27 01:21:55 -0700 | [diff] [blame] | 461 | pci_user_write_config_word(dev, off, val); | 
| ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 462 | off += 2; | 
|  | 463 | size -= 2; | 
|  | 464 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 |  | 
|  | 466 | while (size > 3) { | 
| ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 467 | u32 val = data[off - init_off]; | 
|  | 468 | val |= (u32) data[off - init_off + 1] << 8; | 
|  | 469 | val |= (u32) data[off - init_off + 2] << 16; | 
|  | 470 | val |= (u32) data[off - init_off + 3] << 24; | 
| Brian King | e04b0ea | 2005-09-27 01:21:55 -0700 | [diff] [blame] | 471 | pci_user_write_config_dword(dev, off, val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | off += 4; | 
|  | 473 | size -= 4; | 
|  | 474 | } | 
| ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 475 |  | 
|  | 476 | if (size >= 2) { | 
|  | 477 | u16 val = data[off - init_off]; | 
|  | 478 | val |= (u16) data[off - init_off + 1] << 8; | 
| Brian King | e04b0ea | 2005-09-27 01:21:55 -0700 | [diff] [blame] | 479 | pci_user_write_config_word(dev, off, val); | 
| ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 480 | off += 2; | 
|  | 481 | size -= 2; | 
|  | 482 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 |  | 
| ssant@in.ibm.com | 4c0619a | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 484 | if (size) { | 
| Brian King | e04b0ea | 2005-09-27 01:21:55 -0700 | [diff] [blame] | 485 | pci_user_write_config_byte(dev, off, data[off - init_off]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | off++; | 
|  | 487 | --size; | 
|  | 488 | } | 
|  | 489 |  | 
|  | 490 | return count; | 
|  | 491 | } | 
|  | 492 |  | 
| Ben Hutchings | 94e6108 | 2008-03-05 16:52:39 +0000 | [diff] [blame] | 493 | static ssize_t | 
| Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 494 | read_vpd_attr(struct file *filp, struct kobject *kobj, | 
|  | 495 | struct bin_attribute *bin_attr, | 
| Ben Hutchings | 94e6108 | 2008-03-05 16:52:39 +0000 | [diff] [blame] | 496 | char *buf, loff_t off, size_t count) | 
|  | 497 | { | 
|  | 498 | struct pci_dev *dev = | 
|  | 499 | to_pci_dev(container_of(kobj, struct device, kobj)); | 
| Ben Hutchings | 94e6108 | 2008-03-05 16:52:39 +0000 | [diff] [blame] | 500 |  | 
|  | 501 | if (off > bin_attr->size) | 
|  | 502 | count = 0; | 
|  | 503 | else if (count > bin_attr->size - off) | 
|  | 504 | count = bin_attr->size - off; | 
| Ben Hutchings | 94e6108 | 2008-03-05 16:52:39 +0000 | [diff] [blame] | 505 |  | 
| Stephen Hemminger | 287d19c | 2008-12-18 09:17:16 -0800 | [diff] [blame] | 506 | return pci_read_vpd(dev, off, count, buf); | 
|  | 507 | } | 
| Ben Hutchings | 94e6108 | 2008-03-05 16:52:39 +0000 | [diff] [blame] | 508 |  | 
| Stephen Hemminger | 287d19c | 2008-12-18 09:17:16 -0800 | [diff] [blame] | 509 | static ssize_t | 
| Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 510 | write_vpd_attr(struct file *filp, struct kobject *kobj, | 
|  | 511 | struct bin_attribute *bin_attr, | 
| Stephen Hemminger | 287d19c | 2008-12-18 09:17:16 -0800 | [diff] [blame] | 512 | char *buf, loff_t off, size_t count) | 
|  | 513 | { | 
|  | 514 | struct pci_dev *dev = | 
|  | 515 | to_pci_dev(container_of(kobj, struct device, kobj)); | 
|  | 516 |  | 
|  | 517 | if (off > bin_attr->size) | 
|  | 518 | count = 0; | 
|  | 519 | else if (count > bin_attr->size - off) | 
|  | 520 | count = bin_attr->size - off; | 
|  | 521 |  | 
|  | 522 | return pci_write_vpd(dev, off, count, buf); | 
| Ben Hutchings | 94e6108 | 2008-03-05 16:52:39 +0000 | [diff] [blame] | 523 | } | 
|  | 524 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | #ifdef HAVE_PCI_LEGACY | 
|  | 526 | /** | 
|  | 527 | * 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] | 528 | * @filp: open sysfs file | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | * @kobj: kobject corresponding to file to read from | 
| Randy Dunlap | cffb2fa | 2009-04-10 15:17:50 -0700 | [diff] [blame] | 530 | * @bin_attr: struct bin_attribute for this file | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | * @buf: buffer to store results | 
|  | 532 | * @off: offset into legacy I/O port space | 
|  | 533 | * @count: number of bytes to read | 
|  | 534 | * | 
|  | 535 | * Reads 1, 2, or 4 bytes from legacy I/O port space using an arch specific | 
|  | 536 | * callback routine (pci_legacy_read). | 
|  | 537 | */ | 
| Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 538 | static ssize_t | 
| Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 539 | pci_read_legacy_io(struct file *filp, struct kobject *kobj, | 
|  | 540 | struct bin_attribute *bin_attr, | 
| Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 541 | char *buf, loff_t off, size_t count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | { | 
|  | 543 | struct pci_bus *bus = to_pci_bus(container_of(kobj, | 
| Greg Kroah-Hartman | fd7d1ce | 2007-05-22 22:47:54 -0400 | [diff] [blame] | 544 | struct device, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | kobj)); | 
|  | 546 |  | 
|  | 547 | /* Only support 1, 2 or 4 byte accesses */ | 
|  | 548 | if (count != 1 && count != 2 && count != 4) | 
|  | 549 | return -EINVAL; | 
|  | 550 |  | 
|  | 551 | return pci_legacy_read(bus, off, (u32 *)buf, count); | 
|  | 552 | } | 
|  | 553 |  | 
|  | 554 | /** | 
|  | 555 | * 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] | 556 | * @filp: open sysfs file | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | * @kobj: kobject corresponding to file to read from | 
| Randy Dunlap | cffb2fa | 2009-04-10 15:17:50 -0700 | [diff] [blame] | 558 | * @bin_attr: struct bin_attribute for this file | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | * @buf: buffer containing value to be written | 
|  | 560 | * @off: offset into legacy I/O port space | 
|  | 561 | * @count: number of bytes to write | 
|  | 562 | * | 
|  | 563 | * Writes 1, 2, or 4 bytes from legacy I/O port space using an arch specific | 
|  | 564 | * callback routine (pci_legacy_write). | 
|  | 565 | */ | 
| Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 566 | static ssize_t | 
| Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 567 | pci_write_legacy_io(struct file *filp, struct kobject *kobj, | 
|  | 568 | struct bin_attribute *bin_attr, | 
| Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 569 | char *buf, loff_t off, size_t count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | { | 
|  | 571 | struct pci_bus *bus = to_pci_bus(container_of(kobj, | 
| Greg Kroah-Hartman | fd7d1ce | 2007-05-22 22:47:54 -0400 | [diff] [blame] | 572 | struct device, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | kobj)); | 
|  | 574 | /* Only support 1, 2 or 4 byte accesses */ | 
|  | 575 | if (count != 1 && count != 2 && count != 4) | 
|  | 576 | return -EINVAL; | 
|  | 577 |  | 
|  | 578 | return pci_legacy_write(bus, off, *(u32 *)buf, count); | 
|  | 579 | } | 
|  | 580 |  | 
|  | 581 | /** | 
|  | 582 | * pci_mmap_legacy_mem - map legacy PCI memory into user memory space | 
| Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 583 | * @filp: open sysfs file | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | * @kobj: kobject corresponding to device to be mapped | 
|  | 585 | * @attr: struct bin_attribute for this file | 
|  | 586 | * @vma: struct vm_area_struct passed to mmap | 
|  | 587 | * | 
| Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 588 | * 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] | 589 | * legacy memory space (first meg of bus space) into application virtual | 
|  | 590 | * memory space. | 
|  | 591 | */ | 
| Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 592 | static int | 
| Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 593 | pci_mmap_legacy_mem(struct file *filp, struct kobject *kobj, | 
|  | 594 | struct bin_attribute *attr, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | struct vm_area_struct *vma) | 
|  | 596 | { | 
|  | 597 | struct pci_bus *bus = to_pci_bus(container_of(kobj, | 
| Greg Kroah-Hartman | fd7d1ce | 2007-05-22 22:47:54 -0400 | [diff] [blame] | 598 | struct device, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | kobj)); | 
|  | 600 |  | 
| Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 601 | return pci_mmap_legacy_page_range(bus, vma, pci_mmap_mem); | 
|  | 602 | } | 
|  | 603 |  | 
|  | 604 | /** | 
|  | 605 | * pci_mmap_legacy_io - map legacy PCI IO into user memory space | 
| Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 606 | * @filp: open sysfs file | 
| Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 607 | * @kobj: kobject corresponding to device to be mapped | 
|  | 608 | * @attr: struct bin_attribute for this file | 
|  | 609 | * @vma: struct vm_area_struct passed to mmap | 
|  | 610 | * | 
|  | 611 | * Uses an arch specific callback, pci_mmap_legacy_io_page_range, to mmap | 
|  | 612 | * legacy IO space (first meg of bus space) into application virtual | 
|  | 613 | * memory space. Returns -ENOSYS if the operation isn't supported | 
|  | 614 | */ | 
|  | 615 | static int | 
| Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 616 | pci_mmap_legacy_io(struct file *filp, struct kobject *kobj, | 
|  | 617 | struct bin_attribute *attr, | 
| Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 618 | struct vm_area_struct *vma) | 
|  | 619 | { | 
|  | 620 | struct pci_bus *bus = to_pci_bus(container_of(kobj, | 
|  | 621 | struct device, | 
|  | 622 | kobj)); | 
|  | 623 |  | 
|  | 624 | return pci_mmap_legacy_page_range(bus, vma, pci_mmap_io); | 
|  | 625 | } | 
|  | 626 |  | 
|  | 627 | /** | 
| Ivan Kokshaysky | 10a0ef3 | 2009-02-17 13:46:53 +0300 | [diff] [blame] | 628 | * pci_adjust_legacy_attr - adjustment of legacy file attributes | 
|  | 629 | * @b: bus to create files under | 
|  | 630 | * @mmap_type: I/O port or memory | 
|  | 631 | * | 
|  | 632 | * Stub implementation. Can be overridden by arch if necessary. | 
|  | 633 | */ | 
|  | 634 | void __weak | 
|  | 635 | pci_adjust_legacy_attr(struct pci_bus *b, enum pci_mmap_state mmap_type) | 
|  | 636 | { | 
|  | 637 | return; | 
|  | 638 | } | 
|  | 639 |  | 
|  | 640 | /** | 
| Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 641 | * pci_create_legacy_files - create legacy I/O port and memory files | 
|  | 642 | * @b: bus to create files under | 
|  | 643 | * | 
|  | 644 | * Some platforms allow access to legacy I/O port and ISA memory space on | 
|  | 645 | * a per-bus basis.  This routine creates the files and ties them into | 
|  | 646 | * their associated read, write and mmap files from pci-sysfs.c | 
|  | 647 | * | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 648 | * On error unwind, but don't propagate the error to the caller | 
| Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 649 | * as it is ok to set up the PCI bus without these files. | 
|  | 650 | */ | 
|  | 651 | void pci_create_legacy_files(struct pci_bus *b) | 
|  | 652 | { | 
|  | 653 | int error; | 
|  | 654 |  | 
|  | 655 | b->legacy_io = kzalloc(sizeof(struct bin_attribute) * 2, | 
|  | 656 | GFP_ATOMIC); | 
|  | 657 | if (!b->legacy_io) | 
|  | 658 | goto kzalloc_err; | 
|  | 659 |  | 
| Stephen Rothwell | 62e877b8 | 2010-03-01 20:38:36 +1100 | [diff] [blame] | 660 | sysfs_bin_attr_init(b->legacy_io); | 
| Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 661 | b->legacy_io->attr.name = "legacy_io"; | 
|  | 662 | b->legacy_io->size = 0xffff; | 
|  | 663 | b->legacy_io->attr.mode = S_IRUSR | S_IWUSR; | 
|  | 664 | b->legacy_io->read = pci_read_legacy_io; | 
|  | 665 | b->legacy_io->write = pci_write_legacy_io; | 
|  | 666 | b->legacy_io->mmap = pci_mmap_legacy_io; | 
| Ivan Kokshaysky | 10a0ef3 | 2009-02-17 13:46:53 +0300 | [diff] [blame] | 667 | pci_adjust_legacy_attr(b, pci_mmap_io); | 
| Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 668 | error = device_create_bin_file(&b->dev, b->legacy_io); | 
|  | 669 | if (error) | 
|  | 670 | goto legacy_io_err; | 
|  | 671 |  | 
|  | 672 | /* Allocated above after the legacy_io struct */ | 
|  | 673 | b->legacy_mem = b->legacy_io + 1; | 
| Mel Gorman | 6757eca3 | 2010-03-10 22:48:34 +0000 | [diff] [blame] | 674 | sysfs_bin_attr_init(b->legacy_mem); | 
| Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 675 | b->legacy_mem->attr.name = "legacy_mem"; | 
|  | 676 | b->legacy_mem->size = 1024*1024; | 
|  | 677 | b->legacy_mem->attr.mode = S_IRUSR | S_IWUSR; | 
|  | 678 | b->legacy_mem->mmap = pci_mmap_legacy_mem; | 
| Ivan Kokshaysky | 10a0ef3 | 2009-02-17 13:46:53 +0300 | [diff] [blame] | 679 | pci_adjust_legacy_attr(b, pci_mmap_mem); | 
| Benjamin Herrenschmidt | f19aeb1 | 2008-10-03 19:49:32 +1000 | [diff] [blame] | 680 | error = device_create_bin_file(&b->dev, b->legacy_mem); | 
|  | 681 | if (error) | 
|  | 682 | goto legacy_mem_err; | 
|  | 683 |  | 
|  | 684 | return; | 
|  | 685 |  | 
|  | 686 | legacy_mem_err: | 
|  | 687 | device_remove_bin_file(&b->dev, b->legacy_io); | 
|  | 688 | legacy_io_err: | 
|  | 689 | kfree(b->legacy_io); | 
|  | 690 | b->legacy_io = NULL; | 
|  | 691 | kzalloc_err: | 
|  | 692 | printk(KERN_WARNING "pci: warning: could not create legacy I/O port " | 
|  | 693 | "and ISA memory resources to sysfs\n"); | 
|  | 694 | return; | 
|  | 695 | } | 
|  | 696 |  | 
|  | 697 | void pci_remove_legacy_files(struct pci_bus *b) | 
|  | 698 | { | 
|  | 699 | if (b->legacy_io) { | 
|  | 700 | device_remove_bin_file(&b->dev, b->legacy_io); | 
|  | 701 | device_remove_bin_file(&b->dev, b->legacy_mem); | 
|  | 702 | kfree(b->legacy_io); /* both are allocated here */ | 
|  | 703 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | } | 
|  | 705 | #endif /* HAVE_PCI_LEGACY */ | 
|  | 706 |  | 
|  | 707 | #ifdef HAVE_PCI_MMAP | 
| Linus Torvalds | b5ff7df | 2008-10-02 18:52:51 -0700 | [diff] [blame] | 708 |  | 
| Martin Wilck | 3b519e4 | 2010-11-10 11:03:21 +0100 | [diff] [blame] | 709 | int pci_mmap_fits(struct pci_dev *pdev, int resno, struct vm_area_struct *vma, | 
|  | 710 | enum pci_mmap_api mmap_api) | 
| Linus Torvalds | b5ff7df | 2008-10-02 18:52:51 -0700 | [diff] [blame] | 711 | { | 
| Martin Wilck | 3b519e4 | 2010-11-10 11:03:21 +0100 | [diff] [blame] | 712 | unsigned long nr, start, size, pci_start; | 
| Linus Torvalds | b5ff7df | 2008-10-02 18:52:51 -0700 | [diff] [blame] | 713 |  | 
| Martin Wilck | 3b519e4 | 2010-11-10 11:03:21 +0100 | [diff] [blame] | 714 | if (pci_resource_len(pdev, resno) == 0) | 
|  | 715 | return 0; | 
| Linus Torvalds | b5ff7df | 2008-10-02 18:52:51 -0700 | [diff] [blame] | 716 | nr = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT; | 
|  | 717 | start = vma->vm_pgoff; | 
| Ed Swierk | 88e7df0 | 2008-11-03 14:41:16 -0800 | [diff] [blame] | 718 | size = ((pci_resource_len(pdev, resno) - 1) >> PAGE_SHIFT) + 1; | 
| Darrick J. Wong | 8c05cd0 | 2010-11-16 09:13:41 -0800 | [diff] [blame] | 719 | pci_start = (mmap_api == PCI_MMAP_PROCFS) ? | 
| Martin Wilck | 3b519e4 | 2010-11-10 11:03:21 +0100 | [diff] [blame] | 720 | pci_resource_start(pdev, resno) >> PAGE_SHIFT : 0; | 
|  | 721 | if (start >= pci_start && start < pci_start + size && | 
|  | 722 | start + nr <= pci_start + size) | 
| Linus Torvalds | b5ff7df | 2008-10-02 18:52:51 -0700 | [diff] [blame] | 723 | return 1; | 
| Linus Torvalds | b5ff7df | 2008-10-02 18:52:51 -0700 | [diff] [blame] | 724 | return 0; | 
|  | 725 | } | 
|  | 726 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | /** | 
|  | 728 | * pci_mmap_resource - map a PCI resource into user memory space | 
|  | 729 | * @kobj: kobject for mapping | 
|  | 730 | * @attr: struct bin_attribute for the file being mapped | 
|  | 731 | * @vma: struct vm_area_struct passed into the mmap | 
| venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 732 | * @write_combine: 1 for write_combine mapping | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | * | 
|  | 734 | * 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] | 735 | */ | 
|  | 736 | static int | 
|  | 737 | pci_mmap_resource(struct kobject *kobj, struct bin_attribute *attr, | 
| venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 738 | struct vm_area_struct *vma, int write_combine) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | { | 
|  | 740 | struct pci_dev *pdev = to_pci_dev(container_of(kobj, | 
|  | 741 | struct device, kobj)); | 
| Kulikov Vasiliy | a3f5835 | 2010-06-29 14:15:28 +0400 | [diff] [blame] | 742 | struct resource *res = attr->private; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | enum pci_mmap_state mmap_type; | 
| Greg Kroah-Hartman | e31dd6e | 2006-06-12 17:06:02 -0700 | [diff] [blame] | 744 | resource_size_t start, end; | 
| Michael Ellerman | 2311b1f | 2005-05-13 17:44:10 +1000 | [diff] [blame] | 745 | int i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 |  | 
| Michael Ellerman | 2311b1f | 2005-05-13 17:44:10 +1000 | [diff] [blame] | 747 | for (i = 0; i < PCI_ROM_RESOURCE; i++) | 
|  | 748 | if (res == &pdev->resource[i]) | 
|  | 749 | break; | 
|  | 750 | if (i >= PCI_ROM_RESOURCE) | 
|  | 751 | return -ENODEV; | 
|  | 752 |  | 
| Martin Wilck | 3b519e4 | 2010-11-10 11:03:21 +0100 | [diff] [blame] | 753 | if (!pci_mmap_fits(pdev, i, vma, PCI_MMAP_SYSFS)) { | 
|  | 754 | WARN(1, "process \"%s\" tried to map 0x%08lx bytes " | 
|  | 755 | "at page 0x%08lx on %s BAR %d (start 0x%16Lx, size 0x%16Lx)\n", | 
|  | 756 | current->comm, vma->vm_end-vma->vm_start, vma->vm_pgoff, | 
|  | 757 | pci_name(pdev), i, | 
| Randy Dunlap | e25cd06 | 2010-11-13 08:44:33 -0800 | [diff] [blame] | 758 | (u64)pci_resource_start(pdev, i), | 
|  | 759 | (u64)pci_resource_len(pdev, i)); | 
| Linus Torvalds | b5ff7df | 2008-10-02 18:52:51 -0700 | [diff] [blame] | 760 | return -EINVAL; | 
| Martin Wilck | 3b519e4 | 2010-11-10 11:03:21 +0100 | [diff] [blame] | 761 | } | 
| Linus Torvalds | b5ff7df | 2008-10-02 18:52:51 -0700 | [diff] [blame] | 762 |  | 
| Michael Ellerman | 2311b1f | 2005-05-13 17:44:10 +1000 | [diff] [blame] | 763 | /* pci_mmap_page_range() expects the same kind of entry as coming | 
|  | 764 | * from /proc/bus/pci/ which is a "user visible" value. If this is | 
|  | 765 | * different from the resource itself, arch will do necessary fixup. | 
|  | 766 | */ | 
|  | 767 | pci_resource_to_user(pdev, i, res, &start, &end); | 
|  | 768 | vma->vm_pgoff += start >> PAGE_SHIFT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | mmap_type = res->flags & IORESOURCE_MEM ? pci_mmap_mem : pci_mmap_io; | 
|  | 770 |  | 
| Arjan van de Ven | e8de148 | 2008-10-22 19:55:31 -0700 | [diff] [blame] | 771 | if (res->flags & IORESOURCE_MEM && iomem_is_exclusive(start)) | 
|  | 772 | return -EINVAL; | 
|  | 773 |  | 
| venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 774 | return pci_mmap_page_range(pdev, vma, mmap_type, write_combine); | 
|  | 775 | } | 
|  | 776 |  | 
|  | 777 | static int | 
| Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 778 | pci_mmap_resource_uc(struct file *filp, struct kobject *kobj, | 
|  | 779 | struct bin_attribute *attr, | 
| venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 780 | struct vm_area_struct *vma) | 
|  | 781 | { | 
|  | 782 | return pci_mmap_resource(kobj, attr, vma, 0); | 
|  | 783 | } | 
|  | 784 |  | 
|  | 785 | static int | 
| Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 786 | pci_mmap_resource_wc(struct file *filp, struct kobject *kobj, | 
|  | 787 | struct bin_attribute *attr, | 
| venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 788 | struct vm_area_struct *vma) | 
|  | 789 | { | 
|  | 790 | return pci_mmap_resource(kobj, attr, vma, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | } | 
|  | 792 |  | 
| Alex Williamson | 8633328 | 2010-07-19 09:45:34 -0600 | [diff] [blame] | 793 | static ssize_t | 
|  | 794 | pci_resource_io(struct file *filp, struct kobject *kobj, | 
|  | 795 | struct bin_attribute *attr, char *buf, | 
|  | 796 | loff_t off, size_t count, bool write) | 
|  | 797 | { | 
|  | 798 | struct pci_dev *pdev = to_pci_dev(container_of(kobj, | 
|  | 799 | struct device, kobj)); | 
|  | 800 | struct resource *res = attr->private; | 
|  | 801 | unsigned long port = off; | 
|  | 802 | int i; | 
|  | 803 |  | 
|  | 804 | for (i = 0; i < PCI_ROM_RESOURCE; i++) | 
|  | 805 | if (res == &pdev->resource[i]) | 
|  | 806 | break; | 
|  | 807 | if (i >= PCI_ROM_RESOURCE) | 
|  | 808 | return -ENODEV; | 
|  | 809 |  | 
|  | 810 | port += pci_resource_start(pdev, i); | 
|  | 811 |  | 
|  | 812 | if (port > pci_resource_end(pdev, i)) | 
|  | 813 | return 0; | 
|  | 814 |  | 
|  | 815 | if (port + count - 1 > pci_resource_end(pdev, i)) | 
|  | 816 | return -EINVAL; | 
|  | 817 |  | 
|  | 818 | switch (count) { | 
|  | 819 | case 1: | 
|  | 820 | if (write) | 
|  | 821 | outb(*(u8 *)buf, port); | 
|  | 822 | else | 
|  | 823 | *(u8 *)buf = inb(port); | 
|  | 824 | return 1; | 
|  | 825 | case 2: | 
|  | 826 | if (write) | 
|  | 827 | outw(*(u16 *)buf, port); | 
|  | 828 | else | 
|  | 829 | *(u16 *)buf = inw(port); | 
|  | 830 | return 2; | 
|  | 831 | case 4: | 
|  | 832 | if (write) | 
|  | 833 | outl(*(u32 *)buf, port); | 
|  | 834 | else | 
|  | 835 | *(u32 *)buf = inl(port); | 
|  | 836 | return 4; | 
|  | 837 | } | 
|  | 838 | return -EINVAL; | 
|  | 839 | } | 
|  | 840 |  | 
|  | 841 | static ssize_t | 
|  | 842 | pci_read_resource_io(struct file *filp, struct kobject *kobj, | 
|  | 843 | struct bin_attribute *attr, char *buf, | 
|  | 844 | loff_t off, size_t count) | 
|  | 845 | { | 
|  | 846 | return pci_resource_io(filp, kobj, attr, buf, off, count, false); | 
|  | 847 | } | 
|  | 848 |  | 
|  | 849 | static ssize_t | 
|  | 850 | pci_write_resource_io(struct file *filp, struct kobject *kobj, | 
|  | 851 | struct bin_attribute *attr, char *buf, | 
|  | 852 | loff_t off, size_t count) | 
|  | 853 | { | 
|  | 854 | return pci_resource_io(filp, kobj, attr, buf, off, count, true); | 
|  | 855 | } | 
|  | 856 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | /** | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 858 | * pci_remove_resource_files - cleanup resource files | 
| Randy Dunlap | cffb2fa | 2009-04-10 15:17:50 -0700 | [diff] [blame] | 859 | * @pdev: dev to cleanup | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 860 | * | 
| Randy Dunlap | cffb2fa | 2009-04-10 15:17:50 -0700 | [diff] [blame] | 861 | * 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] | 862 | * free their resources. | 
|  | 863 | */ | 
|  | 864 | static void | 
|  | 865 | pci_remove_resource_files(struct pci_dev *pdev) | 
|  | 866 | { | 
|  | 867 | int i; | 
|  | 868 |  | 
|  | 869 | for (i = 0; i < PCI_ROM_RESOURCE; i++) { | 
|  | 870 | struct bin_attribute *res_attr; | 
|  | 871 |  | 
|  | 872 | res_attr = pdev->res_attr[i]; | 
|  | 873 | if (res_attr) { | 
|  | 874 | sysfs_remove_bin_file(&pdev->dev.kobj, res_attr); | 
|  | 875 | kfree(res_attr); | 
|  | 876 | } | 
| venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 877 |  | 
|  | 878 | res_attr = pdev->res_attr_wc[i]; | 
|  | 879 | if (res_attr) { | 
|  | 880 | sysfs_remove_bin_file(&pdev->dev.kobj, res_attr); | 
|  | 881 | kfree(res_attr); | 
|  | 882 | } | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 883 | } | 
|  | 884 | } | 
|  | 885 |  | 
| venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 886 | static int pci_create_attr(struct pci_dev *pdev, int num, int write_combine) | 
|  | 887 | { | 
|  | 888 | /* allocate attribute structure, piggyback attribute name */ | 
|  | 889 | int name_len = write_combine ? 13 : 10; | 
|  | 890 | struct bin_attribute *res_attr; | 
|  | 891 | int retval; | 
|  | 892 |  | 
|  | 893 | res_attr = kzalloc(sizeof(*res_attr) + name_len, GFP_ATOMIC); | 
|  | 894 | if (res_attr) { | 
|  | 895 | char *res_attr_name = (char *)(res_attr + 1); | 
|  | 896 |  | 
| Eric W. Biederman | a07e415 | 2010-02-11 15:23:05 -0800 | [diff] [blame] | 897 | sysfs_bin_attr_init(res_attr); | 
| venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 898 | if (write_combine) { | 
|  | 899 | pdev->res_attr_wc[num] = res_attr; | 
|  | 900 | sprintf(res_attr_name, "resource%d_wc", num); | 
|  | 901 | res_attr->mmap = pci_mmap_resource_wc; | 
|  | 902 | } else { | 
|  | 903 | pdev->res_attr[num] = res_attr; | 
|  | 904 | sprintf(res_attr_name, "resource%d", num); | 
|  | 905 | res_attr->mmap = pci_mmap_resource_uc; | 
|  | 906 | } | 
| Alex Williamson | 8633328 | 2010-07-19 09:45:34 -0600 | [diff] [blame] | 907 | if (pci_resource_flags(pdev, num) & IORESOURCE_IO) { | 
|  | 908 | res_attr->read = pci_read_resource_io; | 
|  | 909 | res_attr->write = pci_write_resource_io; | 
|  | 910 | } | 
| venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 911 | res_attr->attr.name = res_attr_name; | 
|  | 912 | res_attr->attr.mode = S_IRUSR | S_IWUSR; | 
|  | 913 | res_attr->size = pci_resource_len(pdev, num); | 
|  | 914 | res_attr->private = &pdev->resource[num]; | 
|  | 915 | retval = sysfs_create_bin_file(&pdev->dev.kobj, res_attr); | 
|  | 916 | } else | 
|  | 917 | retval = -ENOMEM; | 
|  | 918 |  | 
|  | 919 | return retval; | 
|  | 920 | } | 
|  | 921 |  | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 922 | /** | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | * pci_create_resource_files - create resource files in sysfs for @dev | 
| Randy Dunlap | cffb2fa | 2009-04-10 15:17:50 -0700 | [diff] [blame] | 924 | * @pdev: dev in question | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | * | 
| Randy Dunlap | cffb2fa | 2009-04-10 15:17:50 -0700 | [diff] [blame] | 926 | * Walk the resources in @pdev creating files for each resource available. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | */ | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 928 | static int pci_create_resource_files(struct pci_dev *pdev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | { | 
|  | 930 | int i; | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 931 | int retval; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 |  | 
|  | 933 | /* Expose the PCI resources from this device as files */ | 
|  | 934 | for (i = 0; i < PCI_ROM_RESOURCE; i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 |  | 
|  | 936 | /* skip empty resources */ | 
|  | 937 | if (!pci_resource_len(pdev, i)) | 
|  | 938 | continue; | 
|  | 939 |  | 
| venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 940 | retval = pci_create_attr(pdev, i, 0); | 
|  | 941 | /* for prefetchable resources, create a WC mappable file */ | 
|  | 942 | if (!retval && pdev->resource[i].flags & IORESOURCE_PREFETCH) | 
|  | 943 | retval = pci_create_attr(pdev, i, 1); | 
| Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 944 |  | 
| venkatesh.pallipadi@intel.com | 45aec1ae | 2008-03-18 17:00:22 -0700 | [diff] [blame] | 945 | if (retval) { | 
|  | 946 | pci_remove_resource_files(pdev); | 
|  | 947 | return retval; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | } | 
|  | 949 | } | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 950 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | } | 
|  | 952 | #else /* !HAVE_PCI_MMAP */ | 
| Ivan Kokshaysky | 10a0ef3 | 2009-02-17 13:46:53 +0300 | [diff] [blame] | 953 | int __weak pci_create_resource_files(struct pci_dev *dev) { return 0; } | 
|  | 954 | void __weak pci_remove_resource_files(struct pci_dev *dev) { return; } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | #endif /* HAVE_PCI_MMAP */ | 
|  | 956 |  | 
|  | 957 | /** | 
|  | 958 | * pci_write_rom - used to enable access to the PCI ROM display | 
| Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 959 | * @filp: sysfs file | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | * @kobj: kernel object handle | 
| Randy Dunlap | cffb2fa | 2009-04-10 15:17:50 -0700 | [diff] [blame] | 961 | * @bin_attr: struct bin_attribute for this file | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | * @buf: user input | 
|  | 963 | * @off: file offset | 
|  | 964 | * @count: number of byte in input | 
|  | 965 | * | 
|  | 966 | * writing anything except 0 enables it | 
|  | 967 | */ | 
|  | 968 | static ssize_t | 
| Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 969 | pci_write_rom(struct file *filp, struct kobject *kobj, | 
|  | 970 | struct bin_attribute *bin_attr, | 
| Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 971 | char *buf, loff_t off, size_t count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | { | 
|  | 973 | struct pci_dev *pdev = to_pci_dev(container_of(kobj, struct device, kobj)); | 
|  | 974 |  | 
|  | 975 | if ((off ==  0) && (*buf == '0') && (count == 2)) | 
|  | 976 | pdev->rom_attr_enabled = 0; | 
|  | 977 | else | 
|  | 978 | pdev->rom_attr_enabled = 1; | 
|  | 979 |  | 
|  | 980 | return count; | 
|  | 981 | } | 
|  | 982 |  | 
|  | 983 | /** | 
|  | 984 | * pci_read_rom - read a PCI ROM | 
| Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 985 | * @filp: sysfs file | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | * @kobj: kernel object handle | 
| Randy Dunlap | cffb2fa | 2009-04-10 15:17:50 -0700 | [diff] [blame] | 987 | * @bin_attr: struct bin_attribute for this file | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | * @buf: where to put the data we read from the ROM | 
|  | 989 | * @off: file offset | 
|  | 990 | * @count: number of bytes to read | 
|  | 991 | * | 
|  | 992 | * Put @count bytes starting at @off into @buf from the ROM in the PCI | 
|  | 993 | * device corresponding to @kobj. | 
|  | 994 | */ | 
|  | 995 | static ssize_t | 
| Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 996 | pci_read_rom(struct file *filp, struct kobject *kobj, | 
|  | 997 | struct bin_attribute *bin_attr, | 
| Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 998 | char *buf, loff_t off, size_t count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | { | 
|  | 1000 | struct pci_dev *pdev = to_pci_dev(container_of(kobj, struct device, kobj)); | 
|  | 1001 | void __iomem *rom; | 
|  | 1002 | size_t size; | 
|  | 1003 |  | 
|  | 1004 | if (!pdev->rom_attr_enabled) | 
|  | 1005 | return -EINVAL; | 
|  | 1006 |  | 
|  | 1007 | 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] | 1008 | if (!rom || !size) | 
|  | 1009 | return -EIO; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 |  | 
|  | 1011 | if (off >= size) | 
|  | 1012 | count = 0; | 
|  | 1013 | else { | 
|  | 1014 | if (off + count > size) | 
|  | 1015 | count = size - off; | 
|  | 1016 |  | 
|  | 1017 | memcpy_fromio(buf, rom + off, count); | 
|  | 1018 | } | 
|  | 1019 | pci_unmap_rom(pdev, rom); | 
|  | 1020 |  | 
|  | 1021 | return count; | 
|  | 1022 | } | 
|  | 1023 |  | 
|  | 1024 | static struct bin_attribute pci_config_attr = { | 
|  | 1025 | .attr =	{ | 
|  | 1026 | .name = "config", | 
|  | 1027 | .mode = S_IRUGO | S_IWUSR, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | }, | 
| Zhao, Yu | 557848c | 2008-10-13 19:18:07 +0800 | [diff] [blame] | 1029 | .size = PCI_CFG_SPACE_SIZE, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | .read = pci_read_config, | 
|  | 1031 | .write = pci_write_config, | 
|  | 1032 | }; | 
|  | 1033 |  | 
|  | 1034 | static struct bin_attribute pcie_config_attr = { | 
|  | 1035 | .attr =	{ | 
|  | 1036 | .name = "config", | 
|  | 1037 | .mode = S_IRUGO | S_IWUSR, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | }, | 
| Zhao, Yu | 557848c | 2008-10-13 19:18:07 +0800 | [diff] [blame] | 1039 | .size = PCI_CFG_SPACE_EXP_SIZE, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | .read = pci_read_config, | 
|  | 1041 | .write = pci_write_config, | 
|  | 1042 | }; | 
|  | 1043 |  | 
| Michael Ellerman | a2cd52c | 2007-05-08 12:03:08 +1000 | [diff] [blame] | 1044 | int __attribute__ ((weak)) pcibios_add_platform_entries(struct pci_dev *dev) | 
| Michael Ellerman | 575e334 | 2007-05-08 12:03:07 +1000 | [diff] [blame] | 1045 | { | 
| Michael Ellerman | a2cd52c | 2007-05-08 12:03:08 +1000 | [diff] [blame] | 1046 | return 0; | 
| Michael Ellerman | 575e334 | 2007-05-08 12:03:07 +1000 | [diff] [blame] | 1047 | } | 
|  | 1048 |  | 
| Michael S. Tsirkin | 711d577 | 2009-07-27 23:37:48 +0300 | [diff] [blame] | 1049 | static ssize_t reset_store(struct device *dev, | 
|  | 1050 | struct device_attribute *attr, const char *buf, | 
|  | 1051 | size_t count) | 
|  | 1052 | { | 
|  | 1053 | struct pci_dev *pdev = to_pci_dev(dev); | 
|  | 1054 | unsigned long val; | 
|  | 1055 | ssize_t result = strict_strtoul(buf, 0, &val); | 
|  | 1056 |  | 
|  | 1057 | if (result < 0) | 
|  | 1058 | return result; | 
|  | 1059 |  | 
|  | 1060 | if (val != 1) | 
|  | 1061 | return -EINVAL; | 
| Michal Schmidt | 447c5dd | 2010-05-11 11:44:54 +0200 | [diff] [blame] | 1062 |  | 
|  | 1063 | result = pci_reset_function(pdev); | 
|  | 1064 | if (result < 0) | 
|  | 1065 | return result; | 
|  | 1066 |  | 
|  | 1067 | return count; | 
| Michael S. Tsirkin | 711d577 | 2009-07-27 23:37:48 +0300 | [diff] [blame] | 1068 | } | 
|  | 1069 |  | 
|  | 1070 | static struct device_attribute reset_attr = __ATTR(reset, 0200, NULL, reset_store); | 
|  | 1071 |  | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1072 | static int pci_create_capabilities_sysfs(struct pci_dev *dev) | 
|  | 1073 | { | 
|  | 1074 | int retval; | 
|  | 1075 | struct bin_attribute *attr; | 
|  | 1076 |  | 
|  | 1077 | /* If the device has VPD, try to expose it in sysfs. */ | 
|  | 1078 | if (dev->vpd) { | 
|  | 1079 | attr = kzalloc(sizeof(*attr), GFP_ATOMIC); | 
|  | 1080 | if (!attr) | 
|  | 1081 | return -ENOMEM; | 
|  | 1082 |  | 
| Eric W. Biederman | a07e415 | 2010-02-11 15:23:05 -0800 | [diff] [blame] | 1083 | sysfs_bin_attr_init(attr); | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1084 | attr->size = dev->vpd->len; | 
|  | 1085 | attr->attr.name = "vpd"; | 
|  | 1086 | attr->attr.mode = S_IRUSR | S_IWUSR; | 
| Stephen Hemminger | 287d19c | 2008-12-18 09:17:16 -0800 | [diff] [blame] | 1087 | attr->read = read_vpd_attr; | 
|  | 1088 | attr->write = write_vpd_attr; | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1089 | retval = sysfs_create_bin_file(&dev->dev.kobj, attr); | 
|  | 1090 | if (retval) { | 
| Ben Hutchings | 0f12a4e | 2011-01-13 19:47:56 +0000 | [diff] [blame] | 1091 | kfree(attr); | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1092 | return retval; | 
|  | 1093 | } | 
|  | 1094 | dev->vpd->attr = attr; | 
|  | 1095 | } | 
|  | 1096 |  | 
|  | 1097 | /* Active State Power Management */ | 
|  | 1098 | pcie_aspm_create_sysfs_dev_files(dev); | 
|  | 1099 |  | 
| Michael S. Tsirkin | 711d577 | 2009-07-27 23:37:48 +0300 | [diff] [blame] | 1100 | if (!pci_probe_reset_function(dev)) { | 
|  | 1101 | retval = device_create_file(&dev->dev, &reset_attr); | 
|  | 1102 | if (retval) | 
|  | 1103 | goto error; | 
|  | 1104 | dev->reset_fn = 1; | 
|  | 1105 | } | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1106 | return 0; | 
| Michael S. Tsirkin | 711d577 | 2009-07-27 23:37:48 +0300 | [diff] [blame] | 1107 |  | 
|  | 1108 | error: | 
|  | 1109 | pcie_aspm_remove_sysfs_dev_files(dev); | 
|  | 1110 | if (dev->vpd && dev->vpd->attr) { | 
|  | 1111 | sysfs_remove_bin_file(&dev->dev.kobj, dev->vpd->attr); | 
|  | 1112 | kfree(dev->vpd->attr); | 
|  | 1113 | } | 
|  | 1114 |  | 
|  | 1115 | return retval; | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1116 | } | 
|  | 1117 |  | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1118 | int __must_check pci_create_sysfs_dev_files (struct pci_dev *pdev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | { | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1120 | int retval; | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1121 | int rom_size = 0; | 
|  | 1122 | struct bin_attribute *attr; | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1123 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | if (!sysfs_initialized) | 
|  | 1125 | return -EACCES; | 
|  | 1126 |  | 
| Zhao, Yu | 557848c | 2008-10-13 19:18:07 +0800 | [diff] [blame] | 1127 | if (pdev->cfg_size < PCI_CFG_SPACE_EXP_SIZE) | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1128 | retval = sysfs_create_bin_file(&pdev->dev.kobj, &pci_config_attr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | else | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1130 | retval = sysfs_create_bin_file(&pdev->dev.kobj, &pcie_config_attr); | 
|  | 1131 | if (retval) | 
|  | 1132 | goto err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 |  | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1134 | retval = pci_create_resource_files(pdev); | 
|  | 1135 | if (retval) | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1136 | goto err_config_file; | 
|  | 1137 |  | 
|  | 1138 | if (pci_resource_len(pdev, PCI_ROM_RESOURCE)) | 
|  | 1139 | rom_size = pci_resource_len(pdev, PCI_ROM_RESOURCE); | 
|  | 1140 | else if (pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW) | 
|  | 1141 | rom_size = 0x20000; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 |  | 
|  | 1143 | /* If the device has a ROM, try to expose it in sysfs. */ | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1144 | if (rom_size) { | 
| Ben Hutchings | 94e6108 | 2008-03-05 16:52:39 +0000 | [diff] [blame] | 1145 | attr = kzalloc(sizeof(*attr), GFP_ATOMIC); | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1146 | if (!attr) { | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1147 | retval = -ENOMEM; | 
| Michael Ellerman | 9890b12 | 2007-04-18 13:34:12 +1000 | [diff] [blame] | 1148 | goto err_resource_files; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | } | 
| Eric W. Biederman | a07e415 | 2010-02-11 15:23:05 -0800 | [diff] [blame] | 1150 | sysfs_bin_attr_init(attr); | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1151 | attr->size = rom_size; | 
|  | 1152 | attr->attr.name = "rom"; | 
| Alex Williamson | ff29530 | 2011-01-05 10:26:41 -0700 | [diff] [blame] | 1153 | attr->attr.mode = S_IRUSR | S_IWUSR; | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1154 | attr->read = pci_read_rom; | 
|  | 1155 | attr->write = pci_write_rom; | 
|  | 1156 | retval = sysfs_create_bin_file(&pdev->dev.kobj, attr); | 
|  | 1157 | if (retval) { | 
|  | 1158 | kfree(attr); | 
|  | 1159 | goto err_resource_files; | 
|  | 1160 | } | 
|  | 1161 | pdev->rom_attr = attr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | } | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1163 |  | 
| Dave Airlie | 217f45d | 2009-03-04 05:57:05 +0000 | [diff] [blame] | 1164 | if ((pdev->class >> 8) == PCI_CLASS_DISPLAY_VGA) { | 
|  | 1165 | retval = device_create_file(&pdev->dev, &vga_attr); | 
|  | 1166 | if (retval) | 
|  | 1167 | goto err_rom_file; | 
|  | 1168 | } | 
|  | 1169 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | /* add platform-specific attributes */ | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1171 | retval = pcibios_add_platform_entries(pdev); | 
|  | 1172 | if (retval) | 
| Dave Airlie | 217f45d | 2009-03-04 05:57:05 +0000 | [diff] [blame] | 1173 | goto err_vga_file; | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1174 |  | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1175 | /* add sysfs entries for various capabilities */ | 
|  | 1176 | retval = pci_create_capabilities_sysfs(pdev); | 
|  | 1177 | if (retval) | 
| Dave Airlie | 217f45d | 2009-03-04 05:57:05 +0000 | [diff] [blame] | 1178 | goto err_vga_file; | 
| Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 1179 |  | 
| Narendra K | 911e1c9 | 2010-07-26 05:56:50 -0500 | [diff] [blame] | 1180 | pci_create_firmware_label_files(pdev); | 
|  | 1181 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1182 | return 0; | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1183 |  | 
| Dave Airlie | 217f45d | 2009-03-04 05:57:05 +0000 | [diff] [blame] | 1184 | err_vga_file: | 
|  | 1185 | if ((pdev->class >> 8) == PCI_CLASS_DISPLAY_VGA) | 
|  | 1186 | device_remove_file(&pdev->dev, &vga_attr); | 
| Michael Ellerman | a2cd52c | 2007-05-08 12:03:08 +1000 | [diff] [blame] | 1187 | err_rom_file: | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1188 | if (rom_size) { | 
| Ben Hutchings | 94e6108 | 2008-03-05 16:52:39 +0000 | [diff] [blame] | 1189 | sysfs_remove_bin_file(&pdev->dev.kobj, pdev->rom_attr); | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1190 | kfree(pdev->rom_attr); | 
|  | 1191 | pdev->rom_attr = NULL; | 
|  | 1192 | } | 
| Michael Ellerman | 9890b12 | 2007-04-18 13:34:12 +1000 | [diff] [blame] | 1193 | err_resource_files: | 
|  | 1194 | pci_remove_resource_files(pdev); | 
| Ben Hutchings | 94e6108 | 2008-03-05 16:52:39 +0000 | [diff] [blame] | 1195 | err_config_file: | 
| Zhao, Yu | 557848c | 2008-10-13 19:18:07 +0800 | [diff] [blame] | 1196 | if (pdev->cfg_size < PCI_CFG_SPACE_EXP_SIZE) | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1197 | sysfs_remove_bin_file(&pdev->dev.kobj, &pci_config_attr); | 
|  | 1198 | else | 
|  | 1199 | sysfs_remove_bin_file(&pdev->dev.kobj, &pcie_config_attr); | 
|  | 1200 | err: | 
|  | 1201 | return retval; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1202 | } | 
|  | 1203 |  | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1204 | static void pci_remove_capabilities_sysfs(struct pci_dev *dev) | 
|  | 1205 | { | 
|  | 1206 | if (dev->vpd && dev->vpd->attr) { | 
|  | 1207 | sysfs_remove_bin_file(&dev->dev.kobj, dev->vpd->attr); | 
|  | 1208 | kfree(dev->vpd->attr); | 
|  | 1209 | } | 
|  | 1210 |  | 
|  | 1211 | pcie_aspm_remove_sysfs_dev_files(dev); | 
| Michael S. Tsirkin | 711d577 | 2009-07-27 23:37:48 +0300 | [diff] [blame] | 1212 | if (dev->reset_fn) { | 
|  | 1213 | device_remove_file(&dev->dev, &reset_attr); | 
|  | 1214 | dev->reset_fn = 0; | 
|  | 1215 | } | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1216 | } | 
|  | 1217 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 | /** | 
|  | 1219 | * pci_remove_sysfs_dev_files - cleanup PCI specific sysfs files | 
|  | 1220 | * @pdev: device whose entries we should free | 
|  | 1221 | * | 
|  | 1222 | * Cleanup when @pdev is removed from sysfs. | 
|  | 1223 | */ | 
|  | 1224 | void pci_remove_sysfs_dev_files(struct pci_dev *pdev) | 
|  | 1225 | { | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1226 | int rom_size = 0; | 
|  | 1227 |  | 
| David Miller | d67afe5 | 2006-11-10 12:27:48 -0800 | [diff] [blame] | 1228 | if (!sysfs_initialized) | 
|  | 1229 | return; | 
|  | 1230 |  | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1231 | pci_remove_capabilities_sysfs(pdev); | 
| Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 1232 |  | 
| Zhao, Yu | 557848c | 2008-10-13 19:18:07 +0800 | [diff] [blame] | 1233 | if (pdev->cfg_size < PCI_CFG_SPACE_EXP_SIZE) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | sysfs_remove_bin_file(&pdev->dev.kobj, &pci_config_attr); | 
|  | 1235 | else | 
|  | 1236 | sysfs_remove_bin_file(&pdev->dev.kobj, &pcie_config_attr); | 
|  | 1237 |  | 
|  | 1238 | pci_remove_resource_files(pdev); | 
|  | 1239 |  | 
| Zhao, Yu | 280c73d | 2008-10-13 20:01:00 +0800 | [diff] [blame] | 1240 | if (pci_resource_len(pdev, PCI_ROM_RESOURCE)) | 
|  | 1241 | rom_size = pci_resource_len(pdev, PCI_ROM_RESOURCE); | 
|  | 1242 | else if (pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW) | 
|  | 1243 | rom_size = 0x20000; | 
|  | 1244 |  | 
|  | 1245 | if (rom_size && pdev->rom_attr) { | 
|  | 1246 | sysfs_remove_bin_file(&pdev->dev.kobj, pdev->rom_attr); | 
|  | 1247 | kfree(pdev->rom_attr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | } | 
| Narendra K | 911e1c9 | 2010-07-26 05:56:50 -0500 | [diff] [blame] | 1249 |  | 
|  | 1250 | pci_remove_firmware_label_files(pdev); | 
|  | 1251 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1252 | } | 
|  | 1253 |  | 
|  | 1254 | static int __init pci_sysfs_init(void) | 
|  | 1255 | { | 
|  | 1256 | struct pci_dev *pdev = NULL; | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1257 | int retval; | 
|  | 1258 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | sysfs_initialized = 1; | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1260 | for_each_pci_dev(pdev) { | 
|  | 1261 | retval = pci_create_sysfs_dev_files(pdev); | 
| Julia Lawall | 151fc5d | 2007-11-20 08:41:16 +0100 | [diff] [blame] | 1262 | if (retval) { | 
|  | 1263 | pci_dev_put(pdev); | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1264 | return retval; | 
| Julia Lawall | 151fc5d | 2007-11-20 08:41:16 +0100 | [diff] [blame] | 1265 | } | 
| Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1266 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 |  | 
|  | 1268 | return 0; | 
|  | 1269 | } | 
|  | 1270 |  | 
| Jesse Barnes | 40ee9e9 | 2007-03-24 11:03:32 -0700 | [diff] [blame] | 1271 | late_initcall(pci_sysfs_init); |