blob: 31ff159d646d4e51214baecd6a584e2334fecd7f [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauer679c9f92009-01-20 22:54:59 +00002
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>
Stefan Reinauer679c9f92009-01-20 22:54:59 +00009#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"
Stefan Reinauer679c9f92009-01-20 22:54:59 +000012#include "i82801gx.h"
13
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080014static int codec_detect(u8 *base)
Stefan Reinauer679c9f92009-01-20 22:54:59 +000015{
Stefan Reinauera8e11682009-03-11 14:54:18 +000016 u32 reg32;
Stefan Reinauer679c9f92009-01-20 22:54:59 +000017
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)
Stefan Reinauera8e11682009-03-11 14:54:18 +000020 goto no_codec;
Stefan Reinauer679c9f92009-01-20 22:54:59 +000021
Stefan Reinauera8e11682009-03-11 14:54:18 +000022 /* 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)
Stefan Reinauera8e11682009-03-11 14:54:18 +000024 goto no_codec;
Stefan Reinauer679c9f92009-01-20 22:54:59 +000025
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +020026 /* Read in Codec location (BAR + 0xe)[2..0] */
Elyes HAOUASf1da9092020-08-03 15:35:16 +020027 reg32 = read32(base + HDA_STATESTS_REG);
Stefan Reinauera8e11682009-03-11 14:54:18 +000028 reg32 &= 0x0f;
29 if (!reg32)
30 goto no_codec;
Stefan Reinauer109ab312009-08-12 16:08:05 +000031
Stefan Reinauera8e11682009-03-11 14:54:18 +000032 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);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000038 printk(BIOS_DEBUG, "Azalia: No codec!\n");
Stefan Reinauera8e11682009-03-11 14:54:18 +000039 return 0;
Stefan Reinauer679c9f92009-01-20 22:54:59 +000040}
41
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +020042/*
43 * Wait 50usec for the codec to indicate it is ready.
44 * No response would imply that the codec is non-operative.
Stefan Reinauer679c9f92009-01-20 22:54:59 +000045 */
46
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080047static int wait_for_ready(u8 *base)
Stefan Reinauer679c9f92009-01-20 22:54:59 +000048{
Elyes HAOUAS92646ea2020-04-04 13:43:03 +020049 /* Use a 50 usec timeout - the Linux kernel uses the same duration */
Stefan Reinauer679c9f92009-01-20 22:54:59 +000050 int timeout = 50;
51
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020052 while (timeout--) {
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080053 u32 reg32 = read32(base + HDA_ICII_REG);
Stefan Reinauera8e11682009-03-11 14:54:18 +000054 if (!(reg32 & HDA_ICII_BUSY))
Stefan Reinauer679c9f92009-01-20 22:54:59 +000055 return 0;
56 udelay(1);
57 }
58
59 return -1;
60}
61
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +020062/*
63 * Wait 50usec for the codec to indicate that it accepted the previous command.
64 * No response would imply that the code is non-operative.
Stefan Reinauer679c9f92009-01-20 22:54:59 +000065 */
66
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080067static int wait_for_valid(u8 *base)
Stefan Reinauer679c9f92009-01-20 22:54:59 +000068{
Stefan Reinaueraca6ec62009-10-26 17:12:21 +000069 u32 reg32;
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +020070 /* Use a 50 usec timeout - the Linux kernel uses the same duration */
71 int timeout = 50;
Stefan Reinaueraca6ec62009-10-26 17:12:21 +000072
73 /* Send the verb to the codec */
Elyes HAOUASf1da9092020-08-03 15:35:16 +020074 reg32 = read32(base + HDA_ICII_REG);
75 reg32 |= HDA_ICII_BUSY | HDA_ICII_VALID;
76 write32(base + HDA_ICII_REG, reg32);
Stefan Reinaueraca6ec62009-10-26 17:12:21 +000077
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020078 while (timeout--) {
Stefan Reinauer9fe4d792010-01-16 17:53:38 +000079 reg32 = read32(base + HDA_ICII_REG);
Elyes HAOUAS92646ea2020-04-04 13:43:03 +020080 if ((reg32 & (HDA_ICII_VALID | HDA_ICII_BUSY)) == HDA_ICII_VALID)
Stefan Reinauer679c9f92009-01-20 22:54:59 +000081 return 0;
82 udelay(1);
83 }
84
Stefan Reinaueraca6ec62009-10-26 17:12:21 +000085 return -1;
Stefan Reinauer679c9f92009-01-20 22:54:59 +000086}
87
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080088static void codec_init(struct device *dev, u8 *base, int addr)
Stefan Reinauer679c9f92009-01-20 22:54:59 +000089{
Stefan Reinauera8e11682009-03-11 14:54:18 +000090 u32 reg32;
Stefan Reinauerc4f1a772010-06-05 10:03:08 +000091 const u32 *verb;
Stefan Reinauer679c9f92009-01-20 22:54:59 +000092 u32 verb_size;
93 int i;
94
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000095 printk(BIOS_DEBUG, "Azalia: Initializing codec #%d\n", addr);
Stefan Reinaueraca6ec62009-10-26 17:12:21 +000096
Stefan Reinauer679c9f92009-01-20 22:54:59 +000097 /* 1 */
Angel Pons554713e2020-10-24 23:23:07 +020098 if (wait_for_ready(base) < 0) {
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +020099 printk(BIOS_DEBUG, " codec not ready.\n");
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000100 return;
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +0200101 }
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000102
Stefan Reinauera8e11682009-03-11 14:54:18 +0000103 reg32 = (addr << 28) | 0x000f0000;
Elyes HAOUASf1da9092020-08-03 15:35:16 +0200104 write32(base + HDA_IC_REG, reg32);
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000105
Angel Pons554713e2020-10-24 23:23:07 +0200106 if (wait_for_valid(base) < 0) {
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +0200107 printk(BIOS_DEBUG, " codec not valid.\n");
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000108 return;
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +0200109 }
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000110
111 /* 2 */
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +0200112 reg32 = read32(base + HDA_IR_REG);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000113 printk(BIOS_DEBUG, "Azalia: codec viddid: %08x\n", reg32);
Angel Ponsd425ddd2020-12-05 18:22:58 +0100114 verb_size = azalia_find_verb(cim_verb_data, cim_verb_data_size, reg32, &verb);
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000115
116 if (!verb_size) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000117 printk(BIOS_DEBUG, "Azalia: No verb!\n");
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000118 return;
119 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000120 printk(BIOS_DEBUG, "Azalia: verb_size: %d\n", verb_size);
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000121
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000122 /* 3 */
123 for (i = 0; i < verb_size; i++) {
Angel Pons554713e2020-10-24 23:23:07 +0200124 if (wait_for_ready(base) < 0)
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000125 return;
126
Elyes HAOUASf1da9092020-08-03 15:35:16 +0200127 write32(base + HDA_IC_REG, verb[i]);
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000128
Angel Pons554713e2020-10-24 23:23:07 +0200129 if (wait_for_valid(base) < 0)
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000130 return;
131 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000132 printk(BIOS_DEBUG, "Azalia: verb loaded.\n");
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000133}
134
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800135static void codecs_init(struct device *dev, u8 *base, u32 codec_mask)
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000136{
137 int i;
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +0200138
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000139 for (i = 2; i >= 0; i--) {
140 if (codec_mask & (1 << i))
Stefan Reinauera8e11682009-03-11 14:54:18 +0000141 codec_init(dev, base, i);
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000142 }
143}
144
145static void azalia_init(struct device *dev)
146{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800147 u8 *base;
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000148 struct resource *res;
149 u32 codec_mask;
Stefan Reinauera8e11682009-03-11 14:54:18 +0000150 u8 reg8;
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000151
Stefan Reinauera8e11682009-03-11 14:54:18 +0000152 // ESD
Angel Ponsd19332c2020-06-08 12:32:54 +0200153 pci_update_config32(dev, 0x134, ~(0xff << 16), 2 << 16);
Stefan Reinauera8e11682009-03-11 14:54:18 +0000154
155 // Link1 description
Angel Ponsd19332c2020-06-08 12:32:54 +0200156 pci_update_config32(dev, 0x140, ~(0xff << 16), 2 << 16);
Stefan Reinauera8e11682009-03-11 14:54:18 +0000157
158 // Port VC0 Resource Control Register
Angel Ponsd19332c2020-06-08 12:32:54 +0200159 pci_update_config32(dev, 0x114, ~(0xff << 0), 1);
Stefan Reinauera8e11682009-03-11 14:54:18 +0000160
161 // VCi traffic class
Angel Ponsd19332c2020-06-08 12:32:54 +0200162 pci_or_config8(dev, 0x44, 7 << 0); // TC7
Stefan Reinauera8e11682009-03-11 14:54:18 +0000163
164 // VCi Resource Control
Angel Ponsd19332c2020-06-08 12:32:54 +0200165 pci_or_config32(dev, 0x120, (1 << 31) | (1 << 24) | (0x80 << 0)); /* VCi ID and map */
Stefan Reinauera8e11682009-03-11 14:54:18 +0000166
167 /* Set Bus Master */
Elyes HAOUAS12349252020-04-27 05:08:26 +0200168 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER);
Stefan Reinauera8e11682009-03-11 14:54:18 +0000169
170 pci_write_config8(dev, 0x3c, 0x0a); // unused?
171
172 // TODO Actually check if we're AC97 or HDA instead of hardcoding this
Stefan Reinauer38f147e2010-02-08 12:20:50 +0000173 // here, in devicetree.cb and/or romstage.c.
Stefan Reinauera8e11682009-03-11 14:54:18 +0000174 reg8 = pci_read_config8(dev, 0x40);
175 reg8 |= (1 << 3); // Clear Clock Detect Bit
176 pci_write_config8(dev, 0x40, reg8);
177 reg8 &= ~(1 << 3); // Keep CLKDETCLR from clearing the bit over and over
178 pci_write_config8(dev, 0x40, reg8);
179 reg8 |= (1 << 2); // Enable clock detection
180 pci_write_config8(dev, 0x40, reg8);
181 mdelay(1);
182 reg8 = pci_read_config8(dev, 0x40);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000183 printk(BIOS_DEBUG, "Azalia: codec type: %s\n", (reg8 & (1 << 1))?"Azalia":"AC97");
Stefan Reinauera8e11682009-03-11 14:54:18 +0000184
Angel Ponsd19332c2020-06-08 12:32:54 +0200185 // Select Azalia mode. This needs to be controlled via devicetree.cb
186 pci_or_config8(dev, 0x40, 1); // Audio Control
Stefan Reinauera8e11682009-03-11 14:54:18 +0000187
Angel Ponsd19332c2020-06-08 12:32:54 +0200188 // Docking not supported
189 pci_and_config8(dev, 0x4d, (u8)~(1 << 7)); // Docking Status
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000190
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +0200191 res = find_resource(dev, PCI_BASE_ADDRESS_0);
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000192 if (!res)
193 return;
194
Elyes HAOUAS6ea24ff2020-08-11 09:21:24 +0200195 // NOTE this will break as soon as the Azalia get's a bar above 4G.
196 // Is there anything we can do about it?
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800197 base = res2mmio(res, 0, 0);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000198 printk(BIOS_DEBUG, "Azalia: base = %08x\n", (u32)base);
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000199 codec_mask = codec_detect(base);
200
201 if (codec_mask) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000202 printk(BIOS_DEBUG, "Azalia: codec_mask = %02x\n", codec_mask);
Stefan Reinauera8e11682009-03-11 14:54:18 +0000203 codecs_init(dev, base, codec_mask);
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000204 }
205}
206
207static struct device_operations azalia_ops = {
208 .read_resources = pci_dev_read_resources,
209 .set_resources = pci_dev_set_resources,
210 .enable_resources = pci_dev_enable_resources,
211 .init = azalia_init,
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000212 .enable = i82801gx_enable,
Angel Pons1fc0edd2020-05-31 00:03:28 +0200213 .ops_pci = &pci_dev_ops_pci,
Stefan Reinauer679c9f92009-01-20 22:54:59 +0000214};
215
216/* 82801GB/GR/GDH/GBM/GHM (ICH7/ICH7R/ICH7DH/ICH7-M/ICH7-M DH) */
217static const struct pci_driver i82801gx_azalia __pci_driver = {
218 .ops = &azalia_ops,
219 .vendor = PCI_VENDOR_ID_INTEL,
220 .device = 0x27d8,
221};