blob: 8697e79dd299ab534a78375ec90dfa11531acbe5 [file] [log] [blame]
Angel Ponsae593872020-04-04 18:50:57 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Martin Roth5c354b92019-04-22 14:55:16 -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>
Martin Roth5c354b92019-04-22 14:55:16 -060012#include <device/pci_ops.h>
13#include <arch/ioapic.h>
Raul E Rangel93b62e62020-01-31 12:53:45 -070014#include <arch/smp/mpspec.h>
Jason Glenesk498015d2020-12-10 03:28:38 -080015#include <cpu/amd/cpuid.h>
Jason Gleneskbc521432020-09-14 05:22:47 -070016#include <cpu/amd/msr.h>
Martin Roth5c354b92019-04-22 14:55:16 -060017#include <cpu/x86/smm.h>
Martin Roth5c354b92019-04-22 14:55:16 -060018#include <device/device.h>
19#include <device/pci.h>
20#include <amdblocks/acpimmio.h>
21#include <amdblocks/acpi.h>
Raul E Rangel1c88b102021-02-11 10:35:32 -070022#include <amdblocks/chip.h>
Felix Helddd2f3fa2021-02-08 22:23:54 +010023#include <amdblocks/cpu.h>
Martin Roth5c354b92019-04-22 14:55:16 -060024#include <soc/acpi.h>
25#include <soc/pci_devs.h>
Jason Gleneskbc521432020-09-14 05:22:47 -070026#include <soc/msr.h>
Martin Roth5c354b92019-04-22 14:55:16 -060027#include <soc/southbridge.h>
Martin Roth5c354b92019-04-22 14:55:16 -060028#include <soc/nvs.h>
29#include <soc/gpio.h>
30#include <version.h>
Raul E Rangel93b62e62020-01-31 12:53:45 -070031#include "chip.h"
Martin Roth5c354b92019-04-22 14:55:16 -060032
33unsigned long acpi_fill_madt(unsigned long current)
34{
35 /* create all subtables for processors */
36 current = acpi_create_madt_lapics(current);
37
Martin Roth5c354b92019-04-22 14:55:16 -060038 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *)current,
Marshall Dawson39c64b02020-09-04 12:07:27 -060039 CONFIG_PICASSO_FCH_IOAPIC_ID, IO_APIC_ADDR, 0);
Martin Roth5c354b92019-04-22 14:55:16 -060040
Jason Gleneskf459a402020-09-02 16:49:10 -070041 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *)current,
42 CONFIG_PICASSO_GNB_IOAPIC_ID, GNB_IO_APIC_ADDR, IO_APIC_INTERRUPTS);
43
Martin Roth5c354b92019-04-22 14:55:16 -060044 /* 0: mean bus 0--->ISA */
45 /* 0: PIC 0 */
46 /* 2: APIC 2 */
47 /* 5 mean: 0101 --> Edge-triggered, Active high */
48 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
49 current, 0, 0, 2, 0);
Raul E Rangel93b62e62020-01-31 12:53:45 -070050 current += acpi_create_madt_irqoverride(
51 (acpi_madt_irqoverride_t *)current, 0, 9, 9,
52 MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW);
53
Raul E Rangelffab5e62021-02-11 11:07:11 -070054 current = acpi_fill_madt_irqoverride(current);
Martin Roth5c354b92019-04-22 14:55:16 -060055
56 /* create all subtables for processors */
57 current += acpi_create_madt_lapic_nmi((acpi_madt_lapic_nmi_t *)current,
58 0xff, 5, 1);
59 /* 1: LINT1 connect to NMI */
60
61 return current;
62}
63
64/*
65 * Reference section 5.2.9 Fixed ACPI Description Table (FADT)
66 * in the ACPI 3.0b specification.
67 */
Kyösti Mälkki61ef71b2020-05-30 18:54:39 +030068void acpi_fill_fadt(acpi_fadt_t *fadt)
Martin Roth5c354b92019-04-22 14:55:16 -060069{
Raul E Rangel1c88b102021-02-11 10:35:32 -070070 const struct soc_amd_common_config *cfg = soc_get_common_config();
Martin Rotheca8faa2019-12-01 16:49:19 -070071
Felix Held757d6452021-02-04 21:31:49 +010072 printk(BIOS_DEBUG, "pm_base: 0x%04x\n", ACPI_IO_BASE);
Martin Roth5c354b92019-04-22 14:55:16 -060073
Martin Roth5c354b92019-04-22 14:55:16 -060074 fadt->sci_int = 9; /* IRQ 09 - ACPI SCI */
75
Kyösti Mälkki0a9e72e2019-08-11 01:22:28 +030076 if (permanent_smi_handler()) {
Martin Roth5c354b92019-04-22 14:55:16 -060077 fadt->smi_cmd = APM_CNT;
78 fadt->acpi_enable = APM_CNT_ACPI_ENABLE;
79 fadt->acpi_disable = APM_CNT_ACPI_DISABLE;
Martin Roth5c354b92019-04-22 14:55:16 -060080 }
81
82 fadt->pm1a_evt_blk = ACPI_PM_EVT_BLK;
Martin Roth5c354b92019-04-22 14:55:16 -060083 fadt->pm1a_cnt_blk = ACPI_PM1_CNT_BLK;
Martin Roth5c354b92019-04-22 14:55:16 -060084 fadt->pm_tmr_blk = ACPI_PM_TMR_BLK;
85 fadt->gpe0_blk = ACPI_GPE0_BLK;
Martin Roth5c354b92019-04-22 14:55:16 -060086
87 fadt->pm1_evt_len = 4; /* 32 bits */
88 fadt->pm1_cnt_len = 2; /* 16 bits */
Martin Roth5c354b92019-04-22 14:55:16 -060089 fadt->pm_tmr_len = 4; /* 32 bits */
90 fadt->gpe0_blk_len = 8; /* 64 bits */
Martin Roth5c354b92019-04-22 14:55:16 -060091
92 fadt->p_lvl2_lat = ACPI_FADT_C2_NOT_SUPPORTED;
93 fadt->p_lvl3_lat = ACPI_FADT_C3_NOT_SUPPORTED;
Martin Roth5c354b92019-04-22 14:55:16 -060094 fadt->duty_offset = 1; /* CLK_VAL bits 3:1 */
95 fadt->duty_width = 3; /* CLK_VAL bits 3:1 */
Raul E Rangel041fcf52020-08-12 12:13:35 -060096 fadt->day_alrm = 0x0d;
97 fadt->mon_alrm = 0;
98 fadt->century = 0x32;
Martin Rotheca8faa2019-12-01 16:49:19 -070099 fadt->iapc_boot_arch = cfg->fadt_boot_arch; /* legacy free default */
Martin Roth5c354b92019-04-22 14:55:16 -0600100 fadt->res2 = 0; /* reserved, MUST be 0 ACPI 3.0 */
Martin Rotheca8faa2019-12-01 16:49:19 -0700101 fadt->flags |= ACPI_FADT_WBINVD | /* See table 5-34 ACPI 6.3 spec */
102 ACPI_FADT_C1_SUPPORTED |
103 ACPI_FADT_S4_RTC_WAKE |
104 ACPI_FADT_32BIT_TIMER |
105 ACPI_FADT_PCI_EXPRESS_WAKE |
106 ACPI_FADT_PLATFORM_CLOCK |
107 ACPI_FADT_S4_RTC_VALID |
108 ACPI_FADT_REMOTE_POWER_ON;
109 fadt->flags |= cfg->fadt_flags; /* additional board-specific flags */
Martin Roth5c354b92019-04-22 14:55:16 -0600110
Martin Roth5c354b92019-04-22 14:55:16 -0600111 fadt->ARM_boot_arch = 0; /* MUST be 0 ACPI 3.0 */
112 fadt->FADT_MinorVersion = 0; /* MUST be 0 ACPI 3.0 */
113
114 fadt->x_firmware_ctl_l = 0; /* set to 0 if firmware_ctrl is used */
115 fadt->x_firmware_ctl_h = 0;
Martin Roth5c354b92019-04-22 14:55:16 -0600116
117 fadt->x_pm1a_evt_blk.space_id = ACPI_ADDRESS_SPACE_IO;
118 fadt->x_pm1a_evt_blk.bit_width = 32;
119 fadt->x_pm1a_evt_blk.bit_offset = 0;
120 fadt->x_pm1a_evt_blk.access_size = ACPI_ACCESS_SIZE_WORD_ACCESS;
121 fadt->x_pm1a_evt_blk.addrl = ACPI_PM_EVT_BLK;
122 fadt->x_pm1a_evt_blk.addrh = 0x0;
123
Martin Roth5c354b92019-04-22 14:55:16 -0600124 fadt->x_pm1a_cnt_blk.space_id = ACPI_ADDRESS_SPACE_IO;
125 fadt->x_pm1a_cnt_blk.bit_width = 16;
126 fadt->x_pm1a_cnt_blk.bit_offset = 0;
Patrick Rudolphc02bda02020-02-28 10:19:41 +0100127 fadt->x_pm1a_cnt_blk.access_size = ACPI_ACCESS_SIZE_WORD_ACCESS;
Martin Roth5c354b92019-04-22 14:55:16 -0600128 fadt->x_pm1a_cnt_blk.addrl = ACPI_PM1_CNT_BLK;
129 fadt->x_pm1a_cnt_blk.addrh = 0x0;
130
Martin Roth5c354b92019-04-22 14:55:16 -0600131 fadt->x_pm_tmr_blk.space_id = ACPI_ADDRESS_SPACE_IO;
132 fadt->x_pm_tmr_blk.bit_width = 32;
133 fadt->x_pm_tmr_blk.bit_offset = 0;
134 fadt->x_pm_tmr_blk.access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
135 fadt->x_pm_tmr_blk.addrl = ACPI_PM_TMR_BLK;
136 fadt->x_pm_tmr_blk.addrh = 0x0;
137
Martin Roth5c354b92019-04-22 14:55:16 -0600138 fadt->x_gpe0_blk.space_id = ACPI_ADDRESS_SPACE_IO;
139 fadt->x_gpe0_blk.bit_width = 64; /* EventStatus + Event Enable */
140 fadt->x_gpe0_blk.bit_offset = 0;
Angel Ponsa23aff32020-06-21 20:47:54 +0200141 fadt->x_gpe0_blk.access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
Martin Roth5c354b92019-04-22 14:55:16 -0600142 fadt->x_gpe0_blk.addrl = ACPI_GPE0_BLK;
143 fadt->x_gpe0_blk.addrh = 0x0;
Martin Roth5c354b92019-04-22 14:55:16 -0600144}
145
Jason Gleneskbc521432020-09-14 05:22:47 -0700146static uint32_t get_pstate_core_freq(msr_t pstate_def)
147{
148 uint32_t core_freq, core_freq_mul, core_freq_div;
149 bool valid_freq_divisor;
150
151 /* Core frequency multiplier */
152 core_freq_mul = pstate_def.lo & PSTATE_DEF_LO_FREQ_MUL_MASK;
153
154 /* Core frequency divisor ID */
155 core_freq_div =
156 (pstate_def.lo & PSTATE_DEF_LO_FREQ_DIV_MASK) >> PSTATE_DEF_LO_FREQ_DIV_SHIFT;
157
158 if (core_freq_div == 0) {
159 return 0;
160 } else if ((core_freq_div >= PSTATE_DEF_LO_FREQ_DIV_MIN)
161 && (core_freq_div <= PSTATE_DEF_LO_EIGHTH_STEP_MAX)) {
162 /* Allow 1/8 integer steps for this range */
163 valid_freq_divisor = 1;
164 } else if ((core_freq_div > PSTATE_DEF_LO_EIGHTH_STEP_MAX)
165 && (core_freq_div <= PSTATE_DEF_LO_FREQ_DIV_MAX) && !(core_freq_div & 0x1)) {
166 /* Only allow 1/4 integer steps for this range */
167 valid_freq_divisor = 1;
168 } else {
169 valid_freq_divisor = 0;
170 }
171
172 if (valid_freq_divisor) {
173 /* 25 * core_freq_mul / (core_freq_div / 8) */
174 core_freq =
175 ((PSTATE_DEF_LO_CORE_FREQ_BASE * core_freq_mul * 8) / (core_freq_div));
176 } else {
177 printk(BIOS_WARNING, "Undefined core_freq_div %x used. Force to 1.\n",
178 core_freq_div);
179 core_freq = (PSTATE_DEF_LO_CORE_FREQ_BASE * core_freq_mul);
180 }
181 return core_freq;
182}
183
184static uint32_t get_pstate_core_power(msr_t pstate_def)
185{
186 uint32_t voltage_in_uvolts, core_vid, current_value_amps, current_divisor, power_in_mw;
187
188 /* Core voltage ID */
189 core_vid =
190 (pstate_def.lo & PSTATE_DEF_LO_CORE_VID_MASK) >> PSTATE_DEF_LO_CORE_VID_SHIFT;
191
192 /* Current value in amps */
193 current_value_amps =
194 (pstate_def.lo & PSTATE_DEF_LO_CUR_VAL_MASK) >> PSTATE_DEF_LO_CUR_VAL_SHIFT;
195
196 /* Current divisor */
197 current_divisor =
198 (pstate_def.lo & PSTATE_DEF_LO_CUR_DIV_MASK) >> PSTATE_DEF_LO_CUR_DIV_SHIFT;
199
200 /* Voltage */
201 if ((core_vid >= 0xF8) && (core_vid <= 0xFF)) {
202 /* Voltage off for VID codes 0xF8 to 0xFF */
203 voltage_in_uvolts = 0;
204 } else {
205 voltage_in_uvolts =
206 SERIAL_VID_MAX_MICROVOLTS - (SERIAL_VID_DECODE_MICROVOLTS * core_vid);
207 }
208
209 /* Power in mW */
210 power_in_mw = (voltage_in_uvolts) / 1000 * current_value_amps;
211
212 switch (current_divisor) {
213 case 0:
214 break;
215 case 1:
216 power_in_mw = power_in_mw / 10L;
217 break;
218 case 2:
219 power_in_mw = power_in_mw / 100L;
220 break;
221 case 3:
222 /* current_divisor is set to an undefined value.*/
223 printk(BIOS_WARNING, "Undefined current_divisor set for enabled P-state .\n");
224 power_in_mw = 0;
225 break;
226 }
227
228 return power_in_mw;
229}
230
231/*
232 * Populate structure describing enabled p-states and return count of enabled p-states.
233 */
234static size_t get_pstate_info(struct acpi_sw_pstate *pstate_values,
235 struct acpi_xpss_sw_pstate *pstate_xpss_values)
236{
237 msr_t pstate_def;
238 size_t pstate_count, pstate;
239 uint32_t pstate_enable, max_pstate;
240
241 pstate_count = 0;
242 max_pstate = (rdmsr(PS_LIM_REG).lo & PS_LIM_MAX_VAL_MASK) >> PS_MAX_VAL_SHFT;
243
244 for (pstate = 0; pstate <= max_pstate; pstate++) {
245 pstate_def = rdmsr(PSTATE_0_MSR + pstate);
246
247 pstate_enable = (pstate_def.hi & PSTATE_DEF_HI_ENABLE_MASK)
248 >> PSTATE_DEF_HI_ENABLE_SHIFT;
249 if (!pstate_enable)
250 continue;
251
252 pstate_values[pstate_count].core_freq = get_pstate_core_freq(pstate_def);
253 pstate_values[pstate_count].power = get_pstate_core_power(pstate_def);
254 pstate_values[pstate_count].transition_latency = 0;
255 pstate_values[pstate_count].bus_master_latency = 0;
256 pstate_values[pstate_count].control_value = pstate;
257 pstate_values[pstate_count].status_value = pstate;
258
259 pstate_xpss_values[pstate_count].core_freq =
260 (uint64_t)pstate_values[pstate_count].core_freq;
261 pstate_xpss_values[pstate_count].power =
262 (uint64_t)pstate_values[pstate_count].power;
263 pstate_xpss_values[pstate_count].transition_latency = 0;
264 pstate_xpss_values[pstate_count].bus_master_latency = 0;
265 pstate_xpss_values[pstate_count].control_value = (uint64_t)pstate;
266 pstate_xpss_values[pstate_count].status_value = (uint64_t)pstate;
267 pstate_count++;
268 }
269
270 return pstate_count;
271}
272
Furquan Shaikh7536a392020-04-24 21:59:21 -0700273void generate_cpu_entries(const struct device *device)
Martin Roth5c354b92019-04-22 14:55:16 -0600274{
Jason Gleneskbc521432020-09-14 05:22:47 -0700275 int logical_cores;
276 size_t pstate_count, cpu, proc_blk_len;
277 struct acpi_sw_pstate pstate_values[MAX_PSTATES] = { {0} };
278 struct acpi_xpss_sw_pstate pstate_xpss_values[MAX_PSTATES] = { {0} };
279 uint32_t threads_per_core, proc_blk_addr;
280 uint32_t cstate_base_address =
281 rdmsr(MSR_CSTATE_ADDRESS).lo & MSR_CSTATE_ADDRESS_MASK;
Martin Roth5c354b92019-04-22 14:55:16 -0600282
Jason Gleneskbc521432020-09-14 05:22:47 -0700283 const acpi_addr_t perf_ctrl = {
284 .space_id = ACPI_ADDRESS_SPACE_FIXED,
285 .bit_width = 64,
286 .addrl = PS_CTL_REG,
287 };
288 const acpi_addr_t perf_sts = {
289 .space_id = ACPI_ADDRESS_SPACE_FIXED,
290 .bit_width = 64,
291 .addrl = PS_STS_REG,
292 };
Martin Roth5c354b92019-04-22 14:55:16 -0600293
Jason Gleneskbc521432020-09-14 05:22:47 -0700294 acpi_cstate_t cstate_info[] = {
295 [0] = {
296 .ctype = 1,
297 .latency = 1,
298 .power = 0,
299 .resource = {
300 .space_id = ACPI_ADDRESS_SPACE_FIXED,
301 .bit_width = 2,
302 .bit_offset = 2,
303 .addrl = 0,
304 .addrh = 0,
305 },
306 },
307 [1] = {
308 .ctype = 2,
309 .latency = 400,
310 .power = 0,
311 .resource = {
312 .space_id = ACPI_ADDRESS_SPACE_IO,
313 .bit_width = 8,
314 .bit_offset = 0,
315 .addrl = cstate_base_address + 1,
316 .addrh = 0,
317 .access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS,
318 },
319 },
320 };
Martin Roth5c354b92019-04-22 14:55:16 -0600321
Jason Gleneskbc521432020-09-14 05:22:47 -0700322 threads_per_core = ((cpuid_ebx(CPUID_EBX_CORE_ID) & CPUID_EBX_THREADS_MASK)
323 >> CPUID_EBX_THREADS_SHIFT)
324 + 1;
325 pstate_count = get_pstate_info(pstate_values, pstate_xpss_values);
326 logical_cores = get_cpu_count();
327
328 for (cpu = 0; cpu < logical_cores; cpu++) {
329
330 if (cpu == 0) {
331 /* BSP values for \_SB.Pxxx */
332 proc_blk_len = 6;
333 proc_blk_addr = ACPI_GPE0_BLK;
334 } else {
335 /* AP values for \_SB.Pxxx */
336 proc_blk_addr = 0;
337 proc_blk_len = 0;
338 }
339
340 acpigen_write_processor(cpu, proc_blk_addr, proc_blk_len);
341
342 acpigen_write_pct_package(&perf_ctrl, &perf_sts);
343
344 acpigen_write_pss_object(pstate_values, pstate_count);
345
346 acpigen_write_xpss_object(pstate_xpss_values, pstate_count);
347
348 if (CONFIG(ACPI_SSDT_PSD_INDEPENDENT))
349 acpigen_write_PSD_package(cpu / threads_per_core, threads_per_core,
350 HW_ALL);
351 else
352 acpigen_write_PSD_package(0, logical_cores, SW_ALL);
353
354 acpigen_write_PPC(0);
355
356 acpigen_write_CST_package(cstate_info, ARRAY_SIZE(cstate_info));
357
358 acpigen_write_CSD_package(cpu >> 1, threads_per_core, HW_ALL, 0);
359
Martin Roth5c354b92019-04-22 14:55:16 -0600360 acpigen_pop_len();
361 }
Kyösti Mälkkida321d82021-01-27 20:22:33 +0200362
363 acpigen_write_scope("\\");
364 acpigen_write_name_integer("PCNT", logical_cores);
365 acpigen_pop_len();
Martin Roth5c354b92019-04-22 14:55:16 -0600366}
367
Kyösti Mälkkie1ff3cd2020-06-29 03:17:05 +0300368void soc_fill_gnvs(struct global_nvs *gnvs)
Martin Roth5c354b92019-04-22 14:55:16 -0600369{
Martin Roth5c354b92019-04-22 14:55:16 -0600370 /* Set unknown wake source */
371 gnvs->pm1i = ~0ULL;
372 gnvs->gpei = ~0ULL;
Martin Roth5c354b92019-04-22 14:55:16 -0600373}
374
Eric Lai7cee5662020-12-28 14:52:11 +0800375static int acpigen_soc_gpio_op(const char *op, unsigned int gpio_num)
376{
377 if (gpio_num >= SOC_GPIO_TOTAL_PINS) {
378 printk(BIOS_WARNING, "Warning: Pin %d should be smaller than"
379 " %d\n", gpio_num, SOC_GPIO_TOTAL_PINS);
380 return -1;
381 }
382 /* op (gpio_num) */
383 acpigen_emit_namestring(op);
384 acpigen_write_integer(gpio_num);
385 return 0;
386}
387
Eric Laid7a36432020-12-28 15:32:54 +0800388static int acpigen_soc_get_gpio_state(const char *op, unsigned int gpio_num)
389{
390 if (gpio_num >= SOC_GPIO_TOTAL_PINS) {
391 printk(BIOS_WARNING, "Warning: Pin %d should be smaller than"
392 " %d\n", gpio_num, SOC_GPIO_TOTAL_PINS);
393 return -1;
394 }
395 /* Store (op (gpio_num), Local0) */
396 acpigen_write_store();
397 acpigen_soc_gpio_op(op, gpio_num);
398 acpigen_emit_byte(LOCAL0_OP);
399 return 0;
400}
401
402int acpigen_soc_read_rx_gpio(unsigned int gpio_num)
403{
404 return acpigen_soc_get_gpio_state("\\_SB.GRXS", gpio_num);
405}
406
407int acpigen_soc_get_tx_gpio(unsigned int gpio_num)
408{
409 return acpigen_soc_get_gpio_state("\\_SB.GTXS", gpio_num);
410}
411
Martin Roth5c354b92019-04-22 14:55:16 -0600412int acpigen_soc_set_tx_gpio(unsigned int gpio_num)
413{
Eric Lai7cee5662020-12-28 14:52:11 +0800414 return acpigen_soc_gpio_op("\\_SB.STXS", gpio_num);
Martin Roth5c354b92019-04-22 14:55:16 -0600415}
416
417int acpigen_soc_clear_tx_gpio(unsigned int gpio_num)
418{
Eric Lai7cee5662020-12-28 14:52:11 +0800419 return acpigen_soc_gpio_op("\\_SB.CTXS", gpio_num);
Martin Roth5c354b92019-04-22 14:55:16 -0600420}