1 // SPDX-License-Identifier: GPL-2.0
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>
10 * File attributes for PCI devices
12 * Modeled after usb's driverfs.c
16 #include <linux/kernel.h>
17 #include <linux/sched.h>
18 #include <linux/pci.h>
19 #include <linux/stat.h>
20 #include <linux/export.h>
21 #include <linux/topology.h>
24 #include <linux/capability.h>
25 #include <linux/security.h>
26 #include <linux/pci-aspm.h>
27 #include <linux/slab.h>
28 #include <linux/vgaarb.h>
29 #include <linux/pm_runtime.h>
33 static int sysfs_initialized
; /* = 0 */
35 /* show configuration fields */
36 #define pci_config_attr(field, format_string) \
38 field##_show(struct device *dev, struct device_attribute *attr, char *buf) \
40 struct pci_dev *pdev; \
42 pdev = to_pci_dev(dev); \
43 return sprintf(buf, format_string, pdev->field); \
45 static DEVICE_ATTR_RO(field)
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");
51 pci_config_attr(revision
, "0x%02x\n");
52 pci_config_attr(class, "0x%06x\n");
53 pci_config_attr(irq
, "%u\n");
55 static ssize_t
broken_parity_status_show(struct device
*dev
,
56 struct device_attribute
*attr
,
59 struct pci_dev
*pdev
= to_pci_dev(dev
);
60 return sprintf(buf
, "%u\n", pdev
->broken_parity_status
);
63 static ssize_t
broken_parity_status_store(struct device
*dev
,
64 struct device_attribute
*attr
,
65 const char *buf
, size_t count
)
67 struct pci_dev
*pdev
= to_pci_dev(dev
);
70 if (kstrtoul(buf
, 0, &val
) < 0)
73 pdev
->broken_parity_status
= !!val
;
77 static DEVICE_ATTR_RW(broken_parity_status
);
79 static ssize_t
pci_dev_show_local_cpu(struct device
*dev
, bool list
,
80 struct device_attribute
*attr
, char *buf
)
82 const struct cpumask
*mask
;
85 mask
= (dev_to_node(dev
) == -1) ? cpu_online_mask
:
86 cpumask_of_node(dev_to_node(dev
));
88 mask
= cpumask_of_pcibus(to_pci_dev(dev
)->bus
);
90 return cpumap_print_to_pagebuf(list
, buf
, mask
);
93 static ssize_t
local_cpus_show(struct device
*dev
,
94 struct device_attribute
*attr
, char *buf
)
96 return pci_dev_show_local_cpu(dev
, false, attr
, buf
);
98 static DEVICE_ATTR_RO(local_cpus
);
100 static ssize_t
local_cpulist_show(struct device
*dev
,
101 struct device_attribute
*attr
, char *buf
)
103 return pci_dev_show_local_cpu(dev
, true, attr
, buf
);
105 static DEVICE_ATTR_RO(local_cpulist
);
108 * PCI Bus Class Devices
110 static ssize_t
cpuaffinity_show(struct device
*dev
,
111 struct device_attribute
*attr
, char *buf
)
113 const struct cpumask
*cpumask
= cpumask_of_pcibus(to_pci_bus(dev
));
115 return cpumap_print_to_pagebuf(false, buf
, cpumask
);
117 static DEVICE_ATTR_RO(cpuaffinity
);
119 static ssize_t
cpulistaffinity_show(struct device
*dev
,
120 struct device_attribute
*attr
, char *buf
)
122 const struct cpumask
*cpumask
= cpumask_of_pcibus(to_pci_bus(dev
));
124 return cpumap_print_to_pagebuf(true, buf
, cpumask
);
126 static DEVICE_ATTR_RO(cpulistaffinity
);
129 static ssize_t
resource_show(struct device
*dev
, struct device_attribute
*attr
,
132 struct pci_dev
*pci_dev
= to_pci_dev(dev
);
136 resource_size_t start
, end
;
138 if (pci_dev
->subordinate
)
139 max
= DEVICE_COUNT_RESOURCE
;
141 max
= PCI_BRIDGE_RESOURCES
;
143 for (i
= 0; i
< max
; i
++) {
144 struct resource
*res
= &pci_dev
->resource
[i
];
145 pci_resource_to_user(pci_dev
, i
, res
, &start
, &end
);
146 str
+= sprintf(str
, "0x%016llx 0x%016llx 0x%016llx\n",
147 (unsigned long long)start
,
148 (unsigned long long)end
,
149 (unsigned long long)res
->flags
);
153 static DEVICE_ATTR_RO(resource
);
155 static ssize_t
max_link_speed_show(struct device
*dev
,
156 struct device_attribute
*attr
, char *buf
)
158 struct pci_dev
*pdev
= to_pci_dev(dev
);
160 return sprintf(buf
, "%s\n", PCIE_SPEED2STR(pcie_get_speed_cap(pdev
)));
162 static DEVICE_ATTR_RO(max_link_speed
);
164 static ssize_t
max_link_width_show(struct device
*dev
,
165 struct device_attribute
*attr
, char *buf
)
167 struct pci_dev
*pdev
= to_pci_dev(dev
);
169 return sprintf(buf
, "%u\n", pcie_get_width_cap(pdev
));
171 static DEVICE_ATTR_RO(max_link_width
);
173 static ssize_t
current_link_speed_show(struct device
*dev
,
174 struct device_attribute
*attr
, char *buf
)
176 struct pci_dev
*pci_dev
= to_pci_dev(dev
);
181 err
= pcie_capability_read_word(pci_dev
, PCI_EXP_LNKSTA
, &linkstat
);
185 switch (linkstat
& PCI_EXP_LNKSTA_CLS
) {
186 case PCI_EXP_LNKSTA_CLS_16_0GB
:
189 case PCI_EXP_LNKSTA_CLS_8_0GB
:
192 case PCI_EXP_LNKSTA_CLS_5_0GB
:
195 case PCI_EXP_LNKSTA_CLS_2_5GB
:
199 speed
= "Unknown speed";
202 return sprintf(buf
, "%s\n", speed
);
204 static DEVICE_ATTR_RO(current_link_speed
);
206 static ssize_t
current_link_width_show(struct device
*dev
,
207 struct device_attribute
*attr
, char *buf
)
209 struct pci_dev
*pci_dev
= to_pci_dev(dev
);
213 err
= pcie_capability_read_word(pci_dev
, PCI_EXP_LNKSTA
, &linkstat
);
217 return sprintf(buf
, "%u\n",
218 (linkstat
& PCI_EXP_LNKSTA_NLW
) >> PCI_EXP_LNKSTA_NLW_SHIFT
);
220 static DEVICE_ATTR_RO(current_link_width
);
222 static ssize_t
secondary_bus_number_show(struct device
*dev
,
223 struct device_attribute
*attr
,
226 struct pci_dev
*pci_dev
= to_pci_dev(dev
);
230 err
= pci_read_config_byte(pci_dev
, PCI_SECONDARY_BUS
, &sec_bus
);
234 return sprintf(buf
, "%u\n", sec_bus
);
236 static DEVICE_ATTR_RO(secondary_bus_number
);
238 static ssize_t
subordinate_bus_number_show(struct device
*dev
,
239 struct device_attribute
*attr
,
242 struct pci_dev
*pci_dev
= to_pci_dev(dev
);
246 err
= pci_read_config_byte(pci_dev
, PCI_SUBORDINATE_BUS
, &sub_bus
);
250 return sprintf(buf
, "%u\n", sub_bus
);
252 static DEVICE_ATTR_RO(subordinate_bus_number
);
254 static ssize_t
ari_enabled_show(struct device
*dev
,
255 struct device_attribute
*attr
,
258 struct pci_dev
*pci_dev
= to_pci_dev(dev
);
260 return sprintf(buf
, "%u\n", pci_ari_enabled(pci_dev
->bus
));
262 static DEVICE_ATTR_RO(ari_enabled
);
264 static ssize_t
modalias_show(struct device
*dev
, struct device_attribute
*attr
,
267 struct pci_dev
*pci_dev
= to_pci_dev(dev
);
269 return sprintf(buf
, "pci:v%08Xd%08Xsv%08Xsd%08Xbc%02Xsc%02Xi%02X\n",
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));
275 static DEVICE_ATTR_RO(modalias
);
277 static ssize_t
enable_store(struct device
*dev
, struct device_attribute
*attr
,
278 const char *buf
, size_t count
)
280 struct pci_dev
*pdev
= to_pci_dev(dev
);
282 ssize_t result
= kstrtoul(buf
, 0, &val
);
287 /* this can crash the machine when done on the "wrong" device */
288 if (!capable(CAP_SYS_ADMIN
))
295 result
= pci_enable_device(pdev
);
296 else if (pci_is_enabled(pdev
))
297 pci_disable_device(pdev
);
302 return result
< 0 ? result
: count
;
305 static ssize_t
enable_show(struct device
*dev
, struct device_attribute
*attr
,
308 struct pci_dev
*pdev
;
310 pdev
= to_pci_dev(dev
);
311 return sprintf(buf
, "%u\n", atomic_read(&pdev
->enable_cnt
));
313 static DEVICE_ATTR_RW(enable
);
316 static ssize_t
numa_node_store(struct device
*dev
,
317 struct device_attribute
*attr
, const char *buf
,
320 struct pci_dev
*pdev
= to_pci_dev(dev
);
323 if (!capable(CAP_SYS_ADMIN
))
326 ret
= kstrtoint(buf
, 0, &node
);
330 if ((node
< 0 && node
!= NUMA_NO_NODE
) || node
>= MAX_NUMNODES
)
333 if (node
!= NUMA_NO_NODE
&& !node_online(node
))
336 add_taint(TAINT_FIRMWARE_WORKAROUND
, LOCKDEP_STILL_OK
);
337 pci_alert(pdev
, FW_BUG
"Overriding NUMA node to %d. Contact your vendor for updates.",
340 dev
->numa_node
= node
;
344 static ssize_t
numa_node_show(struct device
*dev
, struct device_attribute
*attr
,
347 return sprintf(buf
, "%d\n", dev
->numa_node
);
349 static DEVICE_ATTR_RW(numa_node
);
352 static ssize_t
dma_mask_bits_show(struct device
*dev
,
353 struct device_attribute
*attr
, char *buf
)
355 struct pci_dev
*pdev
= to_pci_dev(dev
);
357 return sprintf(buf
, "%d\n", fls64(pdev
->dma_mask
));
359 static DEVICE_ATTR_RO(dma_mask_bits
);
361 static ssize_t
consistent_dma_mask_bits_show(struct device
*dev
,
362 struct device_attribute
*attr
,
365 return sprintf(buf
, "%d\n", fls64(dev
->coherent_dma_mask
));
367 static DEVICE_ATTR_RO(consistent_dma_mask_bits
);
369 static ssize_t
msi_bus_show(struct device
*dev
, struct device_attribute
*attr
,
372 struct pci_dev
*pdev
= to_pci_dev(dev
);
373 struct pci_bus
*subordinate
= pdev
->subordinate
;
375 return sprintf(buf
, "%u\n", subordinate
?
376 !(subordinate
->bus_flags
& PCI_BUS_FLAGS_NO_MSI
)
380 static ssize_t
msi_bus_store(struct device
*dev
, struct device_attribute
*attr
,
381 const char *buf
, size_t count
)
383 struct pci_dev
*pdev
= to_pci_dev(dev
);
384 struct pci_bus
*subordinate
= pdev
->subordinate
;
387 if (kstrtoul(buf
, 0, &val
) < 0)
390 if (!capable(CAP_SYS_ADMIN
))
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.
400 pci_info(pdev
, "MSI/MSI-X %s for future drivers\n",
401 val
? "allowed" : "disallowed");
406 subordinate
->bus_flags
&= ~PCI_BUS_FLAGS_NO_MSI
;
408 subordinate
->bus_flags
|= PCI_BUS_FLAGS_NO_MSI
;
410 dev_info(&subordinate
->dev
, "MSI/MSI-X %s for future drivers of devices on this bus\n",
411 val
? "allowed" : "disallowed");
414 static DEVICE_ATTR_RW(msi_bus
);
416 static ssize_t
bus_rescan_store(struct bus_type
*bus
, const char *buf
,
420 struct pci_bus
*b
= NULL
;
422 if (kstrtoul(buf
, 0, &val
) < 0)
426 pci_lock_rescan_remove();
427 while ((b
= pci_find_next_bus(b
)) != NULL
)
429 pci_unlock_rescan_remove();
433 static BUS_ATTR(rescan
, (S_IWUSR
|S_IWGRP
), NULL
, bus_rescan_store
);
435 static struct attribute
*pci_bus_attrs
[] = {
436 &bus_attr_rescan
.attr
,
440 static const struct attribute_group pci_bus_group
= {
441 .attrs
= pci_bus_attrs
,
444 const struct attribute_group
*pci_bus_groups
[] = {
449 static ssize_t
dev_rescan_store(struct device
*dev
,
450 struct device_attribute
*attr
, const char *buf
,
454 struct pci_dev
*pdev
= to_pci_dev(dev
);
456 if (kstrtoul(buf
, 0, &val
) < 0)
460 pci_lock_rescan_remove();
461 pci_rescan_bus(pdev
->bus
);
462 pci_unlock_rescan_remove();
466 static struct device_attribute dev_rescan_attr
= __ATTR(rescan
,
468 NULL
, dev_rescan_store
);
470 static ssize_t
remove_store(struct device
*dev
, struct device_attribute
*attr
,
471 const char *buf
, size_t count
)
475 if (kstrtoul(buf
, 0, &val
) < 0)
478 if (val
&& device_remove_file_self(dev
, attr
))
479 pci_stop_and_remove_bus_device_locked(to_pci_dev(dev
));
482 static struct device_attribute dev_remove_attr
= __ATTR(remove
,
486 static ssize_t
dev_bus_rescan_store(struct device
*dev
,
487 struct device_attribute
*attr
,
488 const char *buf
, size_t count
)
491 struct pci_bus
*bus
= to_pci_bus(dev
);
493 if (kstrtoul(buf
, 0, &val
) < 0)
497 pci_lock_rescan_remove();
498 if (!pci_is_root_bus(bus
) && list_empty(&bus
->devices
))
499 pci_rescan_bus_bridge_resize(bus
->self
);
502 pci_unlock_rescan_remove();
506 static DEVICE_ATTR(rescan
, (S_IWUSR
|S_IWGRP
), NULL
, dev_bus_rescan_store
);
508 #if defined(CONFIG_PM) && defined(CONFIG_ACPI)
509 static ssize_t
d3cold_allowed_store(struct device
*dev
,
510 struct device_attribute
*attr
,
511 const char *buf
, size_t count
)
513 struct pci_dev
*pdev
= to_pci_dev(dev
);
516 if (kstrtoul(buf
, 0, &val
) < 0)
519 pdev
->d3cold_allowed
= !!val
;
520 if (pdev
->d3cold_allowed
)
521 pci_d3cold_enable(pdev
);
523 pci_d3cold_disable(pdev
);
525 pm_runtime_resume(dev
);
530 static ssize_t
d3cold_allowed_show(struct device
*dev
,
531 struct device_attribute
*attr
, char *buf
)
533 struct pci_dev
*pdev
= to_pci_dev(dev
);
534 return sprintf(buf
, "%u\n", pdev
->d3cold_allowed
);
536 static DEVICE_ATTR_RW(d3cold_allowed
);
540 static ssize_t
devspec_show(struct device
*dev
,
541 struct device_attribute
*attr
, char *buf
)
543 struct pci_dev
*pdev
= to_pci_dev(dev
);
544 struct device_node
*np
= pci_device_to_OF_node(pdev
);
548 return sprintf(buf
, "%pOF", np
);
550 static DEVICE_ATTR_RO(devspec
);
553 #ifdef CONFIG_PCI_IOV
554 static ssize_t
sriov_totalvfs_show(struct device
*dev
,
555 struct device_attribute
*attr
,
558 struct pci_dev
*pdev
= to_pci_dev(dev
);
560 return sprintf(buf
, "%u\n", pci_sriov_get_totalvfs(pdev
));
564 static ssize_t
sriov_numvfs_show(struct device
*dev
,
565 struct device_attribute
*attr
,
568 struct pci_dev
*pdev
= to_pci_dev(dev
);
570 return sprintf(buf
, "%u\n", pdev
->sriov
->num_VFs
);
574 * num_vfs > 0; number of VFs to enable
575 * num_vfs = 0; disable all VFs
577 * Note: SRIOV spec doesn't allow partial VF
578 * disable, so it's all or none.
580 static ssize_t
sriov_numvfs_store(struct device
*dev
,
581 struct device_attribute
*attr
,
582 const char *buf
, size_t count
)
584 struct pci_dev
*pdev
= to_pci_dev(dev
);
588 ret
= kstrtou16(buf
, 0, &num_vfs
);
592 if (num_vfs
> pci_sriov_get_totalvfs(pdev
))
595 device_lock(&pdev
->dev
);
597 if (num_vfs
== pdev
->sriov
->num_VFs
)
600 /* is PF driver loaded w/callback */
601 if (!pdev
->driver
|| !pdev
->driver
->sriov_configure
) {
602 pci_info(pdev
, "Driver doesn't support SRIOV configuration via sysfs\n");
609 ret
= pdev
->driver
->sriov_configure(pdev
, 0);
614 if (pdev
->sriov
->num_VFs
) {
615 pci_warn(pdev
, "%d VFs already enabled. Disable before enabling %d VFs\n",
616 pdev
->sriov
->num_VFs
, num_vfs
);
621 ret
= pdev
->driver
->sriov_configure(pdev
, num_vfs
);
626 pci_warn(pdev
, "%d VFs requested; only %d enabled\n",
630 device_unlock(&pdev
->dev
);
638 static ssize_t
sriov_offset_show(struct device
*dev
,
639 struct device_attribute
*attr
,
642 struct pci_dev
*pdev
= to_pci_dev(dev
);
644 return sprintf(buf
, "%u\n", pdev
->sriov
->offset
);
647 static ssize_t
sriov_stride_show(struct device
*dev
,
648 struct device_attribute
*attr
,
651 struct pci_dev
*pdev
= to_pci_dev(dev
);
653 return sprintf(buf
, "%u\n", pdev
->sriov
->stride
);
656 static ssize_t
sriov_vf_device_show(struct device
*dev
,
657 struct device_attribute
*attr
,
660 struct pci_dev
*pdev
= to_pci_dev(dev
);
662 return sprintf(buf
, "%x\n", pdev
->sriov
->vf_device
);
665 static ssize_t
sriov_drivers_autoprobe_show(struct device
*dev
,
666 struct device_attribute
*attr
,
669 struct pci_dev
*pdev
= to_pci_dev(dev
);
671 return sprintf(buf
, "%u\n", pdev
->sriov
->drivers_autoprobe
);
674 static ssize_t
sriov_drivers_autoprobe_store(struct device
*dev
,
675 struct device_attribute
*attr
,
676 const char *buf
, size_t count
)
678 struct pci_dev
*pdev
= to_pci_dev(dev
);
679 bool drivers_autoprobe
;
681 if (kstrtobool(buf
, &drivers_autoprobe
) < 0)
684 pdev
->sriov
->drivers_autoprobe
= drivers_autoprobe
;
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
);
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
);
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
);
699 #endif /* CONFIG_PCI_IOV */
701 static ssize_t
driver_override_store(struct device
*dev
,
702 struct device_attribute
*attr
,
703 const char *buf
, size_t count
)
705 struct pci_dev
*pdev
= to_pci_dev(dev
);
706 char *driver_override
, *old
, *cp
;
708 /* We need to keep extra room for a newline */
709 if (count
>= (PAGE_SIZE
- 1))
712 driver_override
= kstrndup(buf
, count
, GFP_KERNEL
);
713 if (!driver_override
)
716 cp
= strchr(driver_override
, '\n');
721 old
= pdev
->driver_override
;
722 if (strlen(driver_override
)) {
723 pdev
->driver_override
= driver_override
;
725 kfree(driver_override
);
726 pdev
->driver_override
= NULL
;
735 static ssize_t
driver_override_show(struct device
*dev
,
736 struct device_attribute
*attr
, char *buf
)
738 struct pci_dev
*pdev
= to_pci_dev(dev
);
742 len
= snprintf(buf
, PAGE_SIZE
, "%s\n", pdev
->driver_override
);
746 static DEVICE_ATTR_RW(driver_override
);
748 static struct attribute
*pci_dev_attrs
[] = {
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
,
754 &dev_attr_revision
.attr
,
755 &dev_attr_class
.attr
,
757 &dev_attr_local_cpus
.attr
,
758 &dev_attr_local_cpulist
.attr
,
759 &dev_attr_modalias
.attr
,
761 &dev_attr_numa_node
.attr
,
763 &dev_attr_dma_mask_bits
.attr
,
764 &dev_attr_consistent_dma_mask_bits
.attr
,
765 &dev_attr_enable
.attr
,
766 &dev_attr_broken_parity_status
.attr
,
767 &dev_attr_msi_bus
.attr
,
768 #if defined(CONFIG_PM) && defined(CONFIG_ACPI)
769 &dev_attr_d3cold_allowed
.attr
,
772 &dev_attr_devspec
.attr
,
774 &dev_attr_driver_override
.attr
,
775 &dev_attr_ari_enabled
.attr
,
779 static struct attribute
*pci_bridge_attrs
[] = {
780 &dev_attr_subordinate_bus_number
.attr
,
781 &dev_attr_secondary_bus_number
.attr
,
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
,
793 static struct attribute
*pcibus_attrs
[] = {
794 &dev_attr_rescan
.attr
,
795 &dev_attr_cpuaffinity
.attr
,
796 &dev_attr_cpulistaffinity
.attr
,
800 static const struct attribute_group pcibus_group
= {
801 .attrs
= pcibus_attrs
,
804 const struct attribute_group
*pcibus_groups
[] = {
809 static ssize_t
boot_vga_show(struct device
*dev
, struct device_attribute
*attr
,
812 struct pci_dev
*pdev
= to_pci_dev(dev
);
813 struct pci_dev
*vga_dev
= vga_default_device();
816 return sprintf(buf
, "%u\n", (pdev
== vga_dev
));
818 return sprintf(buf
, "%u\n",
819 !!(pdev
->resource
[PCI_ROM_RESOURCE
].flags
&
820 IORESOURCE_ROM_SHADOW
));
822 static struct device_attribute vga_attr
= __ATTR_RO(boot_vga
);
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
)
828 struct pci_dev
*dev
= to_pci_dev(kobj_to_dev(kobj
));
829 unsigned int size
= 64;
830 loff_t init_off
= off
;
831 u8
*data
= (u8
*) buf
;
833 /* Several chips lock up trying to read undefined config space */
834 if (file_ns_capable(filp
, &init_user_ns
, CAP_SYS_ADMIN
))
835 size
= dev
->cfg_size
;
836 else if (dev
->hdr_type
== PCI_HEADER_TYPE_CARDBUS
)
841 if (off
+ count
> size
) {
848 pci_config_pm_runtime_get(dev
);
850 if ((off
& 1) && size
) {
852 pci_user_read_config_byte(dev
, off
, &val
);
853 data
[off
- init_off
] = val
;
858 if ((off
& 3) && size
> 2) {
860 pci_user_read_config_word(dev
, off
, &val
);
861 data
[off
- init_off
] = val
& 0xff;
862 data
[off
- init_off
+ 1] = (val
>> 8) & 0xff;
869 pci_user_read_config_dword(dev
, off
, &val
);
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;
880 pci_user_read_config_word(dev
, off
, &val
);
881 data
[off
- init_off
] = val
& 0xff;
882 data
[off
- init_off
+ 1] = (val
>> 8) & 0xff;
889 pci_user_read_config_byte(dev
, off
, &val
);
890 data
[off
- init_off
] = val
;
895 pci_config_pm_runtime_put(dev
);
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
)
904 struct pci_dev
*dev
= to_pci_dev(kobj_to_dev(kobj
));
905 unsigned int size
= count
;
906 loff_t init_off
= off
;
907 u8
*data
= (u8
*) buf
;
909 if (off
> dev
->cfg_size
)
911 if (off
+ count
> dev
->cfg_size
) {
912 size
= dev
->cfg_size
- off
;
916 pci_config_pm_runtime_get(dev
);
918 if ((off
& 1) && size
) {
919 pci_user_write_config_byte(dev
, off
, data
[off
- init_off
]);
924 if ((off
& 3) && size
> 2) {
925 u16 val
= data
[off
- init_off
];
926 val
|= (u16
) data
[off
- init_off
+ 1] << 8;
927 pci_user_write_config_word(dev
, off
, val
);
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;
937 pci_user_write_config_dword(dev
, off
, val
);
943 u16 val
= data
[off
- init_off
];
944 val
|= (u16
) data
[off
- init_off
+ 1] << 8;
945 pci_user_write_config_word(dev
, off
, val
);
951 pci_user_write_config_byte(dev
, off
, data
[off
- init_off
]);
956 pci_config_pm_runtime_put(dev
);
961 #ifdef HAVE_PCI_LEGACY
963 * pci_read_legacy_io - read byte(s) from legacy I/O port space
964 * @filp: open sysfs file
965 * @kobj: kobject corresponding to file to read from
966 * @bin_attr: struct bin_attribute for this file
967 * @buf: buffer to store results
968 * @off: offset into legacy I/O port space
969 * @count: number of bytes to read
971 * Reads 1, 2, or 4 bytes from legacy I/O port space using an arch specific
972 * callback routine (pci_legacy_read).
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
)
978 struct pci_bus
*bus
= to_pci_bus(kobj_to_dev(kobj
));
980 /* Only support 1, 2 or 4 byte accesses */
981 if (count
!= 1 && count
!= 2 && count
!= 4)
984 return pci_legacy_read(bus
, off
, (u32
*)buf
, count
);
988 * pci_write_legacy_io - write byte(s) to legacy I/O port space
989 * @filp: open sysfs file
990 * @kobj: kobject corresponding to file to read from
991 * @bin_attr: struct bin_attribute for this file
992 * @buf: buffer containing value to be written
993 * @off: offset into legacy I/O port space
994 * @count: number of bytes to write
996 * Writes 1, 2, or 4 bytes from legacy I/O port space using an arch specific
997 * callback routine (pci_legacy_write).
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
)
1003 struct pci_bus
*bus
= to_pci_bus(kobj_to_dev(kobj
));
1005 /* Only support 1, 2 or 4 byte accesses */
1006 if (count
!= 1 && count
!= 2 && count
!= 4)
1009 return pci_legacy_write(bus
, off
, *(u32
*)buf
, count
);
1013 * pci_mmap_legacy_mem - map legacy PCI memory into user memory space
1014 * @filp: open sysfs file
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
1019 * Uses an arch specific callback, pci_mmap_legacy_mem_page_range, to mmap
1020 * legacy memory space (first meg of bus space) into application virtual
1023 static int pci_mmap_legacy_mem(struct file
*filp
, struct kobject
*kobj
,
1024 struct bin_attribute
*attr
,
1025 struct vm_area_struct
*vma
)
1027 struct pci_bus
*bus
= to_pci_bus(kobj_to_dev(kobj
));
1029 return pci_mmap_legacy_page_range(bus
, vma
, pci_mmap_mem
);
1033 * pci_mmap_legacy_io - map legacy PCI IO into user memory space
1034 * @filp: open sysfs file
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
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
1043 static int pci_mmap_legacy_io(struct file
*filp
, struct kobject
*kobj
,
1044 struct bin_attribute
*attr
,
1045 struct vm_area_struct
*vma
)
1047 struct pci_bus
*bus
= to_pci_bus(kobj_to_dev(kobj
));
1049 return pci_mmap_legacy_page_range(bus
, vma
, pci_mmap_io
);
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
1057 * Stub implementation. Can be overridden by arch if necessary.
1059 void __weak
pci_adjust_legacy_attr(struct pci_bus
*b
,
1060 enum pci_mmap_state mmap_type
)
1065 * pci_create_legacy_files - create legacy I/O port and memory files
1066 * @b: bus to create files under
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
1072 * On error unwind, but don't propagate the error to the caller
1073 * as it is ok to set up the PCI bus without these files.
1075 void pci_create_legacy_files(struct pci_bus
*b
)
1079 b
->legacy_io
= kcalloc(2, sizeof(struct bin_attribute
),
1084 sysfs_bin_attr_init(b
->legacy_io
);
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
;
1091 pci_adjust_legacy_attr(b
, pci_mmap_io
);
1092 error
= device_create_bin_file(&b
->dev
, b
->legacy_io
);
1096 /* Allocated above after the legacy_io struct */
1097 b
->legacy_mem
= b
->legacy_io
+ 1;
1098 sysfs_bin_attr_init(b
->legacy_mem
);
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
;
1103 pci_adjust_legacy_attr(b
, pci_mmap_mem
);
1104 error
= device_create_bin_file(&b
->dev
, b
->legacy_mem
);
1106 goto legacy_mem_err
;
1111 device_remove_bin_file(&b
->dev
, b
->legacy_io
);
1113 kfree(b
->legacy_io
);
1114 b
->legacy_io
= NULL
;
1116 printk(KERN_WARNING
"pci: warning: could not create legacy I/O port and ISA memory resources to sysfs\n");
1120 void pci_remove_legacy_files(struct pci_bus
*b
)
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 */
1128 #endif /* HAVE_PCI_LEGACY */
1130 #if defined(HAVE_PCI_MMAP) || defined(ARCH_GENERIC_PCI_MMAP_RESOURCE)
1132 int pci_mmap_fits(struct pci_dev
*pdev
, int resno
, struct vm_area_struct
*vma
,
1133 enum pci_mmap_api mmap_api
)
1135 unsigned long nr
, start
, size
;
1136 resource_size_t pci_start
= 0, pci_end
;
1138 if (pci_resource_len(pdev
, resno
) == 0)
1140 nr
= vma_pages(vma
);
1141 start
= vma
->vm_pgoff
;
1142 size
= ((pci_resource_len(pdev
, resno
) - 1) >> PAGE_SHIFT
) + 1;
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
;
1148 if (start
>= pci_start
&& start
< pci_start
+ size
&&
1149 start
+ nr
<= pci_start
+ size
)
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
1159 * @write_combine: 1 for write_combine mapping
1161 * Use the regular PCI mapping routines to map a PCI resource into userspace.
1163 static int pci_mmap_resource(struct kobject
*kobj
, struct bin_attribute
*attr
,
1164 struct vm_area_struct
*vma
, int write_combine
)
1166 struct pci_dev
*pdev
= to_pci_dev(kobj_to_dev(kobj
));
1167 int bar
= (unsigned long)attr
->private;
1168 enum pci_mmap_state mmap_type
;
1169 struct resource
*res
= &pdev
->resource
[bar
];
1171 if (res
->flags
& IORESOURCE_MEM
&& iomem_is_exclusive(res
->start
))
1174 if (!pci_mmap_fits(pdev
, bar
, vma
, PCI_MMAP_SYSFS
))
1177 mmap_type
= res
->flags
& IORESOURCE_MEM
? pci_mmap_mem
: pci_mmap_io
;
1179 return pci_mmap_resource_range(pdev
, bar
, vma
, mmap_type
, write_combine
);
1182 static int pci_mmap_resource_uc(struct file
*filp
, struct kobject
*kobj
,
1183 struct bin_attribute
*attr
,
1184 struct vm_area_struct
*vma
)
1186 return pci_mmap_resource(kobj
, attr
, vma
, 0);
1189 static int pci_mmap_resource_wc(struct file
*filp
, struct kobject
*kobj
,
1190 struct bin_attribute
*attr
,
1191 struct vm_area_struct
*vma
)
1193 return pci_mmap_resource(kobj
, attr
, vma
, 1);
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
)
1200 struct pci_dev
*pdev
= to_pci_dev(kobj_to_dev(kobj
));
1201 int bar
= (unsigned long)attr
->private;
1202 unsigned long port
= off
;
1204 port
+= pci_resource_start(pdev
, bar
);
1206 if (port
> pci_resource_end(pdev
, bar
))
1209 if (port
+ count
- 1 > pci_resource_end(pdev
, bar
))
1215 outb(*(u8
*)buf
, port
);
1217 *(u8
*)buf
= inb(port
);
1221 outw(*(u16
*)buf
, port
);
1223 *(u16
*)buf
= inw(port
);
1227 outl(*(u32
*)buf
, port
);
1229 *(u32
*)buf
= inl(port
);
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
)
1239 return pci_resource_io(filp
, kobj
, attr
, buf
, off
, count
, false);
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
)
1246 return pci_resource_io(filp
, kobj
, attr
, buf
, off
, count
, true);
1250 * pci_remove_resource_files - cleanup resource files
1251 * @pdev: dev to cleanup
1253 * If we created resource files for @pdev, remove them from sysfs and
1254 * free their resources.
1256 static void pci_remove_resource_files(struct pci_dev
*pdev
)
1260 for (i
= 0; i
< PCI_ROM_RESOURCE
; i
++) {
1261 struct bin_attribute
*res_attr
;
1263 res_attr
= pdev
->res_attr
[i
];
1265 sysfs_remove_bin_file(&pdev
->dev
.kobj
, res_attr
);
1269 res_attr
= pdev
->res_attr_wc
[i
];
1271 sysfs_remove_bin_file(&pdev
->dev
.kobj
, res_attr
);
1277 static int pci_create_attr(struct pci_dev
*pdev
, int num
, int write_combine
)
1279 /* allocate attribute structure, piggyback attribute name */
1280 int name_len
= write_combine
? 13 : 10;
1281 struct bin_attribute
*res_attr
;
1282 char *res_attr_name
;
1285 res_attr
= kzalloc(sizeof(*res_attr
) + name_len
, GFP_ATOMIC
);
1289 res_attr_name
= (char *)(res_attr
+ 1);
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
;
1297 pdev
->res_attr
[num
] = res_attr
;
1298 sprintf(res_attr_name
, "resource%d", num
);
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
;
1305 res_attr
->mmap
= pci_mmap_resource_uc
;
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
);
1311 res_attr
->private = (void *)(unsigned long)num
;
1312 retval
= sysfs_create_bin_file(&pdev
->dev
.kobj
, res_attr
);
1320 * pci_create_resource_files - create resource files in sysfs for @dev
1321 * @pdev: dev in question
1323 * Walk the resources in @pdev creating files for each resource available.
1325 static int pci_create_resource_files(struct pci_dev
*pdev
)
1330 /* Expose the PCI resources from this device as files */
1331 for (i
= 0; i
< PCI_ROM_RESOURCE
; i
++) {
1333 /* skip empty resources */
1334 if (!pci_resource_len(pdev
, i
))
1337 retval
= pci_create_attr(pdev
, i
, 0);
1338 /* for prefetchable resources, create a WC mappable file */
1339 if (!retval
&& arch_can_pci_mmap_wc() &&
1340 pdev
->resource
[i
].flags
& IORESOURCE_PREFETCH
)
1341 retval
= pci_create_attr(pdev
, i
, 1);
1343 pci_remove_resource_files(pdev
);
1349 #else /* !HAVE_PCI_MMAP */
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; }
1352 #endif /* HAVE_PCI_MMAP */
1355 * pci_write_rom - used to enable access to the PCI ROM display
1357 * @kobj: kernel object handle
1358 * @bin_attr: struct bin_attribute for this file
1361 * @count: number of byte in input
1363 * writing anything except 0 enables it
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
)
1369 struct pci_dev
*pdev
= to_pci_dev(kobj_to_dev(kobj
));
1371 if ((off
== 0) && (*buf
== '0') && (count
== 2))
1372 pdev
->rom_attr_enabled
= 0;
1374 pdev
->rom_attr_enabled
= 1;
1380 * pci_read_rom - read a PCI ROM
1382 * @kobj: kernel object handle
1383 * @bin_attr: struct bin_attribute for this file
1384 * @buf: where to put the data we read from the ROM
1386 * @count: number of bytes to read
1388 * Put @count bytes starting at @off into @buf from the ROM in the PCI
1389 * device corresponding to @kobj.
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
)
1395 struct pci_dev
*pdev
= to_pci_dev(kobj_to_dev(kobj
));
1399 if (!pdev
->rom_attr_enabled
)
1402 rom
= pci_map_rom(pdev
, &size
); /* size starts out as PCI window size */
1409 if (off
+ count
> size
)
1412 memcpy_fromio(buf
, rom
+ off
, count
);
1414 pci_unmap_rom(pdev
, rom
);
1419 static const struct bin_attribute pci_config_attr
= {
1422 .mode
= S_IRUGO
| S_IWUSR
,
1424 .size
= PCI_CFG_SPACE_SIZE
,
1425 .read
= pci_read_config
,
1426 .write
= pci_write_config
,
1429 static const struct bin_attribute pcie_config_attr
= {
1432 .mode
= S_IRUGO
| S_IWUSR
,
1434 .size
= PCI_CFG_SPACE_EXP_SIZE
,
1435 .read
= pci_read_config
,
1436 .write
= pci_write_config
,
1439 static ssize_t
reset_store(struct device
*dev
, struct device_attribute
*attr
,
1440 const char *buf
, size_t count
)
1442 struct pci_dev
*pdev
= to_pci_dev(dev
);
1444 ssize_t result
= kstrtoul(buf
, 0, &val
);
1452 result
= pci_reset_function(pdev
);
1459 static struct device_attribute reset_attr
= __ATTR(reset
, 0200, NULL
, reset_store
);
1461 static int pci_create_capabilities_sysfs(struct pci_dev
*dev
)
1465 pcie_vpd_create_sysfs_dev_files(dev
);
1466 pcie_aspm_create_sysfs_dev_files(dev
);
1468 if (dev
->reset_fn
) {
1469 retval
= device_create_file(&dev
->dev
, &reset_attr
);
1476 pcie_aspm_remove_sysfs_dev_files(dev
);
1477 pcie_vpd_remove_sysfs_dev_files(dev
);
1481 int __must_check
pci_create_sysfs_dev_files(struct pci_dev
*pdev
)
1485 struct bin_attribute
*attr
;
1487 if (!sysfs_initialized
)
1490 if (pdev
->cfg_size
> PCI_CFG_SPACE_SIZE
)
1491 retval
= sysfs_create_bin_file(&pdev
->dev
.kobj
, &pcie_config_attr
);
1493 retval
= sysfs_create_bin_file(&pdev
->dev
.kobj
, &pci_config_attr
);
1497 retval
= pci_create_resource_files(pdev
);
1499 goto err_config_file
;
1501 /* If the device has a ROM, try to expose it in sysfs. */
1502 rom_size
= pci_resource_len(pdev
, PCI_ROM_RESOURCE
);
1504 attr
= kzalloc(sizeof(*attr
), GFP_ATOMIC
);
1507 goto err_resource_files
;
1509 sysfs_bin_attr_init(attr
);
1510 attr
->size
= rom_size
;
1511 attr
->attr
.name
= "rom";
1512 attr
->attr
.mode
= S_IRUSR
| S_IWUSR
;
1513 attr
->read
= pci_read_rom
;
1514 attr
->write
= pci_write_rom
;
1515 retval
= sysfs_create_bin_file(&pdev
->dev
.kobj
, attr
);
1518 goto err_resource_files
;
1520 pdev
->rom_attr
= attr
;
1523 /* add sysfs entries for various capabilities */
1524 retval
= pci_create_capabilities_sysfs(pdev
);
1528 pci_create_firmware_label_files(pdev
);
1533 if (pdev
->rom_attr
) {
1534 sysfs_remove_bin_file(&pdev
->dev
.kobj
, pdev
->rom_attr
);
1535 kfree(pdev
->rom_attr
);
1536 pdev
->rom_attr
= NULL
;
1539 pci_remove_resource_files(pdev
);
1541 if (pdev
->cfg_size
> PCI_CFG_SPACE_SIZE
)
1542 sysfs_remove_bin_file(&pdev
->dev
.kobj
, &pcie_config_attr
);
1544 sysfs_remove_bin_file(&pdev
->dev
.kobj
, &pci_config_attr
);
1549 static void pci_remove_capabilities_sysfs(struct pci_dev
*dev
)
1551 pcie_vpd_remove_sysfs_dev_files(dev
);
1552 pcie_aspm_remove_sysfs_dev_files(dev
);
1553 if (dev
->reset_fn
) {
1554 device_remove_file(&dev
->dev
, &reset_attr
);
1560 * pci_remove_sysfs_dev_files - cleanup PCI specific sysfs files
1561 * @pdev: device whose entries we should free
1563 * Cleanup when @pdev is removed from sysfs.
1565 void pci_remove_sysfs_dev_files(struct pci_dev
*pdev
)
1567 if (!sysfs_initialized
)
1570 pci_remove_capabilities_sysfs(pdev
);
1572 if (pdev
->cfg_size
> PCI_CFG_SPACE_SIZE
)
1573 sysfs_remove_bin_file(&pdev
->dev
.kobj
, &pcie_config_attr
);
1575 sysfs_remove_bin_file(&pdev
->dev
.kobj
, &pci_config_attr
);
1577 pci_remove_resource_files(pdev
);
1579 if (pdev
->rom_attr
) {
1580 sysfs_remove_bin_file(&pdev
->dev
.kobj
, pdev
->rom_attr
);
1581 kfree(pdev
->rom_attr
);
1582 pdev
->rom_attr
= NULL
;
1585 pci_remove_firmware_label_files(pdev
);
1588 static int __init
pci_sysfs_init(void)
1590 struct pci_dev
*pdev
= NULL
;
1593 sysfs_initialized
= 1;
1594 for_each_pci_dev(pdev
) {
1595 retval
= pci_create_sysfs_dev_files(pdev
);
1604 late_initcall(pci_sysfs_init
);
1606 static struct attribute
*pci_dev_dev_attrs
[] = {
1611 static umode_t
pci_dev_attrs_are_visible(struct kobject
*kobj
,
1612 struct attribute
*a
, int n
)
1614 struct device
*dev
= kobj_to_dev(kobj
);
1615 struct pci_dev
*pdev
= to_pci_dev(dev
);
1617 if (a
== &vga_attr
.attr
)
1618 if ((pdev
->class >> 8) != PCI_CLASS_DISPLAY_VGA
)
1624 static struct attribute
*pci_dev_hp_attrs
[] = {
1625 &dev_remove_attr
.attr
,
1626 &dev_rescan_attr
.attr
,
1630 static umode_t
pci_dev_hp_attrs_are_visible(struct kobject
*kobj
,
1631 struct attribute
*a
, int n
)
1633 struct device
*dev
= kobj_to_dev(kobj
);
1634 struct pci_dev
*pdev
= to_pci_dev(dev
);
1636 if (pdev
->is_virtfn
)
1642 static umode_t
pci_bridge_attrs_are_visible(struct kobject
*kobj
,
1643 struct attribute
*a
, int n
)
1645 struct device
*dev
= kobj_to_dev(kobj
);
1646 struct pci_dev
*pdev
= to_pci_dev(dev
);
1648 if (pci_is_bridge(pdev
))
1654 static umode_t
pcie_dev_attrs_are_visible(struct kobject
*kobj
,
1655 struct attribute
*a
, int n
)
1657 struct device
*dev
= kobj_to_dev(kobj
);
1658 struct pci_dev
*pdev
= to_pci_dev(dev
);
1660 if (pci_is_pcie(pdev
))
1666 static const struct attribute_group pci_dev_group
= {
1667 .attrs
= pci_dev_attrs
,
1670 const struct attribute_group
*pci_dev_groups
[] = {
1675 static const struct attribute_group pci_bridge_group
= {
1676 .attrs
= pci_bridge_attrs
,
1679 const struct attribute_group
*pci_bridge_groups
[] = {
1684 static const struct attribute_group pcie_dev_group
= {
1685 .attrs
= pcie_dev_attrs
,
1688 const struct attribute_group
*pcie_dev_groups
[] = {
1693 static const struct attribute_group pci_dev_hp_attr_group
= {
1694 .attrs
= pci_dev_hp_attrs
,
1695 .is_visible
= pci_dev_hp_attrs_are_visible
,
1698 #ifdef CONFIG_PCI_IOV
1699 static struct attribute
*sriov_dev_attrs
[] = {
1700 &sriov_totalvfs_attr
.attr
,
1701 &sriov_numvfs_attr
.attr
,
1702 &sriov_offset_attr
.attr
,
1703 &sriov_stride_attr
.attr
,
1704 &sriov_vf_device_attr
.attr
,
1705 &sriov_drivers_autoprobe_attr
.attr
,
1709 static umode_t
sriov_attrs_are_visible(struct kobject
*kobj
,
1710 struct attribute
*a
, int n
)
1712 struct device
*dev
= kobj_to_dev(kobj
);
1714 if (!dev_is_pf(dev
))
1720 static const struct attribute_group sriov_dev_attr_group
= {
1721 .attrs
= sriov_dev_attrs
,
1722 .is_visible
= sriov_attrs_are_visible
,
1724 #endif /* CONFIG_PCI_IOV */
1726 static const struct attribute_group pci_dev_attr_group
= {
1727 .attrs
= pci_dev_dev_attrs
,
1728 .is_visible
= pci_dev_attrs_are_visible
,
1731 static const struct attribute_group pci_bridge_attr_group
= {
1732 .attrs
= pci_bridge_attrs
,
1733 .is_visible
= pci_bridge_attrs_are_visible
,
1736 static const struct attribute_group pcie_dev_attr_group
= {
1737 .attrs
= pcie_dev_attrs
,
1738 .is_visible
= pcie_dev_attrs_are_visible
,
1741 static const struct attribute_group
*pci_dev_attr_groups
[] = {
1742 &pci_dev_attr_group
,
1743 &pci_dev_hp_attr_group
,
1744 #ifdef CONFIG_PCI_IOV
1745 &sriov_dev_attr_group
,
1747 &pci_bridge_attr_group
,
1748 &pcie_dev_attr_group
,
1752 const struct device_type pci_dev_type
= {
1753 .groups
= pci_dev_attr_groups
,