blob: ea42b84216526d72e2a800b6683c846ad9a251f7 [file] [log] [blame]
Angel Ponsae593872020-04-04 18:50:57 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Marc Jones24484842017-05-04 21:17:45 -06003
Marc Jones24484842017-05-04 21:17:45 -06004#include <device/device.h>
5#include <device/pci.h>
6#include <device/pci_ids.h>
Marshall Dawsone1a59dc2019-08-20 18:17:54 -06007#include <device/pci_ops.h>
8#include <device/azalia_device.h>
Marc Jones24484842017-05-04 21:17:45 -06009
10static const unsigned short pci_device_ids[] = {
11 PCI_DEVICE_ID_AMD_SB900_HDA,
12 PCI_DEVICE_ID_AMD_CZ_HDA,
Furquan Shaikha1cd7eb2020-04-15 23:58:22 -070013 PCI_DEVICE_ID_AMD_FAM17H_HDA1,
Marc Jones24484842017-05-04 21:17:45 -060014 0
15};
16
Furquan Shaikhedfc5a92020-04-27 18:04:46 -070017static const char *hda_acpi_name(const struct device *dev)
18{
19 return "AZHD";
20}
21
Marc Jones24484842017-05-04 21:17:45 -060022static struct device_operations hda_audio_ops = {
Furquan Shaikh45f06c52020-04-27 18:02:21 -070023 .read_resources = pci_dev_read_resources,
24 .set_resources = pci_dev_set_resources,
25 .enable_resources = pci_dev_enable_resources,
26 .ops_pci = &pci_dev_ops_pci,
Furquan Shaikhedfc5a92020-04-27 18:04:46 -070027 .acpi_name = hda_acpi_name,
Marc Jones24484842017-05-04 21:17:45 -060028};
29
30static const struct pci_driver hdaaudio_driver __pci_driver = {
Furquan Shaikh45f06c52020-04-27 18:02:21 -070031 .ops = CONFIG(AZALIA_PLUGIN_SUPPORT) ?
32 &default_azalia_audio_ops : &hda_audio_ops,
33 .vendor = PCI_VENDOR_ID_AMD,
34 .devices = pci_device_ids,
Marc Jones24484842017-05-04 21:17:45 -060035};