cpu.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. /*
  2. * (C) Copyright 2008-2011
  3. * Graeme Russ, <graeme.russ@gmail.com>
  4. *
  5. * (C) Copyright 2002
  6. * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
  7. *
  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. *
  16. * See file CREDITS for list of people who contributed to this
  17. * project.
  18. *
  19. * This program is free software; you can redistribute it and/or
  20. * modify it under the terms of the GNU General Public License as
  21. * published by the Free Software Foundation; either version 2 of
  22. * the License, or (at your option) any later version.
  23. *
  24. * This program is distributed in the hope that it will be useful,
  25. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  26. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  27. * GNU General Public License for more details.
  28. *
  29. * You should have received a copy of the GNU General Public License
  30. * along with this program; if not, write to the Free Software
  31. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  32. * MA 02111-1307 USA
  33. */
  34. #include <common.h>
  35. #include <command.h>
  36. #include <asm/control_regs.h>
  37. #include <asm/processor.h>
  38. #include <asm/processor-flags.h>
  39. #include <asm/interrupt.h>
  40. #include <linux/compiler.h>
  41. /*
  42. * Constructor for a conventional segment GDT (or LDT) entry
  43. * This is a macro so it can be used in initialisers
  44. */
  45. #define GDT_ENTRY(flags, base, limit) \
  46. ((((base) & 0xff000000ULL) << (56-24)) | \
  47. (((flags) & 0x0000f0ffULL) << 40) | \
  48. (((limit) & 0x000f0000ULL) << (48-16)) | \
  49. (((base) & 0x00ffffffULL) << 16) | \
  50. (((limit) & 0x0000ffffULL)))
  51. struct gdt_ptr {
  52. u16 len;
  53. u32 ptr;
  54. } __packed;
  55. static void load_ds(u32 segment)
  56. {
  57. asm volatile("movl %0, %%ds" : : "r" (segment * X86_GDT_ENTRY_SIZE));
  58. }
  59. static void load_es(u32 segment)
  60. {
  61. asm volatile("movl %0, %%es" : : "r" (segment * X86_GDT_ENTRY_SIZE));
  62. }
  63. static void load_fs(u32 segment)
  64. {
  65. asm volatile("movl %0, %%fs" : : "r" (segment * X86_GDT_ENTRY_SIZE));
  66. }
  67. static void load_gs(u32 segment)
  68. {
  69. asm volatile("movl %0, %%gs" : : "r" (segment * X86_GDT_ENTRY_SIZE));
  70. }
  71. static void load_ss(u32 segment)
  72. {
  73. asm volatile("movl %0, %%ss" : : "r" (segment * X86_GDT_ENTRY_SIZE));
  74. }
  75. static void load_gdt(const u64 *boot_gdt, u16 num_entries)
  76. {
  77. struct gdt_ptr gdt;
  78. gdt.len = (num_entries * 8) - 1;
  79. gdt.ptr = (u32)boot_gdt;
  80. asm volatile("lgdtl %0\n" : : "m" (gdt));
  81. }
  82. void setup_gdt(gd_t *id, u64 *gdt_addr)
  83. {
  84. /* CS: code, read/execute, 4 GB, base 0 */
  85. gdt_addr[X86_GDT_ENTRY_32BIT_CS] = GDT_ENTRY(0xc09b, 0, 0xfffff);
  86. /* DS: data, read/write, 4 GB, base 0 */
  87. gdt_addr[X86_GDT_ENTRY_32BIT_DS] = GDT_ENTRY(0xc093, 0, 0xfffff);
  88. /* FS: data, read/write, 4 GB, base (Global Data Pointer) */
  89. gdt_addr[X86_GDT_ENTRY_32BIT_FS] = GDT_ENTRY(0xc093, (ulong)id, 0xfffff);
  90. /* 16-bit CS: code, read/execute, 64 kB, base 0 */
  91. gdt_addr[X86_GDT_ENTRY_16BIT_CS] = GDT_ENTRY(0x109b, 0, 0x0ffff);
  92. /* 16-bit DS: data, read/write, 64 kB, base 0 */
  93. gdt_addr[X86_GDT_ENTRY_16BIT_DS] = GDT_ENTRY(0x1093, 0, 0x0ffff);
  94. load_gdt(gdt_addr, X86_GDT_NUM_ENTRIES);
  95. load_ds(X86_GDT_ENTRY_32BIT_DS);
  96. load_es(X86_GDT_ENTRY_32BIT_DS);
  97. load_gs(X86_GDT_ENTRY_32BIT_DS);
  98. load_ss(X86_GDT_ENTRY_32BIT_DS);
  99. load_fs(X86_GDT_ENTRY_32BIT_FS);
  100. }
  101. int __weak x86_cleanup_before_linux(void)
  102. {
  103. return 0;
  104. }
  105. int x86_cpu_init_f(void)
  106. {
  107. const u32 em_rst = ~X86_CR0_EM;
  108. const u32 mp_ne_set = X86_CR0_MP | X86_CR0_NE;
  109. /* initialize FPU, reset EM, set MP and NE */
  110. asm ("fninit\n" \
  111. "movl %%cr0, %%eax\n" \
  112. "andl %0, %%eax\n" \
  113. "orl %1, %%eax\n" \
  114. "movl %%eax, %%cr0\n" \
  115. : : "i" (em_rst), "i" (mp_ne_set) : "eax");
  116. return 0;
  117. }
  118. int cpu_init_f(void) __attribute__((weak, alias("x86_cpu_init_f")));
  119. int x86_cpu_init_r(void)
  120. {
  121. /* Initialize core interrupt and exception functionality of CPU */
  122. cpu_init_interrupts();
  123. return 0;
  124. }
  125. int cpu_init_r(void) __attribute__((weak, alias("x86_cpu_init_r")));
  126. void x86_enable_caches(void)
  127. {
  128. unsigned long cr0;
  129. cr0 = read_cr0();
  130. cr0 &= ~(X86_CR0_NW | X86_CR0_CD);
  131. write_cr0(cr0);
  132. wbinvd();
  133. }
  134. void enable_caches(void) __attribute__((weak, alias("x86_enable_caches")));
  135. void x86_disable_caches(void)
  136. {
  137. unsigned long cr0;
  138. cr0 = read_cr0();
  139. cr0 |= X86_CR0_NW | X86_CR0_CD;
  140. wbinvd();
  141. write_cr0(cr0);
  142. wbinvd();
  143. }
  144. void disable_caches(void) __attribute__((weak, alias("x86_disable_caches")));
  145. int x86_init_cache(void)
  146. {
  147. enable_caches();
  148. return 0;
  149. }
  150. int init_cache(void) __attribute__((weak, alias("x86_init_cache")));
  151. int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  152. {
  153. printf("resetting ...\n");
  154. /* wait 50 ms */
  155. udelay(50000);
  156. disable_interrupts();
  157. reset_cpu(0);
  158. /*NOTREACHED*/
  159. return 0;
  160. }
  161. void flush_cache(unsigned long dummy1, unsigned long dummy2)
  162. {
  163. asm("wbinvd\n");
  164. }
  165. void __attribute__ ((regparm(0))) generate_gpf(void);
  166. /* segment 0x70 is an arbitrary segment which does not exist */
  167. asm(".globl generate_gpf\n"
  168. ".hidden generate_gpf\n"
  169. ".type generate_gpf, @function\n"
  170. "generate_gpf:\n"
  171. "ljmp $0x70, $0x47114711\n");
  172. void __reset_cpu(ulong addr)
  173. {
  174. printf("Resetting using x86 Triple Fault\n");
  175. set_vector(13, generate_gpf); /* general protection fault handler */
  176. set_vector(8, generate_gpf); /* double fault handler */
  177. generate_gpf(); /* start the show */
  178. }
  179. void reset_cpu(ulong addr) __attribute__((weak, alias("__reset_cpu")));
  180. int dcache_status(void)
  181. {
  182. return !(read_cr0() & 0x40000000);
  183. }
  184. /* Define these functions to allow ehch-hcd to function */
  185. void flush_dcache_range(unsigned long start, unsigned long stop)
  186. {
  187. }
  188. void invalidate_dcache_range(unsigned long start, unsigned long stop)
  189. {
  190. }