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