summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/broadwell
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/broadwell')
-rw-r--r--src/soc/intel/broadwell/pch/hda.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/soc/intel/broadwell/pch/hda.c b/src/soc/intel/broadwell/pch/hda.c
index c6ae590bc4d8..ba7d342fe5cd 100644
--- a/src/soc/intel/broadwell/pch/hda.c
+++ b/src/soc/intel/broadwell/pch/hda.c
@@ -129,12 +129,19 @@ static void hda_enable(struct device *dev)
}
}
+static void hda_final(struct device *dev)
+{
+ /* Set HDCFG.BCLD */
+ pci_or_config16(dev, 0x40, 1 << 1);
+}
+
static struct device_operations hda_ops = {
.read_resources = &pci_dev_read_resources,
.set_resources = &pci_dev_set_resources,
.enable_resources = &pci_dev_enable_resources,
.init = &hda_init,
.enable = &hda_enable,
+ .final = &hda_final,
.ops_pci = &pci_dev_ops_pci,
};