Changeset b66cc97 in mainline for boot/arch/ppc32/src/asm.S
- Timestamp:
- 2016-04-24T08:00:09Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 38ad239
- Parents:
- 0407636
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/ppc32/src/asm.S
r0407636 rb66cc97 27 27 # 28 28 29 #include <abi/asmtool.h> 29 30 #include <arch/arch.h> 30 31 #include <arch/regname.h> … … 104 105 .endm 105 106 106 .global start107 .global halt108 .global jump_to_kernel109 .global real_mode110 111 107 .section BOOTSTRAP, "ax" 112 108 113 start: 109 SYMBOL(start) 114 110 lis r4, ofw_cif@ha 115 111 addi r4, r4, ofw_cif@l … … 121 117 .text 122 118 123 halt: 119 FUNCTION_BEGIN(halt) 124 120 b halt 125 126 jump_to_kernel: 127 121 FUNCTION_END(halt) 122 123 FUNCTION_BEGIN(jump_to_kernel) 128 124 # arguments: 129 125 # r3 = bootinfo (physical address) … … 153 149 isync 154 150 rfi 151 FUNCTION_END(jump_to_kernel) 155 152 156 153 .section REALMODE, "ax" 157 154 158 155 .align PAGE_WIDTH 159 real_mode: 156 SYMBOL(real_mode) 160 157 161 158 # arguments:
Note:
See TracChangeset
for help on using the changeset viewer.