blob: a0c966e89e92927934da96e242f9bc10e94d05d2 [file] [log] [blame]
Tan, Lean Sheng05dfe312020-08-25 20:40:17 -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>
6#include <arch/smp/mpspec.h>
Tan, Lean Sheng05dfe312020-08-25 20:40:17 -07007#include <console/console.h>
8#include <device/device.h>
9#include <device/mmio.h>
10#include <device/pci_ops.h>
Tan, Lean Sheng05dfe312020-08-25 20:40:17 -070011#include <intelblocks/acpi.h>
12#include <intelblocks/cpulib.h>
13#include <intelblocks/pmclib.h>
14#include <soc/cpu.h>
15#include <soc/iomap.h>
16#include <soc/nvs.h>
17#include <soc/pci_devs.h>
18#include <soc/pm.h>
19#include <soc/soc_chip.h>
20#include <soc/systemagent.h>
21#include <string.h>
Tan, Lean Sheng05dfe312020-08-25 20:40:17 -070022
23/*
24 * List of supported C-states in this processor.
25 */
26enum {
27 C_STATE_C0, /* 0 */
28 C_STATE_C1, /* 1 */
29 C_STATE_C1E, /* 2 */
30 C_STATE_C6_SHORT_LAT, /* 3 */
31 C_STATE_C6_LONG_LAT, /* 4 */
32 C_STATE_C7_SHORT_LAT, /* 5 */
33 C_STATE_C7_LONG_LAT, /* 6 */
34 C_STATE_C7S_SHORT_LAT, /* 7 */
35 C_STATE_C7S_LONG_LAT, /* 8 */
36 C_STATE_C8, /* 9 */
37 C_STATE_C9, /* 10 */
38 C_STATE_C10, /* 11 */
39 NUM_C_STATES
40};
41
Tan, Lean Sheng05dfe312020-08-25 20:40:17 -070042static const acpi_cstate_t cstate_map[NUM_C_STATES] = {
43 [C_STATE_C0] = {},
44 [C_STATE_C1] = {
45 .latency = C1_LATENCY,
46 .power = C1_POWER,
47 .resource = MWAIT_RES(0, 0),
48 },
49 [C_STATE_C1E] = {
50 .latency = C1_LATENCY,
51 .power = C1_POWER,
52 .resource = MWAIT_RES(0, 1),
53 },
54 [C_STATE_C6_SHORT_LAT] = {
55 .latency = C6_LATENCY,
56 .power = C6_POWER,
57 .resource = MWAIT_RES(2, 0),
58 },
59 [C_STATE_C6_LONG_LAT] = {
60 .latency = C6_LATENCY,
61 .power = C6_POWER,
62 .resource = MWAIT_RES(2, 1),
63 },
64 [C_STATE_C7_SHORT_LAT] = {
65 .latency = C7_LATENCY,
66 .power = C7_POWER,
67 .resource = MWAIT_RES(3, 0),
68 },
69 [C_STATE_C7_LONG_LAT] = {
70 .latency = C7_LATENCY,
71 .power = C7_POWER,
72 .resource = MWAIT_RES(3, 1),
73 },
74 [C_STATE_C7S_SHORT_LAT] = {
75 .latency = C7_LATENCY,
76 .power = C7_POWER,
77 .resource = MWAIT_RES(3, 2),
78 },
79 [C_STATE_C7S_LONG_LAT] = {
80 .latency = C7_LATENCY,
81 .power = C7_POWER,
82 .resource = MWAIT_RES(3, 3),
83 },
84 [C_STATE_C8] = {
85 .latency = C8_LATENCY,
86 .power = C8_POWER,
87 .resource = MWAIT_RES(4, 0),
88 },
89 [C_STATE_C9] = {
90 .latency = C9_LATENCY,
91 .power = C9_POWER,
92 .resource = MWAIT_RES(5, 0),
93 },
94 [C_STATE_C10] = {
95 .latency = C10_LATENCY,
96 .power = C10_POWER,
97 .resource = MWAIT_RES(6, 0),
98 },
99};
100
101static int cstate_set_non_s0ix[] = {
102 C_STATE_C1,
103 C_STATE_C6_LONG_LAT,
104 C_STATE_C7S_LONG_LAT
105};
106
107static int cstate_set_s0ix[] = {
108 C_STATE_C1,
109 C_STATE_C7S_LONG_LAT,
110 C_STATE_C10
111};
112
113acpi_cstate_t *soc_get_cstate_map(size_t *entries)
114{
115 static acpi_cstate_t map[MAX(ARRAY_SIZE(cstate_set_s0ix),
116 ARRAY_SIZE(cstate_set_non_s0ix))];
117 int *set;
118 int i;
119
120 config_t *config = config_of_soc();
121
122 int is_s0ix_enable = config->s0ix_enable;
123
124 if (is_s0ix_enable) {
125 *entries = ARRAY_SIZE(cstate_set_s0ix);
126 set = cstate_set_s0ix;
127 } else {
128 *entries = ARRAY_SIZE(cstate_set_non_s0ix);
129 set = cstate_set_non_s0ix;
130 }
131
132 for (i = 0; i < *entries; i++) {
133 memcpy(&map[i], &cstate_map[set[i]], sizeof(acpi_cstate_t));
134 map[i].ctype = i + 1;
135 }
136 return map;
137}
138
139void soc_power_states_generation(int core_id, int cores_per_package)
140{
141 config_t *config = config_of_soc();
142
143 if (config->eist_enable)
144 /* Generate P-state tables */
145 generate_p_state_entries(core_id, cores_per_package);
146}
147
148void soc_fill_fadt(acpi_fadt_t *fadt)
149{
150 const uint16_t pmbase = ACPI_BASE_ADDRESS;
151
152 config_t *config = config_of_soc();
153
154 fadt->pm_tmr_blk = pmbase + PM1_TMR;
155 fadt->pm_tmr_len = 4;
156 fadt->x_pm_tmr_blk.space_id = ACPI_ADDRESS_SPACE_IO;
157 fadt->x_pm_tmr_blk.bit_width = fadt->pm_tmr_len * 8;
158 fadt->x_pm_tmr_blk.bit_offset = 0;
Tan, Lean Shengf156f732021-05-26 06:38:28 -0700159 fadt->x_pm_tmr_blk.access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
Tan, Lean Sheng05dfe312020-08-25 20:40:17 -0700160 fadt->x_pm_tmr_blk.addrl = pmbase + PM1_TMR;
161 fadt->x_pm_tmr_blk.addrh = 0x0;
Tan, Lean Shengf156f732021-05-26 06:38:28 -0700162 fadt->preferred_pm_profile = PM_MOBILE;
163 fadt->p_lvl2_lat = ACPI_FADT_C2_NOT_SUPPORTED;
164 fadt->p_lvl3_lat = ACPI_FADT_C3_NOT_SUPPORTED;
165 fadt->duty_width = 0x3; /* CLK_VAL bits 3:1 */
166 fadt->century = 0x32;
Tan, Lean Sheng05dfe312020-08-25 20:40:17 -0700167
168 if (config->s0ix_enable)
169 fadt->flags |= ACPI_FADT_LOW_PWR_IDLE_S0;
170}
171
172uint32_t soc_read_sci_irq_select(void)
173{
174 uintptr_t pmc_bar = soc_read_pmc_base();
175 return read32((void *)pmc_bar + IRQ_REG);
176}
177
178static unsigned long soc_fill_dmar(unsigned long current)
179{
180 const struct device *const igfx_dev = pcidev_path_on_root(SA_DEVFN_IGD);
181 uint64_t gfxvtbar = MCHBAR64(GFXVTBAR) & VTBAR_MASK;
182 bool gfxvten = MCHBAR32(GFXVTBAR) & VTBAR_ENABLED;
183
184 if (is_dev_enabled(igfx_dev) && gfxvtbar && gfxvten) {
185 unsigned long tmp = current;
186
187 current += acpi_create_dmar_drhd(current, 0, 0, gfxvtbar);
188 current += acpi_create_dmar_ds_pci(current, 0, 2, 0);
189
190 acpi_dmar_drhd_fixup(tmp, current);
191 }
192
193 uint64_t vtvc0bar = MCHBAR64(VTVC0BAR) & VTBAR_MASK;
194 bool vtvc0en = MCHBAR32(VTVC0BAR) & VTBAR_ENABLED;
195
196 if (vtvc0bar && vtvc0en) {
197 const unsigned long tmp = current;
198
199 current += acpi_create_dmar_drhd(current,
200 DRHD_INCLUDE_PCI_ALL, 0, vtvc0bar);
201 current += acpi_create_dmar_ds_ioapic(current,
202 2, V_P2SB_CFG_IBDF_BUS, V_P2SB_CFG_IBDF_DEV,
203 V_P2SB_CFG_IBDF_FUNC);
204 current += acpi_create_dmar_ds_msi_hpet(current,
205 0, V_P2SB_CFG_HBDF_BUS, V_P2SB_CFG_HBDF_DEV,
206 V_P2SB_CFG_HBDF_FUNC);
207
208 acpi_dmar_drhd_fixup(tmp, current);
209 }
210
211 /* Add RMRR entry */
212 const unsigned long tmp = current;
213 current += acpi_create_dmar_rmrr(current, 0,
214 sa_get_gsm_base(), sa_get_tolud_base() - 1);
215 current += acpi_create_dmar_ds_pci(current, 0, 2, 0);
216 acpi_dmar_rmrr_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(VTVC0BAR) & 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
Kyösti Mälkkic2b0a4f2020-06-28 22:39:59 +0300243void soc_fill_gnvs(struct global_nvs *gnvs)
Tan, Lean Sheng05dfe312020-08-25 20:40:17 -0700244{
245 config_t *config = config_of_soc();
246
Tan, Lean Sheng05dfe312020-08-25 20:40:17 -0700247 /* Enable DPTF based on mainboard configuration */
248 gnvs->dpte = config->dptf_enable;
249
Tan, Lean Sheng05dfe312020-08-25 20:40:17 -0700250 /* Set USB2/USB3 wake enable bitmaps. */
251 gnvs->u2we = config->usb2_wake_enable_bitmap;
252 gnvs->u3we = config->usb3_wake_enable_bitmap;
253
254 /* Fill in Above 4GB MMIO resource */
255 sa_fill_gnvs(gnvs);
256}
257
258uint32_t acpi_fill_soc_wake(uint32_t generic_pm1_en,
259 const struct chipset_power_state *ps)
260{
261 /*
262 * WAK_STS bit is set when the system is in one of the sleep states
263 * (via the SLP_EN bit) and an enabled wake event occurs. Upon setting
264 * this bit, the PMC will transition the system to the ON state and
265 * can only be set by hardware and can only be cleared by writing a one
266 * to this bit position.
267 */
268
269 generic_pm1_en |= WAK_STS | RTC_EN | PWRBTN_EN;
270 return generic_pm1_en;
271}
272
273int soc_madt_sci_irq_polarity(int sci)
274{
275 return MP_IRQ_POLARITY_HIGH;
276}