blob: e71a10bfd441014b141c881bb7a9fcce4582c083 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Simon Glass8ef07572014-11-12 22:42:07 -07002/*
3 * Copyright (c) 2014 Google, Inc
4 * (C) Copyright 2008
5 * Graeme Russ, graeme.russ@gmail.com.
6 *
7 * Some portions from coreboot src/mainboard/google/link/romstage.c
Simon Glass8e0df062014-11-12 22:42:23 -07008 * and src/cpu/intel/model_206ax/bootblock.c
Simon Glass8ef07572014-11-12 22:42:07 -07009 * Copyright (C) 2007-2010 coresystems GmbH
10 * Copyright (C) 2011 Google Inc.
Simon Glass8ef07572014-11-12 22:42:07 -070011 */
12
Tom Rinid678a592024-05-18 20:20:43 -060013#include <common.h>
Simon Glass30c7c432019-11-14 12:57:34 -070014#include <cpu_func.h>
Simon Glassaad78d22015-03-05 12:25:33 -070015#include <dm.h>
Simon Glass2b605152014-11-12 22:42:15 -070016#include <errno.h>
Simon Glass7fe32b32022-03-04 08:43:05 -070017#include <event.h>
Simon Glass2b605152014-11-12 22:42:15 -070018#include <fdtdec.h>
Simon Glass691d7192020-05-10 11:40:02 -060019#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060020#include <log.h>
Simon Glass858361b2016-01-17 16:11:13 -070021#include <pch.h>
Simon Glass8ef07572014-11-12 22:42:07 -070022#include <asm/cpu.h>
Simon Glass50dd3da2016-03-11 22:06:58 -070023#include <asm/cpu_common.h>
Simon Glass401d1c42020-10-30 21:38:53 -060024#include <asm/global_data.h>
Simon Glass06d336c2016-03-11 22:06:55 -070025#include <asm/intel_regs.h>
Simon Glassf5fbbe92014-11-12 22:42:19 -070026#include <asm/io.h>
Simon Glass3eafce02014-11-12 22:42:27 -070027#include <asm/lapic.h>
Simon Glass7e4a6ae2016-03-16 07:44:36 -060028#include <asm/lpc_common.h>
Simon Glass9e665062016-03-11 22:06:54 -070029#include <asm/microcode.h>
Simon Glassf5fbbe92014-11-12 22:42:19 -070030#include <asm/msr.h>
31#include <asm/mtrr.h>
Simon Glass6e5b12b2014-11-12 22:42:13 -070032#include <asm/pci.h>
Simon Glass70a09c62014-11-12 22:42:10 -070033#include <asm/post.h>
Simon Glass8ef07572014-11-12 22:42:07 -070034#include <asm/processor.h>
Simon Glassf5fbbe92014-11-12 22:42:19 -070035#include <asm/arch/model_206ax.h>
Simon Glass2b605152014-11-12 22:42:15 -070036#include <asm/arch/pch.h>
Simon Glass8e0df062014-11-12 22:42:23 -070037#include <asm/arch/sandybridge.h>
Simon Glass8ef07572014-11-12 22:42:07 -070038
39DECLARE_GLOBAL_DATA_PTR;
40
Simon Glassf5fbbe92014-11-12 22:42:19 -070041static int set_flex_ratio_to_tdp_nominal(void)
42{
Simon Glassf5fbbe92014-11-12 22:42:19 -070043 /* Minimum CPU revision for configurable TDP support */
44 if (cpuid_eax(1) < IVB_CONFIG_TDP_MIN_CPUID)
45 return -EINVAL;
46
Simon Glass50dd3da2016-03-11 22:06:58 -070047 return cpu_set_flex_ratio_to_tdp_nominal();
Simon Glassf5fbbe92014-11-12 22:42:19 -070048}
49
Simon Glass8ef07572014-11-12 22:42:07 -070050int arch_cpu_init(void)
51{
Simon Glass161d2e42015-03-05 12:25:17 -070052 post_code(POST_CPU_INIT);
Simon Glass161d2e42015-03-05 12:25:17 -070053
54 return x86_cpu_init_f();
55}
56
Simon Glassf72d0d42023-08-21 21:16:56 -060057static int ivybridge_cpu_init(void)
Simon Glass161d2e42015-03-05 12:25:17 -070058{
Simon Glass6e5b12b2014-11-12 22:42:13 -070059 struct pci_controller *hose;
Simon Glass4acc83d2016-01-17 16:11:10 -070060 struct udevice *bus, *dev;
Simon Glass8ef07572014-11-12 22:42:07 -070061 int ret;
62
Simon Glassaad78d22015-03-05 12:25:33 -070063 post_code(0x70);
64 ret = uclass_get_device(UCLASS_PCI, 0, &bus);
65 post_code(0x71);
Simon Glass8ef07572014-11-12 22:42:07 -070066 if (ret)
67 return ret;
Simon Glassaad78d22015-03-05 12:25:33 -070068 post_code(0x72);
69 hose = dev_get_uclass_priv(bus);
Simon Glass8ef07572014-11-12 22:42:07 -070070
Simon Glassaad78d22015-03-05 12:25:33 -070071 /* TODO(sjg@chromium.org): Get rid of gd->hose */
72 gd->hose = hose;
Simon Glass6e5b12b2014-11-12 22:42:13 -070073
Simon Glass3f603cb2016-02-11 13:23:26 -070074 ret = uclass_first_device_err(UCLASS_LPC, &dev);
75 if (ret)
76 return ret;
Simon Glass4acc83d2016-01-17 16:11:10 -070077
Simon Glassf5fbbe92014-11-12 22:42:19 -070078 /*
79 * We should do as little as possible before the serial console is
80 * up. Perhaps this should move to later. Our next lot of init
Simon Glass76d1d022017-03-28 10:27:30 -060081 * happens in checkcpu() when we have a console
Simon Glassf5fbbe92014-11-12 22:42:19 -070082 */
83 ret = set_flex_ratio_to_tdp_nominal();
84 if (ret)
85 return ret;
86
Simon Glass8ef07572014-11-12 22:42:07 -070087 return 0;
88}
Simon Glassf72d0d42023-08-21 21:16:56 -060089EVENT_SPY_SIMPLE(EVT_DM_POST_INIT_F, ivybridge_cpu_init);
Simon Glass8ef07572014-11-12 22:42:07 -070090
Simon Glass8e0df062014-11-12 22:42:23 -070091#define PCH_EHCI0_TEMP_BAR0 0xe8000000
92#define PCH_EHCI1_TEMP_BAR0 0xe8000400
93#define PCH_XHCI_TEMP_BAR0 0xe8001000
94
95/*
96 * Setup USB controller MMIO BAR to prevent the reference code from
97 * resetting the controller.
98 *
99 * The BAR will be re-assigned during device enumeration so these are only
100 * temporary.
101 *
102 * This is used to speed up the resume path.
103 */
Simon Glass5213f282016-01-17 16:11:46 -0700104static void enable_usb_bar(struct udevice *bus)
Simon Glass8e0df062014-11-12 22:42:23 -0700105{
106 pci_dev_t usb0 = PCH_EHCI1_DEV;
107 pci_dev_t usb1 = PCH_EHCI2_DEV;
108 pci_dev_t usb3 = PCH_XHCI_DEV;
Simon Glass5213f282016-01-17 16:11:46 -0700109 ulong cmd;
Simon Glass8e0df062014-11-12 22:42:23 -0700110
111 /* USB Controller 1 */
Simon Glass5213f282016-01-17 16:11:46 -0700112 pci_bus_write_config(bus, usb0, PCI_BASE_ADDRESS_0,
113 PCH_EHCI0_TEMP_BAR0, PCI_SIZE_32);
114 pci_bus_read_config(bus, usb0, PCI_COMMAND, &cmd, PCI_SIZE_32);
Simon Glass8e0df062014-11-12 22:42:23 -0700115 cmd |= PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
Simon Glass5213f282016-01-17 16:11:46 -0700116 pci_bus_write_config(bus, usb0, PCI_COMMAND, cmd, PCI_SIZE_32);
Simon Glass8e0df062014-11-12 22:42:23 -0700117
Simon Glass5213f282016-01-17 16:11:46 -0700118 /* USB Controller 2 */
119 pci_bus_write_config(bus, usb1, PCI_BASE_ADDRESS_0,
120 PCH_EHCI1_TEMP_BAR0, PCI_SIZE_32);
121 pci_bus_read_config(bus, usb1, PCI_COMMAND, &cmd, PCI_SIZE_32);
Simon Glass8e0df062014-11-12 22:42:23 -0700122 cmd |= PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
Simon Glass5213f282016-01-17 16:11:46 -0700123 pci_bus_write_config(bus, usb1, PCI_COMMAND, cmd, PCI_SIZE_32);
Simon Glass8e0df062014-11-12 22:42:23 -0700124
Simon Glass5213f282016-01-17 16:11:46 -0700125 /* USB3 Controller 1 */
126 pci_bus_write_config(bus, usb3, PCI_BASE_ADDRESS_0,
127 PCH_XHCI_TEMP_BAR0, PCI_SIZE_32);
128 pci_bus_read_config(bus, usb3, PCI_COMMAND, &cmd, PCI_SIZE_32);
Simon Glass8e0df062014-11-12 22:42:23 -0700129 cmd |= PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
Simon Glass5213f282016-01-17 16:11:46 -0700130 pci_bus_write_config(bus, usb3, PCI_COMMAND, cmd, PCI_SIZE_32);
Simon Glass8e0df062014-11-12 22:42:23 -0700131}
132
Simon Glass76d1d022017-03-28 10:27:30 -0600133int checkcpu(void)
Simon Glass8ef07572014-11-12 22:42:07 -0700134{
Simon Glass8e0df062014-11-12 22:42:23 -0700135 enum pei_boot_mode_t boot_mode = PEI_BOOT_NONE;
Simon Glassf633efa2016-01-17 16:11:19 -0700136 struct udevice *dev, *lpc;
Simon Glass8e0df062014-11-12 22:42:23 -0700137 uint32_t pm1_cnt;
138 uint16_t pm1_sts;
Simon Glass94060ff2014-11-12 22:42:20 -0700139 int ret;
140
Simon Glass8e0df062014-11-12 22:42:23 -0700141 /* TODO: cmos_post_init() */
142 if (readl(MCHBAR_REG(SSKPD)) == 0xCAFE) {
143 debug("soft reset detected\n");
144 boot_mode = PEI_BOOT_SOFT_RESET;
145
146 /* System is not happy after keyboard reset... */
147 debug("Issuing CF9 warm reset\n");
Harald Seiler35b65dd2020-12-15 16:47:52 +0100148 reset_cpu();
Simon Glass8e0df062014-11-12 22:42:23 -0700149 }
150
Simon Glass50dd3da2016-03-11 22:06:58 -0700151 ret = cpu_common_init();
Simon Glass4cc00f02016-07-25 18:58:59 -0600152 if (ret) {
153 debug("%s: cpu_common_init() failed\n", __func__);
Simon Glass858361b2016-01-17 16:11:13 -0700154 return ret;
Simon Glass4cc00f02016-07-25 18:58:59 -0600155 }
Simon Glass8e0df062014-11-12 22:42:23 -0700156
157 /* Check PM1_STS[15] to see if we are waking from Sx */
158 pm1_sts = inw(DEFAULT_PMBASE + PM1_STS);
159
160 /* Read PM1_CNT[12:10] to determine which Sx state */
161 pm1_cnt = inl(DEFAULT_PMBASE + PM1_CNT);
162
163 if ((pm1_sts & WAK_STS) && ((pm1_cnt >> 10) & 7) == 5) {
Simon Glass8e0df062014-11-12 22:42:23 -0700164 debug("Resume from S3 detected, but disabled.\n");
Simon Glass8e0df062014-11-12 22:42:23 -0700165 } else {
166 /*
167 * TODO: An indication of life might be possible here (e.g.
168 * keyboard light)
169 */
170 }
171 post_code(POST_EARLY_INIT);
172
173 /* Enable SPD ROMs and DDR-III DRAM */
Simon Glass3f603cb2016-02-11 13:23:26 -0700174 ret = uclass_first_device_err(UCLASS_I2C, &dev);
Simon Glass8d8f3ac2017-01-16 07:03:38 -0700175 if (ret) {
176 debug("%s: Failed to get I2C (ret=%d)\n", __func__, ret);
Simon Glass8e0df062014-11-12 22:42:23 -0700177 return ret;
Simon Glass8d8f3ac2017-01-16 07:03:38 -0700178 }
Simon Glass8e0df062014-11-12 22:42:23 -0700179
180 /* Prepare USB controller early in S3 resume */
Simon Glass50dd3da2016-03-11 22:06:58 -0700181 if (boot_mode == PEI_BOOT_RESUME) {
182 uclass_first_device(UCLASS_LPC, &lpc);
Simon Glass5213f282016-01-17 16:11:46 -0700183 enable_usb_bar(pci_get_controller(lpc->parent));
Simon Glass50dd3da2016-03-11 22:06:58 -0700184 }
Simon Glass8e0df062014-11-12 22:42:23 -0700185
186 gd->arch.pei_boot_mode = boot_mode;
187
Simon Glass76d1d022017-03-28 10:27:30 -0600188 return 0;
189}
190
191int print_cpuinfo(void)
192{
193 char processor_name[CPU_MAX_NAME_LEN];
194 const char *name;
195
Simon Glass8ef07572014-11-12 22:42:07 -0700196 /* Print processor name */
197 name = cpu_get_name(processor_name);
198 printf("CPU: %s\n", name);
199
Simon Glass8e0df062014-11-12 22:42:23 -0700200 post_code(POST_CPU_INFO);
201
Simon Glass8ef07572014-11-12 22:42:07 -0700202 return 0;
203}
Simon Glass7b952522015-10-18 19:51:27 -0600204
205void board_debug_uart_init(void)
206{
207 /* This enables the debug UART */
Simon Glassa827ba92019-08-31 21:23:18 -0600208 pci_x86_write_config(PCH_LPC_DEV, LPC_EN, COMA_LPC_EN, PCI_SIZE_16);
Simon Glass7b952522015-10-18 19:51:27 -0600209}