Changeset 5eb84ab in mainline
- Timestamp:
- 2006-03-07T08:32:51Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bcc223b2
- Parents:
- 1b08233
- Location:
- arch/ppc32/loader
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ppc32/loader/Makefile
r1b08233 r5eb84ab 54 54 ofw.c \ 55 55 printf.c \ 56 asm.S \ 56 57 boot.S 57 58 -
arch/ppc32/loader/boot.S
r1b08233 r5eb84ab 1 1 # 2 # Copyright (C) 200 5Martin Decky2 # Copyright (C) 2006 Martin Decky 3 3 # All rights reserved. 4 4 # -
arch/ppc32/loader/main.c
r1b08233 r5eb84ab 30 30 #include "printf.h" 31 31 #include "ofw.h" 32 #include "asm.h" 32 33 33 34 #define KERNEL_LOAD_ADDRESS 0x800000 34 #define KERNEL_SIZE ((unsigned int) &_binary_____________kernel_kernel_bin_end - (unsigned int) &_binary_____________kernel_kernel_bin_start) 35 36 static void halt(void) 37 { 38 while (1); 39 } 35 #define KERNEL_START &_binary_____________kernel_kernel_bin_start 36 #define KERNEL_END &_binary_____________kernel_kernel_bin_end 37 #define KERNEL_SIZE ((unsigned int) KERNEL_END - (unsigned int) KERNEL_START) 40 38 41 39 void bootstrap(void) … … 48 46 halt(); 49 47 } 48 memcpy(addr, KERNEL_START, KERNEL_SIZE); 50 49 51 halt(); 50 printf("Booting the kernel...\n"); 51 jump_to_kernel(addr); 52 52 } -
arch/ppc32/loader/regname.h
r1b08233 r5eb84ab 27 27 */ 28 28 29 #ifndef __ ppc32_REGNAME_H__30 #define __ ppc32_REGNAME_H__29 #ifndef __REGNAME_H__ 30 #define __REGNAME_H__ 31 31 32 32 /* Condition Register Bit Fields */
Note:
See TracChangeset
for help on using the changeset viewer.