wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1 | /* |
Graeme Russ | dbf7115 | 2011-04-13 19:43:26 +1000 | [diff] [blame] | 2 | * (C) Copyright 2008-2011 |
| 3 | * Graeme Russ, <graeme.russ@gmail.com> |
| 4 | * |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 5 | * (C) Copyright 2002 |
Albert ARIBAUD | fa82f87 | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 6 | * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se> |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 7 | * |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 8 | * (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 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 16 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 17 | */ |
| 18 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 19 | #include <common.h> |
| 20 | #include <command.h> |
Stefan Reinauer | 095593c | 2012-12-02 04:49:50 +0000 | [diff] [blame] | 21 | #include <asm/control_regs.h> |
Graeme Russ | c53fd2b | 2011-02-12 15:11:30 +1100 | [diff] [blame] | 22 | #include <asm/processor.h> |
Graeme Russ | 0c24c9c | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 23 | #include <asm/processor-flags.h> |
Graeme Russ | 3f5f18d | 2008-12-07 10:29:02 +1100 | [diff] [blame] | 24 | #include <asm/interrupt.h> |
Gabe Black | 60a9b6b | 2011-11-16 23:32:50 +0000 | [diff] [blame] | 25 | #include <linux/compiler.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 26 | |
Graeme Russ | dbf7115 | 2011-04-13 19:43:26 +1000 | [diff] [blame] | 27 | /* |
| 28 | * Constructor for a conventional segment GDT (or LDT) entry |
| 29 | * This is a macro so it can be used in initialisers |
| 30 | */ |
Graeme Russ | 59c6d0e | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 31 | #define GDT_ENTRY(flags, base, limit) \ |
| 32 | ((((base) & 0xff000000ULL) << (56-24)) | \ |
| 33 | (((flags) & 0x0000f0ffULL) << 40) | \ |
| 34 | (((limit) & 0x000f0000ULL) << (48-16)) | \ |
| 35 | (((base) & 0x00ffffffULL) << 16) | \ |
| 36 | (((limit) & 0x0000ffffULL))) |
| 37 | |
Graeme Russ | 59c6d0e | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 38 | struct gdt_ptr { |
| 39 | u16 len; |
| 40 | u32 ptr; |
Graeme Russ | 717979f | 2011-11-08 02:33:13 +0000 | [diff] [blame] | 41 | } __packed; |
Graeme Russ | 59c6d0e | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 42 | |
Graeme Russ | 74bfbe1 | 2011-12-29 21:45:33 +1100 | [diff] [blame] | 43 | static void load_ds(u32 segment) |
Graeme Russ | 59c6d0e | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 44 | { |
Graeme Russ | 74bfbe1 | 2011-12-29 21:45:33 +1100 | [diff] [blame] | 45 | asm volatile("movl %0, %%ds" : : "r" (segment * X86_GDT_ENTRY_SIZE)); |
| 46 | } |
Graeme Russ | 59c6d0e | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 47 | |
Graeme Russ | 74bfbe1 | 2011-12-29 21:45:33 +1100 | [diff] [blame] | 48 | static void load_es(u32 segment) |
| 49 | { |
| 50 | asm volatile("movl %0, %%es" : : "r" (segment * X86_GDT_ENTRY_SIZE)); |
| 51 | } |
Graeme Russ | 59c6d0e | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 52 | |
Graeme Russ | 74bfbe1 | 2011-12-29 21:45:33 +1100 | [diff] [blame] | 53 | static void load_fs(u32 segment) |
| 54 | { |
| 55 | asm volatile("movl %0, %%fs" : : "r" (segment * X86_GDT_ENTRY_SIZE)); |
| 56 | } |
| 57 | |
| 58 | static void load_gs(u32 segment) |
| 59 | { |
| 60 | asm volatile("movl %0, %%gs" : : "r" (segment * X86_GDT_ENTRY_SIZE)); |
| 61 | } |
| 62 | |
| 63 | static void load_ss(u32 segment) |
| 64 | { |
| 65 | asm volatile("movl %0, %%ss" : : "r" (segment * X86_GDT_ENTRY_SIZE)); |
| 66 | } |
| 67 | |
| 68 | static void load_gdt(const u64 *boot_gdt, u16 num_entries) |
| 69 | { |
| 70 | struct gdt_ptr gdt; |
| 71 | |
| 72 | gdt.len = (num_entries * 8) - 1; |
| 73 | gdt.ptr = (u32)boot_gdt; |
| 74 | |
| 75 | asm volatile("lgdtl %0\n" : : "m" (gdt)); |
Graeme Russ | 59c6d0e | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 76 | } |
| 77 | |
Graeme Russ | 9e6c572 | 2011-12-31 22:58:15 +1100 | [diff] [blame] | 78 | void setup_gdt(gd_t *id, u64 *gdt_addr) |
| 79 | { |
| 80 | /* CS: code, read/execute, 4 GB, base 0 */ |
| 81 | gdt_addr[X86_GDT_ENTRY_32BIT_CS] = GDT_ENTRY(0xc09b, 0, 0xfffff); |
| 82 | |
| 83 | /* DS: data, read/write, 4 GB, base 0 */ |
| 84 | gdt_addr[X86_GDT_ENTRY_32BIT_DS] = GDT_ENTRY(0xc093, 0, 0xfffff); |
| 85 | |
| 86 | /* FS: data, read/write, 4 GB, base (Global Data Pointer) */ |
Simon Glass | 5a35e6c | 2012-12-13 20:48:41 +0000 | [diff] [blame] | 87 | id->arch.gd_addr = id; |
Simon Glass | 0cecc3b | 2012-12-13 20:48:42 +0000 | [diff] [blame] | 88 | gdt_addr[X86_GDT_ENTRY_32BIT_FS] = GDT_ENTRY(0xc093, |
Simon Glass | 5a35e6c | 2012-12-13 20:48:41 +0000 | [diff] [blame] | 89 | (ulong)&id->arch.gd_addr, 0xfffff); |
Graeme Russ | 9e6c572 | 2011-12-31 22:58:15 +1100 | [diff] [blame] | 90 | |
| 91 | /* 16-bit CS: code, read/execute, 64 kB, base 0 */ |
| 92 | gdt_addr[X86_GDT_ENTRY_16BIT_CS] = GDT_ENTRY(0x109b, 0, 0x0ffff); |
| 93 | |
| 94 | /* 16-bit DS: data, read/write, 64 kB, base 0 */ |
| 95 | gdt_addr[X86_GDT_ENTRY_16BIT_DS] = GDT_ENTRY(0x1093, 0, 0x0ffff); |
| 96 | |
| 97 | load_gdt(gdt_addr, X86_GDT_NUM_ENTRIES); |
| 98 | load_ds(X86_GDT_ENTRY_32BIT_DS); |
| 99 | load_es(X86_GDT_ENTRY_32BIT_DS); |
| 100 | load_gs(X86_GDT_ENTRY_32BIT_DS); |
| 101 | load_ss(X86_GDT_ENTRY_32BIT_DS); |
| 102 | load_fs(X86_GDT_ENTRY_32BIT_FS); |
| 103 | } |
| 104 | |
Gabe Black | f30fc4d | 2012-10-20 12:33:10 +0000 | [diff] [blame] | 105 | int __weak x86_cleanup_before_linux(void) |
| 106 | { |
Simon Glass | 7949703 | 2013-04-17 16:13:35 +0000 | [diff] [blame] | 107 | #ifdef CONFIG_BOOTSTAGE_STASH |
| 108 | bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH, |
| 109 | CONFIG_BOOTSTAGE_STASH_SIZE); |
| 110 | #endif |
| 111 | |
Gabe Black | f30fc4d | 2012-10-20 12:33:10 +0000 | [diff] [blame] | 112 | return 0; |
| 113 | } |
| 114 | |
Graeme Russ | 0ea76e9 | 2011-02-12 15:11:35 +1100 | [diff] [blame] | 115 | int x86_cpu_init_f(void) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 116 | { |
Graeme Russ | 0c24c9c | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 117 | const u32 em_rst = ~X86_CR0_EM; |
| 118 | const u32 mp_ne_set = X86_CR0_MP | X86_CR0_NE; |
| 119 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 120 | /* initialize FPU, reset EM, set MP and NE */ |
| 121 | asm ("fninit\n" \ |
Graeme Russ | 0c24c9c | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 122 | "movl %%cr0, %%eax\n" \ |
| 123 | "andl %0, %%eax\n" \ |
| 124 | "orl %1, %%eax\n" \ |
| 125 | "movl %%eax, %%cr0\n" \ |
| 126 | : : "i" (em_rst), "i" (mp_ne_set) : "eax"); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 127 | |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 128 | return 0; |
| 129 | } |
Graeme Russ | 0ea76e9 | 2011-02-12 15:11:35 +1100 | [diff] [blame] | 130 | int cpu_init_f(void) __attribute__((weak, alias("x86_cpu_init_f"))); |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 131 | |
Graeme Russ | 0ea76e9 | 2011-02-12 15:11:35 +1100 | [diff] [blame] | 132 | int x86_cpu_init_r(void) |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 133 | { |
Graeme Russ | d653244 | 2011-12-27 22:46:43 +1100 | [diff] [blame] | 134 | /* Initialize core interrupt and exception functionality of CPU */ |
| 135 | cpu_init_interrupts(); |
| 136 | return 0; |
| 137 | } |
| 138 | int cpu_init_r(void) __attribute__((weak, alias("x86_cpu_init_r"))); |
| 139 | |
| 140 | void x86_enable_caches(void) |
| 141 | { |
Stefan Reinauer | 095593c | 2012-12-02 04:49:50 +0000 | [diff] [blame] | 142 | unsigned long cr0; |
Graeme Russ | 0ea76e9 | 2011-02-12 15:11:35 +1100 | [diff] [blame] | 143 | |
Stefan Reinauer | 095593c | 2012-12-02 04:49:50 +0000 | [diff] [blame] | 144 | cr0 = read_cr0(); |
| 145 | cr0 &= ~(X86_CR0_NW | X86_CR0_CD); |
| 146 | write_cr0(cr0); |
| 147 | wbinvd(); |
Graeme Russ | d653244 | 2011-12-27 22:46:43 +1100 | [diff] [blame] | 148 | } |
| 149 | void enable_caches(void) __attribute__((weak, alias("x86_enable_caches"))); |
Graeme Russ | 0ea76e9 | 2011-02-12 15:11:35 +1100 | [diff] [blame] | 150 | |
Stefan Reinauer | 095593c | 2012-12-02 04:49:50 +0000 | [diff] [blame] | 151 | void x86_disable_caches(void) |
| 152 | { |
| 153 | unsigned long cr0; |
| 154 | |
| 155 | cr0 = read_cr0(); |
| 156 | cr0 |= X86_CR0_NW | X86_CR0_CD; |
| 157 | wbinvd(); |
| 158 | write_cr0(cr0); |
| 159 | wbinvd(); |
| 160 | } |
| 161 | void disable_caches(void) __attribute__((weak, alias("x86_disable_caches"))); |
| 162 | |
Graeme Russ | d653244 | 2011-12-27 22:46:43 +1100 | [diff] [blame] | 163 | int x86_init_cache(void) |
| 164 | { |
| 165 | enable_caches(); |
| 166 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 167 | return 0; |
| 168 | } |
Graeme Russ | d653244 | 2011-12-27 22:46:43 +1100 | [diff] [blame] | 169 | int init_cache(void) __attribute__((weak, alias("x86_init_cache"))); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 170 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 171 | 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] | 172 | { |
Graeme Russ | 717979f | 2011-11-08 02:33:13 +0000 | [diff] [blame] | 173 | printf("resetting ...\n"); |
Graeme Russ | dbf7115 | 2011-04-13 19:43:26 +1000 | [diff] [blame] | 174 | |
| 175 | /* wait 50 ms */ |
| 176 | udelay(50000); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 177 | disable_interrupts(); |
| 178 | reset_cpu(0); |
| 179 | |
| 180 | /*NOTREACHED*/ |
| 181 | return 0; |
| 182 | } |
| 183 | |
Graeme Russ | 717979f | 2011-11-08 02:33:13 +0000 | [diff] [blame] | 184 | void flush_cache(unsigned long dummy1, unsigned long dummy2) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 185 | { |
| 186 | asm("wbinvd\n"); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 187 | } |
Graeme Russ | 3f5f18d | 2008-12-07 10:29:02 +1100 | [diff] [blame] | 188 | |
| 189 | void __attribute__ ((regparm(0))) generate_gpf(void); |
| 190 | |
| 191 | /* segment 0x70 is an arbitrary segment which does not exist */ |
| 192 | asm(".globl generate_gpf\n" |
Graeme Russ | 717979f | 2011-11-08 02:33:13 +0000 | [diff] [blame] | 193 | ".hidden generate_gpf\n" |
| 194 | ".type generate_gpf, @function\n" |
| 195 | "generate_gpf:\n" |
| 196 | "ljmp $0x70, $0x47114711\n"); |
Graeme Russ | 3f5f18d | 2008-12-07 10:29:02 +1100 | [diff] [blame] | 197 | |
| 198 | void __reset_cpu(ulong addr) |
| 199 | { |
Graeme Russ | fea2572 | 2011-04-13 19:43:28 +1000 | [diff] [blame] | 200 | printf("Resetting using x86 Triple Fault\n"); |
Graeme Russ | 717979f | 2011-11-08 02:33:13 +0000 | [diff] [blame] | 201 | set_vector(13, generate_gpf); /* general protection fault handler */ |
| 202 | set_vector(8, generate_gpf); /* double fault handler */ |
| 203 | generate_gpf(); /* start the show */ |
Graeme Russ | 3f5f18d | 2008-12-07 10:29:02 +1100 | [diff] [blame] | 204 | } |
| 205 | void reset_cpu(ulong addr) __attribute__((weak, alias("__reset_cpu"))); |
Stefan Reinauer | 095593c | 2012-12-02 04:49:50 +0000 | [diff] [blame] | 206 | |
| 207 | int dcache_status(void) |
| 208 | { |
| 209 | return !(read_cr0() & 0x40000000); |
| 210 | } |
| 211 | |
| 212 | /* Define these functions to allow ehch-hcd to function */ |
| 213 | void flush_dcache_range(unsigned long start, unsigned long stop) |
| 214 | { |
| 215 | } |
| 216 | |
| 217 | void invalidate_dcache_range(unsigned long start, unsigned long stop) |
| 218 | { |
| 219 | } |
Simon Glass | 8937140 | 2013-02-28 19:26:11 +0000 | [diff] [blame] | 220 | |
| 221 | void dcache_enable(void) |
| 222 | { |
| 223 | enable_caches(); |
| 224 | } |
| 225 | |
| 226 | void dcache_disable(void) |
| 227 | { |
| 228 | disable_caches(); |
| 229 | } |
| 230 | |
| 231 | void icache_enable(void) |
| 232 | { |
| 233 | } |
| 234 | |
| 235 | void icache_disable(void) |
| 236 | { |
| 237 | } |
| 238 | |
| 239 | int icache_status(void) |
| 240 | { |
| 241 | return 1; |
| 242 | } |