blob: a3252c2560fba8b42d80e7472bffeb45a9890e00 [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>
Kyösti Mälkki13f66502019-03-03 08:01:05 +020018#include <device/mmio.h>
Andrey Petrovf35804b2017-06-05 13:22:41 -070019#include <device/device.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020020#include <device/pci_ops.h>
Andrey Petrovf35804b2017-06-05 13:22:41 -070021#include <intelblocks/fast_spi.h>
Furquan Shaikh1876f3a2017-12-07 18:39:34 -080022#include <intelblocks/gspi.h>
Caveh Jalali1428f012018-01-23 22:15:24 -080023#include <intelblocks/lpc_lib.h>
Subrata Banik7837c202018-05-07 17:13:40 +053024#include <intelblocks/p2sb.h>
Andrey Petrovf35804b2017-06-05 13:22:41 -070025#include <intelblocks/pcr.h>
Lijian Zhao031020e2017-12-15 12:58:07 -080026#include <intelblocks/pmclib.h>
Subrata Banik7837c202018-05-07 17:13:40 +053027#include <intelblocks/rtc.h>
Andrey Petrovf35804b2017-06-05 13:22:41 -070028#include <intelblocks/smbus.h>
Subrata Banik7bc4dc52018-05-17 18:40:32 +053029#include <intelblocks/tco.h>
Andrey Petrovf35804b2017-06-05 13:22:41 -070030#include <soc/bootblock.h>
31#include <soc/iomap.h>
32#include <soc/lpc.h>
33#include <soc/p2sb.h>
Maulik V Vaghela9b08a182018-07-17 21:52:27 +053034#include <soc/pch.h>
Andrey Petrovf35804b2017-06-05 13:22:41 -070035#include <soc/pci_devs.h>
36#include <soc/pcr_ids.h>
Lijian Zhaob3dfcb82017-08-16 22:18:52 -070037#include <soc/pm.h>
Andrey Petrovf35804b2017-06-05 13:22:41 -070038#include <soc/smbus.h>
39
Maulik V Vaghela9b08a182018-07-17 21:52:27 +053040#define PCR_PSF3_TO_SHDW_PMC_REG_BASE_CNP_LP 0x1400
41#define PCR_PSF3_TO_SHDW_PMC_REG_BASE_CNP_H 0x0980
42
Andrey Petrovf35804b2017-06-05 13:22:41 -070043#define PCR_PSFX_TO_SHDW_BAR0 0
44#define PCR_PSFX_TO_SHDW_BAR1 0x4
45#define PCR_PSFX_TO_SHDW_BAR2 0x8
46#define PCR_PSFX_TO_SHDW_BAR3 0xC
47#define PCR_PSFX_TO_SHDW_BAR4 0x10
48#define PCR_PSFX_TO_SHDW_PCIEN_IOEN 0x01
49#define PCR_PSFX_T0_SHDW_PCIEN 0x1C
50
Duncan Laurie2aef7f32018-11-17 12:13:59 -070051#define PCR_DMI_DMICTL 0x2234
52#define PCR_DMI_DMICTL_SRLOCK (1 << 31)
53
Andrey Petrovf35804b2017-06-05 13:22:41 -070054#define PCR_DMI_ACPIBA 0x27B4
55#define PCR_DMI_ACPIBDID 0x27B8
56#define PCR_DMI_PMBASEA 0x27AC
57#define PCR_DMI_PMBASEC 0x27B0
Andrey Petrovf35804b2017-06-05 13:22:41 -070058
59#define PCR_DMI_LPCIOD 0x2770
60#define PCR_DMI_LPCIOE 0x2774
61
Maulik V Vaghela9b08a182018-07-17 21:52:27 +053062static uint32_t get_pmc_reg_base(void)
63{
64 uint8_t pch_series;
65
66 pch_series = get_pch_series();
67
68 if (pch_series == PCH_H)
69 return PCR_PSF3_TO_SHDW_PMC_REG_BASE_CNP_H;
70 else if (pch_series == PCH_LP)
71 return PCR_PSF3_TO_SHDW_PMC_REG_BASE_CNP_LP;
72 else
73 return 0;
74}
75
Andrey Petrovf35804b2017-06-05 13:22:41 -070076static void soc_config_pwrmbase(void)
77{
78 uint32_t reg32;
79
Maulik V Vaghela9b08a182018-07-17 21:52:27 +053080 /*
81 * Assign Resources to PWRMBASE
82 * Clear BIT 1-2 Command Register
83 */
Andrey Petrovf35804b2017-06-05 13:22:41 -070084 reg32 = pci_read_config32(PCH_DEV_PMC, PCI_COMMAND);
85 reg32 &= ~(PCI_COMMAND_MEMORY);
86 pci_write_config32(PCH_DEV_PMC, PCI_COMMAND, reg32);
87
88 /* Program PWRM Base */
89 pci_write_config32(PCH_DEV_PMC, PWRMBASE, PCH_PWRM_BASE_ADDRESS);
90
91 /* Enable Bus Master and MMIO Space */
92 reg32 = pci_read_config32(PCH_DEV_PMC, PCI_COMMAND);
93 reg32 |= PCI_COMMAND_MEMORY;
94 pci_write_config32(PCH_DEV_PMC, PCI_COMMAND, reg32);
95
96 /* Enable PWRM in PMC */
97 reg32 = read32((void *)(PCH_PWRM_BASE_ADDRESS + ACTL));
98 write32((void *)(PCH_PWRM_BASE_ADDRESS + ACTL), reg32 | PWRM_EN);
99}
100
101void bootblock_pch_early_init(void)
102{
103 fast_spi_early_init(SPI_BASE_ADDRESS);
Furquan Shaikh1876f3a2017-12-07 18:39:34 -0800104 gspi_early_bar_init();
Subrata Banik7837c202018-05-07 17:13:40 +0530105 p2sb_enable_bar();
106 p2sb_configure_hpet();
Subrata Banikafa07f72018-05-24 12:21:06 +0530107
Andrey Petrovf35804b2017-06-05 13:22:41 -0700108 /*
109 * Enabling PWRM Base for accessing
110 * Global Reset Cause Register.
111 */
112 soc_config_pwrmbase();
113}
114
115
116static void soc_config_acpibase(void)
117{
118 uint32_t pmc_reg_value;
Maulik V Vaghela9b08a182018-07-17 21:52:27 +0530119 uint32_t pmc_base_reg;
Andrey Petrovf35804b2017-06-05 13:22:41 -0700120
Maulik V Vaghela9b08a182018-07-17 21:52:27 +0530121 pmc_base_reg = get_pmc_reg_base();
122 if (!pmc_base_reg)
Keith Short15588b02019-05-09 11:40:34 -0600123 die_with_post_code(POST_HW_INIT_FAILURE,
124 "Invalid PMC base address\n");
Maulik V Vaghela9b08a182018-07-17 21:52:27 +0530125
126 pmc_reg_value = pcr_read32(PID_PSF3, pmc_base_reg +
127 PCR_PSFX_TO_SHDW_BAR4);
Andrey Petrovf35804b2017-06-05 13:22:41 -0700128
129 if (pmc_reg_value != 0xFFFFFFFF)
130 {
131 /* Disable Io Space before changing the address */
Maulik V Vaghela9b08a182018-07-17 21:52:27 +0530132 pcr_rmw32(PID_PSF3, pmc_base_reg +
Andrey Petrovf35804b2017-06-05 13:22:41 -0700133 PCR_PSFX_T0_SHDW_PCIEN,
134 ~PCR_PSFX_TO_SHDW_PCIEN_IOEN, 0);
135 /* Program ABASE in PSF3 PMC space BAR4*/
Maulik V Vaghela9b08a182018-07-17 21:52:27 +0530136 pcr_write32(PID_PSF3, pmc_base_reg +
Andrey Petrovf35804b2017-06-05 13:22:41 -0700137 PCR_PSFX_TO_SHDW_BAR4,
138 ACPI_BASE_ADDRESS);
139 /* Enable IO Space */
Maulik V Vaghela9b08a182018-07-17 21:52:27 +0530140 pcr_rmw32(PID_PSF3, pmc_base_reg +
Andrey Petrovf35804b2017-06-05 13:22:41 -0700141 PCR_PSFX_T0_SHDW_PCIEN,
142 ~0, PCR_PSFX_TO_SHDW_PCIEN_IOEN);
143 }
144}
145
Duncan Laurie2aef7f32018-11-17 12:13:59 -0700146static int pch_check_decode_enable(void)
147{
148 uint32_t dmi_control;
149
150 /*
151 * This cycle decoding is only allowed to set when
152 * DMICTL.SRLOCK is 0.
153 */
154 dmi_control = pcr_read32(PID_DMI, PCR_DMI_DMICTL);
155 if (dmi_control & PCR_DMI_DMICTL_SRLOCK)
156 return -1;
157 return 0;
158}
159
Andrey Petrovf35804b2017-06-05 13:22:41 -0700160void pch_early_iorange_init(void)
161{
Christian Walterf4aa5012019-08-13 15:09:10 +0200162 uint16_t io_enables = LPC_IOE_EC_4E_4F | LPC_IOE_SUPERIO_2E_2F | LPC_IOE_KBC_60_64 |
Duncan Laurie2aef7f32018-11-17 12:13:59 -0700163 LPC_IOE_EC_62_66 | LPC_IOE_LGE_200;
Andrey Petrovf35804b2017-06-05 13:22:41 -0700164
165 /* IO Decode Range */
Julius Wernercd49cce2019-03-05 16:53:33 -0800166 if (CONFIG(DRIVERS_UART_8250IO))
Duncan Laurie2aef7f32018-11-17 12:13:59 -0700167 lpc_io_setup_comm_a_b();
Andrey Petrovf35804b2017-06-05 13:22:41 -0700168
169 /* IO Decode Enable */
Duncan Laurie2aef7f32018-11-17 12:13:59 -0700170 if (pch_check_decode_enable() == 0) {
171 io_enables = lpc_enable_fixed_io_ranges(io_enables);
172 /*
173 * Set up LPC IO Enables PCR[DMI] + 2774h [15:0] to the same
174 * value program in LPC PCI offset 82h.
175 */
176 pcr_write16(PID_DMI, PCR_DMI_LPCIOE, io_enables);
177 }
Caveh Jalali1428f012018-01-23 22:15:24 -0800178
179 /* Program generic IO Decode Range */
180 pch_enable_lpc();
Andrey Petrovf35804b2017-06-05 13:22:41 -0700181}
182
183void pch_early_init(void)
184{
185 /*
186 * Enabling ABASE for accessing PM1_STS, PM1_EN, PM1_CNT,
187 * GPE0_STS, GPE0_EN registers.
188 */
189 soc_config_acpibase();
190
191 /* Programming TCO_BASE_ADDRESS and TCO Timer Halt */
Subrata Banik7bc4dc52018-05-17 18:40:32 +0530192 tco_configure();
Andrey Petrovf35804b2017-06-05 13:22:41 -0700193
194 /* Program SMBUS_BASE_ADDRESS and Enable it */
195 smbus_common_init();
196
Lijian Zhao031020e2017-12-15 12:58:07 -0800197 /* Set up GPE configuration */
198 pmc_gpe_init();
199
Andrey Petrovf35804b2017-06-05 13:22:41 -0700200 enable_rtc_upper_bank();
Andrey Petrovf35804b2017-06-05 13:22:41 -0700201}