head.S
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: head.S,v 1.17 2000/03/06 12:44:24 gniibe Exp $
  2.  *
  3.  *  arch/sh/kernel/head.S
  4.  *
  5.  *  Copyright (C) 1999, 2000  Niibe Yutaka & Kaz Kojima
  6.  *
  7.  * This file is subject to the terms and conditions of the GNU General Public
  8.  * License.  See the file "COPYING" in the main directory of this archive
  9.  * for more details.
  10.  *
  11.  * Head.S contains the SH exception handlers and startup code.
  12.  */
  13. #include <linux/linkage.h>
  14. .section .empty_zero_page, "aw"
  15. ENTRY(empty_zero_page)
  16. .long 1 /* MOUNT_ROOT_RDONLY */
  17. .long 0 /* RAMDISK_FLAGS */
  18. .long 0x0200 /* ORIG_ROOT_DEV */
  19. .long 1 /* LOADER_TYPE */
  20. .long 0x00360000 /* INITRD_START */
  21. .long 0x000a0000 /* INITRD_SIZE */
  22. .long 0
  23. .balign 4096,0,4096
  24. .text
  25. /*
  26.  * Condition at the entry of _stext:
  27.  *
  28.  *   BSC has already been initialized.
  29.  *   INTC may or may not be initialized.
  30.  *   VBR may or may not be initialized.
  31.  *   MMU may or may not be initialized.
  32.  *   Cache may or may not be initialized.
  33.  *   Hardware (including on-chip modules) may or may not be initialized. 
  34.  *
  35.  */
  36. ENTRY(_stext)
  37. ! Initialize Status Register
  38. mov.l 1f, r0 ! MD=1, RB=0, BL=0, IMASK=0xF
  39. ldc r0, sr
  40. ! Initialize global interrupt mask
  41. mov #0, r0
  42. ldc r0, r6_bank
  43. !
  44. mov.l 2f, r0
  45. mov r0, r15 ! Set initial r15 (stack pointer)
  46. mov #0x20, r1 !
  47. shll8 r1 ! r1 = 8192
  48. sub r1, r0 !
  49. ldc r0, r7_bank ! ... and init_task
  50. !
  51. #if defined(__SH4__)
  52. !                       Initialize fpu
  53. mov.l   7f, r0
  54. jsr     @r0
  55.  nop
  56. #endif
  57. ! Enable cache
  58. mov.l 6f, r0
  59. jsr @r0
  60.  nop
  61. ! Clear BSS area
  62. mov.l 3f, r1
  63. add #4, r1
  64. mov.l 4f, r2
  65. mov #0, r0
  66. 9: cmp/hs r2, r1
  67. bf/s 9b ! while (r1 < r2)
  68.  mov.l r0,@-r2
  69. ! Start kernel
  70. mov.l 5f, r0
  71. jmp @r0
  72.  nop
  73. .balign 4
  74. 1: .long 0x400000F0 ! MD=1, RB=0, BL=0, FD=0, IMASK=0xF
  75. 2: .long SYMBOL_NAME(stack)
  76. 3: .long SYMBOL_NAME(__bss_start)
  77. 4: .long SYMBOL_NAME(_end)
  78. 5: .long SYMBOL_NAME(start_kernel)
  79. 6: .long SYMBOL_NAME(cache_init)
  80. #if defined(__SH4__)
  81. 7: .long   SYMBOL_NAME(fpu_init)
  82. #endif