sysfs-pci.txt 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. Accessing PCI device resources through sysfs
  2. --------------------------------------------
  3. sysfs, usually mounted at /sys, provides access to PCI resources on platforms
  4. that support it. For example, a given bus might look like this:
  5. /sys/devices/pci0000:17
  6. |-- 0000:17:00.0
  7. | |-- class
  8. | |-- config
  9. | |-- device
  10. | |-- irq
  11. | |-- local_cpus
  12. | |-- resource
  13. | |-- resource0
  14. | |-- resource1
  15. | |-- resource2
  16. | |-- rom
  17. | |-- subsystem_device
  18. | |-- subsystem_vendor
  19. | `-- vendor
  20. `-- ...
  21. The topmost element describes the PCI domain and bus number. In this case,
  22. the domain number is 0000 and the bus number is 17 (both values are in hex).
  23. This bus contains a single function device in slot 0. The domain and bus
  24. numbers are reproduced for convenience. Under the device directory are several
  25. files, each with their own function.
  26. file function
  27. ---- --------
  28. class PCI class (ascii, ro)
  29. config PCI config space (binary, rw)
  30. device PCI device (ascii, ro)
  31. irq IRQ number (ascii, ro)
  32. local_cpus nearby CPU mask (cpumask, ro)
  33. resource PCI resource host addresses (ascii, ro)
  34. resource0..N PCI resource N, if present (binary, mmap)
  35. rom PCI ROM resource, if present (binary, ro)
  36. subsystem_device PCI subsystem device (ascii, ro)
  37. subsystem_vendor PCI subsystem vendor (ascii, ro)
  38. vendor PCI vendor (ascii, ro)
  39. ro - read only file
  40. rw - file is readable and writable
  41. mmap - file is mmapable
  42. ascii - file contains ascii text
  43. binary - file contains binary data
  44. cpumask - file contains a cpumask type
  45. The read only files are informational, writes to them will be ignored, with
  46. the exception of the 'rom' file. Writable files can be used to perform
  47. actions on the device (e.g. changing config space, detaching a device).
  48. mmapable files are available via an mmap of the file at offset 0 and can be
  49. used to do actual device programming from userspace. Note that some platforms
  50. don't support mmapping of certain resources, so be sure to check the return
  51. value from any attempted mmap.
  52. The 'rom' file is special in that it provides read-only access to the device's
  53. ROM file, if available. It's disabled by default, however, so applications
  54. should write the string "1" to the file to enable it before attempting a read
  55. call, and disable it following the access by writing "0" to the file.
  56. Accessing legacy resources through sysfs
  57. ----------------------------------------
  58. Legacy I/O port and ISA memory resources are also provided in sysfs if the
  59. underlying platform supports them. They're located in the PCI class hierarchy,
  60. e.g.
  61. /sys/class/pci_bus/0000:17/
  62. |-- bridge -> ../../../devices/pci0000:17
  63. |-- cpuaffinity
  64. |-- legacy_io
  65. `-- legacy_mem
  66. The legacy_io file is a read/write file that can be used by applications to
  67. do legacy port I/O. The application should open the file, seek to the desired
  68. port (e.g. 0x3e8) and do a read or a write of 1, 2 or 4 bytes. The legacy_mem
  69. file should be mmapped with an offset corresponding to the memory offset
  70. desired, e.g. 0xa0000 for the VGA frame buffer. The application can then
  71. simply dereference the returned pointer (after checking for errors of course)
  72. to access legacy memory space.
  73. Supporting PCI access on new platforms
  74. --------------------------------------
  75. In order to support PCI resource mapping as described above, Linux platform
  76. code must define HAVE_PCI_MMAP and provide a pci_mmap_page_range function.
  77. Platforms are free to only support subsets of the mmap functionality, but
  78. useful return codes should be provided.
  79. Legacy resources are protected by the HAVE_PCI_LEGACY define. Platforms
  80. wishing to support legacy functionality should define it and provide
  81. pci_legacy_read, pci_legacy_write and pci_mmap_legacy_page_range functions.