diff options
author | Justin TerAvest <teravest@google.com> | 2018-01-17 16:36:30 -0800 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-01-25 16:50:17 +0000 |
commit | ca2ed9f450682c5f23ee1f3affac8b6dba7fdc0b (patch) | |
tree | 6c73b52c016bf59eee8d6371793ef479aa75595b /src/include | |
parent | 4eaf0fa1550805ba9f3c24fb8675a6e77bd40101 (diff) | |
download | coreboot-ca2ed9f450682c5f23ee1f3affac8b6dba7fdc0b.tar.xz |
sconfig: Add a new mmio resource type
Add support for a mmio resource in the devicetree to allow
memory-mapped IO addresses to be assigned to given values.
AMD platforms perform a significant amount of configuration through
these MMIO addresses, including I2C bus configuration.
BUG=b:72121803
Change-Id: I5608721c22c1b229f527815b5f17fff3a080c3c8
Signed-off-by: Justin TerAvest <teravest@chromium.org>
Reviewed-on: https://review.coreboot.org/23319
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/device/path.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/device/path.h b/src/include/device/path.h index 5109fdaec3..eaa9cc7d67 100644 --- a/src/include/device/path.h +++ b/src/include/device/path.h @@ -15,6 +15,7 @@ enum device_path_type { DEVICE_PATH_IOAPIC, DEVICE_PATH_GENERIC, DEVICE_PATH_SPI, + DEVICE_PATH_MMIO, /* * When adding path types to this table, please also update the @@ -36,6 +37,7 @@ enum device_path_type { "DEVICE_PATH_IOAPIC", \ "DEVICE_PATH_GENERIC", \ "DEVICE_PATH_SPI", \ + "DEVICE_PATH_MMIO", \ } struct domain_path { @@ -89,6 +91,9 @@ struct generic_path { unsigned int subid; }; +struct mmio_path { + uintptr_t addr; +}; struct device_path { enum device_path_type type; @@ -104,6 +109,7 @@ struct device_path { struct cpu_bus_path cpu_bus; struct generic_path generic; struct spi_path spi; + struct mmio_path mmio; }; }; |