start.S 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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. #include <asm/processor-flags.h>
  28. .section .text
  29. .code32
  30. .globl _start
  31. .type _start, @function
  32. .globl _i386boot_start
  33. _i386boot_start:
  34. /*
  35. * This is the fail safe 32-bit bootstrap entry point. The
  36. * following code is not executed from a cold-reset (actually, a
  37. * lot of it is, but from real-mode after cold reset. It is
  38. * repeated here to put the board into a state as close to cold
  39. * reset as necessary)
  40. */
  41. cli
  42. cld
  43. /* Turn of cache (this might require a 486-class CPU) */
  44. movl %cr0, %eax
  45. orl $(X86_CR0_NW | X86_CR0_CD), %eax
  46. movl %eax, %cr0
  47. wbinvd
  48. /* Tell 32-bit code it is being entered from an in-RAM copy */
  49. movw $GD_FLG_WARM_BOOT, %bx
  50. _start:
  51. /* This is the 32-bit cold-reset entry point */
  52. movl $0x18, %eax /* Load our segement registes, the
  53. * gdt have already been loaded by start16.S */
  54. movw %ax, %fs
  55. movw %ax, %ds
  56. movw %ax, %gs
  57. movw %ax, %es
  58. movw %ax, %ss
  59. /* Clear the interupt vectors */
  60. lidt blank_idt_ptr
  61. /* Early platform init (setup gpio, etc ) */
  62. jmp early_board_init
  63. .globl early_board_init_ret
  64. early_board_init_ret:
  65. /* Initialise Cache-As-RAM */
  66. jmp car_init
  67. .globl car_init_ret
  68. car_init_ret:
  69. /*
  70. * We now have CONFIG_SYS_CAR_SIZE bytes of Cache-As-RAM (or SRAM,
  71. * or fully initialised SDRAM - we really don't care which)
  72. * starting at CONFIG_SYS_CAR_ADDR to be used as a temporary stack
  73. */
  74. movl $CONFIG_SYS_INIT_SP_ADDR, %esp
  75. movl $CONFIG_SYS_INIT_GD_ADDR, %ebp
  76. /* Set Boot Flags in Global Data */
  77. movl %ebx, (GD_FLAGS * 4)(%ebp)
  78. /* Determine our load offset (and put in Global Data) */
  79. call 1f
  80. 1: popl %ecx
  81. subl $1b, %ecx
  82. movl %ecx, (GD_LOAD_OFF * 4)(%ebp)
  83. /* size memory */
  84. call dram_init_f
  85. /* Set parameter to board_init_f() to boot flags */
  86. movl (GD_FLAGS * 4)(%ebp), %eax
  87. call board_init_f /* Enter, U-boot! */
  88. /* indicate (lack of) progress */
  89. movw $0x85, %ax
  90. jmp die
  91. .globl relocate_code
  92. .type relocate_code, @function
  93. relocate_code:
  94. /*
  95. * SDRAM has been initialised, U-Boot code has been copied into
  96. * RAM, BSS has been cleared and relocation adjustments have been
  97. * made. It is now time to jump into the in-RAM copy of U-Boot
  98. *
  99. * %eax = Address of top of stack
  100. * %edx = Address of Global Data
  101. * %ecx = Base address of in-RAM copy of U-Boot
  102. */
  103. /* Setup stack in RAM */
  104. movl %eax, %esp
  105. /* Setup call address of in-RAM copy of board_init_r() */
  106. movl $board_init_r, %ebp
  107. subl (GD_RELOC_OFF * 4)(%edx), %ebp
  108. /* Setup parameters to board_init_r() */
  109. movl %edx, %eax
  110. movl %ecx, %edx
  111. /* Jump to in-RAM copy of board_init_r() */
  112. call *%ebp
  113. die: hlt
  114. jmp die
  115. hlt
  116. blank_idt_ptr:
  117. .word 0 /* limit */
  118. .long 0 /* base */