blob: e730e202c7f5263fd64ca594fdd0f05239e3965e [file] [log] [blame]
Angel Pons6ad91762020-04-03 01:23:24 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Werner Zeh0dc87ef2019-10-22 15:08:19 +02002
3#include <arch/io.h>
4#include <bootstate.h>
5#include <cf9_reset.h>
Werner Zeh0dc87ef2019-10-22 15:08:19 +02006#include <device/pci_def.h>
7#include <device/pci_ids.h>
8#include <device/pci_ops.h>
9#include <gpio.h>
10#include <hwilib.h>
11#include <intelblocks/lpc_lib.h>
12#include <intelblocks/pcr.h>
13#include <soc/pcr_ids.h>
Werner Zeh0dc87ef2019-10-22 15:08:19 +020014#include <baseboard/variants.h>
15#include <types.h>
16
17#define TX_DWORD3 0xa8c
18
19void variant_mainboard_final(void)
20{
21 struct device *dev = NULL;
Werner Zeh0dc87ef2019-10-22 15:08:19 +020022
23 /* PIR6 register mapping for PCIe root ports
24 * INTA#->PIRQD#, INTB#->PIRQA#, INTC#->PIRQB#, INTD#-> PIRQC#
25 */
26 pcr_write16(PID_ITSS, 0x314c, 0x2103);
27
28 /* Enable CLKRUN_EN for power gating LPC */
29 lpc_enable_pci_clk_cntl();
30
31 /*
32 * Enable LPC PCE (Power Control Enable) by setting IOSF-SB port 0xD2
33 * offset 0x341D bit3 and bit0.
34 * Enable LPC CCE (Clock Control Enable) by setting IOSF-SB port 0xD2
35 * offset 0x341C bit [3:0].
36 */
37 pcr_or32(PID_LPC, PCR_LPC_PRC, (PCR_LPC_CCE_EN | PCR_LPC_PCE_EN));
38
Werner Zeh1412ffa2021-07-20 07:33:20 +020039 /* Set Master Enable for on-board PCI device if allowed. */
Felix Singer43b7f412022-03-07 04:34:52 +010040 dev = dev_find_device(PCI_VID_SIEMENS, 0x403e, 0);
Werner Zeh0dc87ef2019-10-22 15:08:19 +020041 if (dev) {
Werner Zehe8fc8f32021-07-22 06:44:01 +020042 if (CONFIG(PCI_ALLOW_BUS_MASTER_ANY_DEVICE))
Werner Zeh1412ffa2021-07-20 07:33:20 +020043 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER);
Werner Zeh0dc87ef2019-10-22 15:08:19 +020044
Werner Zeh4f7fe492019-11-08 09:50:20 +010045 /* Disable clock outputs 0-3 (CLKOUT) for upstream
Werner Zeh0dc87ef2019-10-22 15:08:19 +020046 * XIO2001 PCIe to PCI Bridge.
47 */
48 struct device *parent = dev->bus->dev;
Felix Singer43b7f412022-03-07 04:34:52 +010049 if (parent && parent->device == PCI_DID_TI_XIO2001)
Werner Zeh4f7fe492019-11-08 09:50:20 +010050 pci_write_config8(parent, 0xd8, 0x0F);
Werner Zeh0dc87ef2019-10-22 15:08:19 +020051 }
52
53 /* Disable clock outputs 2-5 (CLKOUT) for another XIO2001 PCIe to PCI
54 * Bridge on this mainboard.
55 */
Felix Singer43b7f412022-03-07 04:34:52 +010056 dev = dev_find_device(PCI_VID_SIEMENS, 0x403f, 0);
Werner Zeh0dc87ef2019-10-22 15:08:19 +020057 if (dev) {
58 struct device *parent = dev->bus->dev;
Felix Singer43b7f412022-03-07 04:34:52 +010059 if (parent && parent->device == PCI_DID_TI_XIO2001)
Werner Zeh0dc87ef2019-10-22 15:08:19 +020060 pci_write_config8(parent, 0xd8, 0x3c);
61 }
62
63 /* Set Full Reset Bit in Reset Control Register (I/O port CF9h).
64 * When Bit 3 is set to 1 and then the reset button is pressed the PCH
65 * will drive SLP_S3 active (low). SLP_S3 is then used on the mainboard
66 * to generate the right reset timing.
67 */
68 outb(FULL_RST, RST_CNT);
69}
70
Werner Zeh0dc87ef2019-10-22 15:08:19 +020071static void finalize_boot(void *unused)
72{
73 /* Set coreboot ready LED. */
74 gpio_output(CNV_RGI_DT, 1);
75}
76
Werner Zeh0dc87ef2019-10-22 15:08:19 +020077BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_BOOT, BS_ON_ENTRY, finalize_boot, NULL);