blob: 08b90cee4fceacc1a0f4b7d8315f35f68f4489f4 [file] [log] [blame]
Nico Huber0ccfa682017-04-20 15:36:46 +02001# SPDX-License-Identifier: GPL-2.0-only
2
3chip soc/intel/skylake
4
Nico Huber0ccfa682017-04-20 15:36:46 +02005 register "PmConfigSlpS3MinAssert" = "SLP_S3_MIN_ASSERT_50MS"
6 register "PmConfigSlpS4MinAssert" = "SLP_S4_MIN_ASSERT_4S"
7 register "PmConfigSlpSusMinAssert" = "SLP_SUS_MIN_ASSERT_4S"
8 register "PmConfigSlpAMinAssert" = "SLP_A_MIN_ASSERT_2S"
Nico Huber0ccfa682017-04-20 15:36:46 +02009 register "PmConfigPwrCycDur" = "RESET_POWER_CYCLE_4S"
10
11 # VR Settings Configuration for 2 Domains
12 #+----------------+-------+-------+
13 #| Domain/Setting | VCC | VCCGT |
14 #+----------------+-------+-------+
15 #| Psi1Threshold | 20A | 20A |
16 #| Psi2Threshold | 5A | 5A |
17 #| Psi3Threshold | 1A | 1A |
18 #| Psi3Enable | 1 | 1 |
19 #| Psi4Enable | 1 | 1 |
20 #| ImonSlope | 0 | 0 |
21 #| ImonOffset | 0 | 0 |
22 #| IccMax | 55A | 35A |
23 #| VrVoltageLimit | 1.52V | 1.52V |
24 #| AcLoadline | 2.1 | 3.1 |
25 #| DcLoadline | 2.1 | 3.1 |
26 #+----------------+-------+-------+
27 register "domain_vr_config[VR_IA_CORE]" = "{
28 .vr_config_enable = 1,
29 .psi1threshold = VR_CFG_AMP(20),
30 .psi2threshold = VR_CFG_AMP(5),
31 .psi3threshold = VR_CFG_AMP(1),
32 .psi3enable = 1,
33 .psi4enable = 1,
34 .imon_slope = 0x0,
35 .imon_offset = 0x0,
36 .icc_max = VR_CFG_AMP(55),
37 .voltage_limit = 1520,
38 .ac_loadline = 210,
39 .dc_loadline = 210,
40 }"
41
42 register "domain_vr_config[VR_GT_UNSLICED]" = "{
43 .vr_config_enable = 1,
44 .psi1threshold = VR_CFG_AMP(20),
45 .psi2threshold = VR_CFG_AMP(5),
46 .psi3threshold = VR_CFG_AMP(1),
47 .psi3enable = 1,
48 .psi4enable = 1,
49 .imon_slope = 0x0,
50 .imon_offset = 0x0,
51 .icc_max = VR_CFG_AMP(35),
52 .voltage_limit = 1520,
53 .ac_loadline = 310,
54 .dc_loadline = 310,
55 }"
56
57 # Vendor set Psys Pmax to 30W
58 register "power_limits_config" = "{
59 .psys_pmax = 30,
60 }"
61
62 # TODO
63 # Send an extra VR mailbox command for the PS4 exit issue
64 register "SendVrMbxCmd" = "2"
65
Arthur Heymans69cd7292022-11-07 13:52:11 +010066 device cpu_cluster 0 on end
Nico Huber0ccfa682017-04-20 15:36:46 +020067
68 device domain 0 on
Felix Singer49dc2852023-11-12 17:43:45 +000069 device ref igpu on end
70 device ref gmm on end
71 device ref south_xhci on
Felix Singereb1a2bd2023-10-23 08:30:02 +020072 register "usb2_ports" = "{
73 [0] = USB2_PORT_LONG(OC0),
74 [1] = USB2_PORT_LONG(OC0),
75 [2] = USB2_PORT_LONG(OC1),
76 [3] = USB2_PORT_LONG(OC1),
77 [4] = USB2_PORT_LONG(OC2), /* Debug */
78 }"
Nico Huber0ccfa682017-04-20 15:36:46 +020079 end
Felix Singer49dc2852023-11-12 17:43:45 +000080 device ref thermal on end
81 device ref heci1 on end
82 device ref sata on
Felix Singereb1a2bd2023-10-23 08:30:02 +020083 register "SataSalpSupport" = "1"
84 register "SataPortsEnable" = "{
85 [0] = 1,
86 [1] = 1,
87 [2] = 1,
88 }"
Nico Huber0ccfa682017-04-20 15:36:46 +020089 end
Felix Singer49dc2852023-11-12 17:43:45 +000090 device ref pcie_rp9 on
Nico Huber0ccfa682017-04-20 15:36:46 +020091 register "PcieRpEnable[8]" = "1"
92 end
Felix Singer49dc2852023-11-12 17:43:45 +000093 device ref pcie_rp10 on
Nico Huber0ccfa682017-04-20 15:36:46 +020094 register "PcieRpEnable[9]" = "1"
95 end
Felix Singer49dc2852023-11-12 17:43:45 +000096 device ref pcie_rp11 on
Nico Huber0ccfa682017-04-20 15:36:46 +020097 register "PcieRpEnable[10]" = "1"
98 end
Felix Singer49dc2852023-11-12 17:43:45 +000099 device ref lpc_espi on
Nico Huber0ccfa682017-04-20 15:36:46 +0200100 register "serirq_mode" = "SERIRQ_CONTINUOUS"
101
102 # EC/kempld at 0xa80/0xa81
103 register "gen1_dec" = "0x00000a81"
104
105 chip drivers/pc80/tpm
106 device pnp 0c31.0 on end
107 end
108 chip ec/kontron/kempld
109 register "uart[0]" = "{ KEMPLD_UART_3F8, 4 }"
110 device generic 0.0 on end # UART #0
111 end
112 end
Felix Singer49dc2852023-11-12 17:43:45 +0000113 device ref smbus on
Nico Huber0ccfa682017-04-20 15:36:46 +0200114 chip drivers/i2c/nct7802y
115 device i2c 0x2e on end
116 end
117 end
Felix Singer49dc2852023-11-12 17:43:45 +0000118 device ref fast_spi on end
119 device ref gbe on end
Nico Huber0ccfa682017-04-20 15:36:46 +0200120 end
121end