blob: 7078e6798b9058925cc31c8a781789e7c55cfc65 [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Patrick Georgie72a8a32012-11-06 11:05:09 +01002
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>
Kyösti Mälkki13f66502019-03-03 08:01:05 +02008#include <device/mmio.h>
Patrick Georgie72a8a32012-11-06 11:05:09 +01009#include <delay.h>
Vladimir Serbinenko75c83872014-09-05 01:01:31 +020010#include <device/azalia_device.h>
Kyösti Mälkki12b121c2019-08-18 16:33:39 +030011#include "chip.h"
Patrick Georgie72a8a32012-11-06 11:05:09 +010012#include "i82801ix.h"
13
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080014static int codec_detect(u8 *base)
Patrick Georgie72a8a32012-11-06 11:05:09 +010015{
16 u32 reg32;
17
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +020018 /* Set Bit 0 to 0 to enter reset state (BAR + 0x8)[0] */
Angel Pons61dd8362020-12-05 18:02:32 +010019 if (azalia_set_bits(base + HDA_GCTL_REG, HDA_GCTL_CRST, 0) < 0)
Patrick Georgie72a8a32012-11-06 11:05:09 +010020 goto no_codec;
21
22 /* Set Bit 0 to 1 to exit reset state (BAR + 0x8)[0] */
Angel Pons61dd8362020-12-05 18:02:32 +010023 if (azalia_set_bits(base + HDA_GCTL_REG, HDA_GCTL_CRST, HDA_GCTL_CRST) < 0)
Patrick Georgie72a8a32012-11-06 11:05:09 +010024 goto no_codec;
25
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +020026 /* Read in Codec location (BAR + 0xe)[2..0] */
Elyes HAOUASe5954ba2020-08-03 15:35:47 +020027 reg32 = read32(base + HDA_STATESTS_REG);
Patrick Georgie72a8a32012-11-06 11:05:09 +010028 reg32 &= 0x0f;
29 if (!reg32)
30 goto no_codec;
31
32 return reg32;
33
34no_codec:
35 /* Codec Not found */
36 /* Put HDA back in reset (BAR + 0x8) [0] */
Angel Pons61dd8362020-12-05 18:02:32 +010037 azalia_set_bits(base + HDA_GCTL_REG, 1, 0);
Patrick Georgie72a8a32012-11-06 11:05:09 +010038 printk(BIOS_DEBUG, "Azalia: No codec!\n");
39 return 0;
40}
41
Elyes HAOUASe414a4e2019-01-03 10:40:43 +010042static u32 find_verb(struct device *dev, u32 viddid, const u32 **verb)
Patrick Georgie72a8a32012-11-06 11:05:09 +010043{
Angel Ponsc9d63332020-06-21 15:38:29 +020044 int idx = 0;
Patrick Georgie72a8a32012-11-06 11:05:09 +010045
46 while (idx < (cim_verb_data_size / sizeof(u32))) {
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +020047 u32 verb_size = 4 * cim_verb_data[idx + 2]; // in u32
Patrick Georgie72a8a32012-11-06 11:05:09 +010048 if (cim_verb_data[idx] != viddid) {
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +020049 idx += verb_size + 3; // skip verb + header
Patrick Georgie72a8a32012-11-06 11:05:09 +010050 continue;
51 }
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +020052 *verb = &cim_verb_data[idx + 3];
Patrick Georgie72a8a32012-11-06 11:05:09 +010053 return verb_size;
54 }
55
56 /* Not all codecs need to load another verb */
57 return 0;
58}
59
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +020060/*
61 * Wait 50usec for the codec to indicate it is ready.
62 * No response would imply that the codec is non-operative.
Patrick Georgie72a8a32012-11-06 11:05:09 +010063 */
64
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080065static int wait_for_ready(u8 *base)
Patrick Georgie72a8a32012-11-06 11:05:09 +010066{
Angel Ponsc9d63332020-06-21 15:38:29 +020067 /* Use a 50 usec timeout - the Linux kernel uses the same duration */
Patrick Georgie72a8a32012-11-06 11:05:09 +010068 int timeout = 50;
69
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020070 while (timeout--) {
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080071 u32 reg32 = read32(base + HDA_ICII_REG);
Patrick Georgie72a8a32012-11-06 11:05:09 +010072 if (!(reg32 & HDA_ICII_BUSY))
73 return 0;
74 udelay(1);
75 }
76
77 return -1;
78}
79
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +020080/*
81 * Wait 50usec for the codec to indicate that it accepted the previous command.
82 * No response would imply that the code is non-operative.
Patrick Georgie72a8a32012-11-06 11:05:09 +010083 */
84
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080085static int wait_for_valid(u8 *base)
Patrick Georgie72a8a32012-11-06 11:05:09 +010086{
87 u32 reg32;
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +020088 /* Use a 50 usec timeout - the Linux kernel uses the same duration */
89 int timeout = 50;
Patrick Georgie72a8a32012-11-06 11:05:09 +010090
91 /* Send the verb to the codec */
Elyes HAOUASe5954ba2020-08-03 15:35:47 +020092 reg32 = read32(base + HDA_ICII_REG);
93 reg32 |= HDA_ICII_BUSY | HDA_ICII_VALID;
94 write32(base + HDA_ICII_REG, reg32);
Patrick Georgie72a8a32012-11-06 11:05:09 +010095
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020096 while (timeout--) {
Patrick Georgie72a8a32012-11-06 11:05:09 +010097 reg32 = read32(base + HDA_ICII_REG);
Angel Ponsc9d63332020-06-21 15:38:29 +020098 if ((reg32 & (HDA_ICII_VALID | HDA_ICII_BUSY)) == HDA_ICII_VALID)
Patrick Georgie72a8a32012-11-06 11:05:09 +010099 return 0;
100 udelay(1);
101 }
102
103 return -1;
104}
105
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800106static void codec_init(struct device *dev, u8 *base, int addr)
Patrick Georgie72a8a32012-11-06 11:05:09 +0100107{
108 u32 reg32;
109 const u32 *verb;
110 u32 verb_size;
111 int i;
112
Angel Ponsaaa8ab72020-06-21 15:33:24 +0200113 printk(BIOS_DEBUG, "Azalia: Initializing codec #%d\n", addr);
Patrick Georgie72a8a32012-11-06 11:05:09 +0100114
115 /* 1 */
Angel Pons554713e2020-10-24 23:23:07 +0200116 if (wait_for_ready(base) < 0) {
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +0200117 printk(BIOS_DEBUG, " codec not ready.\n");
Patrick Georgie72a8a32012-11-06 11:05:09 +0100118 return;
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +0200119 }
Patrick Georgie72a8a32012-11-06 11:05:09 +0100120
121 reg32 = (addr << 28) | 0x000f0000;
Elyes HAOUASe5954ba2020-08-03 15:35:47 +0200122 write32(base + HDA_IC_REG, reg32);
Patrick Georgie72a8a32012-11-06 11:05:09 +0100123
Angel Pons554713e2020-10-24 23:23:07 +0200124 if (wait_for_valid(base) < 0) {
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +0200125 printk(BIOS_DEBUG, " codec not valid.\n");
Patrick Georgie72a8a32012-11-06 11:05:09 +0100126 return;
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +0200127 }
Patrick Georgie72a8a32012-11-06 11:05:09 +0100128
129 /* 2 */
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +0200130 reg32 = read32(base + HDA_IR_REG);
Patrick Georgie72a8a32012-11-06 11:05:09 +0100131 printk(BIOS_DEBUG, "Azalia: codec viddid: %08x\n", reg32);
132 verb_size = find_verb(dev, reg32, &verb);
133
134 if (!verb_size) {
135 printk(BIOS_DEBUG, "Azalia: No verb!\n");
136 return;
137 }
138 printk(BIOS_DEBUG, "Azalia: verb_size: %d\n", verb_size);
139
140 /* 3 */
141 for (i = 0; i < verb_size; i++) {
Angel Pons554713e2020-10-24 23:23:07 +0200142 if (wait_for_ready(base) < 0)
Patrick Georgie72a8a32012-11-06 11:05:09 +0100143 return;
144
Elyes HAOUASe5954ba2020-08-03 15:35:47 +0200145 write32(base + HDA_IC_REG, verb[i]);
Patrick Georgie72a8a32012-11-06 11:05:09 +0100146
Angel Pons554713e2020-10-24 23:23:07 +0200147 if (wait_for_valid(base) < 0)
Patrick Georgie72a8a32012-11-06 11:05:09 +0100148 return;
149 }
150 printk(BIOS_DEBUG, "Azalia: verb loaded.\n");
151}
152
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800153static void codecs_init(struct device *dev, u8 *base, u32 codec_mask)
Patrick Georgie72a8a32012-11-06 11:05:09 +0100154{
155 int i;
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +0200156
Patrick Georgie72a8a32012-11-06 11:05:09 +0100157 for (i = 2; i >= 0; i--) {
158 if (codec_mask & (1 << i))
159 codec_init(dev, base, i);
160 }
161
162 for (i = 0; i < pc_beep_verbs_size; i++) {
Angel Pons554713e2020-10-24 23:23:07 +0200163 if (wait_for_ready(base) < 0)
Patrick Georgie72a8a32012-11-06 11:05:09 +0100164 return;
165
Elyes HAOUASe5954ba2020-08-03 15:35:47 +0200166 write32(base + HDA_IC_REG, pc_beep_verbs[i]);
Patrick Georgie72a8a32012-11-06 11:05:09 +0100167
Angel Pons554713e2020-10-24 23:23:07 +0200168 if (wait_for_valid(base) < 0)
Patrick Georgie72a8a32012-11-06 11:05:09 +0100169 return;
170 }
171}
172
173static void azalia_init(struct device *dev)
174{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800175 u8 *base;
Patrick Georgie72a8a32012-11-06 11:05:09 +0100176 struct resource *res;
177 u32 codec_mask;
Patrick Georgie72a8a32012-11-06 11:05:09 +0100178
Patrick Georgie72a8a32012-11-06 11:05:09 +0100179 // ESD
Angel Pons67406472020-06-08 11:13:42 +0200180 pci_update_config32(dev, 0x134, ~0x00ff0000, 2 << 16);
Patrick Georgie72a8a32012-11-06 11:05:09 +0100181
182 // Link1 description
Angel Pons67406472020-06-08 11:13:42 +0200183 pci_update_config32(dev, 0x140, ~0x00ff0000, 2 << 16);
Patrick Georgie72a8a32012-11-06 11:05:09 +0100184
185 // Port VC0 Resource Control Register
Angel Pons67406472020-06-08 11:13:42 +0200186 pci_update_config32(dev, 0x114, ~0x000000ff, 1);
Patrick Georgie72a8a32012-11-06 11:05:09 +0100187
188 // VCi traffic class
Angel Pons67406472020-06-08 11:13:42 +0200189 pci_or_config8(dev, 0x44, 7 << 0); // TC7
Patrick Georgie72a8a32012-11-06 11:05:09 +0100190
191 // VCi Resource Control
Angel Pons67406472020-06-08 11:13:42 +0200192 pci_or_config32(dev, 0x120, (1 << 31) | (1 << 24) | (0x80 << 0)); /* VCi ID and map */
Patrick Georgie72a8a32012-11-06 11:05:09 +0100193
194 /* Set Bus Master */
Elyes HAOUASb9d2e222020-04-28 10:25:12 +0200195 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER);
Patrick Georgie72a8a32012-11-06 11:05:09 +0100196
Angel Pons67406472020-06-08 11:13:42 +0200197 // Docking not supported
198 pci_and_config8(dev, 0x4d, (u8)~(1 << 7)); // Docking Status
Patrick Georgie72a8a32012-11-06 11:05:09 +0100199
200 /* Lock some R/WO bits by writing their current value. */
Angel Pons67406472020-06-08 11:13:42 +0200201 pci_update_config32(dev, 0x74, ~0, 0);
Patrick Georgie72a8a32012-11-06 11:05:09 +0100202
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +0200203 res = find_resource(dev, PCI_BASE_ADDRESS_0);
Patrick Georgie72a8a32012-11-06 11:05:09 +0100204 if (!res)
205 return;
206
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +0200207 // NOTE this will break as soon as the Azalia get's a bar above 4G.
208 // Is there anything we can do about it?
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800209 base = res2mmio(res, 0, 0);
Patrick Rudolph4af2add2018-11-26 15:56:11 +0100210 printk(BIOS_DEBUG, "Azalia: base = %p\n", base);
Patrick Georgie72a8a32012-11-06 11:05:09 +0100211 codec_mask = codec_detect(base);
212
213 if (codec_mask) {
214 printk(BIOS_DEBUG, "Azalia: codec_mask = %02x\n", codec_mask);
215 codecs_init(dev, base, codec_mask);
216 }
217}
218
Patrick Georgie72a8a32012-11-06 11:05:09 +0100219static struct device_operations azalia_ops = {
220 .read_resources = pci_dev_read_resources,
221 .set_resources = pci_dev_set_resources,
222 .enable_resources = pci_dev_enable_resources,
223 .init = azalia_init,
Angel Pons1fc0edd2020-05-31 00:03:28 +0200224 .ops_pci = &pci_dev_ops_pci,
Patrick Georgie72a8a32012-11-06 11:05:09 +0100225};
226
227/* ICH9DH/ICH9DO/ICH9R/ICH9/ICH9M-E/ICH9M */
228static const struct pci_driver i82801ix_azalia __pci_driver = {
229 .ops = &azalia_ops,
230 .vendor = PCI_VENDOR_ID_INTEL,
Felix Singer7f8b0cd82019-11-10 11:04:08 +0100231 .device = PCI_DEVICE_ID_INTEL_82801IB_HD_AUDIO,
Patrick Georgie72a8a32012-11-06 11:05:09 +0100232};