blob: 5a4c01fad2579fa1fa236f0a594d37974fcd6561 [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>
4#include <console/console.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
16#define TX_DWORD3 0xa8c
17
18void variant_mainboard_final(void)
19{
Mario Scheithauer5716b4c2018-11-14 13:27:05 +010020 struct device *dev = NULL;
21
22 /*
Mario Scheithauer5716b4c2018-11-14 13:27:05 +010023 * PIR6 register mapping for PCIe root ports
24 * INTA#->PIRQB#, INTB#->PIRQC#, INTC#->PIRQD#, INTD#-> PIRQA#
25 */
26 pcr_write16(PID_ITSS, 0x314c, 0x0321);
27
Mario Scheithauer5716b4c2018-11-14 13:27:05 +010028 /* 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
39 /*
40 * Correct the SATA transmit signal via the High Speed I/O Transmit
41 * Control Register 3.
42 * Bit [23:16] set the output voltage swing for TX line.
43 * The value 0x4a sets the swing level to 0.58 V.
44 */
45 pcr_rmw32(PID_MODPHY, TX_DWORD3, (0x00 << 16), (0x4a << 16));
Mario Scheithauera94a1532018-11-28 09:13:28 +010046
47 /* Set Master Enable for on-board PCI device. */
48 dev = dev_find_device(PCI_VENDOR_ID_SIEMENS, 0x403e, 0);
49 if (dev) {
Angel Pons28ed7872020-11-10 20:07:33 +010050 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER);
Mario Scheithauer1a5ce952018-11-28 09:21:58 +010051
52 /* Disable clock outputs 0-3 (CLKOUT) for upstream XIO2001 PCIe
53 * to PCI Bridge. */
54 struct device *parent = dev->bus->dev;
55 if (parent && parent->device == PCI_DEVICE_ID_TI_XIO2001)
56 pci_write_config8(parent, 0xd8, 0x0f);
57 }
58
59 /* Disable clock outputs 1-5 (CLKOUT) for another XIO2001 PCIe to PCI
60 * Bridge on this mainboard.
61 */
62 dev = dev_find_device(PCI_VENDOR_ID_SIEMENS, 0x403f, 0);
63 if (dev) {
64 struct device *parent = dev->bus->dev;
65 if (parent && parent->device == PCI_DEVICE_ID_TI_XIO2001)
66 pci_write_config8(parent, 0xd8, 0x3e);
Mario Scheithauera94a1532018-11-28 09:13:28 +010067 }
Mario Scheithauer5716b4c2018-11-14 13:27:05 +010068}
69
Mario Scheithauer5716b4c2018-11-14 13:27:05 +010070static void finalize_boot(void *unused)
71{
72 /* Set coreboot ready LED. */
73 gpio_output(CNV_RGI_DT, 1);
74}
75
Mario Scheithauer5716b4c2018-11-14 13:27:05 +010076BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_BOOT, BS_ON_ENTRY, finalize_boot, NULL);