diff options
author | Duncan Laurie <dlaurie@chromium.org> | 2016-06-22 11:31:25 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-06-24 20:10:28 +0200 |
commit | d6ae2f6edbf79d3dd08e486635b456ce1a8da075 (patch) | |
tree | 8f5f3d7c64650e0e942219a1644d4a1e561aae0b /src/mainboard/google/glados/Kconfig | |
parent | c8ea4c111c34555033818b1e186d500126aae04e (diff) | |
download | coreboot-d6ae2f6edbf79d3dd08e486635b456ce1a8da075.tar.xz |
google/glados: Move devices from mainboard.asl to devicetree
Declare the mainboard attached devices in the devicetree and enable
the provided device drivers by default to generate the ACPI objects
for these devices. Then remove the static ACPI objects from the DSDT
in mainboard.asl.
This was verified on a glados board by verifying the SSDT contents
against what used to be in the DSDT.
Change-Id: I710cbb8462d0fe695297102a64bec8e4212acc65
Signed-off-by: Duncan Laurie <dlaurie@chromium.org>
Reviewed-on: https://review.coreboot.org/15315
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/mainboard/google/glados/Kconfig')
-rw-r--r-- | src/mainboard/google/glados/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mainboard/google/glados/Kconfig b/src/mainboard/google/glados/Kconfig index 514db1ba51..abe5fa84f9 100644 --- a/src/mainboard/google/glados/Kconfig +++ b/src/mainboard/google/glados/Kconfig @@ -29,6 +29,15 @@ config CHROMEOS select VBOOT_OPROM_MATTERS select VIRTUAL_DEV_SWITCH +config DRIVERS_I2C_GENERIC + def_bool y + +config DRIVERS_I2C_NAU8825 + def_bool y + +config DRIVERS_INTEL_WIFI + def_bool y + config IRQ_SLOT_COUNT int default 18 |