Changeset 63cda71 in mainline for boot/arch/ppc64/loader
- Timestamp:
- 2006-07-13T14:58:57Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 94d614e
- Parents:
- eda7bf81
- Location:
- boot/arch/ppc64/loader
- Files:
-
- 1 added
- 5 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/ppc64/loader/Makefile
reda7bf81 r63cda71 52 52 SOURCES = \ 53 53 main.c \ 54 ofwarch.c \ 54 55 ../../../genarch/ofw.c \ 55 56 ../../../generic/printf.c \ -
boot/arch/ppc64/loader/boot.S
reda7bf81 r63cda71 38 38 stw r5, 0(r4) 39 39 40 bl init40 bl ofw_init 41 41 42 42 b bootstrap -
boot/arch/ppc64/loader/main.c
reda7bf81 r63cda71 31 31 #include "asm.h" 32 32 #include "_components.h" 33 #include <ofw.h> 33 34 34 35 #define HEAP_GAP 1024000 -
boot/arch/ppc64/loader/main.h
reda7bf81 r63cda71 27 27 */ 28 28 29 #ifndef __MAIN_H__30 #define __MAIN_H__29 #ifndef BOOT_ppc64_MAIN_H_ 30 #define BOOT_ppc64_MAIN_H_ 31 31 32 #include "ofw.h" 33 34 /** Align to the nearest higher address. 35 * 36 * @param addr Address or size to be aligned. 37 * @param align Size of alignment, must be power of 2. 38 */ 39 #define ALIGN_UP(addr, align) (((addr) + ((align) - 1)) & ~((align) - 1)) 32 #include <ofw.h> 40 33 41 34 #define TASKMAP_MAX_RECORDS 32 -
boot/arch/ppc64/loader/ofwarch.c
reda7bf81 r63cda71 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 */ 28 28 29 #include <ofwarch.h> 29 30 #include <ofw.h> 30 31 #include <printf.h> -
boot/arch/ppc64/loader/types.h
reda7bf81 r63cda71 27 27 */ 28 28 29 #ifndef TYPES_H__30 #define TYPES_H__29 #ifndef BOOT_ppc64_TYPES_H_ 30 #define BOOT_ppc64_TYPES_H_ 31 31 32 32 #include <gentypes.h>
Note:
See TracChangeset
for help on using the changeset viewer.
