1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <console/console.h>
4 #include <device/device.h>
5 #include <device/pci.h>
6 #include <device/pci_ids.h>
7 #include <device/pci_ops.h>
8 #include <device/mmio.h>
10 #include <device/azalia_device.h>
16 static int codec_detect(u8
*base
)
20 if (azalia_enter_reset(base
) != CB_SUCCESS
)
23 if (azalia_exit_reset(base
) != CB_SUCCESS
)
26 /* Read in Codec location (BAR + 0xe)[2..0] */
27 reg32
= read32(base
+ HDA_STATESTS_REG
);
35 /* Codec not found, put HDA back in reset */
36 azalia_enter_reset(base
);
37 printk(BIOS_DEBUG
, "Azalia: No codec!\n");
41 static void azalia_init(struct device
*dev
)
49 pci_update_config32(dev
, 0x134, ~(0xff << 16), 2 << 16);
52 pci_update_config32(dev
, 0x140, ~(0xff << 16), 2 << 16);
54 // Port VC0 Resource Control Register
55 pci_update_config32(dev
, 0x114, ~(0xff << 0), 1);
58 pci_or_config8(dev
, 0x44, 7 << 0); // TC7
60 // VCi Resource Control
61 pci_or_config32(dev
, 0x120, (1 << 31) | (1 << 24) | (0x80 << 0)); /* VCi ID and map */
64 pci_or_config16(dev
, PCI_COMMAND
, PCI_COMMAND_MASTER
);
66 pci_write_config8(dev
, 0x3c, 0x0a); // unused?
68 // TODO Actually check if we're AC97 or HDA instead of hardcoding this
69 // here, in devicetree.cb and/or romstage.c.
70 reg8
= pci_read_config8(dev
, 0x40);
71 reg8
|= (1 << 3); // Clear Clock Detect Bit
72 pci_write_config8(dev
, 0x40, reg8
);
73 reg8
&= ~(1 << 3); // Keep CLKDETCLR from clearing the bit over and over
74 pci_write_config8(dev
, 0x40, reg8
);
75 reg8
|= (1 << 2); // Enable clock detection
76 pci_write_config8(dev
, 0x40, reg8
);
78 reg8
= pci_read_config8(dev
, 0x40);
79 printk(BIOS_DEBUG
, "Azalia: codec type: %s\n", (reg8
& (1 << 1))?"Azalia":"AC97");
81 // Select Azalia mode. This needs to be controlled via devicetree.cb
82 pci_or_config8(dev
, 0x40, 1); // Audio Control
84 // Docking not supported
85 pci_and_config8(dev
, 0x4d, (u8
)~(1 << 7)); // Docking Status
87 res
= probe_resource(dev
, PCI_BASE_ADDRESS_0
);
91 // NOTE this will break as soon as the Azalia gets a bar above 4G.
92 // Is there anything we can do about it?
93 base
= res2mmio(res
, 0, 0);
94 printk(BIOS_DEBUG
, "Azalia: base = %08x\n", (u32
)(uintptr_t)base
);
95 codec_mask
= codec_detect(base
);
98 printk(BIOS_DEBUG
, "Azalia: codec_mask = %02x\n", codec_mask
);
99 azalia_codecs_init(base
, codec_mask
);
103 static struct device_operations azalia_ops
= {
104 .read_resources
= pci_dev_read_resources
,
105 .set_resources
= pci_dev_set_resources
,
106 .enable_resources
= pci_dev_enable_resources
,
108 .enable
= i82801gx_enable
,
109 .ops_pci
= &pci_dev_ops_pci
,
112 /* 82801GB/GR/GDH/GBM/GHM (ICH7/ICH7R/ICH7DH/ICH7-M/ICH7-M DH) */
113 static const struct pci_driver i82801gx_azalia __pci_driver
= {
115 .vendor
= PCI_VID_INTEL
,