Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/47826 )
Change subject: soc/amd/picasso/acpi/sb_fch: add SPI controller ......................................................................
soc/amd/picasso/acpi/sb_fch: add SPI controller
Change-Id: If1bc33dd264327f9119e1019700510ba9acca810 Signed-off-by: Felix Held felix-coreboot@felixheld.de --- M src/soc/amd/picasso/acpi/sb_fch.asl 1 file changed, 15 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/26/47826/1
diff --git a/src/soc/amd/picasso/acpi/sb_fch.asl b/src/soc/amd/picasso/acpi/sb_fch.asl index 6cbfc5f..5ab363d 100644 --- a/src/soc/amd/picasso/acpi/sb_fch.asl +++ b/src/soc/amd/picasso/acpi/sb_fch.asl @@ -19,6 +19,21 @@ } }
+Device (SPI0) +{ + Name (_HID, "AMDI0061") + Name (_UID, 0) + Name (_CRS, ResourceTemplate() + { + Memory32Fixed (ReadWrite, SPI_BASE_ADDRESS, 0x100) + }) + + Method (_STA, 0x0, NotSerialized) + { + Return (0x0f) + } +} + Device (GPIO) { Name (_HID, GPIO_DEVICE_NAME)