crt0.S 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /* Copyright (c) 1997 Paul Mackerras <paulus@cs.anu.edu.au>
  2. * Initial Power Macintosh COFF version.
  3. * Copyright (c) 1999 Grant Erickson <grant@lcse.umn.edu>
  4. * Modifications for IBM PowerPC 400-class processor evaluation
  5. * boards.
  6. *
  7. * Module name: crt0.S
  8. *
  9. * Description:
  10. * Boot loader execution entry point. Clears out .bss section as per
  11. * ANSI C requirements. Invalidates and flushes the caches over the
  12. * range covered by the boot loader's .text section. Sets up a stack
  13. * below the .text section entry point.
  14. *
  15. * This program is free software; you can redistribute it and/or
  16. * modify it under the terms of the GNU General Public License
  17. * as published by the Free Software Foundation; either version
  18. * 2 of the License, or (at your option) any later version.
  19. */
  20. #include <asm/ppc_asm.h>
  21. .text
  22. .globl _start
  23. _start:
  24. #ifdef XCOFF
  25. .long __start,0,0
  26. .globl __start
  27. __start:
  28. #endif
  29. ## Flush and invalidate the caches for the range in memory covering
  30. ## the .text section of the boot loader
  31. lis r9,_start@h # r9 = &_start
  32. lis r8,_etext@ha #
  33. addi r8,r8,_etext@l # r8 = &_etext
  34. 3: dcbf r0,r9 # Flush the data cache
  35. icbi r0,r9 # Invalidate the instruction cache
  36. addi r9,r9,0x10 # Increment by one cache line
  37. cmplw cr0,r9,r8 # Are we at the end yet?
  38. blt 3b # No, keep flushing and invalidating
  39. sync # sync ; isync after flushing the icache
  40. isync
  41. ## Clear out the BSS as per ANSI C requirements
  42. lis r7,_end@ha
  43. addi r7,r7,_end@l # r7 = &_end
  44. lis r8,__bss_start@ha #
  45. addi r8,r8,__bss_start@l # r8 = &_bss_start
  46. ## Determine how large an area, in number of words, to clear
  47. subf r7,r8,r7 # r7 = &_end - &_bss_start + 1
  48. addi r7,r7,3 # r7 += 3
  49. srwi. r7,r7,2 # r7 = size in words.
  50. beq 2f # If the size is zero, do not bother
  51. addi r8,r8,-4 # r8 -= 4
  52. mtctr r7 # SPRN_CTR = number of words to clear
  53. li r0,0 # r0 = 0
  54. 1: stwu r0,4(r8) # Clear out a word
  55. bdnz 1b # If we are not done yet, keep clearing
  56. 2:
  57. #ifdef CONFIG_40x
  58. ## Set up the stack
  59. lis r9,_start@h # r9 = &_start (text section entry)
  60. ori r9,r9,_start@l
  61. subi r1,r9,64 # Start the stack 64 bytes below _start
  62. clrrwi r1,r1,4 # Make sure it is aligned on 16 bytes.
  63. li r0,0
  64. stwu r0,-16(r1)
  65. mtlr r9
  66. #endif
  67. b start # All done, start the real work.