aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd
diff options
context:
space:
mode:
authorMarshall Dawson <marshalldawson3rd@gmail.com>2019-08-20 18:17:54 -0600
committerMartin Roth <martinroth@google.com>2019-10-20 18:11:32 +0000
commite1a59dcf9398368da6e5c958cebbe79cb9a46206 (patch)
tree86b050b7740f15af31c71352ea0e24f167ed5217 /src/soc/amd
parentb5bd86296ec9102c1667870317b3b2f6ae5c18f4 (diff)
src/soc/amd/common: Add Azalia support to HDA
Let the mainboard decide whether to let coreboot load the verb table. Change-Id: I8f05ac02f690a43ada470916f5292b83aeaa8a4f Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/35274 Reviewed-by: Martin Roth <martinroth@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd')
-rw-r--r--src/soc/amd/common/block/hda/hda.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/soc/amd/common/block/hda/hda.c b/src/soc/amd/common/block/hda/hda.c
index 27510c3fad..c24e32d6be 100644
--- a/src/soc/amd/common/block/hda/hda.c
+++ b/src/soc/amd/common/block/hda/hda.c
@@ -1,7 +1,7 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2010 Advanced Micro Devices, Inc.
+ * Copyright (C) 2010-2019 Advanced Micro Devices, 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
@@ -16,6 +16,8 @@
#include <device/device.h>
#include <device/pci.h>
#include <device/pci_ids.h>
+#include <device/pci_ops.h>
+#include <device/azalia_device.h>
static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_AMD_SB900_HDA,
@@ -36,7 +38,8 @@ static struct device_operations hda_audio_ops = {
};
static const struct pci_driver hdaaudio_driver __pci_driver = {
- .ops = &hda_audio_ops,
+ .ops = CONFIG(AZALIA_PLUGIN_SUPPORT) ?
+ &default_azalia_audio_ops : &hda_audio_ops,
.vendor = PCI_VENDOR_ID_AMD,
.devices = pci_device_ids,
};