blob: dee44b62534ebf0767bd4bd65c283fb7e81d02f7 [file] [log] [blame]
Angel Pons3bd1e3d2020-04-05 15:47:17 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Lee Leahyb0005132015-05-12 18:19:47 -07003
4#include <arch/acpi.h>
5#include <arch/acpigen.h>
robbie zhangb45dde02015-10-01 17:21:33 -07006#include <arch/cpu.h>
Duncan Lauriedb54a672015-09-04 14:19:35 -07007#include <arch/ioapic.h>
Lee Leahyb0005132015-05-12 18:19:47 -07008#include <arch/smp/mpspec.h>
9#include <cbmem.h>
10#include <console/console.h>
11#include <cpu/x86/smm.h>
Lee Leahyb0005132015-05-12 18:19:47 -070012#include <cpu/x86/msr.h>
13#include <cpu/x86/tsc.h>
Matt Delco9084c3c2018-07-27 14:17:29 -070014#include <cpu/intel/common/common.h>
Lee Leahyb0005132015-05-12 18:19:47 -070015#include <cpu/intel/turbo.h>
16#include <ec/google/chromeec/ec.h>
Barnali Sarkar0a203d12017-05-04 18:02:17 +053017#include <intelblocks/cpulib.h>
Ravi Sarawadi1483d1f2017-09-28 17:06:01 -070018#include <intelblocks/lpc_lib.h>
Pratik Prajapati418535e2017-10-11 16:12:21 -070019#include <intelblocks/sgx.h>
Duncan Laurie93bbd412017-11-11 20:03:29 -080020#include <intelblocks/uart.h>
Nico Huberc37b0e32017-09-18 20:03:46 +020021#include <intelblocks/systemagent.h>
Duncan Lauriea1c8b34d2015-09-08 16:12:44 -070022#include <soc/intel/common/acpi.h>
Lee Leahyb0005132015-05-12 18:19:47 -070023#include <soc/acpi.h>
24#include <soc/cpu.h>
25#include <soc/iomap.h>
Lee Leahyb0005132015-05-12 18:19:47 -070026#include <soc/msr.h>
27#include <soc/pci_devs.h>
28#include <soc/pm.h>
Naresh G Solankia2d40622016-08-30 20:47:13 +053029#include <soc/ramstage.h>
Nico Huberc37b0e32017-09-18 20:03:46 +020030#include <soc/systemagent.h>
robbie zhangb45dde02015-10-01 17:21:33 -070031#include <string.h>
32#include <types.h>
33#include <vendorcode/google/chromeos/gnvs.h>
Duncan Laurie3d3b76b2016-02-25 08:45:43 -080034#include <wrdd.h>
Patrick Rudolphe56189c2018-04-18 10:11:59 +020035#include <device/pci_ops.h>
Lee Leahyb0005132015-05-12 18:19:47 -070036
Elyes HAOUASc3385072019-03-21 15:38:06 +010037#include "chip.h"
38
Lee Leahyb0005132015-05-12 18:19:47 -070039/*
Lee Leahy1d14b3e2015-05-12 18:23:27 -070040 * List of suported C-states in this processor.
Lee Leahyb0005132015-05-12 18:19:47 -070041 */
42enum {
Lee Leahy1d14b3e2015-05-12 18:23:27 -070043 C_STATE_C0, /* 0 */
44 C_STATE_C1, /* 1 */
45 C_STATE_C1E, /* 2 */
46 C_STATE_C3, /* 3 */
47 C_STATE_C6_SHORT_LAT, /* 4 */
48 C_STATE_C6_LONG_LAT, /* 5 */
49 C_STATE_C7_SHORT_LAT, /* 6 */
50 C_STATE_C7_LONG_LAT, /* 7 */
51 C_STATE_C7S_SHORT_LAT, /* 8 */
52 C_STATE_C7S_LONG_LAT, /* 9 */
53 C_STATE_C8, /* 10 */
54 C_STATE_C9, /* 11 */
55 C_STATE_C10, /* 12 */
Lee Leahyb0005132015-05-12 18:19:47 -070056 NUM_C_STATES
57};
Lee Leahy1d14b3e2015-05-12 18:23:27 -070058#define MWAIT_RES(state, sub_state) \
59 { \
60 .addrl = (((state) << 4) | (sub_state)), \
61 .space_id = ACPI_ADDRESS_SPACE_FIXED, \
62 .bit_width = ACPI_FFIXEDHW_VENDOR_INTEL, \
63 .bit_offset = ACPI_FFIXEDHW_CLASS_MWAIT, \
64 .access_size = ACPI_FFIXEDHW_FLAG_HW_COORD, \
Lee Leahyb0005132015-05-12 18:19:47 -070065 }
66
67static acpi_cstate_t cstate_map[NUM_C_STATES] = {
68 [C_STATE_C0] = { },
69 [C_STATE_C1] = {
70 .latency = 0,
robbie zhangc16b1fd2015-09-11 14:25:15 -070071 .power = C1_POWER,
Lee Leahy1d14b3e2015-05-12 18:23:27 -070072 .resource = MWAIT_RES(0, 0),
Lee Leahyb0005132015-05-12 18:19:47 -070073 },
74 [C_STATE_C1E] = {
75 .latency = 0,
robbie zhangc16b1fd2015-09-11 14:25:15 -070076 .power = C1_POWER,
Lee Leahy1d14b3e2015-05-12 18:23:27 -070077 .resource = MWAIT_RES(0, 1),
Lee Leahyb0005132015-05-12 18:19:47 -070078 },
79 [C_STATE_C3] = {
80 .latency = C_STATE_LATENCY_FROM_LAT_REG(0),
robbie zhangc16b1fd2015-09-11 14:25:15 -070081 .power = C3_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -070082 .resource = MWAIT_RES(1, 0),
83 },
84 [C_STATE_C6_SHORT_LAT] = {
85 .latency = C_STATE_LATENCY_FROM_LAT_REG(1),
robbie zhangc16b1fd2015-09-11 14:25:15 -070086 .power = C6_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -070087 .resource = MWAIT_RES(2, 0),
88 },
89 [C_STATE_C6_LONG_LAT] = {
90 .latency = C_STATE_LATENCY_FROM_LAT_REG(2),
robbie zhangc16b1fd2015-09-11 14:25:15 -070091 .power = C6_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -070092 .resource = MWAIT_RES(2, 1),
93 },
94 [C_STATE_C7_SHORT_LAT] = {
95 .latency = C_STATE_LATENCY_FROM_LAT_REG(1),
robbie zhangc16b1fd2015-09-11 14:25:15 -070096 .power = C7_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -070097 .resource = MWAIT_RES(3, 0),
98 },
99 [C_STATE_C7_LONG_LAT] = {
100 .latency = C_STATE_LATENCY_FROM_LAT_REG(2),
robbie zhangc16b1fd2015-09-11 14:25:15 -0700101 .power = C7_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -0700102 .resource = MWAIT_RES(3, 1),
103 },
104 [C_STATE_C7S_SHORT_LAT] = {
105 .latency = C_STATE_LATENCY_FROM_LAT_REG(1),
robbie zhangc16b1fd2015-09-11 14:25:15 -0700106 .power = C7_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -0700107 .resource = MWAIT_RES(3, 2),
108 },
109 [C_STATE_C7S_LONG_LAT] = {
110 .latency = C_STATE_LATENCY_FROM_LAT_REG(2),
robbie zhangc16b1fd2015-09-11 14:25:15 -0700111 .power = C7_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -0700112 .resource = MWAIT_RES(3, 3),
113 },
114 [C_STATE_C8] = {
115 .latency = C_STATE_LATENCY_FROM_LAT_REG(3),
robbie zhangc16b1fd2015-09-11 14:25:15 -0700116 .power = C8_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -0700117 .resource = MWAIT_RES(4, 0),
118 },
119 [C_STATE_C9] = {
120 .latency = C_STATE_LATENCY_FROM_LAT_REG(4),
robbie zhangc16b1fd2015-09-11 14:25:15 -0700121 .power = C9_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -0700122 .resource = MWAIT_RES(5, 0),
123 },
124 [C_STATE_C10] = {
125 .latency = C_STATE_LATENCY_FROM_LAT_REG(5),
robbie zhangc16b1fd2015-09-11 14:25:15 -0700126 .power = C10_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -0700127 .resource = MWAIT_RES(6, 0),
128 },
129};
130
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700131static int cstate_set_s0ix[] = {
Lee Leahyb0005132015-05-12 18:19:47 -0700132 C_STATE_C1E,
133 C_STATE_C7S_LONG_LAT,
134 C_STATE_C10
135};
136
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700137static int cstate_set_non_s0ix[] = {
Lee Leahyb0005132015-05-12 18:19:47 -0700138 C_STATE_C1E,
139 C_STATE_C3,
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700140 C_STATE_C7S_LONG_LAT,
Lee Leahyb0005132015-05-12 18:19:47 -0700141};
142
143static int get_cores_per_package(void)
144{
145 struct cpuinfo_x86 c;
146 struct cpuid_result result;
147 int cores = 1;
148
149 get_fms(&c, cpuid_eax(1));
150 if (c.x86 != 6)
151 return 1;
152
153 result = cpuid_ext(0xb, 1);
154 cores = result.ebx & 0xff;
155
156 return cores;
157}
158
Duncan Lauriedb54a672015-09-04 14:19:35 -0700159static void acpi_create_gnvs(global_nvs_t *gnvs)
Lee Leahyb0005132015-05-12 18:19:47 -0700160{
Kyösti Mälkkid5f645c2019-09-28 00:20:27 +0300161 const struct soc_intel_skylake_config *config = config_of_soc();
Duncan Laurie7fce30c2015-09-04 13:53:14 -0700162
Lee Leahyb0005132015-05-12 18:19:47 -0700163 /* Set unknown wake source */
164 gnvs->pm1i = -1;
165
166 /* CPU core count */
167 gnvs->pcnt = dev_count_cpu();
168
Julius Wernercd49cce2019-03-05 16:53:33 -0800169#if CONFIG(CONSOLE_CBMEM)
Lee Leahyb0005132015-05-12 18:19:47 -0700170 /* Update the mem console pointer. */
171 gnvs->cbmc = (u32)cbmem_find(CBMEM_ID_CONSOLE);
172#endif
173
Julius Wernercd49cce2019-03-05 16:53:33 -0800174#if CONFIG(CHROMEOS)
Lee Leahyb0005132015-05-12 18:19:47 -0700175 /* Initialize Verified Boot data */
Joel Kitching6fbd8742018-08-23 14:56:25 +0800176 chromeos_init_chromeos_acpi(&(gnvs->chromeos));
Julius Wernercd49cce2019-03-05 16:53:33 -0800177#if CONFIG(EC_GOOGLE_CHROMEEC)
Lee Leahyb0005132015-05-12 18:19:47 -0700178 gnvs->chromeos.vbt2 = google_ec_running_ro() ?
179 ACTIVE_ECFW_RO : ACTIVE_ECFW_RW;
180#endif
181 gnvs->chromeos.vbt2 = ACTIVE_ECFW_RO;
182#endif
Duncan Laurie7fce30c2015-09-04 13:53:14 -0700183
184 /* Enable DPTF based on mainboard configuration */
185 gnvs->dpte = config->dptf_enable;
Duncan Laurie3d3b76b2016-02-25 08:45:43 -0800186
187 /* Fill in the Wifi Region id */
188 gnvs->cid1 = wifi_regulatory_domain();
Furquan Shaikh3bfe3402016-10-18 14:25:25 -0700189
190 /* Set USB2/USB3 wake enable bitmaps. */
191 gnvs->u2we = config->usb2_wake_enable_bitmap;
192 gnvs->u3we = config->usb3_wake_enable_bitmap;
Pratik Prajapati418535e2017-10-11 16:12:21 -0700193
Michael Niewöhner7736bfc2019-10-22 23:05:06 +0200194 if (CONFIG(SOC_INTEL_COMMON_BLOCK_SGX_ENABLE))
Pratik Prajapati418535e2017-10-11 16:12:21 -0700195 sgx_fill_gnvs(gnvs);
Subrata Banikb6df6b02020-01-03 15:29:02 +0530196
197 /* Fill in Above 4GB MMIO resource */
198 sa_fill_gnvs(gnvs);
Lee Leahyb0005132015-05-12 18:19:47 -0700199}
200
Lee Leahyb0005132015-05-12 18:19:47 -0700201unsigned long acpi_fill_mcfg(unsigned long current)
202{
203 current += acpi_create_mcfg_mmconfig((acpi_mcfg_mmconfig_t *)current,
Duncan Laurie50f06a12018-03-02 14:56:38 -0800204 CONFIG_MMCONF_BASE_ADDRESS, 0, 0,
Duncan Lauriefd50b7c2018-03-02 14:47:11 -0800205 (CONFIG_SA_PCIEX_LENGTH >> 20) - 1);
Lee Leahyb0005132015-05-12 18:19:47 -0700206 return current;
207}
208
Duncan Lauriedb54a672015-09-04 14:19:35 -0700209unsigned long acpi_fill_madt(unsigned long current)
210{
211 /* Local APICs */
212 current = acpi_create_madt_lapics(current);
213
214 /* IOAPIC */
215 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current,
216 2, IO_APIC_ADDR, 0);
217
218 return acpi_madt_irq_overrides(current);
219}
220
Duncan Laurie135c2c42016-10-17 19:47:51 -0700221void acpi_fill_fadt(acpi_fadt_t *fadt)
Lee Leahyb0005132015-05-12 18:19:47 -0700222{
223 const uint16_t pmbase = ACPI_BASE_ADDRESS;
Kyösti Mälkkid5f645c2019-09-28 00:20:27 +0300224 config_t *config = config_of_soc();
Lee Leahyb0005132015-05-12 18:19:47 -0700225
Werner Zeh00d250e2017-04-26 07:03:10 +0200226 /* Use ACPI 3.0 revision */
Marc Jonesf9ea7ed2018-08-22 18:59:26 -0600227 fadt->header.revision = get_acpi_table_revision(FADT);
Duncan Laurie135c2c42016-10-17 19:47:51 -0700228
Lee Leahyb0005132015-05-12 18:19:47 -0700229 fadt->sci_int = acpi_sci_irq();
230 fadt->smi_cmd = APM_CNT;
231 fadt->acpi_enable = APM_CNT_ACPI_ENABLE;
232 fadt->acpi_disable = APM_CNT_ACPI_DISABLE;
233 fadt->s4bios_req = 0x0;
234 fadt->pstate_cnt = 0;
235
236 fadt->pm1a_evt_blk = pmbase + PM1_STS;
237 fadt->pm1b_evt_blk = 0x0;
238 fadt->pm1a_cnt_blk = pmbase + PM1_CNT;
239 fadt->pm1b_cnt_blk = 0x0;
240 fadt->pm2_cnt_blk = pmbase + PM2_CNT;
Duncan Laurie662b6cb2018-01-30 09:58:07 -0800241 fadt->pm_tmr_blk = pmbase + PM1_TMR;
Lee Leahyb0005132015-05-12 18:19:47 -0700242 fadt->gpe0_blk = pmbase + GPE0_STS(0);
243 fadt->gpe1_blk = 0;
244
245 fadt->pm1_evt_len = 4;
246 fadt->pm1_cnt_len = 2;
247 fadt->pm2_cnt_len = 1;
Duncan Laurie662b6cb2018-01-30 09:58:07 -0800248 fadt->pm_tmr_len = 4;
Aaron Durbin71e0ac82015-08-07 23:00:22 -0500249 /* There are 4 GPE0 STS/EN pairs each 32 bits wide. */
250 fadt->gpe0_blk_len = 2 * GPE0_REG_MAX * sizeof(uint32_t);
Lee Leahyb0005132015-05-12 18:19:47 -0700251 fadt->gpe1_blk_len = 0;
252 fadt->gpe1_base = 0;
253 fadt->cst_cnt = 0;
254 fadt->p_lvl2_lat = 1;
255 fadt->p_lvl3_lat = 87;
256 fadt->flush_size = 1024;
257 fadt->flush_stride = 16;
258 fadt->duty_offset = 1;
259 fadt->duty_width = 0;
260 fadt->day_alrm = 0xd;
261 fadt->mon_alrm = 0x00;
262 fadt->century = 0x00;
Paul Menzel8ca2af12019-02-08 15:19:20 +0100263 fadt->iapc_boot_arch = ACPI_FADT_LEGACY_FREE;
Julius Wernercd49cce2019-03-05 16:53:33 -0800264 if (!CONFIG(NO_FADT_8042))
Jenny TC2864f852017-02-09 16:01:59 +0530265 fadt->iapc_boot_arch |= ACPI_FADT_8042;
Lee Leahyb0005132015-05-12 18:19:47 -0700266
267 fadt->flags = ACPI_FADT_WBINVD | ACPI_FADT_C1_SUPPORTED |
268 ACPI_FADT_C2_MP_SUPPORTED | ACPI_FADT_SLEEP_BUTTON |
269 ACPI_FADT_RESET_REGISTER | ACPI_FADT_SEALED_CASE |
270 ACPI_FADT_S4_RTC_WAKE | ACPI_FADT_PLATFORM_CLOCK;
271
Kyösti Mälkki28dc7dc2019-07-12 13:10:19 +0300272 if (config->s0ix_enable)
Haridhar Kalvala1cedc7e2018-06-07 10:52:31 +0530273 fadt->flags |= ACPI_FADT_LOW_PWR_IDLE_S0;
274
Lee Leahyb0005132015-05-12 18:19:47 -0700275 fadt->reset_reg.space_id = 1;
276 fadt->reset_reg.bit_width = 8;
277 fadt->reset_reg.bit_offset = 0;
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100278 fadt->reset_reg.access_size = 0;
Lee Leahyb0005132015-05-12 18:19:47 -0700279 fadt->reset_reg.addrl = 0xcf9;
280 fadt->reset_reg.addrh = 0;
281 fadt->reset_value = 6;
282
283 fadt->x_pm1a_evt_blk.space_id = 1;
284 fadt->x_pm1a_evt_blk.bit_width = fadt->pm1_evt_len * 8;
285 fadt->x_pm1a_evt_blk.bit_offset = 0;
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100286 fadt->x_pm1a_evt_blk.access_size = 0;
Lee Leahyb0005132015-05-12 18:19:47 -0700287 fadt->x_pm1a_evt_blk.addrl = pmbase + PM1_STS;
288 fadt->x_pm1a_evt_blk.addrh = 0x0;
289
290 fadt->x_pm1b_evt_blk.space_id = 1;
291 fadt->x_pm1b_evt_blk.bit_width = 0;
292 fadt->x_pm1b_evt_blk.bit_offset = 0;
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100293 fadt->x_pm1b_evt_blk.access_size = 0;
Lee Leahyb0005132015-05-12 18:19:47 -0700294 fadt->x_pm1b_evt_blk.addrl = 0x0;
295 fadt->x_pm1b_evt_blk.addrh = 0x0;
296
297 fadt->x_pm1a_cnt_blk.space_id = 1;
298 fadt->x_pm1a_cnt_blk.bit_width = fadt->pm1_cnt_len * 8;
299 fadt->x_pm1a_cnt_blk.bit_offset = 0;
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100300 fadt->x_pm1a_cnt_blk.access_size = 0;
Lee Leahyb0005132015-05-12 18:19:47 -0700301 fadt->x_pm1a_cnt_blk.addrl = pmbase + PM1_CNT;
302 fadt->x_pm1a_cnt_blk.addrh = 0x0;
303
304 fadt->x_pm1b_cnt_blk.space_id = 1;
305 fadt->x_pm1b_cnt_blk.bit_width = 0;
306 fadt->x_pm1b_cnt_blk.bit_offset = 0;
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100307 fadt->x_pm1b_cnt_blk.access_size = 0;
Lee Leahyb0005132015-05-12 18:19:47 -0700308 fadt->x_pm1b_cnt_blk.addrl = 0x0;
309 fadt->x_pm1b_cnt_blk.addrh = 0x0;
310
311 fadt->x_pm2_cnt_blk.space_id = 1;
312 fadt->x_pm2_cnt_blk.bit_width = fadt->pm2_cnt_len * 8;
313 fadt->x_pm2_cnt_blk.bit_offset = 0;
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100314 fadt->x_pm2_cnt_blk.access_size = 0;
Lee Leahyb0005132015-05-12 18:19:47 -0700315 fadt->x_pm2_cnt_blk.addrl = pmbase + PM2_CNT;
316 fadt->x_pm2_cnt_blk.addrh = 0x0;
317
Duncan Laurie662b6cb2018-01-30 09:58:07 -0800318 fadt->x_pm_tmr_blk.space_id = 1;
319 fadt->x_pm_tmr_blk.bit_width = fadt->pm_tmr_len * 8;
320 fadt->x_pm_tmr_blk.bit_offset = 0;
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100321 fadt->x_pm_tmr_blk.access_size = 0;
Duncan Laurie662b6cb2018-01-30 09:58:07 -0800322 fadt->x_pm_tmr_blk.addrl = pmbase + PM1_TMR;
323 fadt->x_pm_tmr_blk.addrh = 0x0;
Lee Leahyb0005132015-05-12 18:19:47 -0700324
325 fadt->x_gpe0_blk.space_id = 0;
326 fadt->x_gpe0_blk.bit_width = 0;
327 fadt->x_gpe0_blk.bit_offset = 0;
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100328 fadt->x_gpe0_blk.access_size = 0;
Lee Leahyb0005132015-05-12 18:19:47 -0700329 fadt->x_gpe0_blk.addrl = 0;
330 fadt->x_gpe0_blk.addrh = 0;
331
332 fadt->x_gpe1_blk.space_id = 1;
333 fadt->x_gpe1_blk.bit_width = 0;
334 fadt->x_gpe1_blk.bit_offset = 0;
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100335 fadt->x_gpe1_blk.access_size = 0;
Lee Leahyb0005132015-05-12 18:19:47 -0700336 fadt->x_gpe1_blk.addrl = 0x0;
337 fadt->x_gpe1_blk.addrh = 0x0;
338}
339
Jacob Garber9172b692019-06-26 16:18:16 -0600340static void write_c_state_entries(acpi_cstate_t *map, const int *set, size_t max_c_state)
Lee Leahyb0005132015-05-12 18:19:47 -0700341{
Jacob Garber9172b692019-06-26 16:18:16 -0600342 for (size_t i = 0; i < max_c_state; i++) {
Lee Leahyb0005132015-05-12 18:19:47 -0700343 memcpy(&map[i], &cstate_map[set[i]], sizeof(acpi_cstate_t));
344 map[i].ctype = i + 1;
345 }
346
347 /* Generate C-state tables */
Jacob Garber9172b692019-06-26 16:18:16 -0600348 acpigen_write_CST_package(map, max_c_state);
349}
350
351static void generate_c_state_entries(int s0ix_enable)
352{
353 if (s0ix_enable) {
354 acpi_cstate_t map[ARRAY_SIZE(cstate_set_s0ix)];
355 write_c_state_entries(map, cstate_set_s0ix, ARRAY_SIZE(map));
356 } else {
357 acpi_cstate_t map[ARRAY_SIZE(cstate_set_non_s0ix)];
358 write_c_state_entries(map, cstate_set_non_s0ix, ARRAY_SIZE(map));
359 }
Lee Leahyb0005132015-05-12 18:19:47 -0700360}
361
362static int calculate_power(int tdp, int p1_ratio, int ratio)
363{
364 u32 m;
365 u32 power;
366
367 /*
368 * M = ((1.1 - ((p1_ratio - ratio) * 0.00625)) / 1.1) ^ 2
369 *
370 * Power = (ratio / p1_ratio) * m * tdp
371 */
372
373 m = (110000 - ((p1_ratio - ratio) * 625)) / 11;
374 m = (m * m) / 1000;
375
376 power = ((ratio * 100000 / p1_ratio) / 100);
377 power *= (m / 100) * (tdp / 1000);
378 power /= 1000;
379
380 return (int)power;
381}
382
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700383static void generate_p_state_entries(int core, int cores_per_package)
Lee Leahyb0005132015-05-12 18:19:47 -0700384{
385 int ratio_min, ratio_max, ratio_turbo, ratio_step;
386 int coord_type, power_max, power_unit, num_entries;
387 int ratio, power, clock, clock_max;
388 msr_t msr;
389
390 /* Determine P-state coordination type from MISC_PWR_MGMT[0] */
391 msr = rdmsr(MSR_MISC_PWR_MGMT);
392 if (msr.lo & MISC_PWR_MGMT_EIST_HW_DIS)
393 coord_type = SW_ANY;
394 else
395 coord_type = HW_ALL;
396
397 /* Get bus ratio limits and calculate clock speeds */
398 msr = rdmsr(MSR_PLATFORM_INFO);
399 ratio_min = (msr.hi >> (40-32)) & 0xff; /* Max Efficiency Ratio */
400
401 /* Determine if this CPU has configurable TDP */
402 if (cpu_config_tdp_levels()) {
403 /* Set max ratio to nominal TDP ratio */
404 msr = rdmsr(MSR_CONFIG_TDP_NOMINAL);
405 ratio_max = msr.lo & 0xff;
406 } else {
407 /* Max Non-Turbo Ratio */
408 ratio_max = (msr.lo >> 8) & 0xff;
409 }
Aamir Bohra1041d392017-06-02 11:56:14 +0530410 clock_max = ratio_max * CONFIG_CPU_BCLK_MHZ;
Lee Leahyb0005132015-05-12 18:19:47 -0700411
412 /* Calculate CPU TDP in mW */
413 msr = rdmsr(MSR_PKG_POWER_SKU_UNIT);
414 power_unit = 2 << ((msr.lo & 0xf) - 1);
415 msr = rdmsr(MSR_PKG_POWER_SKU);
416 power_max = ((msr.lo & 0x7fff) / power_unit) * 1000;
417
418 /* Write _PCT indicating use of FFixedHW */
419 acpigen_write_empty_PCT();
420
421 /* Write _PPC with no limit on supported P-state */
422 acpigen_write_PPC_NVS();
423
424 /* Write PSD indicating configured coordination type */
425 acpigen_write_PSD_package(core, 1, coord_type);
426
427 /* Add P-state entries in _PSS table */
428 acpigen_write_name("_PSS");
429
430 /* Determine ratio points */
431 ratio_step = PSS_RATIO_STEP;
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700432 num_entries = ((ratio_max - ratio_min) / ratio_step) + 1;
433 if (num_entries > PSS_MAX_ENTRIES) {
434 ratio_step += 1;
435 num_entries = ((ratio_max - ratio_min) / ratio_step) + 1;
Lee Leahyb0005132015-05-12 18:19:47 -0700436 }
437
438 /* P[T] is Turbo state if enabled */
439 if (get_turbo_state() == TURBO_ENABLED) {
440 /* _PSS package count including Turbo */
441 acpigen_write_package(num_entries + 2);
442
443 msr = rdmsr(MSR_TURBO_RATIO_LIMIT);
444 ratio_turbo = msr.lo & 0xff;
445
446 /* Add entry for Turbo ratio */
447 acpigen_write_PSS_package(
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700448 clock_max + 1, /* MHz */
449 power_max, /* mW */
450 PSS_LATENCY_TRANSITION, /* lat1 */
451 PSS_LATENCY_BUSMASTER, /* lat2 */
452 ratio_turbo << 8, /* control */
453 ratio_turbo << 8); /* status */
Lee Leahyb0005132015-05-12 18:19:47 -0700454 } else {
455 /* _PSS package count without Turbo */
456 acpigen_write_package(num_entries + 1);
457 }
458
459 /* First regular entry is max non-turbo ratio */
460 acpigen_write_PSS_package(
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700461 clock_max, /* MHz */
462 power_max, /* mW */
463 PSS_LATENCY_TRANSITION, /* lat1 */
464 PSS_LATENCY_BUSMASTER, /* lat2 */
465 ratio_max << 8, /* control */
466 ratio_max << 8); /* status */
Lee Leahyb0005132015-05-12 18:19:47 -0700467
468 /* Generate the remaining entries */
469 for (ratio = ratio_min + ((num_entries - 1) * ratio_step);
470 ratio >= ratio_min; ratio -= ratio_step) {
471
472 /* Calculate power at this ratio */
473 power = calculate_power(power_max, ratio_max, ratio);
Aamir Bohra1041d392017-06-02 11:56:14 +0530474 clock = ratio * CONFIG_CPU_BCLK_MHZ;
Lee Leahyb0005132015-05-12 18:19:47 -0700475
476 acpigen_write_PSS_package(
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700477 clock, /* MHz */
478 power, /* mW */
479 PSS_LATENCY_TRANSITION, /* lat1 */
480 PSS_LATENCY_BUSMASTER, /* lat2 */
481 ratio << 8, /* control */
482 ratio << 8); /* status */
Lee Leahyb0005132015-05-12 18:19:47 -0700483 }
484
485 /* Fix package length */
486 acpigen_pop_len();
487}
488
Elyes HAOUAS143fb462018-05-25 12:56:45 +0200489void generate_cpu_entries(struct device *device)
Lee Leahyb0005132015-05-12 18:19:47 -0700490{
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700491 int core_id, cpu_id, pcontrol_blk = ACPI_BASE_ADDRESS, plen = 6;
Lee Leahyb0005132015-05-12 18:19:47 -0700492 int totalcores = dev_count_cpu();
493 int cores_per_package = get_cores_per_package();
494 int numcpus = totalcores/cores_per_package;
Kyösti Mälkkid5f645c2019-09-28 00:20:27 +0300495 config_t *config = config_of_soc();
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700496 int is_s0ix_enable = config->s0ix_enable;
Lee Leahyb0005132015-05-12 18:19:47 -0700497
498 printk(BIOS_DEBUG, "Found %d CPU(s) with %d core(s) each.\n",
499 numcpus, cores_per_package);
500
Kyösti Mälkki28dc7dc2019-07-12 13:10:19 +0300501 if (config->eist_enable && config->speed_shift_enable) {
Matt Delco9084c3c2018-07-27 14:17:29 -0700502 struct cppc_config cppc_config;
503 cpu_init_cppc_config(&cppc_config, 2 /* version 2 */);
504 acpigen_write_CPPC_package(&cppc_config);
505 }
506
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700507 for (cpu_id = 0; cpu_id < numcpus; cpu_id++) {
508 for (core_id = 0; core_id < cores_per_package; core_id++) {
509 if (core_id > 0) {
Lee Leahyb0005132015-05-12 18:19:47 -0700510 pcontrol_blk = 0;
511 plen = 0;
512 }
513
Christian Walterbe3979c2019-12-18 15:07:59 +0100514 /* Generate processor \_SB.CPUx */
Lee Leahyb0005132015-05-12 18:19:47 -0700515 acpigen_write_processor(
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700516 cpu_id*cores_per_package+core_id,
Lee Leahyb0005132015-05-12 18:19:47 -0700517 pcontrol_blk, plen);
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700518 /* Generate C-state tables */
Jacob Garber9172b692019-06-26 16:18:16 -0600519 generate_c_state_entries(is_s0ix_enable);
Lee Leahyb0005132015-05-12 18:19:47 -0700520
Matt Delco9084c3c2018-07-27 14:17:29 -0700521 if (config->eist_enable) {
Subrata Banik6b45ee42017-05-12 11:43:57 +0530522 /* Generate P-state tables */
523 generate_p_state_entries(core_id,
524 cores_per_package);
Matt Delco9084c3c2018-07-27 14:17:29 -0700525 if (config->speed_shift_enable)
526 acpigen_write_CPPC_method();
527 }
Lee Leahyb0005132015-05-12 18:19:47 -0700528 acpigen_pop_len();
529 }
530 }
Arthur Heymans8afc1352018-11-28 12:07:19 +0100531
532 /* PPKG is usually used for thermal management
533 of the first and only package. */
534 acpigen_write_processor_package("PPKG", 0, cores_per_package);
535
536 /* Add a method to notify processor nodes */
537 acpigen_write_processor_cnot(cores_per_package);
Lee Leahyb0005132015-05-12 18:19:47 -0700538}
539
Nico Huberc37b0e32017-09-18 20:03:46 +0200540static unsigned long acpi_fill_dmar(unsigned long current)
541{
Kyösti Mälkki903b40a2019-07-03 07:25:59 +0300542 struct device *const igfx_dev = pcidev_path_on_root(SA_DEVFN_IGD);
Nico Huberc37b0e32017-09-18 20:03:46 +0200543 const u32 gfx_vtbar = MCHBAR32(GFXVTBAR) & ~0xfff;
544 const bool gfxvten = MCHBAR32(GFXVTBAR) & 1;
545
546 /* iGFX has to be enabled, GFXVTBAR set and in 32-bit space. */
547 if (igfx_dev && igfx_dev->enabled && gfxvten &&
548 gfx_vtbar && !MCHBAR32(GFXVTBAR + 4)) {
Matt DeVilliercbe73ea2018-06-25 14:40:53 -0500549 unsigned long tmp = current;
Nico Huberc37b0e32017-09-18 20:03:46 +0200550
551 current += acpi_create_dmar_drhd(current, 0, 0, gfx_vtbar);
Matt DeVillier7866d492018-03-29 14:59:57 +0200552 current += acpi_create_dmar_ds_pci(current, 0, 2, 0);
Nico Huberc37b0e32017-09-18 20:03:46 +0200553
554 acpi_dmar_drhd_fixup(tmp, current);
Matt DeVilliercbe73ea2018-06-25 14:40:53 -0500555
556 /* Add RMRR entry */
557 tmp = current;
558
559 current += acpi_create_dmar_rmrr(current, 0,
560 sa_get_gsm_base(), sa_get_tolud_base() - 1);
561 current += acpi_create_dmar_ds_pci(current, 0, 2, 0);
562 acpi_dmar_rmrr_fixup(tmp, current);
Nico Huberc37b0e32017-09-18 20:03:46 +0200563 }
564
Nico Huberc37b0e32017-09-18 20:03:46 +0200565 const u32 vtvc0bar = MCHBAR32(VTVC0BAR) & ~0xfff;
566 const bool vtvc0en = MCHBAR32(VTVC0BAR) & 1;
567
568 /* General VTBAR has to be set and in 32-bit space. */
Angel Ponsef879a82019-08-30 19:42:23 +0200569 if (vtvc0bar && vtvc0en && !MCHBAR32(VTVC0BAR + 4)) {
Nico Huberc37b0e32017-09-18 20:03:46 +0200570 const unsigned long tmp = current;
571
Angel Ponsef879a82019-08-30 19:42:23 +0200572 current += acpi_create_dmar_drhd(current, DRHD_INCLUDE_PCI_ALL, 0, vtvc0bar);
Nico Huberc37b0e32017-09-18 20:03:46 +0200573
Angel Ponsef879a82019-08-30 19:42:23 +0200574 current += acpi_create_dmar_ds_ioapic(current, 2, V_P2SB_IBDF_BUS,
575 V_P2SB_IBDF_DEV, V_P2SB_IBDF_FUN);
Nico Huberc37b0e32017-09-18 20:03:46 +0200576
Angel Ponsef879a82019-08-30 19:42:23 +0200577 current += acpi_create_dmar_ds_msi_hpet(current, 0, V_P2SB_HBDF_BUS,
578 V_P2SB_HBDF_DEV, V_P2SB_HBDF_FUN);
Nico Huberc37b0e32017-09-18 20:03:46 +0200579
580 acpi_dmar_drhd_fixup(tmp, current);
581 }
582
583 return current;
584}
585
586unsigned long northbridge_write_acpi_tables(struct device *const dev,
587 unsigned long current,
588 struct acpi_rsdp *const rsdp)
589{
Kyösti Mälkki28dc7dc2019-07-12 13:10:19 +0300590 const struct soc_intel_skylake_config *const config = config_of(dev);
Nico Huberc37b0e32017-09-18 20:03:46 +0200591 acpi_dmar_t *const dmar = (acpi_dmar_t *)current;
592
593 /* Create DMAR table only if we have VT-d capability. */
Kyösti Mälkki28dc7dc2019-07-12 13:10:19 +0300594 if (config->ignore_vtd || !soc_is_vtd_capable())
Nico Huberc37b0e32017-09-18 20:03:46 +0200595 return current;
596
597 printk(BIOS_DEBUG, "ACPI: * DMAR\n");
598 acpi_create_dmar(dmar, DMAR_INTR_REMAP, acpi_fill_dmar);
599 current += dmar->header.length;
600 current = acpi_align_current(current);
601 acpi_add_table(rsdp, dmar);
602
603 return current;
604}
605
Lee Leahyb0005132015-05-12 18:19:47 -0700606unsigned long acpi_madt_irq_overrides(unsigned long current)
607{
608 int sci = acpi_sci_irq();
609 acpi_madt_irqoverride_t *irqovr;
610 uint16_t flags = MP_IRQ_TRIGGER_LEVEL;
611
612 /* INT_SRC_OVR */
613 irqovr = (void *)current;
614 current += acpi_create_madt_irqoverride(irqovr, 0, 0, 2, 0);
615
616 if (sci >= 20)
617 flags |= MP_IRQ_POLARITY_LOW;
618 else
619 flags |= MP_IRQ_POLARITY_HIGH;
620
621 /* SCI */
622 irqovr = (void *)current;
623 current += acpi_create_madt_irqoverride(irqovr, 0, sci, sci, flags);
624
625 return current;
626}
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700627
Elyes HAOUAS143fb462018-05-25 12:56:45 +0200628unsigned long southbridge_write_acpi_tables(struct device *device,
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700629 unsigned long current,
630 struct acpi_rsdp *rsdp)
631{
Duncan Laurie93bbd412017-11-11 20:03:29 -0800632 current = acpi_write_dbg2_pci_uart(rsdp, current,
Subrata Banikafa07f72018-05-24 12:21:06 +0530633 uart_get_device(),
Duncan Laurie93bbd412017-11-11 20:03:29 -0800634 ACPI_ACCESS_SIZE_DWORD_ACCESS);
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700635 current = acpi_write_hpet(device, current, rsdp);
Aaron Durbin07a1b282015-12-10 17:07:38 -0600636 return acpi_align_current(current);
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700637}
638
Elyes HAOUAS143fb462018-05-25 12:56:45 +0200639void southbridge_inject_dsdt(struct device *device)
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700640{
641 global_nvs_t *gnvs;
642
643 gnvs = cbmem_find(CBMEM_ID_ACPI_GNVS);
644 if (!gnvs) {
Lee Leahyf4c4ab92017-03-16 17:08:03 -0700645 gnvs = cbmem_add(CBMEM_ID_ACPI_GNVS, sizeof(*gnvs));
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700646 if (gnvs)
647 memset(gnvs, 0, sizeof(*gnvs));
648 }
649
650 if (gnvs) {
651 acpi_create_gnvs(gnvs);
Duncan Lauriedb54a672015-09-04 14:19:35 -0700652 acpi_mainboard_gnvs(gnvs);
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700653 /* And tell SMI about it */
654 smm_setup_structures(gnvs, NULL, NULL);
655
656 /* Add it to DSDT. */
657 acpigen_write_scope("\\");
658 acpigen_write_name_dword("NVSA", (u32) gnvs);
659 acpigen_pop_len();
660 }
661}
662
Duncan Lauriea1c8b34d2015-09-08 16:12:44 -0700663/* Save wake source information for calculating ACPI _SWS values */
664int soc_fill_acpi_wake(uint32_t *pm1, uint32_t **gpe0)
665{
Kyösti Mälkkid5f645c2019-09-28 00:20:27 +0300666 const struct soc_intel_skylake_config *config = config_of_soc();
Naresh G Solankia1b35472015-12-11 18:13:02 +0530667 struct chipset_power_state *ps;
Duncan Lauriea1c8b34d2015-09-08 16:12:44 -0700668 static uint32_t gpe0_sts[GPE0_REG_MAX];
669 uint32_t pm1_en;
Duncan Laurie95f90202016-10-25 20:07:22 -0700670 uint32_t gpe0_std;
Duncan Lauriea1c8b34d2015-09-08 16:12:44 -0700671 int i;
Aaron Durbin64606ce2016-10-27 09:53:17 -0500672 const int last_index = GPE0_REG_MAX - 1;
Duncan Lauriea1c8b34d2015-09-08 16:12:44 -0700673
Naresh G Solankia1b35472015-12-11 18:13:02 +0530674 ps = cbmem_find(CBMEM_ID_POWER_STATE);
675 if (ps == NULL)
676 return -1;
677
Duncan Laurie95f90202016-10-25 20:07:22 -0700678 pm1_en = ps->pm1_en;
679 gpe0_std = ps->gpe0_en[3];
680
681 /*
682 * Chipset state in the suspend well (but not RTC) is lost in Deep S3
683 * so enable Deep S3 wake events that are configured by the mainboard
684 */
Duncan Laurie1fe32d62017-04-10 21:02:13 -0700685 if (ps->prev_sleep_state == ACPI_S3 &&
686 (config->deep_s3_enable_ac || config->deep_s3_enable_dc)) {
Duncan Laurie95f90202016-10-25 20:07:22 -0700687 pm1_en |= PWRBTN_STS; /* Always enabled as wake source */
688 if (config->deep_sx_config & DSX_EN_LAN_WAKE_PIN)
689 gpe0_std |= LAN_WAK_EN;
690 if (config->deep_sx_config & DSX_EN_WAKE_PIN)
691 pm1_en |= PCIEXPWAK_STS;
692 }
693
Duncan Lauriea1c8b34d2015-09-08 16:12:44 -0700694 *pm1 = ps->pm1_sts & pm1_en;
695
696 /* Mask off GPE0 status bits that are not enabled */
697 *gpe0 = &gpe0_sts[0];
Aaron Durbin64606ce2016-10-27 09:53:17 -0500698 for (i = 0; i < last_index; i++)
Duncan Lauriea1c8b34d2015-09-08 16:12:44 -0700699 gpe0_sts[i] = ps->gpe0_sts[i] & ps->gpe0_en[i];
Aaron Durbin64606ce2016-10-27 09:53:17 -0500700 gpe0_sts[last_index] = ps->gpe0_sts[last_index] & gpe0_std;
Duncan Lauriea1c8b34d2015-09-08 16:12:44 -0700701
702 return GPE0_REG_MAX;
703}
704
Aaron Durbin64031672018-04-21 14:45:32 -0600705__weak void acpi_mainboard_gnvs(global_nvs_t *gnvs)
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700706{
707}
Naresh G Solankia2d40622016-08-30 20:47:13 +0530708
Aaron Durbinaa090cb2017-09-13 16:01:52 -0600709const char *soc_acpi_name(const struct device *dev)
Naresh G Solankia2d40622016-08-30 20:47:13 +0530710{
711 if (dev->path.type == DEVICE_PATH_DOMAIN)
712 return "PCI0";
713
Duncan Lauriebf713b02018-05-07 15:33:18 -0700714 if (dev->path.type == DEVICE_PATH_USB) {
715 switch (dev->path.usb.port_type) {
716 case 0:
717 /* Root Hub */
718 return "RHUB";
719 case 2:
720 /* USB2 ports */
721 switch (dev->path.usb.port_id) {
722 case 0: return "HS01";
723 case 1: return "HS02";
724 case 2: return "HS03";
725 case 3: return "HS04";
726 case 4: return "HS05";
727 case 5: return "HS06";
728 case 6: return "HS07";
729 case 7: return "HS08";
730 case 8: return "HS09";
731 case 9: return "HS10";
732 }
733 break;
734 case 3:
735 /* USB3 ports */
736 switch (dev->path.usb.port_id) {
737 case 0: return "SS01";
738 case 1: return "SS02";
739 case 2: return "SS03";
740 case 3: return "SS04";
741 case 4: return "SS05";
742 case 5: return "SS06";
743 }
744 break;
745 }
746 return NULL;
747 }
748
Naresh G Solankia2d40622016-08-30 20:47:13 +0530749 if (dev->path.type != DEVICE_PATH_PCI)
750 return NULL;
751
Patrick Rudolph45ffee82019-09-26 14:45:29 +0200752 /* Only match devices on the root bus */
753 if (dev->bus && dev->bus->secondary > 0)
754 return NULL;
755
Naresh G Solankia2d40622016-08-30 20:47:13 +0530756 switch (dev->path.pci.devfn) {
757 case SA_DEVFN_ROOT: return "MCHC";
758 case SA_DEVFN_IGD: return "GFX0";
759 case PCH_DEVFN_ISH: return "ISHB";
760 case PCH_DEVFN_XHCI: return "XHCI";
761 case PCH_DEVFN_USBOTG: return "XDCI";
762 case PCH_DEVFN_THERMAL: return "THRM";
763 case PCH_DEVFN_CIO: return "ICIO";
764 case PCH_DEVFN_I2C0: return "I2C0";
765 case PCH_DEVFN_I2C1: return "I2C1";
766 case PCH_DEVFN_I2C2: return "I2C2";
767 case PCH_DEVFN_I2C3: return "I2C3";
Subrata Banik2ee54db2017-03-05 12:37:00 +0530768 case PCH_DEVFN_CSE: return "CSE1";
769 case PCH_DEVFN_CSE_2: return "CSE2";
770 case PCH_DEVFN_CSE_IDER: return "CSED";
771 case PCH_DEVFN_CSE_KT: return "CSKT";
772 case PCH_DEVFN_CSE_3: return "CSE3";
Naresh G Solankia2d40622016-08-30 20:47:13 +0530773 case PCH_DEVFN_SATA: return "SATA";
774 case PCH_DEVFN_UART2: return "UAR2";
775 case PCH_DEVFN_I2C4: return "I2C4";
776 case PCH_DEVFN_I2C5: return "I2C5";
777 case PCH_DEVFN_PCIE1: return "RP01";
778 case PCH_DEVFN_PCIE2: return "RP02";
779 case PCH_DEVFN_PCIE3: return "RP03";
780 case PCH_DEVFN_PCIE4: return "RP04";
781 case PCH_DEVFN_PCIE5: return "RP05";
782 case PCH_DEVFN_PCIE6: return "RP06";
783 case PCH_DEVFN_PCIE7: return "RP07";
784 case PCH_DEVFN_PCIE8: return "RP08";
785 case PCH_DEVFN_PCIE9: return "RP09";
786 case PCH_DEVFN_PCIE10: return "RP10";
787 case PCH_DEVFN_PCIE11: return "RP11";
788 case PCH_DEVFN_PCIE12: return "RP12";
Maxim Polyakovc6f2b612019-08-23 15:22:21 +0300789 case PCH_DEVFN_PCIE13: return "RP13";
790 case PCH_DEVFN_PCIE14: return "RP14";
791 case PCH_DEVFN_PCIE15: return "RP15";
792 case PCH_DEVFN_PCIE16: return "RP16";
Naresh G Solankia2d40622016-08-30 20:47:13 +0530793 case PCH_DEVFN_UART0: return "UAR0";
794 case PCH_DEVFN_UART1: return "UAR1";
795 case PCH_DEVFN_GSPI0: return "SPI0";
796 case PCH_DEVFN_GSPI1: return "SPI1";
797 case PCH_DEVFN_EMMC: return "EMMC";
798 case PCH_DEVFN_SDIO: return "SDIO";
799 case PCH_DEVFN_SDCARD: return "SDXC";
800 case PCH_DEVFN_LPC: return "LPCB";
801 case PCH_DEVFN_P2SB: return "P2SB";
802 case PCH_DEVFN_PMC: return "PMC_";
803 case PCH_DEVFN_HDA: return "HDAS";
804 case PCH_DEVFN_SMBUS: return "SBUS";
805 case PCH_DEVFN_SPI: return "FSPI";
806 case PCH_DEVFN_GBE: return "IGBE";
807 case PCH_DEVFN_TRACEHUB:return "THUB";
808 }
809
810 return NULL;
811}
Furquan Shaikha6f0b272017-05-23 11:53:47 -0700812
813static int acpigen_soc_gpio_op(const char *op, unsigned int gpio_num)
814{
815 /* op (gpio_num) */
816 acpigen_emit_namestring(op);
817 acpigen_write_integer(gpio_num);
818 return 0;
819}
820
821static int acpigen_soc_get_gpio_state(const char *op, unsigned int gpio_num)
822{
823 /* Store (op (gpio_num), Local0) */
824 acpigen_write_store();
825 acpigen_soc_gpio_op(op, gpio_num);
826 acpigen_emit_byte(LOCAL0_OP);
827 return 0;
828}
829
830int acpigen_soc_read_rx_gpio(unsigned int gpio_num)
831{
832 return acpigen_soc_get_gpio_state("\\_SB.PCI0.GRXS", gpio_num);
833}
834
835int acpigen_soc_get_tx_gpio(unsigned int gpio_num)
836{
837 return acpigen_soc_get_gpio_state("\\_SB.PCI0.GTXS", gpio_num);
838}
839
840int acpigen_soc_set_tx_gpio(unsigned int gpio_num)
841{
842 return acpigen_soc_gpio_op("\\_SB.PCI0.STXS", gpio_num);
843}
844
845int acpigen_soc_clear_tx_gpio(unsigned int gpio_num)
846{
847 return acpigen_soc_gpio_op("\\_SB.PCI0.CTXS", gpio_num);
848}