blob: 6db9da81b71b0e7a58dfa7e7c517b14d9fceec99 [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
13#include <common.h>
Simon Glassaad78d22015-03-05 12:25:33 -070014#include <dm.h>
Simon Glass2b605152014-11-12 22:42:15 -070015#include <errno.h>
16#include <fdtdec.h>
Simon Glass858361b2016-01-17 16:11:13 -070017#include <pch.h>
Simon Glass8ef07572014-11-12 22:42:07 -070018#include <asm/cpu.h>
Simon Glass50dd3da2016-03-11 22:06:58 -070019#include <asm/cpu_common.h>
Simon Glass06d336c2016-03-11 22:06:55 -070020#include <asm/intel_regs.h>
Simon Glassf5fbbe92014-11-12 22:42:19 -070021#include <asm/io.h>
Simon Glass3eafce02014-11-12 22:42:27 -070022#include <asm/lapic.h>
Simon Glass7e4a6ae2016-03-16 07:44:36 -060023#include <asm/lpc_common.h>
Simon Glass9e665062016-03-11 22:06:54 -070024#include <asm/microcode.h>
Simon Glassf5fbbe92014-11-12 22:42:19 -070025#include <asm/msr.h>
26#include <asm/mtrr.h>
Simon Glass6e5b12b2014-11-12 22:42:13 -070027#include <asm/pci.h>
Simon Glass70a09c62014-11-12 22:42:10 -070028#include <asm/post.h>
Simon Glass8ef07572014-11-12 22:42:07 -070029#include <asm/processor.h>
Simon Glassf5fbbe92014-11-12 22:42:19 -070030#include <asm/arch/model_206ax.h>
Simon Glass2b605152014-11-12 22:42:15 -070031#include <asm/arch/pch.h>
Simon Glass8e0df062014-11-12 22:42:23 -070032#include <asm/arch/sandybridge.h>
Simon Glass8ef07572014-11-12 22:42:07 -070033
34DECLARE_GLOBAL_DATA_PTR;
35
Simon Glassf5fbbe92014-11-12 22:42:19 -070036static int set_flex_ratio_to_tdp_nominal(void)
37{
Simon Glassf5fbbe92014-11-12 22:42:19 -070038 /* Minimum CPU revision for configurable TDP support */
39 if (cpuid_eax(1) < IVB_CONFIG_TDP_MIN_CPUID)
40 return -EINVAL;
41
Simon Glass50dd3da2016-03-11 22:06:58 -070042 return cpu_set_flex_ratio_to_tdp_nominal();
Simon Glassf5fbbe92014-11-12 22:42:19 -070043}
44
Simon Glass8ef07572014-11-12 22:42:07 -070045int arch_cpu_init(void)
46{
Simon Glass161d2e42015-03-05 12:25:17 -070047 post_code(POST_CPU_INIT);
Simon Glass161d2e42015-03-05 12:25:17 -070048
49 return x86_cpu_init_f();
50}
51
52int arch_cpu_init_dm(void)
53{
Simon Glass6e5b12b2014-11-12 22:42:13 -070054 struct pci_controller *hose;
Simon Glass4acc83d2016-01-17 16:11:10 -070055 struct udevice *bus, *dev;
Simon Glass8ef07572014-11-12 22:42:07 -070056 int ret;
57
Simon Glassaad78d22015-03-05 12:25:33 -070058 post_code(0x70);
59 ret = uclass_get_device(UCLASS_PCI, 0, &bus);
60 post_code(0x71);
Simon Glass8ef07572014-11-12 22:42:07 -070061 if (ret)
62 return ret;
Simon Glassaad78d22015-03-05 12:25:33 -070063 post_code(0x72);
64 hose = dev_get_uclass_priv(bus);
Simon Glass8ef07572014-11-12 22:42:07 -070065
Simon Glassaad78d22015-03-05 12:25:33 -070066 /* TODO(sjg@chromium.org): Get rid of gd->hose */
67 gd->hose = hose;
Simon Glass6e5b12b2014-11-12 22:42:13 -070068
Simon Glass3f603cb2016-02-11 13:23:26 -070069 ret = uclass_first_device_err(UCLASS_LPC, &dev);
70 if (ret)
71 return ret;
Simon Glass4acc83d2016-01-17 16:11:10 -070072
Simon Glassf5fbbe92014-11-12 22:42:19 -070073 /*
74 * We should do as little as possible before the serial console is
75 * up. Perhaps this should move to later. Our next lot of init
Simon Glass76d1d022017-03-28 10:27:30 -060076 * happens in checkcpu() when we have a console
Simon Glassf5fbbe92014-11-12 22:42:19 -070077 */
78 ret = set_flex_ratio_to_tdp_nominal();
79 if (ret)
80 return ret;
81
Simon Glass8ef07572014-11-12 22:42:07 -070082 return 0;
83}
84
Simon Glass8e0df062014-11-12 22:42:23 -070085#define PCH_EHCI0_TEMP_BAR0 0xe8000000
86#define PCH_EHCI1_TEMP_BAR0 0xe8000400
87#define PCH_XHCI_TEMP_BAR0 0xe8001000
88
89/*
90 * Setup USB controller MMIO BAR to prevent the reference code from
91 * resetting the controller.
92 *
93 * The BAR will be re-assigned during device enumeration so these are only
94 * temporary.
95 *
96 * This is used to speed up the resume path.
97 */
Simon Glass5213f282016-01-17 16:11:46 -070098static void enable_usb_bar(struct udevice *bus)
Simon Glass8e0df062014-11-12 22:42:23 -070099{
100 pci_dev_t usb0 = PCH_EHCI1_DEV;
101 pci_dev_t usb1 = PCH_EHCI2_DEV;
102 pci_dev_t usb3 = PCH_XHCI_DEV;
Simon Glass5213f282016-01-17 16:11:46 -0700103 ulong cmd;
Simon Glass8e0df062014-11-12 22:42:23 -0700104
105 /* USB Controller 1 */
Simon Glass5213f282016-01-17 16:11:46 -0700106 pci_bus_write_config(bus, usb0, PCI_BASE_ADDRESS_0,
107 PCH_EHCI0_TEMP_BAR0, PCI_SIZE_32);
108 pci_bus_read_config(bus, usb0, PCI_COMMAND, &cmd, PCI_SIZE_32);
Simon Glass8e0df062014-11-12 22:42:23 -0700109 cmd |= PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
Simon Glass5213f282016-01-17 16:11:46 -0700110 pci_bus_write_config(bus, usb0, PCI_COMMAND, cmd, PCI_SIZE_32);
Simon Glass8e0df062014-11-12 22:42:23 -0700111
Simon Glass5213f282016-01-17 16:11:46 -0700112 /* USB Controller 2 */
113 pci_bus_write_config(bus, usb1, PCI_BASE_ADDRESS_0,
114 PCH_EHCI1_TEMP_BAR0, PCI_SIZE_32);
115 pci_bus_read_config(bus, usb1, PCI_COMMAND, &cmd, PCI_SIZE_32);
Simon Glass8e0df062014-11-12 22:42:23 -0700116 cmd |= PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
Simon Glass5213f282016-01-17 16:11:46 -0700117 pci_bus_write_config(bus, usb1, PCI_COMMAND, cmd, PCI_SIZE_32);
Simon Glass8e0df062014-11-12 22:42:23 -0700118
Simon Glass5213f282016-01-17 16:11:46 -0700119 /* USB3 Controller 1 */
120 pci_bus_write_config(bus, usb3, PCI_BASE_ADDRESS_0,
121 PCH_XHCI_TEMP_BAR0, PCI_SIZE_32);
122 pci_bus_read_config(bus, usb3, PCI_COMMAND, &cmd, PCI_SIZE_32);
Simon Glass8e0df062014-11-12 22:42:23 -0700123 cmd |= PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
Simon Glass5213f282016-01-17 16:11:46 -0700124 pci_bus_write_config(bus, usb3, PCI_COMMAND, cmd, PCI_SIZE_32);
Simon Glass8e0df062014-11-12 22:42:23 -0700125}
126
Simon Glass76d1d022017-03-28 10:27:30 -0600127int checkcpu(void)
Simon Glass8ef07572014-11-12 22:42:07 -0700128{
Simon Glass8e0df062014-11-12 22:42:23 -0700129 enum pei_boot_mode_t boot_mode = PEI_BOOT_NONE;
Simon Glassf633efa2016-01-17 16:11:19 -0700130 struct udevice *dev, *lpc;
Simon Glass8e0df062014-11-12 22:42:23 -0700131 uint32_t pm1_cnt;
132 uint16_t pm1_sts;
Simon Glass94060ff2014-11-12 22:42:20 -0700133 int ret;
134
Simon Glass8e0df062014-11-12 22:42:23 -0700135 /* TODO: cmos_post_init() */
136 if (readl(MCHBAR_REG(SSKPD)) == 0xCAFE) {
137 debug("soft reset detected\n");
138 boot_mode = PEI_BOOT_SOFT_RESET;
139
140 /* System is not happy after keyboard reset... */
141 debug("Issuing CF9 warm reset\n");
Simon Glass5021c812015-04-28 20:11:30 -0600142 reset_cpu(0);
Simon Glass8e0df062014-11-12 22:42:23 -0700143 }
144
Simon Glass50dd3da2016-03-11 22:06:58 -0700145 ret = cpu_common_init();
Simon Glass4cc00f02016-07-25 18:58:59 -0600146 if (ret) {
147 debug("%s: cpu_common_init() failed\n", __func__);
Simon Glass858361b2016-01-17 16:11:13 -0700148 return ret;
Simon Glass4cc00f02016-07-25 18:58:59 -0600149 }
Simon Glass8e0df062014-11-12 22:42:23 -0700150
151 /* Check PM1_STS[15] to see if we are waking from Sx */
152 pm1_sts = inw(DEFAULT_PMBASE + PM1_STS);
153
154 /* Read PM1_CNT[12:10] to determine which Sx state */
155 pm1_cnt = inl(DEFAULT_PMBASE + PM1_CNT);
156
157 if ((pm1_sts & WAK_STS) && ((pm1_cnt >> 10) & 7) == 5) {
Simon Glass8e0df062014-11-12 22:42:23 -0700158 debug("Resume from S3 detected, but disabled.\n");
Simon Glass8e0df062014-11-12 22:42:23 -0700159 } else {
160 /*
161 * TODO: An indication of life might be possible here (e.g.
162 * keyboard light)
163 */
164 }
165 post_code(POST_EARLY_INIT);
166
167 /* Enable SPD ROMs and DDR-III DRAM */
Simon Glass3f603cb2016-02-11 13:23:26 -0700168 ret = uclass_first_device_err(UCLASS_I2C, &dev);
Simon Glass8d8f3ac2017-01-16 07:03:38 -0700169 if (ret) {
170 debug("%s: Failed to get I2C (ret=%d)\n", __func__, ret);
Simon Glass8e0df062014-11-12 22:42:23 -0700171 return ret;
Simon Glass8d8f3ac2017-01-16 07:03:38 -0700172 }
Simon Glass8e0df062014-11-12 22:42:23 -0700173
174 /* Prepare USB controller early in S3 resume */
Simon Glass50dd3da2016-03-11 22:06:58 -0700175 if (boot_mode == PEI_BOOT_RESUME) {
176 uclass_first_device(UCLASS_LPC, &lpc);
Simon Glass5213f282016-01-17 16:11:46 -0700177 enable_usb_bar(pci_get_controller(lpc->parent));
Simon Glass50dd3da2016-03-11 22:06:58 -0700178 }
Simon Glass8e0df062014-11-12 22:42:23 -0700179
180 gd->arch.pei_boot_mode = boot_mode;
181
Simon Glass76d1d022017-03-28 10:27:30 -0600182 return 0;
183}
184
185int print_cpuinfo(void)
186{
187 char processor_name[CPU_MAX_NAME_LEN];
188 const char *name;
189
Simon Glass8ef07572014-11-12 22:42:07 -0700190 /* Print processor name */
191 name = cpu_get_name(processor_name);
192 printf("CPU: %s\n", name);
193
Simon Glass8e0df062014-11-12 22:42:23 -0700194 post_code(POST_CPU_INFO);
195
Simon Glass8ef07572014-11-12 22:42:07 -0700196 return 0;
197}
Simon Glass7b952522015-10-18 19:51:27 -0600198
199void board_debug_uart_init(void)
200{
201 /* This enables the debug UART */
Simon Glassa827ba92019-08-31 21:23:18 -0600202 pci_x86_write_config(PCH_LPC_DEV, LPC_EN, COMA_LPC_EN, PCI_SIZE_16);
Simon Glass7b952522015-10-18 19:51:27 -0600203}