1 /* SPDX-License-Identifier: GPL-2.0-only */
4 #include <console/console.h>
5 #include <device/mmio.h>
6 #include <device/device.h>
7 #include <device/pci_ops.h>
8 #include <device/pci_ids.h>
11 #include <intelblocks/cpulib.h>
12 #include <intelblocks/fast_spi.h>
13 #include <intelblocks/systemagent.h>
14 #include <soc/pci_devs.h>
15 #include <soc/ramstage.h>
18 #include <timestamp.h>
19 #include <baseboard/variants.h>
22 #define MAX_PATH_DEPTH 12
23 #define MAX_NUM_MAPPINGS 10
25 #define BIOS_MAILBOX_WAIT_MAX_MS 1000
26 #define BIOS_MAILBOX_DATA 0x7080
27 #define BIOS_MAILBOX_INTERFACE 0x7084
28 #define RUN_BUSY_STS (1 << 31)
30 #define SD_CAP_BYP 0x810
31 #define SD_CAP_BYP_EN 0x5A
32 #define SD_CAP_BYP_REG1 0x814
34 /** \brief This function can decide if a given MAC address is valid or not.
35 * Currently, addresses filled with 0xff or 0x00 are not valid.
36 * @param mac Buffer to the MAC address to check
37 * @return 0 if address is not valid, otherwise 1
39 static uint8_t is_mac_adr_valid(uint8_t mac
[MAC_ADDR_LEN
])
41 for (size_t i
= 0; i
< MAC_ADDR_LEN
; i
++) {
42 if (mac
[i
] != 0x00 && mac
[i
] != 0xff)
50 /** \brief This function will search for a MAC address which can be assigned
52 * @param dev pointer to PCI device
53 * @param mac buffer where to store the MAC address
54 * @return cb_err CB_ERR or CB_SUCCESS
56 enum cb_err
mainboard_get_mac_address(struct device
*dev
, uint8_t mac
[MAC_ADDR_LEN
])
58 struct bus
*parent
= dev
->bus
;
59 uint8_t buf
[16], mapping
[16], i
= 0, chain_len
= 0;
61 memset(buf
, 0, sizeof(buf
));
62 memset(mapping
, 0, sizeof(mapping
));
64 /* The first entry in the tree is the device itself. */
65 buf
[0] = dev
->path
.pci
.devfn
;
67 for (i
= 1; i
< MAX_PATH_DEPTH
&& parent
->dev
->bus
->subordinate
; i
++) {
68 buf
[i
] = parent
->dev
->path
.pci
.devfn
;
70 parent
= parent
->dev
->bus
;
72 if (i
== MAX_PATH_DEPTH
) {
73 /* The path is deeper than MAX_PATH_DEPTH devices, error. */
74 printk(BIOS_ERR
, "Too many bridges for %s\n", dev_path(dev
));
78 * Now construct the mapping based on the device chain starting from
79 * root bridge device to the device itself.
82 mapping
[1] = chain_len
;
83 for (i
= 0; i
< chain_len
; i
++)
84 mapping
[i
+ 4] = buf
[chain_len
- i
- 1];
86 /* Open main hwinfo block */
87 if (hwilib_find_blocks("hwinfo.hex") != CB_SUCCESS
)
89 /* Now try to find a valid MAC address in hwinfo for this mapping. */
90 for (i
= 0; i
< MAX_NUM_MAPPINGS
; i
++) {
91 if (hwilib_get_field(XMac1Mapping
+ i
, buf
, 16) != 16)
93 if (memcmp(buf
, mapping
, chain_len
+ 4))
95 /* There is a matching mapping available, get MAC address. */
96 if (hwilib_get_field(XMac1
+ i
, mac
, MAC_ADDR_LEN
) == MAC_ADDR_LEN
) {
97 if (is_mac_adr_valid(mac
))
102 /* No MAC address found for */
106 /** \brief This function fixes an accuracy issue with IDT PMIC.
107 * The current reported system power consumption is higher than the
108 * actual consumption. With a correction of slope and offset for Vcc
109 * and Vnn, the issue is solved.
111 static void config_pmic_imon(void)
116 printk(BIOS_DEBUG
, "PMIC: Configure PMIC IMON - Start\n");
118 /* Calculate CPU TDP in mW */
119 power_max
= cpu_get_power_max();
120 printk(BIOS_INFO
, "PMIC: CPU TDP %d mW.\n", power_max
);
123 * Fix Vnn slope and offset value.
124 * slope = 0x4a4 # 2.32
125 * offset = 0xfa0d # -2.975
127 stopwatch_init_msecs_expire(&sw
, BIOS_MAILBOX_WAIT_MAX_MS
);
128 /* Read P_CR_BIOS_MAILBOX_INTERFACE_0_0_0_MCHBAR and check RUN_BUSY. */
129 while ((MCHBAR32(BIOS_MAILBOX_INTERFACE
) & RUN_BUSY_STS
)) {
130 if (stopwatch_expired(&sw
)) {
131 printk(BIOS_ERR
, "PMIC: Power consumption measurement "
132 "setup fails for Vnn.\n");
136 /* Set Vnn values into P_CR_BIOS_MAILBOX_DATA_0_0_0_MCHBAR. */
137 MCHBAR32(BIOS_MAILBOX_DATA
) = 0xfa0d04a4;
138 /* Set command, address and busy bit. */
139 MCHBAR32(BIOS_MAILBOX_INTERFACE
) = 0x8000011d;
140 printk(BIOS_DEBUG
, "PMIC: Fix Vnn slope and offset value.\n");
143 * Fix Vcc slope and offset value.
144 * Premium and High SKU:
145 * slope = 0x466 # 2.2
146 * offset = 0xe833 # -11.9
147 * Low and Intermediate SKU:
148 * slope = 0x3b3 # 1.85
149 * offset = 0xed33 # -9.4
151 stopwatch_init_msecs_expire(&sw
, BIOS_MAILBOX_WAIT_MAX_MS
);
152 while ((MCHBAR32(BIOS_MAILBOX_INTERFACE
) & RUN_BUSY_STS
)) {
153 if (stopwatch_expired(&sw
)) {
154 printk(BIOS_ERR
, "PMIC: Power consumption measurement "
155 "setup fails for Vcc.\n");
161 * CPU TDP limit between Premium/High and Low/Intermediate SKU
164 if (power_max
> 9010) {
165 MCHBAR32(BIOS_MAILBOX_DATA
) = 0xe8330466;
166 MCHBAR32(BIOS_MAILBOX_INTERFACE
) = 0x8000001d;
167 printk(BIOS_INFO
, "PMIC: Fix Vcc for Premium SKU.\n");
169 MCHBAR32(BIOS_MAILBOX_DATA
) = 0xed3303b3;
170 MCHBAR32(BIOS_MAILBOX_INTERFACE
) = 0x8000001d;
171 printk(BIOS_INFO
, "PMIC: Fix Vcc for Low SKU.\n");
174 printk(BIOS_DEBUG
, "PMIC: Configure PMIC IMON - End\n");
177 void mainboard_silicon_init_params(FSP_S_CONFIG
*silconfig
)
179 printk(BIOS_DEBUG
, "MAINBOARD: %s/%s called\n", __FILE__
, __func__
);
181 /* Disable CPU power states (C-states) */
182 silconfig
->EnableCx
= 0;
184 /* Set max Pkg Cstate to PkgC0C1 */
185 silconfig
->PkgCStateLimit
= 0;
187 /* Disable PCIe Transmitter Half Swing for all RPs */
188 memset(silconfig
->PcieRpTransmitterHalfSwing
, 0,
189 sizeof(silconfig
->PcieRpTransmitterHalfSwing
));
191 /* Disable PCI Express Active State Power Management for all RPs */
192 memset(silconfig
->PcieRpAspm
, 0,
193 sizeof(silconfig
->PcieRpAspm
));
195 /* Disable PCI Express L1 Substate for all RPs */
196 memset(silconfig
->PcieRpL1Substates
, 0,
197 sizeof(silconfig
->PcieRpL1Substates
));
200 static void mainboard_init(void *chip_info
)
202 const struct pad_config
*pads
;
205 pads
= variant_gpio_table(&num
);
206 gpio_configure_pads(pads
, num
);
211 static void mainboard_final(void *chip_info
)
213 struct device
*dev
= NULL
;
215 /* Do board specific things */
216 variant_mainboard_final();
218 /* Set Master Enable for on-board PCI device if allowed. */
219 if (CONFIG(PCI_ALLOW_BUS_MASTER_ANY_DEVICE
)) {
220 dev
= dev_find_device(PCI_VID_SIEMENS
, 0x403f, 0);
222 pci_or_config16(dev
, PCI_COMMAND
, PCI_COMMAND_MASTER
);
225 /* Set up SPI OPCODE menu before the controller is locked. */
226 fast_spi_set_opcode_menu();
228 /* Set SD-Card speed to HS mode only. */
229 dev
= pcidev_path_on_root(PCH_DEVFN_SDCARD
);
232 struct resource
*res
= probe_resource(dev
, PCI_BASE_ADDRESS_0
);
236 write32(res2mmio(res
, SD_CAP_BYP
, 0), SD_CAP_BYP_EN
);
237 reg
= read32(res2mmio(res
, SD_CAP_BYP_REG1
, 0));
238 /* Disable all UHS-I SD-Card speed modes, keep only HS mode. */
240 write32(res2mmio(res
, SD_CAP_BYP_REG1
, 0), reg
);
244 /* The following function performs board specific things. */
245 void __weak
variant_mainboard_final(void)
249 struct chip_operations mainboard_ops
= {
250 .init
= mainboard_init
,
251 .final
= mainboard_final
,
254 static void wait_for_legacy_dev(void *unused
)
256 uint32_t legacy_delay
, us_since_boot
;
259 if (CONFIG(BOARD_SIEMENS_MC_APL4
) || CONFIG(BOARD_SIEMENS_MC_APL7
))
262 /* Open main hwinfo block. */
263 if (hwilib_find_blocks("hwinfo.hex") != CB_SUCCESS
)
266 /* Get legacy delay parameter from hwinfo. */
267 if (hwilib_get_field(LegacyDelay
, (uint8_t *) &legacy_delay
,
268 sizeof(legacy_delay
)) != sizeof(legacy_delay
))
271 us_since_boot
= get_us_since_boot();
272 /* No need to wait if the time since boot is already long enough.*/
273 if (us_since_boot
> legacy_delay
)
275 stopwatch_init_msecs_expire(&sw
, (legacy_delay
- us_since_boot
) / 1000);
276 printk(BIOS_NOTICE
, "Wait remaining %d of %d us for legacy devices...",
277 legacy_delay
- us_since_boot
, legacy_delay
);
278 stopwatch_wait_until_expired(&sw
);
279 printk(BIOS_NOTICE
, "done!\n");
282 BOOT_STATE_INIT_ENTRY(BS_DEV_ENUMERATE
, BS_ON_ENTRY
, wait_for_legacy_dev
, NULL
);