blob: fb8a469d34dee908e963ca9ca971782ca0ee23d8 [file] [log] [blame]
Angel Ponsae593872020-04-04 18:50:57 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Marc Jones24484842017-05-04 21:17:45 -06002
3/*
4 * ACPI - create the Fixed ACPI Description Tables (FADT)
5 */
6
7#include <string.h>
8#include <console/console.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -07009#include <acpi/acpi.h>
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +030010#include <acpi/acpi_gnvs.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -070011#include <acpi/acpigen.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020012#include <device/pci_ops.h>
Marc Jones5ebc8652017-06-19 23:34:04 -060013#include <arch/ioapic.h>
Marshall Dawsone9b862e2017-09-22 15:14:46 -060014#include <cpu/x86/smm.h>
Marc Jones257db582017-06-18 17:33:30 -060015#include <cbmem.h>
Marc Jones24484842017-05-04 21:17:45 -060016#include <device/device.h>
Marc Jones6bfcf662017-08-06 17:42:35 -060017#include <device/pci.h>
Marshall Dawson69486ca2019-05-02 12:03:45 -060018#include <amdblocks/acpimmio.h>
Marshall Dawson4ee83b22019-05-03 11:44:22 -060019#include <amdblocks/acpi.h>
Marc Jones257db582017-06-18 17:33:30 -060020#include <soc/acpi.h>
Chris Ching6a35fab2017-10-19 11:45:30 -060021#include <soc/pci_devs.h>
Marc Jonesdfeb1c42017-08-07 19:08:24 -060022#include <soc/southbridge.h>
Patrick Georgi4fbefc52018-10-23 14:35:37 +020023#include <soc/northbridge.h>
Marc Jones257db582017-06-18 17:33:30 -060024#include <soc/nvs.h>
Richard Spiegel93459d62018-05-16 14:08:33 -070025#include <soc/gpio.h>
Elyes HAOUAS26071aa2019-02-15 08:21:33 +010026#include <version.h>
Marc Jones24484842017-05-04 21:17:45 -060027
Marc Jones5ebc8652017-06-19 23:34:04 -060028unsigned long acpi_fill_madt(unsigned long current)
29{
30 /* create all subtables for processors */
31 current = acpi_create_madt_lapics(current);
32
33 /* Write Kern IOAPIC, only one */
34 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *)current,
35 CONFIG_MAX_CPUS, IO_APIC_ADDR, 0);
36
37 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *)current,
38 CONFIG_MAX_CPUS+1, IO_APIC2_ADDR, 24);
39
40 /* 0: mean bus 0--->ISA */
41 /* 0: PIC 0 */
42 /* 2: APIC 2 */
43 /* 5 mean: 0101 --> Edge-triggered, Active high */
44 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
45 current, 0, 0, 2, 0);
46 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
Marshall Dawsonecce8472018-10-05 15:41:03 -060047 current, 0, 9, 9, 0xf);
Marc Jones5ebc8652017-06-19 23:34:04 -060048
49 /* create all subtables for processors */
50 current += acpi_create_madt_lapic_nmi((acpi_madt_lapic_nmi_t *)current,
51 0xff, 5, 1);
52 /* 1: LINT1 connect to NMI */
53
54 return current;
55}
56
Marc Jones24484842017-05-04 21:17:45 -060057/*
58 * Reference section 5.2.9 Fixed ACPI Description Table (FADT)
59 * in the ACPI 3.0b specification.
60 */
Kyösti Mälkki61ef71b2020-05-30 18:54:39 +030061void acpi_fill_fadt(acpi_fadt_t *fadt)
Marc Jones24484842017-05-04 21:17:45 -060062{
Marc Jones24484842017-05-04 21:17:45 -060063 printk(BIOS_DEBUG, "pm_base: 0x%04x\n", STONEYRIDGE_ACPI_IO_BASE);
64
Marc Jonesdfeb1c42017-08-07 19:08:24 -060065 fadt->sci_int = 9; /* IRQ 09 - ACPI SCI */
Marc Jones24484842017-05-04 21:17:45 -060066
Kyösti Mälkki0a9e72e2019-08-11 01:22:28 +030067 if (permanent_smi_handler()) {
Marshall Dawsone9b862e2017-09-22 15:14:46 -060068 fadt->smi_cmd = APM_CNT;
69 fadt->acpi_enable = APM_CNT_ACPI_ENABLE;
70 fadt->acpi_disable = APM_CNT_ACPI_DISABLE;
Marc Jones24484842017-05-04 21:17:45 -060071 }
72
73 fadt->pm1a_evt_blk = ACPI_PM_EVT_BLK;
Marc Jones24484842017-05-04 21:17:45 -060074 fadt->pm1a_cnt_blk = ACPI_PM1_CNT_BLK;
Marc Jones24484842017-05-04 21:17:45 -060075 fadt->pm_tmr_blk = ACPI_PM_TMR_BLK;
76 fadt->gpe0_blk = ACPI_GPE0_BLK;
Marc Jones24484842017-05-04 21:17:45 -060077
78 fadt->pm1_evt_len = 4; /* 32 bits */
79 fadt->pm1_cnt_len = 2; /* 16 bits */
Marc Jones24484842017-05-04 21:17:45 -060080 fadt->pm_tmr_len = 4; /* 32 bits */
81 fadt->gpe0_blk_len = 8; /* 64 bits */
Marc Jones24484842017-05-04 21:17:45 -060082
83 fadt->p_lvl2_lat = ACPI_FADT_C2_NOT_SUPPORTED;
84 fadt->p_lvl3_lat = ACPI_FADT_C3_NOT_SUPPORTED;
85 fadt->flush_size = 0; /* set to 0 if WBINVD is 1 in flags */
86 fadt->flush_stride = 0; /* set to 0 if WBINVD is 1 in flags */
87 fadt->duty_offset = 1; /* CLK_VAL bits 3:1 */
88 fadt->duty_width = 3; /* CLK_VAL bits 3:1 */
89 fadt->day_alrm = 0; /* 0x7d these have to be */
90 fadt->mon_alrm = 0; /* 0x7e added to cmos.layout */
91 fadt->century = 0; /* 0x7f to make rtc alarm work */
92 fadt->iapc_boot_arch = FADT_BOOT_ARCH; /* See table 5-10 */
93 fadt->res2 = 0; /* reserved, MUST be 0 ACPI 3.0 */
Angel Ponsa208c6c2020-07-13 00:02:34 +020094 fadt->flags |= ACPI_FADT_WBINVD | /* See table 5-10 ACPI 3.0a spec */
Marc Jones24484842017-05-04 21:17:45 -060095 ACPI_FADT_C1_SUPPORTED |
96 ACPI_FADT_SLEEP_BUTTON |
97 ACPI_FADT_S4_RTC_WAKE |
98 ACPI_FADT_32BIT_TIMER |
99 ACPI_FADT_RESET_REGISTER |
100 ACPI_FADT_PCI_EXPRESS_WAKE |
101 ACPI_FADT_PLATFORM_CLOCK |
102 ACPI_FADT_S4_RTC_VALID |
103 ACPI_FADT_REMOTE_POWER_ON;
104
105 /* Format is from 5.2.3.1: Generic Address Structure */
106 /* reset_reg: see section 4.7.3.6 ACPI 3.0a spec */
107 /* 8 bit write of value 0x06 to 0xCF9 in IO space */
108 fadt->reset_reg.space_id = ACPI_ADDRESS_SPACE_IO;
109 fadt->reset_reg.bit_width = 8;
110 fadt->reset_reg.bit_offset = 0;
111 fadt->reset_reg.access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600112 fadt->reset_reg.addrl = SYS_RESET;
Marc Jones24484842017-05-04 21:17:45 -0600113 fadt->reset_reg.addrh = 0x0;
114
115 fadt->reset_value = 6;
116
Elyes HAOUASf5b974e2018-11-10 20:29:08 +0100117 fadt->ARM_boot_arch = 0; /* MUST be 0 ACPI 3.0 */
118 fadt->FADT_MinorVersion = 0; /* MUST be 0 ACPI 3.0 */
Marc Jones24484842017-05-04 21:17:45 -0600119
120 fadt->x_firmware_ctl_l = 0; /* set to 0 if firmware_ctrl is used */
121 fadt->x_firmware_ctl_h = 0;
Marc Jones24484842017-05-04 21:17:45 -0600122
123 fadt->x_pm1a_evt_blk.space_id = ACPI_ADDRESS_SPACE_IO;
124 fadt->x_pm1a_evt_blk.bit_width = 32;
125 fadt->x_pm1a_evt_blk.bit_offset = 0;
126 fadt->x_pm1a_evt_blk.access_size = ACPI_ACCESS_SIZE_WORD_ACCESS;
127 fadt->x_pm1a_evt_blk.addrl = ACPI_PM_EVT_BLK;
128 fadt->x_pm1a_evt_blk.addrh = 0x0;
129
Marc Jones24484842017-05-04 21:17:45 -0600130 fadt->x_pm1a_cnt_blk.space_id = ACPI_ADDRESS_SPACE_IO;
131 fadt->x_pm1a_cnt_blk.bit_width = 16;
132 fadt->x_pm1a_cnt_blk.bit_offset = 0;
Patrick Rudolphc02bda02020-02-28 10:19:41 +0100133 fadt->x_pm1a_cnt_blk.access_size = ACPI_ACCESS_SIZE_WORD_ACCESS;
Marc Jones24484842017-05-04 21:17:45 -0600134 fadt->x_pm1a_cnt_blk.addrl = ACPI_PM1_CNT_BLK;
135 fadt->x_pm1a_cnt_blk.addrh = 0x0;
136
Marc Jones24484842017-05-04 21:17:45 -0600137
138 fadt->x_pm_tmr_blk.space_id = ACPI_ADDRESS_SPACE_IO;
139 fadt->x_pm_tmr_blk.bit_width = 32;
140 fadt->x_pm_tmr_blk.bit_offset = 0;
141 fadt->x_pm_tmr_blk.access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
142 fadt->x_pm_tmr_blk.addrl = ACPI_PM_TMR_BLK;
143 fadt->x_pm_tmr_blk.addrh = 0x0;
144
145
146 fadt->x_gpe0_blk.space_id = ACPI_ADDRESS_SPACE_IO;
147 fadt->x_gpe0_blk.bit_width = 64; /* EventStatus + Event Enable */
148 fadt->x_gpe0_blk.bit_offset = 0;
Angel Ponsa23aff32020-06-21 20:47:54 +0200149 fadt->x_gpe0_blk.access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
Marc Jones24484842017-05-04 21:17:45 -0600150 fadt->x_gpe0_blk.addrl = ACPI_GPE0_BLK;
151 fadt->x_gpe0_blk.addrh = 0x0;
Marc Jones24484842017-05-04 21:17:45 -0600152}
Marc Jones257db582017-06-18 17:33:30 -0600153
Furquan Shaikh7536a392020-04-24 21:59:21 -0700154void generate_cpu_entries(const struct device *device)
Marc Jones6bfcf662017-08-06 17:42:35 -0600155{
Richard Spiegel3f16a0f2018-08-06 11:06:08 -0700156 int cores, cpu;
Marc Jones6bfcf662017-08-06 17:42:35 -0600157
158 /* Stoney Ridge is single node, just report # of cores */
Patrick Georgi4fbefc52018-10-23 14:35:37 +0200159 cores = pci_read_config32(SOC_NB_DEV, NB_CAPABILITIES2) & CMP_CAP_MASK;
160 cores++; /* number of cores is CmpCap+1 */
Marc Jones6bfcf662017-08-06 17:42:35 -0600161
Michał Żygowski9550e972020-03-20 13:56:46 +0100162 printk(BIOS_DEBUG, "ACPI \\_SB report %d core(s)\n", cores);
Marc Jones6bfcf662017-08-06 17:42:35 -0600163
Michał Żygowski9550e972020-03-20 13:56:46 +0100164 /* Generate BSP \_SB.P000 */
Richard Spiegel3f16a0f2018-08-06 11:06:08 -0700165 acpigen_write_processor(0, ACPI_GPE0_BLK, 6);
Marc Jones6bfcf662017-08-06 17:42:35 -0600166 acpigen_pop_len();
167
Michał Żygowski9550e972020-03-20 13:56:46 +0100168 /* Generate AP \_SB.Pxxx */
Marc Jones6bfcf662017-08-06 17:42:35 -0600169 for (cpu = 1; cpu < cores; cpu++) {
Richard Spiegel3f16a0f2018-08-06 11:06:08 -0700170 acpigen_write_processor(cpu, 0, 0);
Marc Jones6bfcf662017-08-06 17:42:35 -0600171 acpigen_pop_len();
172 }
173}
174
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700175unsigned long southbridge_write_acpi_tables(const struct device *device,
Marc Jones257db582017-06-18 17:33:30 -0600176 unsigned long current,
177 struct acpi_rsdp *rsdp)
178{
179 return acpi_write_hpet(device, current, rsdp);
180}
181
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +0300182void acpi_create_gnvs(struct global_nvs *gnvs)
Marc Jones257db582017-06-18 17:33:30 -0600183{
184 /* Clear out GNVS. */
185 memset(gnvs, 0, sizeof(*gnvs));
186
Julius Wernercd49cce2019-03-05 16:53:33 -0800187 if (CONFIG(CONSOLE_CBMEM))
Marc Jones257db582017-06-18 17:33:30 -0600188 gnvs->cbmc = (uintptr_t)cbmem_find(CBMEM_ID_CONSOLE);
189
Julius Wernercd49cce2019-03-05 16:53:33 -0800190 if (CONFIG(CHROMEOS)) {
Marc Jones257db582017-06-18 17:33:30 -0600191 /* Initialize Verified Boot data */
Joel Kitching6fbd8742018-08-23 14:56:25 +0800192 chromeos_init_chromeos_acpi(&gnvs->chromeos);
Marc Jones257db582017-06-18 17:33:30 -0600193 gnvs->chromeos.vbt2 = ACTIVE_ECFW_RO;
194 }
195
196 /* Set unknown wake source */
197 gnvs->pm1i = ~0ULL;
Richard Spiegeldbee8ae2018-05-09 17:34:04 -0700198 gnvs->gpei = ~0ULL;
Marc Jones257db582017-06-18 17:33:30 -0600199
200 /* CPU core count */
201 gnvs->pcnt = dev_count_cpu();
202}
203
Furquan Shaikh338fd9a2020-04-24 22:57:05 -0700204void southbridge_inject_dsdt(const struct device *device)
Marc Jones257db582017-06-18 17:33:30 -0600205{
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +0300206 struct global_nvs *gnvs;
Marc Jones257db582017-06-18 17:33:30 -0600207
208 gnvs = cbmem_find(CBMEM_ID_ACPI_GNVS);
209
210 if (gnvs) {
211 acpi_create_gnvs(gnvs);
Marc Jones257db582017-06-18 17:33:30 -0600212
213 /* Add it to DSDT */
214 acpigen_write_scope("\\");
215 acpigen_write_name_dword("NVSA", (uintptr_t)gnvs);
216 acpigen_pop_len();
217 }
218}
Richard Spiegel93459d62018-05-16 14:08:33 -0700219
220static void acpigen_soc_get_gpio_in_local5(uintptr_t addr)
221{
222 /*
223 * Store (\_SB.GPR2 (addr), Local5)
224 * \_SB.GPR2 is used to read control byte 2 from control register.
225 * / It is defined in gpio_lib.asl.
226 */
227 acpigen_write_store();
228 acpigen_emit_namestring("\\_SB.GPR2");
229 acpigen_write_integer(addr);
230 acpigen_emit_byte(LOCAL5_OP);
231}
232
233static int acpigen_soc_get_gpio_val(unsigned int gpio_num, uint32_t mask)
234{
Marshall Dawson251d3052019-05-02 17:27:57 -0600235 if (gpio_num >= SOC_GPIO_TOTAL_PINS) {
Richard Spiegel93459d62018-05-16 14:08:33 -0700236 printk(BIOS_WARNING, "Warning: Pin %d should be smaller than"
Marshall Dawson251d3052019-05-02 17:27:57 -0600237 " %d\n", gpio_num, SOC_GPIO_TOTAL_PINS);
Richard Spiegel93459d62018-05-16 14:08:33 -0700238 return -1;
239 }
Kyösti Mälkki39bd46f2020-06-18 19:18:21 +0300240 uintptr_t addr = gpio_get_address(gpio_num);
Richard Spiegel93459d62018-05-16 14:08:33 -0700241
242 acpigen_soc_get_gpio_in_local5(addr);
243
244 /* If (And (Local5, mask)) */
245 acpigen_write_if_and(LOCAL5_OP, mask);
246
247 /* Store (One, Local0) */
248 acpigen_write_store_ops(ONE_OP, LOCAL0_OP);
249
250 acpigen_pop_len(); /* If */
251
252 /* Else */
253 acpigen_write_else();
254
255 /* Store (Zero, Local0) */
256 acpigen_write_store_ops(ZERO_OP, LOCAL0_OP);
257
258 acpigen_pop_len(); /* Else */
259
260 return 0;
261}
262
263static int acpigen_soc_set_gpio_val(unsigned int gpio_num, uint32_t val)
264{
Marshall Dawson251d3052019-05-02 17:27:57 -0600265 if (gpio_num >= SOC_GPIO_TOTAL_PINS) {
Richard Spiegel93459d62018-05-16 14:08:33 -0700266 printk(BIOS_WARNING, "Warning: Pin %d should be smaller than"
Marshall Dawson251d3052019-05-02 17:27:57 -0600267 " %d\n", gpio_num, SOC_GPIO_TOTAL_PINS);
Richard Spiegel93459d62018-05-16 14:08:33 -0700268 return -1;
269 }
Kyösti Mälkki39bd46f2020-06-18 19:18:21 +0300270 uintptr_t addr = gpio_get_address(gpio_num);
Richard Spiegel93459d62018-05-16 14:08:33 -0700271
Kevin Chiud837e662018-07-03 19:13:34 +0800272 /* Store (0x40, Local0) */
273 acpigen_write_store();
274 acpigen_write_integer(GPIO_PIN_OUT);
275 acpigen_emit_byte(LOCAL0_OP);
276
Richard Spiegel93459d62018-05-16 14:08:33 -0700277 acpigen_soc_get_gpio_in_local5(addr);
278
279 if (val) {
280 /* Or (Local5, GPIO_PIN_OUT, Local5) */
Kevin Chiud837e662018-07-03 19:13:34 +0800281 acpigen_write_or(LOCAL5_OP, LOCAL0_OP, LOCAL5_OP);
Richard Spiegel93459d62018-05-16 14:08:33 -0700282 } else {
283 /* Not (GPIO_PIN_OUT, Local6) */
Kevin Chiud837e662018-07-03 19:13:34 +0800284 acpigen_write_not(LOCAL0_OP, LOCAL6_OP);
Richard Spiegel93459d62018-05-16 14:08:33 -0700285
286 /* And (Local5, Local6, Local5) */
287 acpigen_write_and(LOCAL5_OP, LOCAL6_OP, LOCAL5_OP);
288 }
289
290 /*
291 * SB.GPW2 (addr, Local5)
292 * \_SB.GPW2 is used to write control byte in control register
293 * / byte 2. It is defined in gpio_lib.asl.
294 */
295 acpigen_emit_namestring("\\_SB.GPW2");
296 acpigen_write_integer(addr);
297 acpigen_emit_byte(LOCAL5_OP);
298
299 return 0;
300}
301
302int acpigen_soc_read_rx_gpio(unsigned int gpio_num)
303{
304 return acpigen_soc_get_gpio_val(gpio_num, GPIO_PIN_IN);
305}
306
307int acpigen_soc_get_tx_gpio(unsigned int gpio_num)
308{
309 return acpigen_soc_get_gpio_val(gpio_num, GPIO_PIN_OUT);
310}
311
312int acpigen_soc_set_tx_gpio(unsigned int gpio_num)
313{
314 return acpigen_soc_set_gpio_val(gpio_num, 1);
315}
316
317int acpigen_soc_clear_tx_gpio(unsigned int gpio_num)
318{
319 return acpigen_soc_set_gpio_val(gpio_num, 0);
320}