blob: 43ba2551e286b93458add55d320e6e5c5371c327 [file] [log] [blame]
Duncan Laurie9db8c252020-05-10 11:16:45 -07001fw_config
Nick Vaccaro2cc06002020-06-18 12:19:08 -07002 field DB_USB 0 3
3 option USB_ABSENT 0
4 option USB4_GEN2 1
5 option USB3_ACTIVE 2
6 option USB4_GEN3 3
7 option USB3_PASSIVE 4
8 option USB3_NO_A 5
Duncan Laurie9db8c252020-05-10 11:16:45 -07009 end
10 field THERMAL 4 7 end
11 field AUDIO 8 10
12 option NONE 0
13 option MAX98357_ALC5682I_I2S 1
14 option MAX98373_ALC5682I_I2S 2
15 option MAX98373_ALC5682_SNDW 3
Frank Wu362bcee2020-08-19 09:56:43 +080016 option MAX98373_ALC5682I_I2S_UP4 4
Duncan Laurie9db8c252020-05-10 11:16:45 -070017 end
18 field TABLETMODE 11
Nick Vaccaro2cc06002020-06-18 12:19:08 -070019 option TABLETMODE_DISABLED 0
20 option TABLETMODE_ENABLED 1
Duncan Laurie9db8c252020-05-10 11:16:45 -070021 end
Nick Vaccaro2cc06002020-06-18 12:19:08 -070022 field DB_LTE 12 13
23 option LTE_ABSENT 0
24 option LTE_PRESENT 1
25 end
Duncan Laurie14efbb42020-09-08 20:35:06 +000026 field KB_BL 14
27 option KB_BL_ABSENT 0
28 option KB_BL_PRESENT 1
29 end
30 field NUMPAD 15
31 option NUMPAD_ABSENT 0
32 option NUMPAD_PRESENT 1
33 end
Nick Vaccaro2cc06002020-06-18 12:19:08 -070034 field DB_SD 16 19
35 option SD_ABSENT 0
36 option SD_GL9755S 1
37 option SD_RTS5261 2
Duncan Laurie9db8c252020-05-10 11:16:45 -070038 end
39end
40
Nick Vaccarof9781912020-01-28 18:43:28 -080041chip soc/intel/tigerlake
42
43 device cpu_cluster 0 on
44 device lapic 0 on end
45 end
46
47 # GPE configuration
48 # Note that GPE events called out in ASL code rely on this
49 # route. i.e. If this route changes then the affected GPE
50 # offset bits also need to be changed.
51 register "pmc_gpe0_dw0" = "GPP_C"
52 register "pmc_gpe0_dw1" = "GPP_D"
53 register "pmc_gpe0_dw2" = "GPP_E"
54
Jamie Ryu154625b2020-06-12 02:59:26 -070055 # Enable heci communication
56 register "HeciEnabled" = "1"
57
Nick Vaccarof9781912020-01-28 18:43:28 -080058 # FSP configuration
Shreesh Chhabbi37086872020-06-17 12:40:42 -070059 register "SaGv" = "SaGv_Enabled"
Nick Vaccarof9781912020-01-28 18:43:28 -080060 register "SmbusEnable" = "0"
61
62 register "usb2_ports[0]" = "USB2_PORT_MID(OC_SKIP)" # Type-A Port A0
63 register "usb2_ports[1]" = "USB2_PORT_MID(OC_SKIP)" # Type-A Port A1
64 register "usb2_ports[2]" = "USB2_PORT_MID(OC_SKIP)" # M.2 WWAN
65 register "usb2_ports[3]" = "USB2_PORT_MID(OC_SKIP)" # Type-A / Type-C Cl
66 register "usb2_ports[4]" = "USB2_PORT_MID(OC_SKIP)" # M.2 Camera
Nick Vaccarof9781912020-01-28 18:43:28 -080067 register "usb2_ports[8]" = "USB2_PORT_MID(OC_SKIP)" # Type-A / Type-C Co
68 register "usb2_ports[9]" = "USB2_PORT_MID(OC_SKIP)" # M.2 Bluetooth
69
70 register "usb3_ports[0]" = "USB3_PORT_DEFAULT(OC1)" # USB3/2 Type A port A0
71 register "usb3_ports[1]" = "USB3_PORT_DEFAULT(OC2)" # USB3/2 Type A port A1
72 register "usb3_ports[2]" = "USB3_PORT_DEFAULT(OC_SKIP)" # M.2 WWAN
73 register "usb3_ports[3]" = "USB3_PORT_DEFAULT(OC_SKIP)" # M.2 Camera
74
Nick Vaccarof9781912020-01-28 18:43:28 -080075 # EC host command ranges are in 0x800-0x8ff & 0x200-0x20f
76 register "gen1_dec" = "0x00fc0801"
77 register "gen2_dec" = "0x000c0201"
78 # EC memory map range is 0x900-0x9ff
79 register "gen3_dec" = "0x00fc0901"
80
81 # Enable NVMe PCIE 9 using clk 0
82 register "PcieRpEnable[8]" = "1"
Wonkyu Kime3bf8ba2020-04-07 23:34:12 -070083 register "PcieRpLtrEnable[8]" = "1"
Nick Vaccarof9781912020-01-28 18:43:28 -080084 register "PcieClkSrcUsage[0]" = "8"
85 register "PcieClkSrcClkReq[0]" = "0"
86
Venkata Krishna Nimmagaddac34bb382020-01-15 10:13:26 -080087 # Enable Optane PCIE 11 using clk 0
88 register "PcieRpEnable[10]" = "1"
Wonkyu Kime3bf8ba2020-04-07 23:34:12 -070089 register "PcieRpLtrEnable[10]" = "1"
Venkata Krishna Nimmagaddac34bb382020-01-15 10:13:26 -080090 register "HybridStorageMode" = "1"
91
Nick Vaccarof9781912020-01-28 18:43:28 -080092 # Enable SD Card PCIE 8 using clk 3
93 register "PcieRpEnable[7]" = "1"
Wonkyu Kime3bf8ba2020-04-07 23:34:12 -070094 register "PcieRpLtrEnable[7]" = "1"
nick_xr_chenf446b812020-06-30 09:34:33 +080095 register "PcieRpHotPlug[7]" = "1"
Nick Vaccarof9781912020-01-28 18:43:28 -080096 register "PcieClkSrcUsage[3]" = "7"
97 register "PcieClkSrcClkReq[3]" = "3"
98
99 # Enable WLAN PCIE 7 using clk 1
100 register "PcieRpEnable[6]" = "1"
Wonkyu Kime3bf8ba2020-04-07 23:34:12 -0700101 register "PcieRpLtrEnable[6]" = "1"
Nick Vaccarof9781912020-01-28 18:43:28 -0800102 register "PcieClkSrcUsage[1]" = "6"
103 register "PcieClkSrcClkReq[1]" = "1"
104
Nick Vaccarof9781912020-01-28 18:43:28 -0800105 # Mark SRCCLKREQ pins as unused that are routed for a Non-Clkreq functionality
Alex Levina53dbd42020-03-09 16:52:59 -0700106 register "PcieClkSrcUsage[2]" = "0xFF"
Nick Vaccarof9781912020-01-28 18:43:28 -0800107 register "PcieClkSrcUsage[4]" = "0xFF"
108 register "PcieClkSrcUsage[5]" = "0xFF"
109 register "PcieClkSrcUsage[6]" = "0xFF"
110
111 # Enable SATA
112 register "SataEnable" = "1"
113 register "SataMode" = "0"
114 register "SataSalpSupport" = "1"
115 register "SataPortsEnable[0]" = "0"
116 register "SataPortsEnable[1]" = "1"
117 register "SataPortsDevSlp[0]" = "0"
Wonkyu Kimb8bfe142020-04-21 17:07:57 -0700118 register "SataPortsDevSlp[1]" = "1"
Shaunak Saha60e6f6e2020-06-15 23:59:52 -0700119 register "SataPortsEnableDitoConfig[1]" = "1"
Nick Vaccarof9781912020-01-28 18:43:28 -0800120
121 register "SerialIoI2cMode" = "{
122 [PchSerialIoIndexI2C0] = PchSerialIoPci,
123 [PchSerialIoIndexI2C1] = PchSerialIoPci,
124 [PchSerialIoIndexI2C2] = PchSerialIoPci,
125 [PchSerialIoIndexI2C3] = PchSerialIoPci,
126 [PchSerialIoIndexI2C4] = PchSerialIoDisabled,
127 [PchSerialIoIndexI2C5] = PchSerialIoPci,
128 }"
129
130 register "SerialIoGSpiMode" = "{
131 [PchSerialIoIndexGSPI0] = PchSerialIoPci,
132 [PchSerialIoIndexGSPI1] = PchSerialIoPci,
133 [PchSerialIoIndexGSPI2] = PchSerialIoDisabled,
134 [PchSerialIoIndexGSPI3] = PchSerialIoDisabled,
135 }"
136
137 register "SerialIoGSpiCsMode" = "{
138 [PchSerialIoIndexGSPI0] = 1,
139 [PchSerialIoIndexGSPI1] = 1,
140 [PchSerialIoIndexGSPI2] = 0,
141 [PchSerialIoIndexGSPI3] = 0,
142 }"
143
144 register "SerialIoGSpiCsState" = "{
Caveh Jalali85e4c432020-09-12 03:05:48 -0700145 [PchSerialIoIndexGSPI0] = 1,
146 [PchSerialIoIndexGSPI1] = 1,
Nick Vaccarof9781912020-01-28 18:43:28 -0800147 [PchSerialIoIndexGSPI2] = 0,
148 [PchSerialIoIndexGSPI3] = 0,
149 }"
150
151 register "SerialIoUartMode" = "{
152 [PchSerialIoIndexUART0] = PchSerialIoPci,
153 [PchSerialIoIndexUART1] = PchSerialIoDisabled,
154 [PchSerialIoIndexUART2] = PchSerialIoDisabled,
155 }"
156
Srinidhi N Kaushik22d5b072020-03-06 10:47:17 -0800157 # HD Audio
158 register "PchHdaDspEnable" = "1"
159 register "PchHdaAudioLinkHdaEnable" = "0"
Duncan Laurie4dffa9c2020-05-10 11:20:20 -0700160 register "PchHdaAudioLinkDmicEnable[0]" = "0"
161 register "PchHdaAudioLinkDmicEnable[1]" = "0"
162 register "PchHdaAudioLinkSspEnable[0]" = "0"
163 register "PchHdaAudioLinkSspEnable[1]" = "0"
164 register "PchHdaAudioLinkSndwEnable[0]" = "0"
165 register "PchHdaAudioLinkSndwEnable[1]" = "0"
Srinidhi N Kaushik22d5b072020-03-06 10:47:17 -0800166
Brandon Breitenstein01ec7132020-03-06 10:51:30 -0800167 # TCSS USB3
168 register "TcssXhciEn" = "1"
Brandon Breitenstein1df3b702020-08-10 15:02:41 -0700169 register "TcssAuxOri" = "0"
170 register "IomTypeCPortPadCfg[0]" = "0x09000000"
171 register "IomTypeCPortPadCfg[1]" = "0x09000000"
Brandon Breitensteinc9a34512020-06-10 17:04:29 -0700172 register "IomTypeCPortPadCfg[2]" = "0x09000000"
173 register "IomTypeCPortPadCfg[3]" = "0x09000000"
174 register "IomTypeCPortPadCfg[4]" = "0x09000000"
175 register "IomTypeCPortPadCfg[5]" = "0x09000000"
176 register "IomTypeCPortPadCfg[6]" = "0x09000000"
177 register "IomTypeCPortPadCfg[7]" = "0x09000000"
Brandon Breitensteinb7911c82020-04-06 15:34:19 -0700178
Nick Vaccarof9781912020-01-28 18:43:28 -0800179 # DP port
180 register "DdiPortAConfig" = "1" # eDP
181 register "DdiPortBConfig" = "0"
182
183 register "DdiPortAHpd" = "1"
184 register "DdiPortBHpd" = "1"
185 register "DdiPortCHpd" = "0"
186 register "DdiPort1Hpd" = "1"
187 register "DdiPort2Hpd" = "1"
188 register "DdiPort3Hpd" = "0"
189 register "DdiPort4Hpd" = "0"
190
191 register "DdiPortADdc" = "0"
192 register "DdiPortBDdc" = "1"
193 register "DdiPortCDdc" = "0"
194 register "DdiPort1Ddc" = "0"
195 register "DdiPort2Ddc" = "0"
196 register "DdiPort3Ddc" = "0"
197 register "DdiPort4Ddc" = "0"
198
Nick Vaccarof9781912020-01-28 18:43:28 -0800199 # Enable "Intel Speed Shift Technology"
200 register "speed_shift_enable" = "1"
201
202 # Enable S0ix
203 register "s0ix_enable" = "1"
204
Sumeet R Pawnikar7d6bc602020-05-08 19:22:07 +0530205 # Enable DPTF
206 register "dptf_enable" = "1"
207
Sumeet R Pawnikar1a621502020-07-20 15:44:59 +0530208 register "power_limits_config[POWER_LIMITS_U_2_CORE]" = "{
209 .tdp_pl1_override = 15,
210 .tdp_pl2_override = 38,
211 .tdp_pl4 = 71,
212 }"
Tim Wawrzynczak2dcca0f2020-06-16 10:50:47 -0600213 register "power_limits_config[POWER_LIMITS_U_4_CORE]" = "{
Sumeet R Pawnikar7d6bc602020-05-08 19:22:07 +0530214 .tdp_pl1_override = 15,
215 .tdp_pl2_override = 60,
Tim Wawrzynczak2dcca0f2020-06-16 10:50:47 -0600216 .tdp_pl4 = 105,
217 }"
Sumeet R Pawnikar1a621502020-07-20 15:44:59 +0530218 register "power_limits_config[POWER_LIMITS_Y_2_CORE]" = "{
219 .tdp_pl1_override = 9,
220 .tdp_pl2_override = 35,
221 .tdp_pl4 = 66,
222 }"
223 register "power_limits_config[POWER_LIMITS_Y_4_CORE]" = "{
224 .tdp_pl1_override = 9,
225 .tdp_pl2_override = 40,
226 .tdp_pl4 = 83,
Sumeet R Pawnikar7d6bc602020-05-08 19:22:07 +0530227 }"
228
229 register "Device4Enable" = "1"
230
Sumeet R Pawnikar9f9b97e2020-06-30 14:18:41 +0530231 register "tcc_offset" = "10" # TCC of 90
232
John Zhaoc8e30972020-09-21 13:20:57 -0700233 register "CnviBtAudioOffload" = "FORCE_ENABLE"
234
Nick Vaccarof9781912020-01-28 18:43:28 -0800235 # Intel Common SoC Config
236 #+-------------------+---------------------------+
237 #| Field | Value |
238 #+-------------------+---------------------------+
239 #| chipset_lockdown | CHIPSET_LOCKDOWN_COREBOOT |
240 #| GSPI0 | cr50 TPM. Early init is |
241 #| | required to set up a BAR |
242 #| | for TPM communication |
243 #| | before memory is up |
Alex Levin3bc41cf2020-03-06 10:54:10 -0800244 #| GSPI1 | Fingerprint MCU |
Nick Vaccarof9781912020-01-28 18:43:28 -0800245 #| I2C0 | Audio |
246 #| I2C1 | Touchscreen |
247 #| I2C2 | WLAN, SAR0 |
248 #| I2C3 | Camera, SAR1 |
249 #| I2C5 | Trackpad |
250 #+-------------------+---------------------------+
251 register "common_soc_config" = "{
252 .chipset_lockdown = CHIPSET_LOCKDOWN_COREBOOT,
253 .gspi[0] = {
254 .speed_mhz = 1,
255 .early_init = 1,
256 },
257 .i2c[0] = {
258 .speed = I2C_SPEED_FAST,
259 },
260 .i2c[1] = {
261 .speed = I2C_SPEED_FAST,
262 },
263 .i2c[2] = {
264 .speed = I2C_SPEED_FAST,
265 },
266 .i2c[3] = {
267 .speed = I2C_SPEED_FAST,
268 },
269 .i2c[5] = {
270 .speed = I2C_SPEED_FAST,
271 },
272 }"
273
Venkata Krishna Nimmagadda7368da32020-06-09 00:11:34 -0700274 register "ext_fivr_settings" = "{
275 .configure_ext_fivr = 1,
276 .v1p05_enable_bitmap = FIVR_ENABLE_ALL_SX,
277 .vnn_enable_bitmap = FIVR_ENABLE_ALL_SX,
278 .v1p05_supported_voltage_bitmap = FIVR_VOLTAGE_NORMAL |
279 FIVR_VOLTAGE_MIN_ACTIVE |
280 FIVR_VOLTAGE_MIN_RETENTION,
281 .vnn_supported_voltage_bitmap = FIVR_VOLTAGE_NORMAL |
282 FIVR_VOLTAGE_MIN_ACTIVE |
283 FIVR_VOLTAGE_MIN_RETENTION,
284 .v1p05_icc_max_ma = 500,
285 .vnn_sx_voltage_mv = 1250,
286 }"
287
Nick Vaccarof9781912020-01-28 18:43:28 -0800288 device domain 0 on
289 #From EDS(575683)
290 device pci 00.0 on end # Host Bridge 0x9A14:U/0x9A12:Y
291 device pci 02.0 on end # Graphics
Tim Wawrzynczak07ac2ec2020-05-29 15:58:19 -0600292 device pci 04.0 on
293 # Default DPTF Policy for all Volteer boards if not overridden
294 chip drivers/intel/dptf
295 ## Active Policy
Tim Wawrzynczaka5cb5642020-09-08 13:14:09 -0600296 register "policies.active" = "{
297 [0] = {.target = DPTF_CPU,
298 .thresholds = {TEMP_PCT(85, 90),
299 TEMP_PCT(80, 69),
300 TEMP_PCT(75, 56),
301 TEMP_PCT(70, 46),
302 TEMP_PCT(65, 36),}},
303 [1] = {.target = DPTF_TEMP_SENSOR_0,
304 .thresholds = {TEMP_PCT(50, 90),
305 TEMP_PCT(47, 69),
306 TEMP_PCT(45, 56),
307 TEMP_PCT(42, 46),
308 TEMP_PCT(39, 36),}},
309 [2] = {.target = DPTF_TEMP_SENSOR_1,
310 .thresholds = {TEMP_PCT(50, 90),
311 TEMP_PCT(47, 69),
312 TEMP_PCT(45, 56),
313 TEMP_PCT(42, 46),
314 TEMP_PCT(39, 36),}},
315 [3] = {.target = DPTF_TEMP_SENSOR_2,
316 .thresholds = {TEMP_PCT(50, 90),
317 TEMP_PCT(47, 69),
318 TEMP_PCT(45, 56),
319 TEMP_PCT(42, 46),
320 TEMP_PCT(39, 36),}},
321 [4] = {.target = DPTF_TEMP_SENSOR_3,
322 .thresholds = {TEMP_PCT(50, 90),
323 TEMP_PCT(47, 69),
324 TEMP_PCT(45, 56),
325 TEMP_PCT(42, 46),
326 TEMP_PCT(39, 36),}}}"
Tim Wawrzynczak07ac2ec2020-05-29 15:58:19 -0600327
328 ## Passive Policy
Tim Wawrzynczaka5cb5642020-09-08 13:14:09 -0600329 register "policies.passive" = "{
330 [0] = DPTF_PASSIVE(CPU, CPU, 95, 5000),
331 [1] = DPTF_PASSIVE(CPU, TEMP_SENSOR_1, 65, 6000),
332 [2] = DPTF_PASSIVE(CHARGER, TEMP_SENSOR_0, 65, 6000),
333 [3] = DPTF_PASSIVE(CPU, TEMP_SENSOR_2, 65, 6000),
334 [4] = DPTF_PASSIVE(CPU, TEMP_SENSOR_3, 65, 6000)}"
Tim Wawrzynczak07ac2ec2020-05-29 15:58:19 -0600335
336 ## Critical Policy
Tim Wawrzynczaka5cb5642020-09-08 13:14:09 -0600337 register "policies.critical" = "{
338 [0] = DPTF_CRITICAL(CPU, 105, SHUTDOWN),
339 [1] = DPTF_CRITICAL(TEMP_SENSOR_0, 75, SHUTDOWN),
340 [2] = DPTF_CRITICAL(TEMP_SENSOR_1, 75, SHUTDOWN),
341 [3] = DPTF_CRITICAL(TEMP_SENSOR_2, 75, SHUTDOWN),
342 [4] = DPTF_CRITICAL(TEMP_SENSOR_3, 75, SHUTDOWN)}"
Tim Wawrzynczak07ac2ec2020-05-29 15:58:19 -0600343
344 ## Power Limits Control
345 # 10-15W PL1 in 200mW increments, avg over 28-32s interval
346 # PL2 is fixed at 64W, avg over 28-32s interval
Tim Wawrzynczaka5cb5642020-09-08 13:14:09 -0600347 register "controls.power_limits" = "{
348 .pl1 = {.min_power = 3000,
349 .max_power = 15000,
350 .time_window_min = 28 * MSECS_PER_SEC,
351 .time_window_max = 32 * MSECS_PER_SEC,
352 .granularity = 200,},
353 .pl2 = {.min_power = 15000,
354 .max_power = 60000,
355 .time_window_min = 28 * MSECS_PER_SEC,
356 .time_window_max = 32 * MSECS_PER_SEC,
357 .granularity = 1000,}}"
Tim Wawrzynczak07ac2ec2020-05-29 15:58:19 -0600358
359 ## Charger Performance Control (Control, mA)
Tim Wawrzynczaka5cb5642020-09-08 13:14:09 -0600360 register "controls.charger_perf" = "{
361 [0] = { 255, 1700 },
362 [1] = { 24, 1500 },
363 [2] = { 16, 1000 },
364 [3] = { 8, 500 }}"
Tim Wawrzynczak07ac2ec2020-05-29 15:58:19 -0600365
366 ## Fan Performance Control (Percent, Speed, Noise, Power)
Tim Wawrzynczaka5cb5642020-09-08 13:14:09 -0600367 register "controls.fan_perf" = "{
368 [0] = { 90, 6700, 220, 2200, },
369 [1] = { 80, 5800, 180, 1800, },
370 [2] = { 70, 5000, 145, 1450, },
371 [3] = { 60, 4900, 115, 1150, },
372 [4] = { 50, 3838, 90, 900, },
373 [5] = { 40, 2904, 55, 550, },
374 [6] = { 30, 2337, 30, 300, },
375 [7] = { 20, 1608, 15, 150, },
376 [8] = { 10, 800, 10, 100, },
377 [9] = { 0, 0, 0, 50, }}"
Tim Wawrzynczak07ac2ec2020-05-29 15:58:19 -0600378
379 # Fan options
380 register "options.fan.fine_grained_control" = "1"
381 register "options.fan.step_size" = "2"
382
383 device generic 0 on end
384 end
385 end # DPTF 0x9A03
Nick Vaccarof9781912020-01-28 18:43:28 -0800386 device pci 05.0 off end # IPU 0x9A19
387 device pci 06.0 off end # PEG60 0x9A09
Brandon Breitenstein228d0e52020-07-23 14:40:14 -0700388 device pci 07.0 on # TBT_PCIe0 0x9A23
389 probe DB_USB USB4_GEN2
390 probe DB_USB USB4_GEN3
391 end
392 device pci 07.1 on # TBT_PCIe1 0x9A25
393 probe DB_USB USB4_GEN2
394 probe DB_USB USB4_GEN3
395 end
John Zhao5d79a0c2020-05-13 16:44:38 -0700396 device pci 07.2 off end # TBT_PCIe2 0x9A27
397 device pci 07.3 off end # TBT_PCIe3 0x9A29
Nick Vaccarof9781912020-01-28 18:43:28 -0800398 device pci 08.0 on end # GNA 0x9A11
399 device pci 09.0 off end # NPK 0x9A33
400 device pci 0a.0 off end # Crash-log SRAM 0x9A0D
401 device pci 0d.0 on end # USB xHCI 0x9A13
402 device pci 0d.1 off end # USB xDCI (OTG) 0x9A15
Brandon Breitenstein228d0e52020-07-23 14:40:14 -0700403 device pci 0d.2 on # TBT DMA0 0x9A1B
404 probe DB_USB USB4_GEN2
405 probe DB_USB USB4_GEN3
406 end
Nick Vaccarof9781912020-01-28 18:43:28 -0800407 device pci 0d.3 off end # TBT DMA1 0x9A1D
408 device pci 0e.0 off end # VMD 0x9A0B
409
410 # From PCH EDS(576591)
Nick Vaccarof9781912020-01-28 18:43:28 -0800411 device pci 10.2 on end # CNVi: BT 0xA0F5 - A0F7
412 device pci 10.6 off end # THC0 0xA0D0
413 device pci 10.7 off end # THC1 0xA0D1
414
Nick Vaccarof9781912020-01-28 18:43:28 -0800415 device pci 12.0 off end # SensorHUB 0xA0FC
416 device pci 12.6 off end # GSPI2 0x34FB
417
418 device pci 13.0 off end # GSPI3 0xA0FD
Nick Vaccarof9781912020-01-28 18:43:28 -0800419
420 device pci 14.0 on end # USB3.1 xHCI 0xA0ED
421 device pci 14.1 off end # USB3.1 xDCI 0xA0EE
422 device pci 14.2 on end # Shared RAM 0xA0EF
Srinidhi N Kaushikac7d6b42020-03-05 17:19:51 -0800423 chip drivers/intel/wifi
424 register "wake" = "GPE0_PME_B0"
425 device pci 14.3 on end # CNVi: WiFi 0xA0F0 - A0F3
426 end
Nick Vaccarof3d399e2020-06-18 18:30:31 -0700427 device pci 15.0 on end # I2C #0 0xA0E8
428 device pci 15.1 on end # I2C1 0xA0E9
429 device pci 15.2 on end # I2C2 0xA0EA
Nick Vaccarof9781912020-01-28 18:43:28 -0800430 device pci 15.3 on end # I2C3 0xA0EB
431
432 device pci 16.0 on end # HECI1 0xA0E0
433 device pci 16.1 off end # HECI2 0xA0E1
434 device pci 16.2 off end # CSME 0xA0E2
435 device pci 16.3 off end # CSME 0xA0E3
436 device pci 16.4 off end # HECI3 0xA0E4
437 device pci 16.5 off end # HECI4 0xA0E5
438
439 device pci 17.0 on end # SATA 0xA0D3
440
441 device pci 19.0 on end # I2C4 0xA0C5
Nick Vaccarof3d399e2020-06-18 18:30:31 -0700442 device pci 19.1 on end # I2C5 0xA0C6
Nick Vaccarof9781912020-01-28 18:43:28 -0800443 device pci 19.2 off end # UART2 0xA0C7
444
445 device pci 1c.0 on end # RP1 0xA0B8
446 device pci 1c.1 off end # RP2 0xA0B9
447 device pci 1c.2 off end # RP3 0xA0BA
448 device pci 1c.3 off end # RP4 0xA0BB
449 device pci 1c.4 off end # RP5 0xA0BC
Alex Levina53dbd42020-03-09 16:52:59 -0700450 device pci 1c.5 off end # WWAN RP6 0xA0BD
Nick Vaccarof9781912020-01-28 18:43:28 -0800451 device pci 1c.6 on end # RP7 0xA0BE
452 device pci 1c.7 on end # SD Card RP8 0xA0BF
453
454 device pci 1d.0 on end # RP9 0xA0B0
455 device pci 1d.1 off end # RP10 0xA0B1
Venkata Krishna Nimmagaddac34bb382020-01-15 10:13:26 -0800456 device pci 1d.2 on end # RP11 0xA0B2
Nick Vaccarof9781912020-01-28 18:43:28 -0800457 device pci 1d.3 off end # RP12 0xA0B3
Nick Vaccarof9781912020-01-28 18:43:28 -0800458
459 device pci 1e.0 on end # UART0 0xA0A8
460 device pci 1e.1 off end # UART1 0xA0A9
461 device pci 1e.2 on
462 chip drivers/spi/acpi
463 register "hid" = "ACPI_DT_NAMESPACE_HID"
464 register "compat_string" = ""google,cr50""
465 register "irq" = "ACPI_IRQ_EDGE_LOW(GPP_C21_IRQ)"
466 device spi 0 on end
467 end
Tim Wawrzynczak6d20d0c2020-05-13 17:00:33 -0600468 end # GSPI0 0xA0AA
Alex Levin3bc41cf2020-03-06 10:54:10 -0800469 device pci 1e.3 on
470 chip drivers/spi/acpi
471 register "name" = ""CRFP""
472 register "hid" = "ACPI_DT_NAMESPACE_HID"
473 register "uid" = "1"
474 register "compat_string" = ""google,cros-ec-spi""
475 register "irq_gpio" = "ACPI_GPIO_IRQ_LEVEL_LOW_WAKE(GPP_C20)"
476 device spi 0 on end
477 end # FPMCU
Tim Wawrzynczak6d20d0c2020-05-13 17:00:33 -0600478 end # GSPI1 0xA0AB
Nick Vaccaro9a3486e2020-04-17 10:14:57 -0700479 device pci 1f.0 on
480 chip ec/google/chromeec
481 device pnp 0c09.0 on end
482 end
Tim Wawrzynczak6d20d0c2020-05-13 17:00:33 -0600483 end # eSPI 0xA080 - A09F
Nick Vaccarof9781912020-01-28 18:43:28 -0800484 device pci 1f.1 off end # P2SB 0xA0A0
Tim Wawrzynczak6d20d0c2020-05-13 17:00:33 -0600485 device pci 1f.2 hidden end # PMC 0xA0A1
Duncan Laurie4dffa9c2020-05-10 11:20:20 -0700486 device pci 1f.3 on end # Intel HD audio 0xA0C8-A0CF
Nick Vaccarof9781912020-01-28 18:43:28 -0800487 device pci 1f.4 off end # SMBus 0xA0A3
488 device pci 1f.5 on end # SPI 0xA0A4
489 device pci 1f.6 off end # GbE 0x15E1/0x15E2
490 device pci 1f.7 off end # TH 0xA0A6
491 end
492end