blob: eda4b1bf749c92791279703695c38b7ec44e0671 [file] [log] [blame]
Angel Pons6ad91762020-04-03 01:23:24 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Mario Scheithauer5716b4c2018-11-14 13:27:05 +01002
3#include <bootstate.h>
Mario Scheithauer7ad8b092023-05-09 09:49:13 +02004#include <cf9_reset.h>
Mario Scheithauera94a1532018-11-28 09:13:28 +01005#include <device/pci_def.h>
Mario Scheithauer5716b4c2018-11-14 13:27:05 +01006#include <device/pci_ids.h>
7#include <device/pci_ops.h>
8#include <gpio.h>
9#include <hwilib.h>
10#include <intelblocks/lpc_lib.h>
11#include <intelblocks/pcr.h>
12#include <soc/pcr_ids.h>
Mario Scheithauer5716b4c2018-11-14 13:27:05 +010013#include <baseboard/variants.h>
Elyes HAOUASe39db682019-05-15 21:12:31 +020014#include <types.h>
Mario Scheithauer5716b4c2018-11-14 13:27:05 +010015
Mario Scheithauer15e1d972023-06-28 10:18:29 +020016#define TX_DWORD3_P0 0xc8c
17#define TX_SWING_MASK 0x00ff0000
18
Mario Scheithauer5716b4c2018-11-14 13:27:05 +010019void variant_mainboard_final(void)
20{
Mario Scheithauer5716b4c2018-11-14 13:27:05 +010021 struct device *dev = NULL;
22
Mario Scheithauer08706a32023-05-09 13:34:05 +020023 /* PIR6 register mapping for PCIe root ports
24 INTA#->PIRQB#, INTB#->PIRQC#, INTC#->PIRQD#, INTD#-> PIRQA# */
Mario Scheithauer5716b4c2018-11-14 13:27:05 +010025 pcr_write16(PID_ITSS, 0x314c, 0x0321);
26
Mario Scheithauer5716b4c2018-11-14 13:27:05 +010027 /* Enable CLKRUN_EN for power gating LPC */
28 lpc_enable_pci_clk_cntl();
29
30 /*
Mario Scheithauer08706a32023-05-09 13:34:05 +020031 * Enable LPC PCE (Power Control Enable) by setting IOSF-SB port 0xD2 offset 0x341D
32 * bit3 and bit0.
33 * Enable LPC CCE (Clock Control Enable) by setting IOSF-SB port 0xD2 offset 0x341C bit
34 * [3:0].
Mario Scheithauer5716b4c2018-11-14 13:27:05 +010035 */
36 pcr_or32(PID_LPC, PCR_LPC_PRC, (PCR_LPC_CCE_EN | PCR_LPC_PCE_EN));
37
Mario Scheithauer15e1d972023-06-28 10:18:29 +020038 /*
39 * Correct the SATA transmit signal via the High Speed I/O Transmit
40 * Control Register 3 on SATA port 0.
41 * Bit [23:16] sets the output voltage swing for TX line.
42 * The value 0x5a sets the swing level to 0.7 V.
43 */
44 pcr_rmw32(PID_MODPHY, TX_DWORD3_P0, ~TX_SWING_MASK, 0x5a << 16);
45
Werner Zeh1412ffa2021-07-20 07:33:20 +020046 /* Set Master Enable for on-board PCI device if allowed. */
Felix Singer43b7f412022-03-07 04:34:52 +010047 dev = dev_find_device(PCI_VID_SIEMENS, 0x403e, 0);
Mario Scheithauera94a1532018-11-28 09:13:28 +010048 if (dev) {
Werner Zehe8fc8f32021-07-22 06:44:01 +020049 if (CONFIG(PCI_ALLOW_BUS_MASTER_ANY_DEVICE))
Werner Zeh1412ffa2021-07-20 07:33:20 +020050 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER);
Mario Scheithauer1a5ce952018-11-28 09:21:58 +010051
Mario Scheithauer08706a32023-05-09 13:34:05 +020052 /* Disable clock outputs 0-3 (CLKOUT) for upstream XIO2001 PCIe to PCI
53 Bridge. */
Arthur Heymans7fcd4d52023-08-24 15:12:19 +020054 struct device *parent = dev->upstream->dev;
Felix Singer43b7f412022-03-07 04:34:52 +010055 if (parent && parent->device == PCI_DID_TI_XIO2001)
Mario Scheithauer1a5ce952018-11-28 09:21:58 +010056 pci_write_config8(parent, 0xd8, 0x0f);
57 }
58
Mario Scheithauer08706a32023-05-09 13:34:05 +020059 /* Disable clock outputs 1-5 (CLKOUT) for another XIO2001 PCIe to PCI Bridge on this
60 mainboard. */
Felix Singer43b7f412022-03-07 04:34:52 +010061 dev = dev_find_device(PCI_VID_SIEMENS, 0x403f, 0);
Mario Scheithauer1a5ce952018-11-28 09:21:58 +010062 if (dev) {
Arthur Heymans7fcd4d52023-08-24 15:12:19 +020063 struct device *parent = dev->upstream->dev;
Felix Singer43b7f412022-03-07 04:34:52 +010064 if (parent && parent->device == PCI_DID_TI_XIO2001)
Mario Scheithauer1a5ce952018-11-28 09:21:58 +010065 pci_write_config8(parent, 0xd8, 0x3e);
Mario Scheithauera94a1532018-11-28 09:13:28 +010066 }
Mario Scheithauer7ad8b092023-05-09 09:49:13 +020067
68 /* Set Full Reset Bit in Reset Control Register (I/O port CF9h). When Bit 3 is set to 1
69 and then a warm reset is triggered the PCH will drive SLP_S3 active (low). SLP_S3 is
70 then used on the mainboard to generate the right reset timing. */
71 outb(FULL_RST, RST_CNT);
Mario Scheithauer5716b4c2018-11-14 13:27:05 +010072}
73
Mario Scheithauer5716b4c2018-11-14 13:27:05 +010074static void finalize_boot(void *unused)
75{
76 /* Set coreboot ready LED. */
77 gpio_output(CNV_RGI_DT, 1);
78}
79
Mario Scheithauer5716b4c2018-11-14 13:27:05 +010080BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_BOOT, BS_ON_ENTRY, finalize_boot, NULL);