blob: 1dcbb983f5c62e2ca14a1d4d74e64fea2a933f19 [file] [log] [blame]
wdenk591dda52002-11-18 00:14:45 +00001/*
2 * (C) Copyright 2002
3 * Daniel Engström, Omicron Ceti AB, daniel@omicron.se.
wdenk57b2d802003-06-27 21:31:46 +00004 *
wdenk591dda52002-11-18 00:14:45 +00005 * (C) Copyright 2002
6 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Marius Groeger <mgroeger@sysgo.de>
8 *
9 * (C) Copyright 2002
10 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
11 * Alex Zuepke <azu@sysgo.de>
12 *
13 * See file CREDITS for list of people who contributed to this
14 * project.
15 *
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License as
18 * published by the Free Software Foundation; either version 2 of
19 * the License, or (at your option) any later version.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 * MA 02111-1307 USA
30 */
31
32/*
33 * CPU specific code
34 */
35
36#include <common.h>
37#include <command.h>
Graeme Russ25391d12011-02-12 15:11:30 +110038#include <asm/processor.h>
Graeme Russ278638d2008-12-07 10:29:02 +110039#include <asm/interrupt.h>
wdenk591dda52002-11-18 00:14:45 +000040
Graeme Russ1ce0a602010-10-07 20:03:21 +110041/* Constructor for a conventional segment GDT (or LDT) entry */
42/* This is a macro so it can be used in initializers */
43#define GDT_ENTRY(flags, base, limit) \
44 ((((base) & 0xff000000ULL) << (56-24)) | \
45 (((flags) & 0x0000f0ffULL) << 40) | \
46 (((limit) & 0x000f0000ULL) << (48-16)) | \
47 (((base) & 0x00ffffffULL) << 16) | \
48 (((limit) & 0x0000ffffULL)))
49
Graeme Russ1ce0a602010-10-07 20:03:21 +110050/*
51 * Set up the GDT
52 */
53
54struct gdt_ptr {
55 u16 len;
56 u32 ptr;
57} __attribute__((packed));
58
59static void reload_gdt(void)
60{
61 /* There are machines which are known to not boot with the GDT
62 being 8-byte unaligned. Intel recommends 16 byte alignment. */
63 static const u64 boot_gdt[] __attribute__((aligned(16))) = {
64 /* CS: code, read/execute, 4 GB, base 0 */
65 [GDT_ENTRY_32BIT_CS] = GDT_ENTRY(0xc09b, 0, 0xfffff),
66 /* DS: data, read/write, 4 GB, base 0 */
67 [GDT_ENTRY_32BIT_DS] = GDT_ENTRY(0xc093, 0, 0xfffff),
68 /* 16-bit CS: code, read/execute, 64 kB, base 0 */
69 [GDT_ENTRY_16BIT_CS] = GDT_ENTRY(0x109b, 0, 0x0ffff),
70 /* 16-bit DS: data, read/write, 64 kB, base 0 */
71 [GDT_ENTRY_16BIT_DS] = GDT_ENTRY(0x1093, 0, 0x0ffff),
72 };
73 static struct gdt_ptr gdt;
74
75 gdt.len = sizeof(boot_gdt)-1;
76 gdt.ptr = (u32)&boot_gdt;
77
78 asm volatile("lgdtl %0\n" \
79 "movl $((2+1)*8), %%ecx\n" \
80 "movl %%ecx, %%ds\n" \
81 "movl %%ecx, %%es\n" \
82 "movl %%ecx, %%fs\n" \
83 "movl %%ecx, %%gs\n" \
84 "movl %%ecx, %%ss" \
85 : : "m" (gdt) : "ecx");
86}
87
88
Graeme Russ078395c2009-11-24 20:04:21 +110089int cpu_init_f(void)
wdenk591dda52002-11-18 00:14:45 +000090{
wdenkabda5ca2003-05-31 18:35:21 +000091 /* initialize FPU, reset EM, set MP and NE */
92 asm ("fninit\n" \
wdenk57b2d802003-06-27 21:31:46 +000093 "movl %cr0, %eax\n" \
94 "andl $~0x4, %eax\n" \
95 "orl $0x22, %eax\n" \
96 "movl %eax, %cr0\n" );
97
Graeme Russ078395c2009-11-24 20:04:21 +110098 return 0;
99}
100
101int cpu_init_r(void)
102{
Graeme Russ1ce0a602010-10-07 20:03:21 +1100103 reload_gdt();
104
Graeme Russ77290ee2009-02-24 21:13:40 +1100105 /* Initialize core interrupt and exception functionality of CPU */
106 cpu_init_interrupts ();
wdenk591dda52002-11-18 00:14:45 +0000107 return 0;
108}
109
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200110int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk591dda52002-11-18 00:14:45 +0000111{
wdenk591dda52002-11-18 00:14:45 +0000112 printf ("resetting ...\n");
113 udelay(50000); /* wait 50 ms */
114 disable_interrupts();
115 reset_cpu(0);
116
117 /*NOTREACHED*/
118 return 0;
119}
120
121void flush_cache (unsigned long dummy1, unsigned long dummy2)
122{
123 asm("wbinvd\n");
124 return;
125}
Graeme Russ278638d2008-12-07 10:29:02 +1100126
127void __attribute__ ((regparm(0))) generate_gpf(void);
128
129/* segment 0x70 is an arbitrary segment which does not exist */
130asm(".globl generate_gpf\n"
Graeme Russ1aafcc92009-11-24 20:04:19 +1100131 ".hidden generate_gpf\n"
132 ".type generate_gpf, @function\n"
Graeme Russ278638d2008-12-07 10:29:02 +1100133 "generate_gpf:\n"
134 "ljmp $0x70, $0x47114711\n");
135
136void __reset_cpu(ulong addr)
137{
138 printf("Resetting using i386 Triple Fault\n");
139 set_vector(13, generate_gpf); /* general protection fault handler */
140 set_vector(8, generate_gpf); /* double fault handler */
141 generate_gpf(); /* start the show */
142}
143void reset_cpu(ulong addr) __attribute__((weak, alias("__reset_cpu")));