blob: 5ca19e521769b7a6cc084be7c1886930ecb47dbb [file] [log] [blame]
Andrey Petrovf35804b2017-06-05 13:22:41 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2014 Google Inc.
Subrata Banik7bc4dc52018-05-17 18:40:32 +05305 * Copyright (C) 2017-2018 Intel Corporation.
Andrey Petrovf35804b2017-06-05 13:22:41 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
Maulik V Vaghela9b08a182018-07-17 21:52:27 +053017#include <console/console.h>
Andrey Petrovf35804b2017-06-05 13:22:41 -070018#include <device/device.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020019#include <device/pci_ops.h>
Andrey Petrovf35804b2017-06-05 13:22:41 -070020#include <intelblocks/fast_spi.h>
Furquan Shaikh1876f3a2017-12-07 18:39:34 -080021#include <intelblocks/gspi.h>
Caveh Jalali1428f012018-01-23 22:15:24 -080022#include <intelblocks/lpc_lib.h>
Subrata Banik7837c202018-05-07 17:13:40 +053023#include <intelblocks/p2sb.h>
Andrey Petrovf35804b2017-06-05 13:22:41 -070024#include <intelblocks/pcr.h>
Lijian Zhao031020e2017-12-15 12:58:07 -080025#include <intelblocks/pmclib.h>
Subrata Banik7837c202018-05-07 17:13:40 +053026#include <intelblocks/rtc.h>
Andrey Petrovf35804b2017-06-05 13:22:41 -070027#include <intelblocks/smbus.h>
Subrata Banik7bc4dc52018-05-17 18:40:32 +053028#include <intelblocks/tco.h>
Andrey Petrovf35804b2017-06-05 13:22:41 -070029#include <soc/bootblock.h>
30#include <soc/iomap.h>
31#include <soc/lpc.h>
32#include <soc/p2sb.h>
Maulik V Vaghela9b08a182018-07-17 21:52:27 +053033#include <soc/pch.h>
Andrey Petrovf35804b2017-06-05 13:22:41 -070034#include <soc/pci_devs.h>
35#include <soc/pcr_ids.h>
Lijian Zhaob3dfcb82017-08-16 22:18:52 -070036#include <soc/pm.h>
Andrey Petrovf35804b2017-06-05 13:22:41 -070037#include <soc/smbus.h>
38
Maulik V Vaghela9b08a182018-07-17 21:52:27 +053039#define PCR_PSF3_TO_SHDW_PMC_REG_BASE_CNP_LP 0x1400
40#define PCR_PSF3_TO_SHDW_PMC_REG_BASE_CNP_H 0x0980
41
Andrey Petrovf35804b2017-06-05 13:22:41 -070042#define PCR_PSFX_TO_SHDW_BAR0 0
43#define PCR_PSFX_TO_SHDW_BAR1 0x4
44#define PCR_PSFX_TO_SHDW_BAR2 0x8
45#define PCR_PSFX_TO_SHDW_BAR3 0xC
46#define PCR_PSFX_TO_SHDW_BAR4 0x10
47#define PCR_PSFX_TO_SHDW_PCIEN_IOEN 0x01
48#define PCR_PSFX_T0_SHDW_PCIEN 0x1C
49
Duncan Laurie2aef7f32018-11-17 12:13:59 -070050#define PCR_DMI_DMICTL 0x2234
51#define PCR_DMI_DMICTL_SRLOCK (1 << 31)
52
Andrey Petrovf35804b2017-06-05 13:22:41 -070053#define PCR_DMI_ACPIBA 0x27B4
54#define PCR_DMI_ACPIBDID 0x27B8
55#define PCR_DMI_PMBASEA 0x27AC
56#define PCR_DMI_PMBASEC 0x27B0
Andrey Petrovf35804b2017-06-05 13:22:41 -070057
58#define PCR_DMI_LPCIOD 0x2770
59#define PCR_DMI_LPCIOE 0x2774
60
Maulik V Vaghela9b08a182018-07-17 21:52:27 +053061static uint32_t get_pmc_reg_base(void)
62{
63 uint8_t pch_series;
64
65 pch_series = get_pch_series();
66
67 if (pch_series == PCH_H)
68 return PCR_PSF3_TO_SHDW_PMC_REG_BASE_CNP_H;
69 else if (pch_series == PCH_LP)
70 return PCR_PSF3_TO_SHDW_PMC_REG_BASE_CNP_LP;
71 else
72 return 0;
73}
74
Andrey Petrovf35804b2017-06-05 13:22:41 -070075static void soc_config_pwrmbase(void)
76{
77 uint32_t reg32;
78
Maulik V Vaghela9b08a182018-07-17 21:52:27 +053079 /*
80 * Assign Resources to PWRMBASE
81 * Clear BIT 1-2 Command Register
82 */
Andrey Petrovf35804b2017-06-05 13:22:41 -070083 reg32 = pci_read_config32(PCH_DEV_PMC, PCI_COMMAND);
84 reg32 &= ~(PCI_COMMAND_MEMORY);
85 pci_write_config32(PCH_DEV_PMC, PCI_COMMAND, reg32);
86
87 /* Program PWRM Base */
88 pci_write_config32(PCH_DEV_PMC, PWRMBASE, PCH_PWRM_BASE_ADDRESS);
89
90 /* Enable Bus Master and MMIO Space */
91 reg32 = pci_read_config32(PCH_DEV_PMC, PCI_COMMAND);
92 reg32 |= PCI_COMMAND_MEMORY;
93 pci_write_config32(PCH_DEV_PMC, PCI_COMMAND, reg32);
94
95 /* Enable PWRM in PMC */
96 reg32 = read32((void *)(PCH_PWRM_BASE_ADDRESS + ACTL));
97 write32((void *)(PCH_PWRM_BASE_ADDRESS + ACTL), reg32 | PWRM_EN);
98}
99
100void bootblock_pch_early_init(void)
101{
102 fast_spi_early_init(SPI_BASE_ADDRESS);
Furquan Shaikh1876f3a2017-12-07 18:39:34 -0800103 gspi_early_bar_init();
Subrata Banik7837c202018-05-07 17:13:40 +0530104 p2sb_enable_bar();
105 p2sb_configure_hpet();
Subrata Banikafa07f72018-05-24 12:21:06 +0530106
Andrey Petrovf35804b2017-06-05 13:22:41 -0700107 /*
108 * Enabling PWRM Base for accessing
109 * Global Reset Cause Register.
110 */
111 soc_config_pwrmbase();
112}
113
114
115static void soc_config_acpibase(void)
116{
117 uint32_t pmc_reg_value;
Maulik V Vaghela9b08a182018-07-17 21:52:27 +0530118 uint32_t pmc_base_reg;
Andrey Petrovf35804b2017-06-05 13:22:41 -0700119
Maulik V Vaghela9b08a182018-07-17 21:52:27 +0530120 pmc_base_reg = get_pmc_reg_base();
121 if (!pmc_base_reg)
122 die("Invalid PMC base address\n");
123
124 pmc_reg_value = pcr_read32(PID_PSF3, pmc_base_reg +
125 PCR_PSFX_TO_SHDW_BAR4);
Andrey Petrovf35804b2017-06-05 13:22:41 -0700126
127 if (pmc_reg_value != 0xFFFFFFFF)
128 {
129 /* Disable Io Space before changing the address */
Maulik V Vaghela9b08a182018-07-17 21:52:27 +0530130 pcr_rmw32(PID_PSF3, pmc_base_reg +
Andrey Petrovf35804b2017-06-05 13:22:41 -0700131 PCR_PSFX_T0_SHDW_PCIEN,
132 ~PCR_PSFX_TO_SHDW_PCIEN_IOEN, 0);
133 /* Program ABASE in PSF3 PMC space BAR4*/
Maulik V Vaghela9b08a182018-07-17 21:52:27 +0530134 pcr_write32(PID_PSF3, pmc_base_reg +
Andrey Petrovf35804b2017-06-05 13:22:41 -0700135 PCR_PSFX_TO_SHDW_BAR4,
136 ACPI_BASE_ADDRESS);
137 /* Enable IO Space */
Maulik V Vaghela9b08a182018-07-17 21:52:27 +0530138 pcr_rmw32(PID_PSF3, pmc_base_reg +
Andrey Petrovf35804b2017-06-05 13:22:41 -0700139 PCR_PSFX_T0_SHDW_PCIEN,
140 ~0, PCR_PSFX_TO_SHDW_PCIEN_IOEN);
141 }
142}
143
Duncan Laurie2aef7f32018-11-17 12:13:59 -0700144static int pch_check_decode_enable(void)
145{
146 uint32_t dmi_control;
147
148 /*
149 * This cycle decoding is only allowed to set when
150 * DMICTL.SRLOCK is 0.
151 */
152 dmi_control = pcr_read32(PID_DMI, PCR_DMI_DMICTL);
153 if (dmi_control & PCR_DMI_DMICTL_SRLOCK)
154 return -1;
155 return 0;
156}
157
Andrey Petrovf35804b2017-06-05 13:22:41 -0700158void pch_early_iorange_init(void)
159{
Duncan Laurie2aef7f32018-11-17 12:13:59 -0700160 uint16_t io_enables = LPC_IOE_SUPERIO_2E_2F | LPC_IOE_KBC_60_64 |
161 LPC_IOE_EC_62_66 | LPC_IOE_LGE_200;
Andrey Petrovf35804b2017-06-05 13:22:41 -0700162
163 /* IO Decode Range */
Duncan Laurie2aef7f32018-11-17 12:13:59 -0700164 if (IS_ENABLED(CONFIG_DRIVERS_UART_8250IO))
165 lpc_io_setup_comm_a_b();
Andrey Petrovf35804b2017-06-05 13:22:41 -0700166
167 /* IO Decode Enable */
Duncan Laurie2aef7f32018-11-17 12:13:59 -0700168 if (pch_check_decode_enable() == 0) {
169 io_enables = lpc_enable_fixed_io_ranges(io_enables);
170 /*
171 * Set up LPC IO Enables PCR[DMI] + 2774h [15:0] to the same
172 * value program in LPC PCI offset 82h.
173 */
174 pcr_write16(PID_DMI, PCR_DMI_LPCIOE, io_enables);
175 }
Caveh Jalali1428f012018-01-23 22:15:24 -0800176
177 /* Program generic IO Decode Range */
178 pch_enable_lpc();
Andrey Petrovf35804b2017-06-05 13:22:41 -0700179}
180
181void pch_early_init(void)
182{
183 /*
184 * Enabling ABASE for accessing PM1_STS, PM1_EN, PM1_CNT,
185 * GPE0_STS, GPE0_EN registers.
186 */
187 soc_config_acpibase();
188
189 /* Programming TCO_BASE_ADDRESS and TCO Timer Halt */
Subrata Banik7bc4dc52018-05-17 18:40:32 +0530190 tco_configure();
Andrey Petrovf35804b2017-06-05 13:22:41 -0700191
192 /* Program SMBUS_BASE_ADDRESS and Enable it */
193 smbus_common_init();
194
Lijian Zhao031020e2017-12-15 12:58:07 -0800195 /* Set up GPE configuration */
196 pmc_gpe_init();
197
Andrey Petrovf35804b2017-06-05 13:22:41 -0700198 enable_rtc_upper_bank();
Andrey Petrovf35804b2017-06-05 13:22:41 -0700199}