wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
| 3 | * Daniel Engström, Omicron Ceti AB, daniel@omicron.se. |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 4 | * |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 5 | * (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 Russ | c53fd2b | 2011-02-12 15:11:30 +1100 | [diff] [blame] | 38 | #include <asm/processor.h> |
Graeme Russ | 0c24c9c | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 39 | #include <asm/processor-flags.h> |
Graeme Russ | 3f5f18d | 2008-12-07 10:29:02 +1100 | [diff] [blame] | 40 | #include <asm/interrupt.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 41 | |
Graeme Russ | 59c6d0e | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 42 | /* Constructor for a conventional segment GDT (or LDT) entry */ |
| 43 | /* This is a macro so it can be used in initializers */ |
| 44 | #define GDT_ENTRY(flags, base, limit) \ |
| 45 | ((((base) & 0xff000000ULL) << (56-24)) | \ |
| 46 | (((flags) & 0x0000f0ffULL) << 40) | \ |
| 47 | (((limit) & 0x000f0000ULL) << (48-16)) | \ |
| 48 | (((base) & 0x00ffffffULL) << 16) | \ |
| 49 | (((limit) & 0x0000ffffULL))) |
| 50 | |
Graeme Russ | 59c6d0e | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 51 | /* |
| 52 | * Set up the GDT |
| 53 | */ |
| 54 | |
| 55 | struct gdt_ptr { |
| 56 | u16 len; |
| 57 | u32 ptr; |
| 58 | } __attribute__((packed)); |
| 59 | |
| 60 | static void reload_gdt(void) |
| 61 | { |
| 62 | /* There are machines which are known to not boot with the GDT |
| 63 | being 8-byte unaligned. Intel recommends 16 byte alignment. */ |
| 64 | static const u64 boot_gdt[] __attribute__((aligned(16))) = { |
| 65 | /* CS: code, read/execute, 4 GB, base 0 */ |
| 66 | [GDT_ENTRY_32BIT_CS] = GDT_ENTRY(0xc09b, 0, 0xfffff), |
| 67 | /* DS: data, read/write, 4 GB, base 0 */ |
| 68 | [GDT_ENTRY_32BIT_DS] = GDT_ENTRY(0xc093, 0, 0xfffff), |
| 69 | /* 16-bit CS: code, read/execute, 64 kB, base 0 */ |
| 70 | [GDT_ENTRY_16BIT_CS] = GDT_ENTRY(0x109b, 0, 0x0ffff), |
| 71 | /* 16-bit DS: data, read/write, 64 kB, base 0 */ |
| 72 | [GDT_ENTRY_16BIT_DS] = GDT_ENTRY(0x1093, 0, 0x0ffff), |
| 73 | }; |
| 74 | static struct gdt_ptr gdt; |
| 75 | |
| 76 | gdt.len = sizeof(boot_gdt)-1; |
| 77 | gdt.ptr = (u32)&boot_gdt; |
| 78 | |
| 79 | asm volatile("lgdtl %0\n" \ |
| 80 | "movl $((2+1)*8), %%ecx\n" \ |
| 81 | "movl %%ecx, %%ds\n" \ |
| 82 | "movl %%ecx, %%es\n" \ |
| 83 | "movl %%ecx, %%fs\n" \ |
| 84 | "movl %%ecx, %%gs\n" \ |
| 85 | "movl %%ecx, %%ss" \ |
| 86 | : : "m" (gdt) : "ecx"); |
| 87 | } |
| 88 | |
| 89 | |
Graeme Russ | 0ea76e9 | 2011-02-12 15:11:35 +1100 | [diff] [blame] | 90 | int x86_cpu_init_f(void) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 91 | { |
Graeme Russ | 0c24c9c | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 92 | const u32 em_rst = ~X86_CR0_EM; |
| 93 | const u32 mp_ne_set = X86_CR0_MP | X86_CR0_NE; |
| 94 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 95 | /* initialize FPU, reset EM, set MP and NE */ |
| 96 | asm ("fninit\n" \ |
Graeme Russ | 0c24c9c | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 97 | "movl %%cr0, %%eax\n" \ |
| 98 | "andl %0, %%eax\n" \ |
| 99 | "orl %1, %%eax\n" \ |
| 100 | "movl %%eax, %%cr0\n" \ |
| 101 | : : "i" (em_rst), "i" (mp_ne_set) : "eax"); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 102 | |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 103 | return 0; |
| 104 | } |
Graeme Russ | 0ea76e9 | 2011-02-12 15:11:35 +1100 | [diff] [blame] | 105 | int cpu_init_f(void) __attribute__((weak, alias("x86_cpu_init_f"))); |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 106 | |
Graeme Russ | 0ea76e9 | 2011-02-12 15:11:35 +1100 | [diff] [blame] | 107 | int x86_cpu_init_r(void) |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 108 | { |
Graeme Russ | 0ea76e9 | 2011-02-12 15:11:35 +1100 | [diff] [blame] | 109 | const u32 nw_cd_rst = ~(X86_CR0_NW | X86_CR0_CD); |
| 110 | |
| 111 | /* turn on the cache and disable write through */ |
| 112 | asm("movl %%cr0, %%eax\n" |
| 113 | "andl %0, %%eax\n" |
| 114 | "movl %%eax, %%cr0\n" |
| 115 | "wbinvd\n" : : "i" (nw_cd_rst) : "eax"); |
| 116 | |
Graeme Russ | 59c6d0e | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 117 | reload_gdt(); |
| 118 | |
Graeme Russ | abf0cd3 | 2009-02-24 21:13:40 +1100 | [diff] [blame] | 119 | /* Initialize core interrupt and exception functionality of CPU */ |
| 120 | cpu_init_interrupts (); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 121 | return 0; |
| 122 | } |
Graeme Russ | 0ea76e9 | 2011-02-12 15:11:35 +1100 | [diff] [blame] | 123 | int cpu_init_r(void) __attribute__((weak, alias("x86_cpu_init_r"))); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 124 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 125 | int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 126 | { |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 127 | printf ("resetting ...\n"); |
| 128 | udelay(50000); /* wait 50 ms */ |
| 129 | disable_interrupts(); |
| 130 | reset_cpu(0); |
| 131 | |
| 132 | /*NOTREACHED*/ |
| 133 | return 0; |
| 134 | } |
| 135 | |
| 136 | void flush_cache (unsigned long dummy1, unsigned long dummy2) |
| 137 | { |
| 138 | asm("wbinvd\n"); |
| 139 | return; |
| 140 | } |
Graeme Russ | 3f5f18d | 2008-12-07 10:29:02 +1100 | [diff] [blame] | 141 | |
| 142 | void __attribute__ ((regparm(0))) generate_gpf(void); |
| 143 | |
| 144 | /* segment 0x70 is an arbitrary segment which does not exist */ |
| 145 | asm(".globl generate_gpf\n" |
Graeme Russ | 0fc1b49 | 2009-11-24 20:04:19 +1100 | [diff] [blame] | 146 | ".hidden generate_gpf\n" |
| 147 | ".type generate_gpf, @function\n" |
Graeme Russ | 3f5f18d | 2008-12-07 10:29:02 +1100 | [diff] [blame] | 148 | "generate_gpf:\n" |
| 149 | "ljmp $0x70, $0x47114711\n"); |
| 150 | |
| 151 | void __reset_cpu(ulong addr) |
| 152 | { |
| 153 | printf("Resetting using i386 Triple Fault\n"); |
| 154 | set_vector(13, generate_gpf); /* general protection fault handler */ |
| 155 | set_vector(8, generate_gpf); /* double fault handler */ |
| 156 | generate_gpf(); /* start the show */ |
| 157 | } |
| 158 | void reset_cpu(ulong addr) __attribute__((weak, alias("__reset_cpu"))); |