diff options
author | Nico Huber <nico.huber@secunet.com> | 2019-01-31 16:45:04 +0100 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2019-03-24 13:10:17 +0000 |
commit | 4074ce0cc716d4fc5447868ce0981c92e84f31b5 (patch) | |
tree | 87ae9b4fc03aafaf01b7825064c03b33bcde2b43 /src/soc | |
parent | 346d201d73d51ae0a037f64b1bc6d530745b5d4a (diff) |
intel/apollolake: Add HDA to disable_dev function
Change-Id: Id4f5e1fad935645830782ba922f55f614c72cf06
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/31353
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/apollolake/chip.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/soc/intel/apollolake/chip.c b/src/soc/intel/apollolake/chip.c index 9d721671a8..c3de4ee802 100644 --- a/src/soc/intel/apollolake/chip.c +++ b/src/soc/intel/apollolake/chip.c @@ -532,6 +532,9 @@ static void disable_dev(struct device *dev, FSP_S_CONFIG *silconfig) silconfig->IpuEn = 0; break; #endif + case PCH_DEVFN_HDA: + silconfig->HdaEnable = 0; + break; default: printk(BIOS_WARNING, "PCI:%02x.%01x: Could not disable the device\n", PCI_SLOT(dev->path.pci.devfn), |