diff options
author | Mathew King <mathewk@chromium.org> | 2021-02-25 13:10:24 -0700 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-03-02 17:28:37 +0000 |
commit | c8c83ce0270e1564e37de3dbc7687ec2e3e6587e (patch) | |
tree | 3ed90d4e86f690d93df5c087e3543e189653338f | |
parent | 22b5ef961c57d24686f7b8cd1c696ebf8c0ccd0f (diff) |
mb/amd/majolica: Enable required devices in devicetree
Most devices are now disabled by default in the chipset. Enable the
iGPU and two XHCI controllers that are required to boot the board.
BUG=b:180528708
TEST=To be tested
Signed-off-by: Mathew King <mathewk@chromium.org>
Change-Id: I54a4547217fb8e9f67fc0c8e1e36e96dfaae331c
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51095
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/mainboard/amd/majolica/devicetree.cb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mainboard/amd/majolica/devicetree.cb b/src/mainboard/amd/majolica/devicetree.cb index a1415525c7..2695f60cef 100644 --- a/src/mainboard/amd/majolica/devicetree.cb +++ b/src/mainboard/amd/majolica/devicetree.cb @@ -3,6 +3,11 @@ chip soc/amd/cezanne device domain 0 on + device ref gpp_bridge_a on # Internal GPP Bridge 0 to Bus A + device ref gfx on end # Internal GPU (GFX) + device ref xhci_0 on end # USB 3.1 (USB0) + device ref xhci_1 on end # USB 3.1 (USB1) + end end end |