| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | Accessing PCI device resources through sysfs | 
					
						
							| 
									
										
										
										
											2005-12-09 11:55:03 -08:00
										 |  |  | -------------------------------------------- | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | sysfs, usually mounted at /sys, provides access to PCI resources on platforms | 
					
						
							|  |  |  | that support it.  For example, a given bus might look like this: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |      /sys/devices/pci0000:17 | 
					
						
							|  |  |  |      |-- 0000:17:00.0 | 
					
						
							|  |  |  |      |   |-- class | 
					
						
							|  |  |  |      |   |-- config | 
					
						
							|  |  |  |      |   |-- device | 
					
						
							| 
									
										
										
										
											2009-01-30 06:12:47 +11:00
										 |  |  |      |   |-- enable | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |      |   |-- irq | 
					
						
							|  |  |  |      |   |-- local_cpus | 
					
						
							| 
									
										
										
										
											2009-03-20 14:56:36 -06:00
										 |  |  |      |   |-- remove | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |      |   |-- resource | 
					
						
							|  |  |  |      |   |-- resource0 | 
					
						
							|  |  |  |      |   |-- resource1 | 
					
						
							|  |  |  |      |   |-- resource2 | 
					
						
							|  |  |  |      |   |-- rom | 
					
						
							|  |  |  |      |   |-- subsystem_device | 
					
						
							|  |  |  |      |   |-- subsystem_vendor | 
					
						
							|  |  |  |      |   `-- vendor | 
					
						
							| 
									
										
										
										
											2005-05-12 12:06:27 -07:00
										 |  |  |      `-- ... | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | The topmost element describes the PCI domain and bus number.  In this case, | 
					
						
							|  |  |  | the domain number is 0000 and the bus number is 17 (both values are in hex). | 
					
						
							|  |  |  | This bus contains a single function device in slot 0.  The domain and bus | 
					
						
							|  |  |  | numbers are reproduced for convenience.  Under the device directory are several | 
					
						
							|  |  |  | files, each with their own function. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |        file		   function | 
					
						
							|  |  |  |        ----		   -------- | 
					
						
							|  |  |  |        class		   PCI class (ascii, ro) | 
					
						
							|  |  |  |        config		   PCI config space (binary, rw) | 
					
						
							|  |  |  |        device		   PCI device (ascii, ro) | 
					
						
							| 
									
										
										
										
											2009-01-30 06:12:47 +11:00
										 |  |  |        enable	           Whether the device is enabled (ascii, rw) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |        irq		   IRQ number (ascii, ro) | 
					
						
							|  |  |  |        local_cpus	   nearby CPU mask (cpumask, ro) | 
					
						
							| 
									
										
										
										
											2009-03-20 14:56:36 -06:00
										 |  |  |        remove		   remove device from kernel's list (ascii, wo) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |        resource		   PCI resource host addresses (ascii, ro) | 
					
						
							|  |  |  |        resource0..N	   PCI resource N, if present (binary, mmap) | 
					
						
							| 
									
										
										
										
											2008-03-18 17:00:22 -07:00
										 |  |  |        resource0_wc..N_wc  PCI WC map resource N, if prefetchable (binary, mmap) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |        rom		   PCI ROM resource, if present (binary, ro) | 
					
						
							|  |  |  |        subsystem_device	   PCI subsystem device (ascii, ro) | 
					
						
							|  |  |  |        subsystem_vendor	   PCI subsystem vendor (ascii, ro) | 
					
						
							|  |  |  |        vendor		   PCI vendor (ascii, ro) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   ro - read only file | 
					
						
							|  |  |  |   rw - file is readable and writable | 
					
						
							| 
									
										
										
										
											2009-03-20 14:56:36 -06:00
										 |  |  |   wo - write only file | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |   mmap - file is mmapable | 
					
						
							|  |  |  |   ascii - file contains ascii text | 
					
						
							|  |  |  |   binary - file contains binary data | 
					
						
							|  |  |  |   cpumask - file contains a cpumask type | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-09 11:55:03 -08:00
										 |  |  | The read only files are informational, writes to them will be ignored, with | 
					
						
							|  |  |  | the exception of the 'rom' file.  Writable files can be used to perform | 
					
						
							|  |  |  | actions on the device (e.g. changing config space, detaching a device). | 
					
						
							|  |  |  | mmapable files are available via an mmap of the file at offset 0 and can be | 
					
						
							|  |  |  | used to do actual device programming from userspace.  Note that some platforms | 
					
						
							|  |  |  | don't support mmapping of certain resources, so be sure to check the return | 
					
						
							|  |  |  | value from any attempted mmap. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-30 06:12:47 +11:00
										 |  |  | The 'enable' file provides a counter that indicates how many times the device  | 
					
						
							|  |  |  | has been enabled.  If the 'enable' file currently returns '4', and a '1' is | 
					
						
							|  |  |  | echoed into it, it will then return '5'.  Echoing a '0' into it will decrease | 
					
						
							|  |  |  | the count.  Even when it returns to 0, though, some of the initialisation | 
					
						
							|  |  |  | may not be reversed.   | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-09 11:55:03 -08:00
										 |  |  | The 'rom' file is special in that it provides read-only access to the device's | 
					
						
							|  |  |  | ROM file, if available.  It's disabled by default, however, so applications | 
					
						
							|  |  |  | should write the string "1" to the file to enable it before attempting a read | 
					
						
							| 
									
										
										
										
											2009-01-30 06:12:47 +11:00
										 |  |  | call, and disable it following the access by writing "0" to the file.  Note | 
					
						
							|  |  |  | that the device must be enabled for a rom read to return data succesfully. | 
					
						
							|  |  |  | In the event a driver is not bound to the device, it can be enabled using the | 
					
						
							|  |  |  | 'enable' file, documented above. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-20 14:56:36 -06:00
										 |  |  | The 'remove' file is used to remove the PCI device, by writing a non-zero | 
					
						
							|  |  |  | integer to the file.  This does not involve any kind of hot-plug functionality, | 
					
						
							|  |  |  | e.g. powering off the device.  The device is removed from the kernel's list of | 
					
						
							|  |  |  | PCI devices, the sysfs directory for it is removed, and the device will be | 
					
						
							|  |  |  | removed from any drivers attached to it. Removal of PCI root buses is | 
					
						
							|  |  |  | disallowed. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | Accessing legacy resources through sysfs | 
					
						
							| 
									
										
										
										
											2005-12-09 11:55:03 -08:00
										 |  |  | ---------------------------------------- | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | Legacy I/O port and ISA memory resources are also provided in sysfs if the | 
					
						
							| 
									
										
										
										
											2007-02-17 19:23:03 +01:00
										 |  |  | underlying platform supports them.  They're located in the PCI class hierarchy, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | e.g. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/sys/class/pci_bus/0000:17/ | 
					
						
							|  |  |  | 	|-- bridge -> ../../../devices/pci0000:17 | 
					
						
							|  |  |  | 	|-- cpuaffinity | 
					
						
							|  |  |  | 	|-- legacy_io | 
					
						
							|  |  |  | 	`-- legacy_mem | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The legacy_io file is a read/write file that can be used by applications to | 
					
						
							|  |  |  | do legacy port I/O.  The application should open the file, seek to the desired | 
					
						
							|  |  |  | port (e.g. 0x3e8) and do a read or a write of 1, 2 or 4 bytes.  The legacy_mem | 
					
						
							|  |  |  | file should be mmapped with an offset corresponding to the memory offset | 
					
						
							|  |  |  | desired, e.g. 0xa0000 for the VGA frame buffer.  The application can then | 
					
						
							|  |  |  | simply dereference the returned pointer (after checking for errors of course) | 
					
						
							|  |  |  | to access legacy memory space. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Supporting PCI access on new platforms | 
					
						
							| 
									
										
										
										
											2005-12-09 11:55:03 -08:00
										 |  |  | -------------------------------------- | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | In order to support PCI resource mapping as described above, Linux platform | 
					
						
							|  |  |  | code must define HAVE_PCI_MMAP and provide a pci_mmap_page_range function. | 
					
						
							|  |  |  | Platforms are free to only support subsets of the mmap functionality, but | 
					
						
							|  |  |  | useful return codes should be provided. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Legacy resources are protected by the HAVE_PCI_LEGACY define.  Platforms | 
					
						
							|  |  |  | wishing to support legacy functionality should define it and provide | 
					
						
							| 
									
										
										
										
											2005-05-12 12:06:27 -07:00
										 |  |  | pci_legacy_read, pci_legacy_write and pci_mmap_legacy_page_range functions. |