blob: 8007e6789f2e60361f991514227caf0b449472e2 [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 Jones24484842017-05-04 21:17:45 -060015#include <device/device.h>
Marc Jones6bfcf662017-08-06 17:42:35 -060016#include <device/pci.h>
Marshall Dawson69486ca2019-05-02 12:03:45 -060017#include <amdblocks/acpimmio.h>
Marshall Dawson4ee83b22019-05-03 11:44:22 -060018#include <amdblocks/acpi.h>
Felix Held604ffa62021-02-12 00:43:20 +010019#include <amdblocks/ioapic.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,
Felix Held604ffa62021-02-12 00:43:20 +010035 FCH_IOAPIC_ID, IO_APIC_ADDR, 0);
Marc Jones5ebc8652017-06-19 23:34:04 -060036
37 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *)current,
Felix Held604ffa62021-02-12 00:43:20 +010038 GNB_IOAPIC_ID, IO_APIC2_ADDR, 24);
Marc Jones5ebc8652017-06-19 23:34:04 -060039
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{
Felix Held2f8228d2021-02-05 01:03:45 +010063 printk(BIOS_DEBUG, "pm_base: 0x%04x\n", ACPI_IO_BASE);
Marc Jones24484842017-05-04 21:17:45 -060064
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;
Marc Jones24484842017-05-04 21:17:45 -060085 fadt->duty_offset = 1; /* CLK_VAL bits 3:1 */
86 fadt->duty_width = 3; /* CLK_VAL bits 3:1 */
87 fadt->day_alrm = 0; /* 0x7d these have to be */
88 fadt->mon_alrm = 0; /* 0x7e added to cmos.layout */
89 fadt->century = 0; /* 0x7f to make rtc alarm work */
90 fadt->iapc_boot_arch = FADT_BOOT_ARCH; /* See table 5-10 */
91 fadt->res2 = 0; /* reserved, MUST be 0 ACPI 3.0 */
Angel Ponsa208c6c2020-07-13 00:02:34 +020092 fadt->flags |= ACPI_FADT_WBINVD | /* See table 5-10 ACPI 3.0a spec */
Marc Jones24484842017-05-04 21:17:45 -060093 ACPI_FADT_C1_SUPPORTED |
94 ACPI_FADT_SLEEP_BUTTON |
95 ACPI_FADT_S4_RTC_WAKE |
96 ACPI_FADT_32BIT_TIMER |
Marc Jones24484842017-05-04 21:17:45 -060097 ACPI_FADT_PCI_EXPRESS_WAKE |
98 ACPI_FADT_PLATFORM_CLOCK |
99 ACPI_FADT_S4_RTC_VALID |
100 ACPI_FADT_REMOTE_POWER_ON;
101
Elyes HAOUASf5b974e2018-11-10 20:29:08 +0100102 fadt->ARM_boot_arch = 0; /* MUST be 0 ACPI 3.0 */
103 fadt->FADT_MinorVersion = 0; /* MUST be 0 ACPI 3.0 */
Marc Jones24484842017-05-04 21:17:45 -0600104
105 fadt->x_firmware_ctl_l = 0; /* set to 0 if firmware_ctrl is used */
106 fadt->x_firmware_ctl_h = 0;
Marc Jones24484842017-05-04 21:17:45 -0600107
108 fadt->x_pm1a_evt_blk.space_id = ACPI_ADDRESS_SPACE_IO;
109 fadt->x_pm1a_evt_blk.bit_width = 32;
110 fadt->x_pm1a_evt_blk.bit_offset = 0;
111 fadt->x_pm1a_evt_blk.access_size = ACPI_ACCESS_SIZE_WORD_ACCESS;
112 fadt->x_pm1a_evt_blk.addrl = ACPI_PM_EVT_BLK;
113 fadt->x_pm1a_evt_blk.addrh = 0x0;
114
Marc Jones24484842017-05-04 21:17:45 -0600115 fadt->x_pm1a_cnt_blk.space_id = ACPI_ADDRESS_SPACE_IO;
116 fadt->x_pm1a_cnt_blk.bit_width = 16;
117 fadt->x_pm1a_cnt_blk.bit_offset = 0;
Patrick Rudolphc02bda02020-02-28 10:19:41 +0100118 fadt->x_pm1a_cnt_blk.access_size = ACPI_ACCESS_SIZE_WORD_ACCESS;
Marc Jones24484842017-05-04 21:17:45 -0600119 fadt->x_pm1a_cnt_blk.addrl = ACPI_PM1_CNT_BLK;
120 fadt->x_pm1a_cnt_blk.addrh = 0x0;
121
Marc Jones24484842017-05-04 21:17:45 -0600122 fadt->x_pm_tmr_blk.space_id = ACPI_ADDRESS_SPACE_IO;
123 fadt->x_pm_tmr_blk.bit_width = 32;
124 fadt->x_pm_tmr_blk.bit_offset = 0;
125 fadt->x_pm_tmr_blk.access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
126 fadt->x_pm_tmr_blk.addrl = ACPI_PM_TMR_BLK;
127 fadt->x_pm_tmr_blk.addrh = 0x0;
128
Marc Jones24484842017-05-04 21:17:45 -0600129 fadt->x_gpe0_blk.space_id = ACPI_ADDRESS_SPACE_IO;
130 fadt->x_gpe0_blk.bit_width = 64; /* EventStatus + Event Enable */
131 fadt->x_gpe0_blk.bit_offset = 0;
Angel Ponsa23aff32020-06-21 20:47:54 +0200132 fadt->x_gpe0_blk.access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
Marc Jones24484842017-05-04 21:17:45 -0600133 fadt->x_gpe0_blk.addrl = ACPI_GPE0_BLK;
134 fadt->x_gpe0_blk.addrh = 0x0;
Marc Jones24484842017-05-04 21:17:45 -0600135}
Marc Jones257db582017-06-18 17:33:30 -0600136
Furquan Shaikh7536a392020-04-24 21:59:21 -0700137void generate_cpu_entries(const struct device *device)
Marc Jones6bfcf662017-08-06 17:42:35 -0600138{
Richard Spiegel3f16a0f2018-08-06 11:06:08 -0700139 int cores, cpu;
Marc Jones6bfcf662017-08-06 17:42:35 -0600140
141 /* Stoney Ridge is single node, just report # of cores */
Patrick Georgi4fbefc52018-10-23 14:35:37 +0200142 cores = pci_read_config32(SOC_NB_DEV, NB_CAPABILITIES2) & CMP_CAP_MASK;
143 cores++; /* number of cores is CmpCap+1 */
Marc Jones6bfcf662017-08-06 17:42:35 -0600144
Michał Żygowski9550e972020-03-20 13:56:46 +0100145 printk(BIOS_DEBUG, "ACPI \\_SB report %d core(s)\n", cores);
Marc Jones6bfcf662017-08-06 17:42:35 -0600146
Michał Żygowski9550e972020-03-20 13:56:46 +0100147 /* Generate BSP \_SB.P000 */
Richard Spiegel3f16a0f2018-08-06 11:06:08 -0700148 acpigen_write_processor(0, ACPI_GPE0_BLK, 6);
Marc Jones6bfcf662017-08-06 17:42:35 -0600149 acpigen_pop_len();
150
Michał Żygowski9550e972020-03-20 13:56:46 +0100151 /* Generate AP \_SB.Pxxx */
Marc Jones6bfcf662017-08-06 17:42:35 -0600152 for (cpu = 1; cpu < cores; cpu++) {
Richard Spiegel3f16a0f2018-08-06 11:06:08 -0700153 acpigen_write_processor(cpu, 0, 0);
Marc Jones6bfcf662017-08-06 17:42:35 -0600154 acpigen_pop_len();
155 }
Kyösti Mälkkida321d82021-01-27 20:22:33 +0200156
157 acpigen_write_scope("\\");
158 acpigen_write_name_integer("PCNT", cores);
159 acpigen_pop_len();
Marc Jones6bfcf662017-08-06 17:42:35 -0600160}
161
Kyösti Mälkkie1ff3cd2020-06-29 03:17:05 +0300162void soc_fill_gnvs(struct global_nvs *gnvs)
Marc Jones257db582017-06-18 17:33:30 -0600163{
Marc Jones257db582017-06-18 17:33:30 -0600164 /* Set unknown wake source */
165 gnvs->pm1i = ~0ULL;
Richard Spiegeldbee8ae2018-05-09 17:34:04 -0700166 gnvs->gpei = ~0ULL;
Marc Jones257db582017-06-18 17:33:30 -0600167}
168
Richard Spiegel93459d62018-05-16 14:08:33 -0700169static void acpigen_soc_get_gpio_in_local5(uintptr_t addr)
170{
171 /*
172 * Store (\_SB.GPR2 (addr), Local5)
173 * \_SB.GPR2 is used to read control byte 2 from control register.
174 * / It is defined in gpio_lib.asl.
175 */
176 acpigen_write_store();
177 acpigen_emit_namestring("\\_SB.GPR2");
178 acpigen_write_integer(addr);
179 acpigen_emit_byte(LOCAL5_OP);
180}
181
182static int acpigen_soc_get_gpio_val(unsigned int gpio_num, uint32_t mask)
183{
Marshall Dawson251d3052019-05-02 17:27:57 -0600184 if (gpio_num >= SOC_GPIO_TOTAL_PINS) {
Richard Spiegel93459d62018-05-16 14:08:33 -0700185 printk(BIOS_WARNING, "Warning: Pin %d should be smaller than"
Marshall Dawson251d3052019-05-02 17:27:57 -0600186 " %d\n", gpio_num, SOC_GPIO_TOTAL_PINS);
Richard Spiegel93459d62018-05-16 14:08:33 -0700187 return -1;
188 }
Kyösti Mälkki39bd46f2020-06-18 19:18:21 +0300189 uintptr_t addr = gpio_get_address(gpio_num);
Richard Spiegel93459d62018-05-16 14:08:33 -0700190
191 acpigen_soc_get_gpio_in_local5(addr);
192
193 /* If (And (Local5, mask)) */
194 acpigen_write_if_and(LOCAL5_OP, mask);
195
196 /* Store (One, Local0) */
197 acpigen_write_store_ops(ONE_OP, LOCAL0_OP);
198
199 acpigen_pop_len(); /* If */
200
201 /* Else */
202 acpigen_write_else();
203
204 /* Store (Zero, Local0) */
205 acpigen_write_store_ops(ZERO_OP, LOCAL0_OP);
206
207 acpigen_pop_len(); /* Else */
208
209 return 0;
210}
211
212static int acpigen_soc_set_gpio_val(unsigned int gpio_num, uint32_t val)
213{
Marshall Dawson251d3052019-05-02 17:27:57 -0600214 if (gpio_num >= SOC_GPIO_TOTAL_PINS) {
Richard Spiegel93459d62018-05-16 14:08:33 -0700215 printk(BIOS_WARNING, "Warning: Pin %d should be smaller than"
Marshall Dawson251d3052019-05-02 17:27:57 -0600216 " %d\n", gpio_num, SOC_GPIO_TOTAL_PINS);
Richard Spiegel93459d62018-05-16 14:08:33 -0700217 return -1;
218 }
Kyösti Mälkki39bd46f2020-06-18 19:18:21 +0300219 uintptr_t addr = gpio_get_address(gpio_num);
Richard Spiegel93459d62018-05-16 14:08:33 -0700220
Kevin Chiud837e662018-07-03 19:13:34 +0800221 /* Store (0x40, Local0) */
222 acpigen_write_store();
223 acpigen_write_integer(GPIO_PIN_OUT);
224 acpigen_emit_byte(LOCAL0_OP);
225
Richard Spiegel93459d62018-05-16 14:08:33 -0700226 acpigen_soc_get_gpio_in_local5(addr);
227
228 if (val) {
229 /* Or (Local5, GPIO_PIN_OUT, Local5) */
Kevin Chiud837e662018-07-03 19:13:34 +0800230 acpigen_write_or(LOCAL5_OP, LOCAL0_OP, LOCAL5_OP);
Richard Spiegel93459d62018-05-16 14:08:33 -0700231 } else {
232 /* Not (GPIO_PIN_OUT, Local6) */
Kevin Chiud837e662018-07-03 19:13:34 +0800233 acpigen_write_not(LOCAL0_OP, LOCAL6_OP);
Richard Spiegel93459d62018-05-16 14:08:33 -0700234
235 /* And (Local5, Local6, Local5) */
236 acpigen_write_and(LOCAL5_OP, LOCAL6_OP, LOCAL5_OP);
237 }
238
239 /*
240 * SB.GPW2 (addr, Local5)
241 * \_SB.GPW2 is used to write control byte in control register
242 * / byte 2. It is defined in gpio_lib.asl.
243 */
244 acpigen_emit_namestring("\\_SB.GPW2");
245 acpigen_write_integer(addr);
246 acpigen_emit_byte(LOCAL5_OP);
247
248 return 0;
249}
250
251int acpigen_soc_read_rx_gpio(unsigned int gpio_num)
252{
253 return acpigen_soc_get_gpio_val(gpio_num, GPIO_PIN_IN);
254}
255
256int acpigen_soc_get_tx_gpio(unsigned int gpio_num)
257{
258 return acpigen_soc_get_gpio_val(gpio_num, GPIO_PIN_OUT);
259}
260
261int acpigen_soc_set_tx_gpio(unsigned int gpio_num)
262{
263 return acpigen_soc_set_gpio_val(gpio_num, 1);
264}
265
266int acpigen_soc_clear_tx_gpio(unsigned int gpio_num)
267{
268 return acpigen_soc_set_gpio_val(gpio_num, 0);
269}