start.S 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /*
  2. * U-boot - i386 Startup Code
  3. *
  4. * Copyright (c) 2002 Omicron Ceti AB, Daniel Engstr�m <denaiel@omicron.se>
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. #include <config.h>
  25. #include <version.h>
  26. #include <asm/global_data.h>
  27. .section .text
  28. .code32
  29. .globl _start
  30. .type _start, @function
  31. .globl _i386boot_start
  32. _i386boot_start:
  33. /*
  34. * This is the fail safe 32-bit bootstrap entry point. The
  35. * following code is not executed from a cold-reset (actually, a
  36. * lot of it is, but from real-mode after cold reset. It is
  37. * repeated here to put the board into a state as close to cold
  38. * reset as necessary)
  39. */
  40. cli
  41. cld
  42. /* Turn of cache (this might require a 486-class CPU) */
  43. movl %cr0, %eax
  44. orl $0x60000000, %eax
  45. movl %eax, %cr0
  46. wbinvd
  47. /* Tell 32-bit code it is being entered from an in-RAM copy */
  48. movw $GD_FLG_WARM_BOOT, %bx
  49. _start:
  50. /* This is the 32-bit cold-reset entry point */
  51. movl $0x18, %eax /* Load our segement registes, the
  52. * gdt have already been loaded by start16.S */
  53. movw %ax, %fs
  54. movw %ax, %ds
  55. movw %ax, %gs
  56. movw %ax, %es
  57. movw %ax, %ss
  58. /* Clear the interupt vectors */
  59. lidt blank_idt_ptr
  60. /* Skip low-level initialization if not starting from cold-reset */
  61. movl %ebx, %ecx
  62. andl $GD_FLG_COLD_BOOT, %ecx
  63. jz skip_mem_init
  64. /* Early platform init (setup gpio, etc ) */
  65. jmp early_board_init
  66. .globl early_board_init_ret
  67. early_board_init_ret:
  68. /* size memory */
  69. jmp mem_init
  70. .globl mem_init_ret
  71. mem_init_ret:
  72. skip_mem_init:
  73. /* fetch memory size (into %eax) */
  74. jmp get_mem_size
  75. .globl get_mem_size_ret
  76. get_mem_size_ret:
  77. #if CONFIG_SYS_SDRAM_ECC_ENABLE
  78. /* Skip ECC initialization if not starting from cold-reset */
  79. movl %ebx, %ecx
  80. andl $GD_FLG_COLD_BOOT, %ecx
  81. jz init_ecc_ret
  82. jmp init_ecc
  83. .globl init_ecc_ret
  84. init_ecc_ret:
  85. #endif
  86. /* Check we have enough memory for stack */
  87. movl $CONFIG_SYS_STACK_SIZE, %ecx
  88. cmpl %ecx, %eax
  89. jb die
  90. mem_ok:
  91. /* Set stack pointer to upper memory limit*/
  92. movl %eax, %esp
  93. /* Test the stack */
  94. pushl $0
  95. popl %ecx
  96. cmpl $0, %ecx
  97. jne die
  98. push $0x55aa55aa
  99. popl %ecx
  100. cmpl $0x55aa55aa, %ecx
  101. jne die
  102. wbinvd
  103. /* Determine our load offset */
  104. call 1f
  105. 1: popl %ecx
  106. subl $1b, %ecx
  107. /* Set the upper memory limit parameter */
  108. subl $CONFIG_SYS_STACK_SIZE, %eax
  109. /* Reserve space for global data */
  110. subl $(GD_SIZE * 4), %eax
  111. /* %eax points to the global data structure */
  112. movl %esp, (GD_RAM_SIZE * 4)(%eax)
  113. movl %ebx, (GD_FLAGS * 4)(%eax)
  114. movl %ecx, (GD_LOAD_OFF * 4)(%eax)
  115. call board_init_f /* Enter, U-boot! */
  116. /* indicate (lack of) progress */
  117. movw $0x85, %ax
  118. die: hlt
  119. jmp die
  120. hlt
  121. blank_idt_ptr:
  122. .word 0 /* limit */
  123. .long 0 /* base */