summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-08-03 15:00:46 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-08-17 06:44:04 +0000
commit899d5bdefa138a10802f9997b58a264ce844d8b6 (patch)
tree5ba262685aafe06c1f7f9594a4dbf439835ce1e9 /src/include
parent9a9d10f7f5dc48037c1b38324dee3d8e673fcb67 (diff)
downloadcoreboot-899d5bdefa138a10802f9997b58a264ce844d8b6.tar.xz
soc/intel/common: Move common HDA registers to <device/azalia_device.h>
Change-Id: I9ea191e5076e2f055405dc34d46dbbb8cfb0015e Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/44106 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/device/azalia_device.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/include/device/azalia_device.h b/src/include/device/azalia_device.h
index fe23c7021b..cc4ce75fda 100644
--- a/src/include/device/azalia_device.h
+++ b/src/include/device/azalia_device.h
@@ -8,6 +8,16 @@
#include <device/device.h>
#include <stdint.h>
+#define HDA_GCAP_REG 0x00
+#define HDA_GCTL_REG 0x08
+#define HDA_GCTL_CRST (1 << 0)
+#define HDA_STATESTS_REG 0x0e
+#define HDA_IC_REG 0x60
+#define HDA_IR_REG 0x64
+#define HDA_ICII_REG 0x68
+#define HDA_ICII_BUSY (1 << 0)
+#define HDA_ICII_VALID (1 << 1)
+
void azalia_audio_init(struct device *dev);
extern struct device_operations default_azalia_audio_ops;