cpu.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /*
  2. * (C) Copyright 2002
  3. * Daniel Engström, Omicron Ceti AB, daniel@omicron.se.
  4. *
  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. * CPU specific code
  33. */
  34. #include <common.h>
  35. #include <command.h>
  36. #include <asm/interrupt.h>
  37. /* Constructor for a conventional segment GDT (or LDT) entry */
  38. /* This is a macro so it can be used in initializers */
  39. #define GDT_ENTRY(flags, base, limit) \
  40. ((((base) & 0xff000000ULL) << (56-24)) | \
  41. (((flags) & 0x0000f0ffULL) << 40) | \
  42. (((limit) & 0x000f0000ULL) << (48-16)) | \
  43. (((base) & 0x00ffffffULL) << 16) | \
  44. (((limit) & 0x0000ffffULL)))
  45. /* Simple and small GDT entries for booting only */
  46. #define GDT_ENTRY_32BIT_CS 2
  47. #define GDT_ENTRY_32BIT_DS (GDT_ENTRY_32BIT_CS + 1)
  48. #define GDT_ENTRY_16BIT_CS (GDT_ENTRY_32BIT_DS + 1)
  49. #define GDT_ENTRY_16BIT_DS (GDT_ENTRY_16BIT_CS + 1)
  50. /*
  51. * Set up the GDT
  52. */
  53. struct gdt_ptr {
  54. u16 len;
  55. u32 ptr;
  56. } __attribute__((packed));
  57. static void reload_gdt(void)
  58. {
  59. /* There are machines which are known to not boot with the GDT
  60. being 8-byte unaligned. Intel recommends 16 byte alignment. */
  61. static const u64 boot_gdt[] __attribute__((aligned(16))) = {
  62. /* CS: code, read/execute, 4 GB, base 0 */
  63. [GDT_ENTRY_32BIT_CS] = GDT_ENTRY(0xc09b, 0, 0xfffff),
  64. /* DS: data, read/write, 4 GB, base 0 */
  65. [GDT_ENTRY_32BIT_DS] = GDT_ENTRY(0xc093, 0, 0xfffff),
  66. /* 16-bit CS: code, read/execute, 64 kB, base 0 */
  67. [GDT_ENTRY_16BIT_CS] = GDT_ENTRY(0x109b, 0, 0x0ffff),
  68. /* 16-bit DS: data, read/write, 64 kB, base 0 */
  69. [GDT_ENTRY_16BIT_DS] = GDT_ENTRY(0x1093, 0, 0x0ffff),
  70. };
  71. static struct gdt_ptr gdt;
  72. gdt.len = sizeof(boot_gdt)-1;
  73. gdt.ptr = (u32)&boot_gdt;
  74. asm volatile("lgdtl %0\n" \
  75. "movl $((2+1)*8), %%ecx\n" \
  76. "movl %%ecx, %%ds\n" \
  77. "movl %%ecx, %%es\n" \
  78. "movl %%ecx, %%fs\n" \
  79. "movl %%ecx, %%gs\n" \
  80. "movl %%ecx, %%ss" \
  81. : : "m" (gdt) : "ecx");
  82. }
  83. int cpu_init_f(void)
  84. {
  85. /* initialize FPU, reset EM, set MP and NE */
  86. asm ("fninit\n" \
  87. "movl %cr0, %eax\n" \
  88. "andl $~0x4, %eax\n" \
  89. "orl $0x22, %eax\n" \
  90. "movl %eax, %cr0\n" );
  91. return 0;
  92. }
  93. int cpu_init_r(void)
  94. {
  95. reload_gdt();
  96. /* Initialize core interrupt and exception functionality of CPU */
  97. cpu_init_interrupts ();
  98. return 0;
  99. }
  100. int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  101. {
  102. printf ("resetting ...\n");
  103. udelay(50000); /* wait 50 ms */
  104. disable_interrupts();
  105. reset_cpu(0);
  106. /*NOTREACHED*/
  107. return 0;
  108. }
  109. void flush_cache (unsigned long dummy1, unsigned long dummy2)
  110. {
  111. asm("wbinvd\n");
  112. return;
  113. }
  114. void __attribute__ ((regparm(0))) generate_gpf(void);
  115. /* segment 0x70 is an arbitrary segment which does not exist */
  116. asm(".globl generate_gpf\n"
  117. ".hidden generate_gpf\n"
  118. ".type generate_gpf, @function\n"
  119. "generate_gpf:\n"
  120. "ljmp $0x70, $0x47114711\n");
  121. void __reset_cpu(ulong addr)
  122. {
  123. printf("Resetting using i386 Triple Fault\n");
  124. set_vector(13, generate_gpf); /* general protection fault handler */
  125. set_vector(8, generate_gpf); /* double fault handler */
  126. generate_gpf(); /* start the show */
  127. }
  128. void reset_cpu(ulong addr) __attribute__((weak, alias("__reset_cpu")));