head.S
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  arch/cris/boot/compressed/head.S
  3.  *
  4.  *  Copyright (C) 1999, 2001 Axis Communications AB
  5.  *
  6.  *  Code that sets up the DRAM registers, calls the
  7.  *  decompressor to unpack the piggybacked kernel, and jumps.
  8.  *
  9.  */
  10. #include <linux/config.h>
  11. #define ASSEMBLER_MACROS_ONLY
  12. #include <asm/sv_addr_ag.h>
  13. #define RAM_INIT_MAGIC 0x56902387
  14. ;; Exported symbols
  15. .globl _input_data
  16. .text
  17. nop
  18. di
  19. ;; We need to initialze DRAM registers before we start using the DRAM
  20. cmp.d RAM_INIT_MAGIC, r8 ; Already initialized?
  21. beq dram_init_finished
  22. nop
  23. #include "../../lib/dram_init.S"
  24. dram_init_finished:
  25. ;; Initiate the PA and PB ports
  26. move.b   CONFIG_ETRAX_DEF_R_PORT_PA_DATA, r0
  27. move.b   r0, [R_PORT_PA_DATA]
  28. move.b   CONFIG_ETRAX_DEF_R_PORT_PA_DIR, r0
  29. move.b   r0, [R_PORT_PA_DIR]
  30. move.b   CONFIG_ETRAX_DEF_R_PORT_PB_DATA, r0
  31. move.b   r0, [R_PORT_PB_DATA]
  32. move.b   CONFIG_ETRAX_DEF_R_PORT_PB_DIR, r0
  33. move.b   r0, [R_PORT_PB_DIR]
  34. ;; Setup the stack to a suitably high address.
  35. ;; We assume 8 MB is the minimum DRAM in an eLinux
  36. ;; product and put the sp at the top for now.
  37. move.d 0x40800000, sp
  38. ;; Figure out where the compressed piggyback image is
  39. ;; in the flash (since we wont try to copy it to DRAM
  40. ;; before unpacking). It is at _edata, but in flash.
  41. ;; Use (_edata - basse) as offset to the current PC.
  42. basse: move.d pc, r5
  43. and.d 0x7fffffff, r5 ; strip any non-cache bit
  44. subq 2, r5 ; compensate for the move.d pc instr
  45. move.d r5, r0 ; save for later - flash address of 'basse'
  46. add.d _edata, r5
  47. sub.d basse, r5 ; r5 = flash address of '_edata'
  48. ;; Copy text+data to DRAM
  49. move.d basse, r1 ; destination
  50. move.d _edata, r2 ; end destination
  51. 1: move.w [r0+], r3
  52. move.w r3, [r1+]
  53. cmp.d r2, r1
  54. bcs 1b
  55. nop
  56. move.d r5, [_input_data] ; for the decompressor
  57. ;; Clear the decompressors BSS (between _edata and _end)
  58. moveq 0, r0
  59. move.d _edata, r1
  60. move.d _end, r2
  61. 1: move.w r0, [r1+]
  62. cmp.d r2, r1
  63. bcs 1b
  64. nop
  65. ;; Do the decompression and save compressed size in _inptr
  66. jsr _decompress_kernel
  67. ;; Put start address of root partition in r9 so the kernel can use it
  68. ;; when mounting from flash
  69. move.d [_input_data], r9 ; flash address of compressed kernel
  70. add.d [_inptr], r9 ; size of compressed kernel
  71.  
  72. ;; Enter the decompressed kernel
  73. move.d RAM_INIT_MAGIC, r8 ; Tell kernel that DRAM is initialized
  74. jump 0x40004000 ; kernel is linked to this address
  75. .data
  76. _input_data:
  77. .dword 0 ; used by the decompressor
  78. #include "../../lib/hw_settings.S"