Changeset 89343aac in mainline
- Timestamp:
- 2006-04-09T14:55:28Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a8844e0
- Parents:
- 38fe9d0
- Files:
-
- 13 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ppc32/loader/Makefile
r38fe9d0 r89343aac 47 47 endif 48 48 49 CFLAGS = -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 49 CFLAGS = -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -mcpu=powerpc 50 50 DEFS = 51 51 -
arch/ppc32/loader/asm.S
r38fe9d0 r89343aac 30 30 #include "regname.h" 31 31 32 .data33 34 flush_buffer:35 .space (L1_CACHE_LINES * L1_CACHE_BYTES)36 37 32 .text 38 33 … … 125 120 and r31, r31, r30 126 121 mtspr srr1, r31 122 123 sync 124 isync 127 125 rfi 128 126 -
arch/ppc32/loader/regname.h
r38fe9d0 r89343aac 218 218 #define hid0_dci (1 << 10) 219 219 220 /* Cache sizes */221 #define L1_CACHE_LINES (128 * 8)222 #define L1_CACHE_BYTES 5223 224 220 #endif -
boot.config
r38fe9d0 r89343aac 8 8 @ "mips32" MIPS 32-bit 9 9 @ "ppc32" PowerPC 32-bit 10 @ "ppc64" PowerPC 64-bit 10 11 ! ARCH (choice) 11 12 … … 16 17 % [ARCH=ppc32] SAVEAS PPC32_COMPILER COMPILER 17 18 19 # PPC64 Compiler 20 @ "cross" Cross-compiler 21 @ "native" Native 22 ! [ARCH=ppc64] PPC64_COMPILER (choice) 23 % [ARCH=ppc64] SAVEAS PPC64_COMPILER COMPILER 24 18 25 # MIPS32 Compiler 19 26 @ "cross" Cross-compiler
Note:
See TracChangeset
for help on using the changeset viewer.