cpu.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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/processor.h>
  37. #include <asm/processor-flags.h>
  38. #include <asm/interrupt.h>
  39. #include <linux/compiler.h>
  40. /*
  41. * Constructor for a conventional segment GDT (or LDT) entry
  42. * This is a macro so it can be used in initialisers
  43. */
  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. struct gdt_ptr {
  51. u16 len;
  52. u32 ptr;
  53. } __packed;
  54. static void reload_gdt(void)
  55. {
  56. /*
  57. * There are machines which are known to not boot with the GDT
  58. * being 8-byte unaligned. Intel recommends 16 byte alignment
  59. */
  60. static const u64 boot_gdt[] __attribute__((aligned(16))) = {
  61. /* CS: code, read/execute, 4 GB, base 0 */
  62. [X86_GDT_ENTRY_32BIT_CS] = GDT_ENTRY(0xc09b, 0, 0xfffff),
  63. /* DS: data, read/write, 4 GB, base 0 */
  64. [X86_GDT_ENTRY_32BIT_DS] = GDT_ENTRY(0xc093, 0, 0xfffff),
  65. /* 16-bit CS: code, read/execute, 64 kB, base 0 */
  66. [X86_GDT_ENTRY_16BIT_CS] = GDT_ENTRY(0x109b, 0, 0x0ffff),
  67. /* 16-bit DS: data, read/write, 64 kB, base 0 */
  68. [X86_GDT_ENTRY_16BIT_DS] = GDT_ENTRY(0x1093, 0, 0x0ffff),
  69. };
  70. static struct gdt_ptr gdt;
  71. gdt.len = sizeof(boot_gdt)-1;
  72. gdt.ptr = (u32)&boot_gdt;
  73. asm volatile("lgdtl %0\n" \
  74. "movl $((2+1)*8), %%ecx\n" \
  75. "movl %%ecx, %%ds\n" \
  76. "movl %%ecx, %%es\n" \
  77. "movl %%ecx, %%fs\n" \
  78. "movl %%ecx, %%gs\n" \
  79. "movl %%ecx, %%ss" \
  80. : : "m" (gdt) : "ecx");
  81. }
  82. int x86_cpu_init_f(void)
  83. {
  84. const u32 em_rst = ~X86_CR0_EM;
  85. const u32 mp_ne_set = X86_CR0_MP | X86_CR0_NE;
  86. /* initialize FPU, reset EM, set MP and NE */
  87. asm ("fninit\n" \
  88. "movl %%cr0, %%eax\n" \
  89. "andl %0, %%eax\n" \
  90. "orl %1, %%eax\n" \
  91. "movl %%eax, %%cr0\n" \
  92. : : "i" (em_rst), "i" (mp_ne_set) : "eax");
  93. return 0;
  94. }
  95. int cpu_init_f(void) __attribute__((weak, alias("x86_cpu_init_f")));
  96. int x86_cpu_init_r(void)
  97. {
  98. const u32 nw_cd_rst = ~(X86_CR0_NW | X86_CR0_CD);
  99. /* turn on the cache and disable write through */
  100. asm("movl %%cr0, %%eax\n"
  101. "andl %0, %%eax\n"
  102. "movl %%eax, %%cr0\n"
  103. "wbinvd\n" : : "i" (nw_cd_rst) : "eax");
  104. reload_gdt();
  105. /* Initialize core interrupt and exception functionality of CPU */
  106. cpu_init_interrupts();
  107. return 0;
  108. }
  109. int cpu_init_r(void) __attribute__((weak, alias("x86_cpu_init_r")));
  110. int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  111. {
  112. printf("resetting ...\n");
  113. /* wait 50 ms */
  114. udelay(50000);
  115. disable_interrupts();
  116. reset_cpu(0);
  117. /*NOTREACHED*/
  118. return 0;
  119. }
  120. void flush_cache(unsigned long dummy1, unsigned long dummy2)
  121. {
  122. asm("wbinvd\n");
  123. }
  124. void __attribute__ ((regparm(0))) generate_gpf(void);
  125. /* segment 0x70 is an arbitrary segment which does not exist */
  126. asm(".globl generate_gpf\n"
  127. ".hidden generate_gpf\n"
  128. ".type generate_gpf, @function\n"
  129. "generate_gpf:\n"
  130. "ljmp $0x70, $0x47114711\n");
  131. void __reset_cpu(ulong addr)
  132. {
  133. printf("Resetting using x86 Triple Fault\n");
  134. set_vector(13, generate_gpf); /* general protection fault handler */
  135. set_vector(8, generate_gpf); /* double fault handler */
  136. generate_gpf(); /* start the show */
  137. }
  138. void reset_cpu(ulong addr) __attribute__((weak, alias("__reset_cpu")));