blob: 8fa6953588b51537c90dc81aa662b1694f2d208e [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
Graeme Russdbf71152011-04-13 19:43:26 +10002 * (C) Copyright 2008-2011
3 * Graeme Russ, <graeme.russ@gmail.com>
4 *
wdenk2262cfe2002-11-18 00:14:45 +00005 * (C) Copyright 2002
Albert ARIBAUDfa82f872011-08-04 18:45:45 +02006 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
wdenk8bde7f72003-06-27 21:31:46 +00007 *
wdenk2262cfe2002-11-18 00:14:45 +00008 * (C) Copyright 2002
9 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
10 * Marius Groeger <mgroeger@sysgo.de>
11 *
12 * (C) Copyright 2002
13 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
14 * Alex Zuepke <azu@sysgo.de>
15 *
Bin Meng52f952b2014-11-09 22:18:56 +080016 * Part of this file is adapted from coreboot
17 * src/arch/x86/lib/cpu.c
18 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020019 * SPDX-License-Identifier: GPL-2.0+
wdenk2262cfe2002-11-18 00:14:45 +000020 */
21
wdenk2262cfe2002-11-18 00:14:45 +000022#include <common.h>
23#include <command.h>
Bin Meng6e6f4ce2015-06-17 11:15:36 +080024#include <dm.h>
Simon Glass200182a2014-10-10 08:21:55 -060025#include <errno.h>
26#include <malloc.h>
Bin Mengd8906c12016-06-08 05:07:38 -070027#include <syscon.h>
Stefan Reinauer095593c2012-12-02 04:49:50 +000028#include <asm/control_regs.h>
Bin Mengd19c9072016-05-11 07:45:01 -070029#include <asm/coreboot_tables.h>
Simon Glass200182a2014-10-10 08:21:55 -060030#include <asm/cpu.h>
Bin Meng6e6f4ce2015-06-17 11:15:36 +080031#include <asm/lapic.h>
Simon Glasse77b62e2016-03-11 22:07:11 -070032#include <asm/microcode.h>
Bin Meng6e6f4ce2015-06-17 11:15:36 +080033#include <asm/mp.h>
Bin Meng0c2b7ee2016-05-11 07:45:00 -070034#include <asm/mrccache.h>
Bin Meng43dd22f2015-07-06 16:31:30 +080035#include <asm/msr.h>
36#include <asm/mtrr.h>
Simon Glassa49e3c72014-11-12 22:42:26 -070037#include <asm/post.h>
Graeme Russc53fd2b2011-02-12 15:11:30 +110038#include <asm/processor.h>
Graeme Russ0c24c9c2011-02-12 15:11:32 +110039#include <asm/processor-flags.h>
Graeme Russ3f5f18d2008-12-07 10:29:02 +110040#include <asm/interrupt.h>
Bin Meng5e2400e2015-04-24 18:10:04 +080041#include <asm/tables.h>
Gabe Black60a9b6b2011-11-16 23:32:50 +000042#include <linux/compiler.h>
wdenk2262cfe2002-11-18 00:14:45 +000043
Bin Meng52f952b2014-11-09 22:18:56 +080044DECLARE_GLOBAL_DATA_PTR;
45
Bin Meng52f952b2014-11-09 22:18:56 +080046static const char *const x86_vendor_name[] = {
47 [X86_VENDOR_INTEL] = "Intel",
48 [X86_VENDOR_CYRIX] = "Cyrix",
49 [X86_VENDOR_AMD] = "AMD",
50 [X86_VENDOR_UMC] = "UMC",
51 [X86_VENDOR_NEXGEN] = "NexGen",
52 [X86_VENDOR_CENTAUR] = "Centaur",
53 [X86_VENDOR_RISE] = "Rise",
54 [X86_VENDOR_TRANSMETA] = "Transmeta",
55 [X86_VENDOR_NSC] = "NSC",
56 [X86_VENDOR_SIS] = "SiS",
57};
58
Gabe Blackf30fc4d2012-10-20 12:33:10 +000059int __weak x86_cleanup_before_linux(void)
60{
Simon Glass79497032013-04-17 16:13:35 +000061#ifdef CONFIG_BOOTSTAGE_STASH
Simon Glassee2b2432015-03-02 17:04:37 -070062 bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR,
Simon Glass79497032013-04-17 16:13:35 +000063 CONFIG_BOOTSTAGE_STASH_SIZE);
64#endif
65
Gabe Blackf30fc4d2012-10-20 12:33:10 +000066 return 0;
67}
68
Graeme Russd6532442011-12-27 22:46:43 +110069int x86_init_cache(void)
70{
71 enable_caches();
72
wdenk2262cfe2002-11-18 00:14:45 +000073 return 0;
74}
Graeme Russd6532442011-12-27 22:46:43 +110075int init_cache(void) __attribute__((weak, alias("x86_init_cache")));
wdenk2262cfe2002-11-18 00:14:45 +000076
Wolfgang Denk54841ab2010-06-28 22:00:46 +020077int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk2262cfe2002-11-18 00:14:45 +000078{
Graeme Russ717979f2011-11-08 02:33:13 +000079 printf("resetting ...\n");
Graeme Russdbf71152011-04-13 19:43:26 +100080
81 /* wait 50 ms */
82 udelay(50000);
wdenk2262cfe2002-11-18 00:14:45 +000083 disable_interrupts();
84 reset_cpu(0);
85
86 /*NOTREACHED*/
87 return 0;
88}
89
Graeme Russ717979f2011-11-08 02:33:13 +000090void flush_cache(unsigned long dummy1, unsigned long dummy2)
wdenk2262cfe2002-11-18 00:14:45 +000091{
92 asm("wbinvd\n");
wdenk2262cfe2002-11-18 00:14:45 +000093}
Graeme Russ3f5f18d2008-12-07 10:29:02 +110094
Simon Glasse1ffd812014-11-06 13:20:08 -070095__weak void reset_cpu(ulong addr)
Graeme Russ3f5f18d2008-12-07 10:29:02 +110096{
Simon Glassff6a8f32015-04-28 20:11:29 -060097 /* Do a hard reset through the chipset's reset control register */
Simon Glass2a605d42016-03-11 22:06:59 -070098 outb(SYS_RST | RST_CPU, IO_PORT_RESET);
Simon Glassff6a8f32015-04-28 20:11:29 -060099 for (;;)
100 cpu_hlt();
101}
102
103void x86_full_reset(void)
104{
Simon Glass2a605d42016-03-11 22:06:59 -0700105 outb(FULL_RST | SYS_RST | RST_CPU, IO_PORT_RESET);
Graeme Russ3f5f18d2008-12-07 10:29:02 +1100106}
Stefan Reinauer095593c2012-12-02 04:49:50 +0000107
Stefan Reinauer095593c2012-12-02 04:49:50 +0000108/* Define these functions to allow ehch-hcd to function */
109void flush_dcache_range(unsigned long start, unsigned long stop)
110{
111}
112
113void invalidate_dcache_range(unsigned long start, unsigned long stop)
114{
115}
Simon Glass89371402013-02-28 19:26:11 +0000116
117void dcache_enable(void)
118{
119 enable_caches();
120}
121
122void dcache_disable(void)
123{
124 disable_caches();
125}
126
127void icache_enable(void)
128{
129}
130
131void icache_disable(void)
132{
133}
134
135int icache_status(void)
136{
137 return 1;
138}
Simon Glass7bddac92014-10-10 08:21:52 -0600139
Bin Meng52f952b2014-11-09 22:18:56 +0800140const char *cpu_vendor_name(int vendor)
141{
142 const char *name;
143 name = "<invalid cpu vendor>";
144 if ((vendor < (ARRAY_SIZE(x86_vendor_name))) &&
145 (x86_vendor_name[vendor] != 0))
146 name = x86_vendor_name[vendor];
147
148 return name;
149}
150
Simon Glass727c1a92014-11-10 18:00:26 -0700151char *cpu_get_name(char *name)
Bin Meng52f952b2014-11-09 22:18:56 +0800152{
Simon Glass727c1a92014-11-10 18:00:26 -0700153 unsigned int *name_as_ints = (unsigned int *)name;
Bin Meng52f952b2014-11-09 22:18:56 +0800154 struct cpuid_result regs;
Simon Glass727c1a92014-11-10 18:00:26 -0700155 char *ptr;
Bin Meng52f952b2014-11-09 22:18:56 +0800156 int i;
157
Simon Glass727c1a92014-11-10 18:00:26 -0700158 /* This bit adds up to 48 bytes */
Bin Meng52f952b2014-11-09 22:18:56 +0800159 for (i = 0; i < 3; i++) {
160 regs = cpuid(0x80000002 + i);
161 name_as_ints[i * 4 + 0] = regs.eax;
162 name_as_ints[i * 4 + 1] = regs.ebx;
163 name_as_ints[i * 4 + 2] = regs.ecx;
164 name_as_ints[i * 4 + 3] = regs.edx;
165 }
Simon Glass727c1a92014-11-10 18:00:26 -0700166 name[CPU_MAX_NAME_LEN - 1] = '\0';
Bin Meng52f952b2014-11-09 22:18:56 +0800167
168 /* Skip leading spaces. */
Simon Glass727c1a92014-11-10 18:00:26 -0700169 ptr = name;
170 while (*ptr == ' ')
171 ptr++;
Bin Meng52f952b2014-11-09 22:18:56 +0800172
Simon Glass727c1a92014-11-10 18:00:26 -0700173 return ptr;
Bin Meng52f952b2014-11-09 22:18:56 +0800174}
175
Simon Glass727c1a92014-11-10 18:00:26 -0700176int default_print_cpuinfo(void)
Simon Glass92cc94a2014-10-10 08:21:54 -0600177{
Bin Meng52f952b2014-11-09 22:18:56 +0800178 printf("CPU: %s, vendor %s, device %xh\n",
179 cpu_has_64bit() ? "x86_64" : "x86",
180 cpu_vendor_name(gd->arch.x86_vendor), gd->arch.x86_device);
Simon Glass92cc94a2014-10-10 08:21:54 -0600181
182 return 0;
183}
Simon Glass200182a2014-10-10 08:21:55 -0600184
Simon Glassa49e3c72014-11-12 22:42:26 -0700185void show_boot_progress(int val)
186{
Simon Glassa49e3c72014-11-12 22:42:26 -0700187 outb(val, POST_PORT);
188}
Bin Meng5e2400e2015-04-24 18:10:04 +0800189
190#ifndef CONFIG_SYS_COREBOOT
Bin Meng1e2f7b92016-05-11 07:44:56 -0700191/*
192 * Implement a weak default function for boards that optionally
193 * need to clean up the system before jumping to the kernel.
194 */
195__weak void board_final_cleanup(void)
196{
197}
198
Bin Meng5e2400e2015-04-24 18:10:04 +0800199int last_stage_init(void)
200{
201 write_tables();
202
Bin Meng1e2f7b92016-05-11 07:44:56 -0700203 board_final_cleanup();
204
Bin Meng5e2400e2015-04-24 18:10:04 +0800205 return 0;
206}
207#endif
Simon Glassbcb0c612015-04-29 22:26:01 -0600208
Simon Glassafd5d502016-01-17 16:11:28 -0700209static int x86_init_cpus(void)
Simon Glassbcb0c612015-04-29 22:26:01 -0600210{
Bin Meng6e6f4ce2015-06-17 11:15:36 +0800211#ifdef CONFIG_SMP
212 debug("Init additional CPUs\n");
213 x86_mp_init();
Bin Mengc77b8912015-07-22 01:21:12 -0700214#else
215 struct udevice *dev;
216
217 /*
218 * This causes the cpu-x86 driver to be probed.
219 * We don't check return value here as we want to allow boards
220 * which have not been converted to use cpu uclass driver to boot.
221 */
222 uclass_first_device(UCLASS_CPU, &dev);
Bin Meng6e6f4ce2015-06-17 11:15:36 +0800223#endif
224
Simon Glassbcb0c612015-04-29 22:26:01 -0600225 return 0;
226}
227
228int cpu_init_r(void)
229{
Simon Glassac643e02016-01-17 16:11:30 -0700230 struct udevice *dev;
231 int ret;
232
233 if (!ll_boot_init())
234 return 0;
235
236 ret = x86_init_cpus();
237 if (ret)
238 return ret;
239
240 /*
241 * Set up the northbridge, PCH and LPC if available. Note that these
242 * may have had some limited pre-relocation init if they were probed
243 * before relocation, but this is post relocation.
244 */
245 uclass_first_device(UCLASS_NORTHBRIDGE, &dev);
246 uclass_first_device(UCLASS_PCH, &dev);
247 uclass_first_device(UCLASS_LPC, &dev);
Simon Glasse49ccea2015-08-04 12:34:00 -0600248
Bin Mengd8906c12016-06-08 05:07:38 -0700249 /* Set up pin control if available */
250 ret = syscon_get_by_driver_data(X86_SYSCON_PINCONF, &dev);
251 debug("%s, pinctrl=%p, ret=%d\n", __func__, dev, ret);
252
Simon Glasse49ccea2015-08-04 12:34:00 -0600253 return 0;
Simon Glassbcb0c612015-04-29 22:26:01 -0600254}
Bin Meng0c2b7ee2016-05-11 07:45:00 -0700255
256#ifndef CONFIG_EFI_STUB
257int reserve_arch(void)
258{
259#ifdef CONFIG_ENABLE_MRC_CACHE
Bin Mengd19c9072016-05-11 07:45:01 -0700260 mrccache_reserve();
Bin Meng0c2b7ee2016-05-11 07:45:00 -0700261#endif
Bin Mengd19c9072016-05-11 07:45:01 -0700262
263#ifdef CONFIG_SEABIOS
264 high_table_reserve();
265#endif
266
267 return 0;
Bin Meng0c2b7ee2016-05-11 07:45:00 -0700268}
269#endif