diff options
author | Michael Brown <mcb30@ipxe.org> | 2013-07-09 16:03:35 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2013-07-13 12:46:18 +0200 |
commit | dbfa13ff2cd7eb313d002f185f0274f2ac883231 (patch) | |
tree | 5e882d4ac0f58cb1a544b6c9291fb924476db5ad /src/config/settings.h | |
parent | 258195242b40526a4d2bc930cc425380f337918d (diff) | |
download | ipxe-dbfa13ff2cd7eb313d002f185f0274f2ac883231.tar.gz |
[settings] Expose PCI configuration space via settings mechanism
Allow values to be read from PCI configuration space using the syntax
${pci/<busdevfn>.<offset>.<length>}
where <busdevfn> is the bus:dev.fn address of the PCI device
(expressed as a single integer, as returned by ${net0/busloc}),
<offset> is the offset within PCI configuration space, and <length> is
the length within PCI configuration space.
Values are returned in reverse byte order, since PCI configuration
space is little-endian by definition.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config/settings.h')
-rw-r--r-- | src/config/settings.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config/settings.h b/src/config/settings.h index 331c7e3ab..9c5c2d20b 100644 --- a/src/config/settings.h +++ b/src/config/settings.h @@ -9,6 +9,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); +#define PCI_SETTINGS /* PCI device settings */ //#define VMWARE_SETTINGS /* VMware GuestInfo settings */ #include <config/local/settings.h> |