From 93142a452e4c0cb35ea04394ded171b1cf58ff72 Mon Sep 17 00:00:00 2001 From: Duncan Laurie Date: Mon, 8 Jan 2018 17:41:58 -0800 Subject: soc/intel/common: Add Intel HDA common block driver There is common HDA code in soc/intel/common that provides generic HDA support functions, but it does not provide a driver. This change adds a common block driver for HDA that provides a ramstage driver for SOCs that need to initialize an HDA codec. This was tested on a board with an HDA codec to ensure that it properly detected it and ran the codec init steps. Change-Id: I41b4c54d3c81e1f09810cfaf934ffacafca1cf38 Signed-off-by: Duncan Laurie Reviewed-on: https://review.coreboot.org/23187 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin --- src/soc/intel/common/block/hda/Kconfig | 4 ++ src/soc/intel/common/block/hda/Makefile.inc | 1 + src/soc/intel/common/block/hda/hda.c | 80 +++++++++++++++++++++++++++++ 3 files changed, 85 insertions(+) create mode 100644 src/soc/intel/common/block/hda/Kconfig create mode 100644 src/soc/intel/common/block/hda/Makefile.inc create mode 100644 src/soc/intel/common/block/hda/hda.c (limited to 'src/soc') diff --git a/src/soc/intel/common/block/hda/Kconfig b/src/soc/intel/common/block/hda/Kconfig new file mode 100644 index 0000000000..ca415bc974 --- /dev/null +++ b/src/soc/intel/common/block/hda/Kconfig @@ -0,0 +1,4 @@ +config SOC_INTEL_COMMON_BLOCK_HDA + bool + help + Intel Processor common High Definition Audio driver support diff --git a/src/soc/intel/common/block/hda/Makefile.inc b/src/soc/intel/common/block/hda/Makefile.inc new file mode 100644 index 0000000000..410389c423 --- /dev/null +++ b/src/soc/intel/common/block/hda/Makefile.inc @@ -0,0 +1 @@ +ramstage-$(CONFIG_SOC_INTEL_COMMON_BLOCK_HDA) += hda.c diff --git a/src/soc/intel/common/block/hda/hda.c b/src/soc/intel/common/block/hda/hda.c new file mode 100644 index 0000000000..3f87fccf7f --- /dev/null +++ b/src/soc/intel/common/block/hda/hda.c @@ -0,0 +1,80 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2017 Google Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +#include +#include +#include +#include +#include +#include +#include +#include + +static void codecs_init(uint8_t *base, u32 codec_mask) +{ + int i; + + /* Can support up to 4 codecs */ + for (i = 3; i >= 0; i--) { + if (codec_mask & (1 << i)) + hda_codec_init(base, i, + cim_verb_data_size, cim_verb_data); + } + + if (pc_beep_verbs_size) + hda_codec_write(base, pc_beep_verbs_size, pc_beep_verbs); +} + +static void hda_init(struct device *dev) +{ + struct resource *res; + int codec_mask; + uint8_t *base; + + res = find_resource(dev, PCI_BASE_ADDRESS_0); + if (!res) + return; + + base = res2mmio(res, 0, 0); + if (!base) + return; + + codec_mask = hda_codec_detect(base); + if (codec_mask) { + printk(BIOS_INFO, "HDA: codec_mask = %02x\n", codec_mask); + codecs_init(base, codec_mask); + } +} + +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, + .ops_pci = &pci_dev_ops_pci, +}; + +static const unsigned short pci_device_ids[] = { + PCI_DEVICE_ID_INTEL_SKL_AUDIO, + PCI_DEVICE_ID_INTEL_KBL_AUDIO, + PCI_DEVICE_ID_INTEL_CNL_AUDIO, + 0 +}; + +static const struct pci_driver pch_hda __pci_driver = { + .ops = &hda_ops, + .vendor = PCI_VENDOR_ID_INTEL, + .devices = pci_device_ids, +}; -- cgit v1.2.3