blob: 663eecb0b25041b4b474b7797b6690d115b666ec [file] [log] [blame]
Subrata Banik2871e0e2020-09-27 11:30:58 +05301/* SPDX-License-Identifier: GPL-2.0-only */
2
3#include <acpi/acpi.h>
4#include <acpi/acpi_gnvs.h>
5#include <acpi/acpigen.h>
6#include <device/mmio.h>
7#include <arch/smp/mpspec.h>
8#include <cbmem.h>
9#include <console/console.h>
10#include <device/device.h>
11#include <device/pci_ops.h>
Subrata Banik2871e0e2020-09-27 11:30:58 +053012#include <intelblocks/cpulib.h>
13#include <intelblocks/pmclib.h>
14#include <intelblocks/acpi.h>
15#include <soc/cpu.h>
16#include <soc/iomap.h>
17#include <soc/nvs.h>
18#include <soc/pci_devs.h>
19#include <soc/pm.h>
20#include <soc/soc_chip.h>
21#include <soc/systemagent.h>
22#include <string.h>
23#include <types.h>
24#include <wrdd.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
45#define MWAIT_RES(state, sub_state) \
46 { \
47 .addrl = (((state) << 4) | (sub_state)), \
48 .space_id = ACPI_ADDRESS_SPACE_FIXED, \
49 .bit_width = ACPI_FFIXEDHW_VENDOR_INTEL, \
50 .bit_offset = ACPI_FFIXEDHW_CLASS_MWAIT, \
51 .access_size = ACPI_FFIXEDHW_FLAG_HW_COORD, \
52 }
53
54static const acpi_cstate_t cstate_map[NUM_C_STATES] = {
55 [C_STATE_C0] = {},
56 [C_STATE_C1] = {
57 .latency = C1_LATENCY,
58 .power = C1_POWER,
59 .resource = MWAIT_RES(0, 0),
60 },
61 [C_STATE_C1E] = {
62 .latency = C1_LATENCY,
63 .power = C1_POWER,
64 .resource = MWAIT_RES(0, 1),
65 },
66 [C_STATE_C6_SHORT_LAT] = {
67 .latency = C6_LATENCY,
68 .power = C6_POWER,
69 .resource = MWAIT_RES(2, 0),
70 },
71 [C_STATE_C6_LONG_LAT] = {
72 .latency = C6_LATENCY,
73 .power = C6_POWER,
74 .resource = MWAIT_RES(2, 1),
75 },
76 [C_STATE_C7_SHORT_LAT] = {
77 .latency = C7_LATENCY,
78 .power = C7_POWER,
79 .resource = MWAIT_RES(3, 0),
80 },
81 [C_STATE_C7_LONG_LAT] = {
82 .latency = C7_LATENCY,
83 .power = C7_POWER,
84 .resource = MWAIT_RES(3, 1),
85 },
86 [C_STATE_C7S_SHORT_LAT] = {
87 .latency = C7_LATENCY,
88 .power = C7_POWER,
89 .resource = MWAIT_RES(3, 2),
90 },
91 [C_STATE_C7S_LONG_LAT] = {
92 .latency = C7_LATENCY,
93 .power = C7_POWER,
94 .resource = MWAIT_RES(3, 3),
95 },
96 [C_STATE_C8] = {
97 .latency = C8_LATENCY,
98 .power = C8_POWER,
99 .resource = MWAIT_RES(4, 0),
100 },
101 [C_STATE_C9] = {
102 .latency = C9_LATENCY,
103 .power = C9_POWER,
104 .resource = MWAIT_RES(5, 0),
105 },
106 [C_STATE_C10] = {
107 .latency = C10_LATENCY,
108 .power = C10_POWER,
109 .resource = MWAIT_RES(6, 0),
110 },
111};
112
113static int cstate_set_non_s0ix[] = {
114 C_STATE_C1,
115 C_STATE_C6_LONG_LAT,
116 C_STATE_C7S_LONG_LAT
117};
118
119static int cstate_set_s0ix[] = {
120 C_STATE_C1,
121 C_STATE_C7S_LONG_LAT,
122 C_STATE_C10
123};
124
125acpi_cstate_t *soc_get_cstate_map(size_t *entries)
126{
127 static acpi_cstate_t map[MAX(ARRAY_SIZE(cstate_set_s0ix),
128 ARRAY_SIZE(cstate_set_non_s0ix))];
129 int *set;
130 int i;
131
132 config_t *config = config_of_soc();
133
134 int is_s0ix_enable = config->s0ix_enable;
135
136 if (is_s0ix_enable) {
137 *entries = ARRAY_SIZE(cstate_set_s0ix);
138 set = cstate_set_s0ix;
139 } else {
140 *entries = ARRAY_SIZE(cstate_set_non_s0ix);
141 set = cstate_set_non_s0ix;
142 }
143
144 for (i = 0; i < *entries; i++) {
145 memcpy(&map[i], &cstate_map[set[i]], sizeof(acpi_cstate_t));
146 map[i].ctype = i + 1;
147 }
148 return map;
149}
150
151void soc_power_states_generation(int core_id, int cores_per_package)
152{
153 config_t *config = config_of_soc();
154
155 if (config->eist_enable)
156 /* Generate P-state tables */
157 generate_p_state_entries(core_id, cores_per_package);
158}
159
160void soc_fill_fadt(acpi_fadt_t *fadt)
161{
162 const uint16_t pmbase = ACPI_BASE_ADDRESS;
163
164 config_t *config = config_of_soc();
165
166 fadt->pm_tmr_blk = pmbase + PM1_TMR;
167 fadt->pm_tmr_len = 4;
168 fadt->x_pm_tmr_blk.space_id = ACPI_ADDRESS_SPACE_IO;
169 fadt->x_pm_tmr_blk.bit_width = fadt->pm_tmr_len * 8;
170 fadt->x_pm_tmr_blk.bit_offset = 0;
171 fadt->x_pm_tmr_blk.access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
172 fadt->x_pm_tmr_blk.addrl = pmbase + PM1_TMR;
173 fadt->x_pm_tmr_blk.addrh = 0x0;
174
175 if (config->s0ix_enable)
176 fadt->flags |= ACPI_FADT_LOW_PWR_IDLE_S0;
177}
178
179uint32_t soc_read_sci_irq_select(void)
180{
181 return read32((void *)soc_read_pmc_base() + IRQ_REG);
182}
183
184static unsigned long soc_fill_dmar(unsigned long current)
185{
186 const struct device *const igfx_dev = pcidev_path_on_root(SA_DEVFN_IGD);
187 const uint64_t gfxvtbar = MCHBAR64(GFXVTBAR) & VTBAR_MASK;
188 const bool gfxvten = MCHBAR32(GFXVTBAR) & VTBAR_ENABLED;
189
190 if (is_dev_enabled(igfx_dev) && gfxvtbar && gfxvten) {
191 const unsigned long tmp = current;
192
193 current += acpi_create_dmar_drhd(current, 0, 0, gfxvtbar);
194 current += acpi_create_dmar_ds_pci(current, 0, 2, 0);
195
196 acpi_dmar_drhd_fixup(tmp, current);
197 }
198
199 const struct device *const ipu_dev = pcidev_path_on_root(SA_DEVFN_IPU);
200 const uint64_t ipuvtbar = MCHBAR64(IPUVTBAR) & VTBAR_MASK;
201 const bool ipuvten = MCHBAR32(IPUVTBAR) & VTBAR_ENABLED;
202
203 if (is_dev_enabled(ipu_dev) && ipuvtbar && ipuvten) {
204 const unsigned long tmp = current;
205
206 current += acpi_create_dmar_drhd(current, 0, 0, ipuvtbar);
207 current += acpi_create_dmar_ds_pci(current, 0, 5, 0);
208
209 acpi_dmar_drhd_fixup(tmp, current);
210 }
211
212 const uint64_t vtvc0bar = MCHBAR64(VTVC0BAR) & VTBAR_MASK;
213 const bool vtvc0en = MCHBAR32(VTVC0BAR) & VTBAR_ENABLED;
214
215 if (vtvc0bar && vtvc0en) {
216 const unsigned long tmp = current;
217
218 current += acpi_create_dmar_drhd(current,
219 DRHD_INCLUDE_PCI_ALL, 0, vtvc0bar);
220 current += acpi_create_dmar_ds_ioapic(current,
221 2, V_P2SB_CFG_IBDF_BUS, V_P2SB_CFG_IBDF_DEV,
222 V_P2SB_CFG_IBDF_FUNC);
223 current += acpi_create_dmar_ds_msi_hpet(current,
224 0, V_P2SB_CFG_HBDF_BUS, V_P2SB_CFG_HBDF_DEV,
225 V_P2SB_CFG_HBDF_FUNC);
226
227 acpi_dmar_drhd_fixup(tmp, current);
228 }
229
230 /* TCSS Thunderbolt root ports */
231 for (unsigned int i = 0; i < MAX_TBT_PCIE_PORT; i++) {
232 const struct device *const tbt_dev = pcidev_path_on_root(SA_DEVFN_TBT(i));
233 if (is_dev_enabled(tbt_dev)) {
234 const uint64_t tbtbar = MCHBAR64(TBTxBAR(i)) & VTBAR_MASK;
235 const bool tbten = MCHBAR32(TBTxBAR(i)) & VTBAR_ENABLED;
236 if (tbtbar && tbten) {
237 const unsigned long tmp = current;
238
239 current += acpi_create_dmar_drhd(current, 0, 0, tbtbar);
240 current += acpi_create_dmar_ds_pci_br(current, 0, 7, i);
241
242 acpi_dmar_drhd_fixup(tmp, current);
243 }
244 }
245 }
246
247 /* Add RMRR entry */
248 if (is_dev_enabled(igfx_dev)) {
249 const unsigned long tmp = current;
250 current += acpi_create_dmar_rmrr(current, 0,
251 sa_get_gsm_base(), sa_get_tolud_base() - 1);
252 current += acpi_create_dmar_ds_pci(current, 0, 2, 0);
253 acpi_dmar_rmrr_fixup(tmp, current);
254 }
255
256 return current;
257}
258
259unsigned long sa_write_acpi_tables(const struct device *dev, unsigned long current,
260 struct acpi_rsdp *rsdp)
261{
262 acpi_dmar_t *const dmar = (acpi_dmar_t *)current;
263
264 /*
265 * Create DMAR table only if we have VT-d capability and FSP does not override its
266 * feature.
267 */
268 if ((pci_read_config32(dev, CAPID0_A) & VTD_DISABLE) ||
269 !(MCHBAR32(VTVC0BAR) & VTBAR_ENABLED))
270 return current;
271
272 printk(BIOS_DEBUG, "ACPI: * DMAR\n");
273 acpi_create_dmar(dmar, DMAR_INTR_REMAP | DMA_CTRL_PLATFORM_OPT_IN_FLAG, soc_fill_dmar);
274 current += dmar->header.length;
275 current = acpi_align_current(current);
276 acpi_add_table(rsdp, dmar);
277
278 return current;
279}
280
Kyösti Mälkkic2b0a4f2020-06-28 22:39:59 +0300281void soc_fill_gnvs(struct global_nvs *gnvs)
Subrata Banik2871e0e2020-09-27 11:30:58 +0530282{
283 config_t *config = config_of_soc();
284
285 /* Set unknown wake source */
286 gnvs->pm1i = -1;
287
288 /* CPU core count */
289 gnvs->pcnt = dev_count_cpu();
290
Subrata Banik2871e0e2020-09-27 11:30:58 +0530291 /* Enable DPTF based on mainboard configuration */
292 gnvs->dpte = config->dptf_enable;
293
294 /* Fill in the Wifi Region id */
295 gnvs->cid1 = wifi_regulatory_domain();
296
297 /* Set USB2/USB3 wake enable bitmaps. */
298 gnvs->u2we = config->usb2_wake_enable_bitmap;
299 gnvs->u3we = config->usb3_wake_enable_bitmap;
300
301 /* Fill in Above 4GB MMIO resource */
302 sa_fill_gnvs(gnvs);
303}
304
305uint32_t acpi_fill_soc_wake(uint32_t generic_pm1_en,
306 const struct chipset_power_state *ps)
307{
308 /*
309 * WAK_STS bit is set when the system is in one of the sleep states
310 * (via the SLP_EN bit) and an enabled wake event occurs. Upon setting
311 * this bit, the PMC will transition the system to the ON state and
312 * can only be set by hardware and can only be cleared by writing a one
313 * to this bit position.
314 */
315
316 generic_pm1_en |= WAK_STS | RTC_EN | PWRBTN_EN;
317 return generic_pm1_en;
318}
319
320int soc_madt_sci_irq_polarity(int sci)
321{
322 return MP_IRQ_POLARITY_HIGH;
323}
324
325static int acpigen_soc_gpio_op(const char *op, unsigned int gpio_num)
326{
327 /* op (gpio_num) */
328 acpigen_emit_namestring(op);
329 acpigen_write_integer(gpio_num);
330 return 0;
331}
332
333static int acpigen_soc_get_gpio_state(const char *op, unsigned int gpio_num)
334{
335 /* Store (op (gpio_num), Local0) */
336 acpigen_write_store();
337 acpigen_soc_gpio_op(op, gpio_num);
338 acpigen_emit_byte(LOCAL0_OP);
339 return 0;
340}
341
342int acpigen_soc_read_rx_gpio(unsigned int gpio_num)
343{
344 return acpigen_soc_get_gpio_state("\\_SB.PCI0.GRXS", gpio_num);
345}
346
347int acpigen_soc_get_tx_gpio(unsigned int gpio_num)
348{
349 return acpigen_soc_get_gpio_state("\\_SB.PCI0.GTXS", gpio_num);
350}
351
352int acpigen_soc_set_tx_gpio(unsigned int gpio_num)
353{
354 return acpigen_soc_gpio_op("\\_SB.PCI0.STXS", gpio_num);
355}
356
357int acpigen_soc_clear_tx_gpio(unsigned int gpio_num)
358{
359 return acpigen_soc_gpio_op("\\_SB.PCI0.CTXS", gpio_num);
360}