blob: 66e6384a3482a66b839a2eada8bfc20a4f1430a3 [file] [log] [blame]
Ravi Sarawadi91ffac82022-05-07 16:37:09 -07001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#include <acpi/acpi.h>
4#include <acpi/acpi_gnvs.h>
5#include <acpi/acpigen.h>
Arthur Heymansd90154c2022-12-02 13:27:35 +01006#include <arch/ioapic.h>
Ravi Sarawadi91ffac82022-05-07 16:37:09 -07007#include <device/mmio.h>
8#include <arch/smp/mpspec.h>
9#include <console/console.h>
10#include <device/device.h>
11#include <device/pci_ops.h>
12#include <fw_config.h>
13#include <intelblocks/cpulib.h>
14#include <intelblocks/pmclib.h>
15#include <intelblocks/acpi.h>
16#include <soc/cpu.h>
17#include <soc/iomap.h>
18#include <soc/nvs.h>
19#include <soc/pci_devs.h>
20#include <soc/pm.h>
21#include <soc/soc_chip.h>
22#include <soc/systemagent.h>
23#include <string.h>
24#include <types.h>
25
26/*
27 * List of supported C-states in this processor.
28 */
29enum {
30 C_STATE_C0, /* 0 */
31 C_STATE_C1, /* 1 */
32 C_STATE_C1E, /* 2 */
33 C_STATE_C6_SHORT_LAT, /* 3 */
34 C_STATE_C6_LONG_LAT, /* 4 */
35 C_STATE_C7_SHORT_LAT, /* 5 */
36 C_STATE_C7_LONG_LAT, /* 6 */
37 C_STATE_C7S_SHORT_LAT, /* 7 */
38 C_STATE_C7S_LONG_LAT, /* 8 */
39 C_STATE_C8, /* 9 */
40 C_STATE_C9, /* 10 */
41 C_STATE_C10, /* 11 */
42 NUM_C_STATES
43};
44
45static const acpi_cstate_t cstate_map[NUM_C_STATES] = {
46 [C_STATE_C0] = {},
47 [C_STATE_C1] = {
48 .latency = C1_LATENCY,
49 .power = C1_POWER,
50 .resource = MWAIT_RES(0, 0),
51 },
52 [C_STATE_C1E] = {
53 .latency = C1_LATENCY,
54 .power = C1_POWER,
55 .resource = MWAIT_RES(0, 1),
56 },
57 [C_STATE_C6_SHORT_LAT] = {
58 .latency = C6_LATENCY,
59 .power = C6_POWER,
60 .resource = MWAIT_RES(2, 0),
61 },
62 [C_STATE_C6_LONG_LAT] = {
63 .latency = C6_LATENCY,
64 .power = C6_POWER,
65 .resource = MWAIT_RES(2, 1),
66 },
67 [C_STATE_C7_SHORT_LAT] = {
68 .latency = C7_LATENCY,
69 .power = C7_POWER,
70 .resource = MWAIT_RES(3, 0),
71 },
72 [C_STATE_C7_LONG_LAT] = {
73 .latency = C7_LATENCY,
74 .power = C7_POWER,
75 .resource = MWAIT_RES(3, 1),
76 },
77 [C_STATE_C7S_SHORT_LAT] = {
78 .latency = C7_LATENCY,
79 .power = C7_POWER,
80 .resource = MWAIT_RES(3, 2),
81 },
82 [C_STATE_C7S_LONG_LAT] = {
83 .latency = C7_LATENCY,
84 .power = C7_POWER,
85 .resource = MWAIT_RES(3, 3),
86 },
87 [C_STATE_C8] = {
88 .latency = C8_LATENCY,
89 .power = C8_POWER,
90 .resource = MWAIT_RES(4, 0),
91 },
92 [C_STATE_C9] = {
93 .latency = C9_LATENCY,
94 .power = C9_POWER,
95 .resource = MWAIT_RES(5, 0),
96 },
97 [C_STATE_C10] = {
98 .latency = C10_LATENCY,
99 .power = C10_POWER,
100 .resource = MWAIT_RES(6, 0),
101 },
102};
103
104static int cstate_set_non_s0ix[] = {
105 C_STATE_C1,
106 C_STATE_C6_LONG_LAT,
107 C_STATE_C7S_LONG_LAT
108};
109
110static int cstate_set_s0ix[] = {
111 C_STATE_C1,
112 C_STATE_C7S_LONG_LAT,
113 C_STATE_C10
114};
115
116const acpi_cstate_t *soc_get_cstate_map(size_t *entries)
117{
118 static acpi_cstate_t map[MAX(ARRAY_SIZE(cstate_set_s0ix),
119 ARRAY_SIZE(cstate_set_non_s0ix))];
120 int *set;
121 int i;
122
123 config_t *config = config_of_soc();
124
125 int is_s0ix_enable = config->s0ix_enable;
126
127 if (is_s0ix_enable) {
128 *entries = ARRAY_SIZE(cstate_set_s0ix);
129 set = cstate_set_s0ix;
130 } else {
131 *entries = ARRAY_SIZE(cstate_set_non_s0ix);
132 set = cstate_set_non_s0ix;
133 }
134
135 for (i = 0; i < *entries; i++) {
136 map[i] = cstate_map[set[i]];
137 map[i].ctype = i + 1;
138 }
139 return map;
140}
141
142void soc_power_states_generation(int core_id, int cores_per_package)
143{
144 config_t *config = config_of_soc();
145
146 if (config->eist_enable)
147 /* Generate P-state tables */
148 generate_p_state_entries(core_id, cores_per_package);
149}
150
151void soc_fill_fadt(acpi_fadt_t *fadt)
152{
153 const uint16_t pmbase = ACPI_BASE_ADDRESS;
154
155 config_t *config = config_of_soc();
156
157 fadt->pm_tmr_blk = pmbase + PM1_TMR;
158 fadt->pm_tmr_len = 4;
159 fadt->x_pm_tmr_blk.space_id = ACPI_ADDRESS_SPACE_IO;
160 fadt->x_pm_tmr_blk.bit_width = fadt->pm_tmr_len * 8;
161 fadt->x_pm_tmr_blk.bit_offset = 0;
162 fadt->x_pm_tmr_blk.access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
Elyes Haouas987f1f42022-10-11 13:56:30 +0200163 fadt->x_pm_tmr_blk.addrl = fadt->pm_tmr_blk;
Ravi Sarawadi91ffac82022-05-07 16:37:09 -0700164 fadt->x_pm_tmr_blk.addrh = 0x0;
165
166 if (config->s0ix_enable)
167 fadt->flags |= ACPI_FADT_LOW_PWR_IDLE_S0;
168}
169
170uint32_t soc_read_sci_irq_select(void)
171{
Dinesh Gehlot5778e062022-12-02 13:41:18 +0000172 return read32p(soc_read_pmc_base() + IRQ_REG);
Ravi Sarawadi91ffac82022-05-07 16:37:09 -0700173}
174
175static unsigned long soc_fill_dmar(unsigned long current)
176{
177 unsigned long tmp;
178 const struct device *const igfx_dev = pcidev_path_on_root(PCI_DEVFN_IGD);
179 const uint64_t gfxvtbar = MCHBAR64(GFXVTBAR) & VTBAR_MASK;
180 const bool gfxvten = MCHBAR32(GFXVTBAR) & VTBAR_ENABLED;
181
182 printk(BIOS_DEBUG, "%s - gfxvtbar:0x%llx 0x%x\n",
183 __func__, gfxvtbar, MCHBAR32(GFXVTBAR));
184 if (is_dev_enabled(igfx_dev) && gfxvtbar && gfxvten) {
185 tmp = current;
186 current += acpi_create_dmar_drhd(current, 0, 0, gfxvtbar);
187 current += acpi_create_dmar_ds_pci(current, 0, PCI_DEV_SLOT_IGD, 0);
188
189 acpi_dmar_drhd_fixup(tmp, current);
190 }
191
192 tmp = current;
193 current += acpi_create_dmar_drhd(current,
194 DRHD_INCLUDE_PCI_ALL, 0, VTVC0_BASE_ADDRESS);
Arthur Heymansd90154c2022-12-02 13:27:35 +0100195 current += acpi_create_dmar_ds_ioapic_from_hw(current,
196 IO_APIC_ADDR, V_P2SB_CFG_IBDF_BUS, V_P2SB_CFG_IBDF_DEV,
Ravi Sarawadi91ffac82022-05-07 16:37:09 -0700197 V_P2SB_CFG_IBDF_FUNC);
198 current += acpi_create_dmar_ds_msi_hpet(current,
199 0, V_P2SB_CFG_HBDF_BUS, V_P2SB_CFG_HBDF_DEV,
200 V_P2SB_CFG_HBDF_FUNC);
201 acpi_dmar_drhd_fixup(tmp, current);
202
203 /* Add RMRR entry */
204 if (is_dev_enabled(igfx_dev) && gfxvtbar && gfxvten) {
205 tmp = current;
206 current += acpi_create_dmar_rmrr(current, 0,
207 sa_get_gsm_base(), sa_get_tolud_base() - 1);
208 current += acpi_create_dmar_ds_pci(current, 0, PCI_DEV_SLOT_IGD, 0);
209 acpi_dmar_rmrr_fixup(tmp, current);
210 }
211
212 tmp = current;
213 current += acpi_create_dmar_satc(current, ATC_REQUIRED, 0);
214 current += acpi_create_dmar_ds_pci(current, 0, PCI_DEV_SLOT_IGD, 0);
215 current += acpi_create_dmar_ds_pci(current, 0, PCI_DEV_SLOT_IPU, 0);
216 acpi_dmar_satc_fixup(tmp, current);
217
218 return current;
219}
220
221unsigned long sa_write_acpi_tables(const struct device *dev, unsigned long current,
222 struct acpi_rsdp *rsdp)
223{
224 acpi_dmar_t *const dmar = (acpi_dmar_t *)current;
225
226 /*
227 * Create DMAR table only if we have VT-d capability and FSP does not override its
228 * feature.
229 */
230 if ((pci_read_config32(dev, CAPID0_A) & VTD_DISABLE) ||
231 !(MCHBAR32(GFXVTBAR) & VTBAR_ENABLED))
232 return current;
233
234 printk(BIOS_DEBUG, "ACPI: * DMAR\n");
235 acpi_create_dmar(dmar, DMAR_INTR_REMAP | DMA_CTRL_PLATFORM_OPT_IN_FLAG, soc_fill_dmar);
236 current += dmar->header.length;
237 current = acpi_align_current(current);
238 acpi_add_table(rsdp, dmar);
239
240 return current;
241}
242
243void soc_fill_gnvs(struct global_nvs *gnvs)
244{
245 config_t *config = config_of_soc();
246
247 /* Enable DPTF based on mainboard configuration */
248 gnvs->dpte = config->dptf_enable;
249
250 /* Set USB2/USB3 wake enable bitmaps. */
251 gnvs->u2we = config->usb2_wake_enable_bitmap;
252 gnvs->u3we = config->usb3_wake_enable_bitmap;
253}
254
255int soc_madt_sci_irq_polarity(int sci)
256{
257 return MP_IRQ_POLARITY_HIGH;
258}