Changeset 1b50135 in mainline
- Timestamp:
- 2005-09-12T13:55:04Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 72dde3a
- Parents:
- 60780c5
- Location:
- arch
- Files:
-
- 1 edited
- 41 moved
-
mips32/Makefile.inc (modified) (1 diff)
-
mips32/src/mips32.c (moved) (moved from arch/mips32/src/mips.c )
-
ppc32/Makefile.inc (moved) (moved from arch/ppc/Makefile.inc )
-
ppc32/_link.ld (moved) (moved from arch/ppc/_link.ld )
-
ppc32/boot/Makefile (moved) (moved from arch/ppc/boot/Makefile )
-
ppc32/boot/_link.ld (moved) (moved from arch/ppc/boot/_link.ld )
-
ppc32/boot/boot.S (moved) (moved from arch/ppc/boot/boot.S )
-
ppc32/boot/main.c (moved) (moved from arch/ppc/boot/main.c )
-
ppc32/boot/main.h (moved) (moved from arch/ppc/boot/main.h )
-
ppc32/include/arch.h (moved) (moved from arch/ppc/include/arch.h ) (1 diff)
-
ppc32/include/arg.h (moved) (moved from arch/ppc/include/arg.h ) (1 diff)
-
ppc32/include/asm.h (moved) (moved from arch/ppc/include/asm.h ) (1 diff)
-
ppc32/include/asm/macro.h (moved) (moved from arch/ppc/include/asm/macro.h ) (2 diffs)
-
ppc32/include/atomic.h (moved) (moved from arch/ppc/include/atomic.h ) (1 diff)
-
ppc32/include/barrier.h (moved) (moved from arch/ppc/include/barrier.h ) (1 diff)
-
ppc32/include/byteorder.h (moved) (moved from arch/ppc/include/byteorder.h ) (1 diff)
-
ppc32/include/context.h (moved) (moved from arch/ppc/include/context.h ) (1 diff)
-
ppc32/include/cpu.h (moved) (moved from arch/ppc/include/cpu.h ) (1 diff)
-
ppc32/include/drivers/ofw.h (moved) (moved from arch/ppc/include/drivers/ofw.h ) (1 diff)
-
ppc32/include/faddr.h (moved) (moved from arch/ppc/include/faddr.h ) (1 diff)
-
ppc32/include/fmath.h (moved) (moved from arch/ppc/include/fmath.h ) (2 diffs)
-
ppc32/include/fpu_context.h (moved) (moved from arch/ppc/include/fpu_context.h ) (1 diff)
-
ppc32/include/interrupt.h (moved) (moved from arch/ppc/include/interrupt.h ) (1 diff)
-
ppc32/include/mm/frame.h (moved) (moved from arch/ppc/include/mm/frame.h ) (1 diff)
-
ppc32/include/mm/memory_init.h (moved) (moved from arch/ppc/include/mm/memory_init.h ) (1 diff)
-
ppc32/include/mm/page.h (moved) (moved from arch/ppc/include/mm/page.h ) (1 diff)
-
ppc32/include/mm/vm.h (moved) (moved from arch/ppc/include/mm/vm.h ) (1 diff)
-
ppc32/include/thread.h (moved) (moved from arch/ppc/include/thread.h ) (1 diff)
-
ppc32/include/types.h (moved) (moved from arch/ppc/include/types.h ) (1 diff)
-
ppc32/src/asm.S (moved) (moved from arch/ppc/src/asm.S )
-
ppc32/src/context.S (moved) (moved from arch/ppc/src/context.S )
-
ppc32/src/cpu/cpu.c (moved) (moved from arch/ppc/src/cpu/cpu.c )
-
ppc32/src/debug/panic.s (moved) (moved from arch/ppc/src/debug/panic.s )
-
ppc32/src/drivers/ofw.c (moved) (moved from arch/ppc/src/drivers/ofw.c )
-
ppc32/src/dummy.s (moved) (moved from arch/ppc/src/dummy.s )
-
ppc32/src/fmath.c (moved) (moved from arch/ppc/src/fmath.c )
-
ppc32/src/fpu_context.c (moved) (moved from arch/ppc/src/fpu_context.c )
-
ppc32/src/mm/frame.c (moved) (moved from arch/ppc/src/mm/frame.c )
-
ppc32/src/mm/memory_init.c (moved) (moved from arch/ppc/src/mm/memory_init.c )
-
ppc32/src/mm/page.c (moved) (moved from arch/ppc/src/mm/page.c )
-
ppc32/src/ppc.c (moved) (moved from arch/ppc/src/ppc.c )
-
ppc32/src/start.S (moved) (moved from arch/ppc/src/start.S )
Legend:
- Unmodified
- Added
- Removed
-
arch/mips32/Makefile.inc
r60780c5 r1b50135 72 72 arch/context.S \ 73 73 arch/panic.S \ 74 arch/mips .c \74 arch/mips32.c \ 75 75 arch/dummy.S \ 76 76 arch/console.c \ -
arch/ppc32/include/arch.h
r60780c5 r1b50135 27 27 */ 28 28 29 #ifndef __ppc _ARCH_H__30 #define __ppc _ARCH_H__29 #ifndef __ppc32_ARCH_H__ 30 #define __ppc32_ARCH_H__ 31 31 32 32 #include <arch/drivers/ofw.h> -
arch/ppc32/include/arg.h
r60780c5 r1b50135 27 27 */ 28 28 29 #ifndef __ppc _ARG_H__30 #define __ppc _ARG_H__29 #ifndef __ppc32_ARG_H__ 30 #define __ppc32_ARG_H__ 31 31 32 32 #include <stdarg.h> -
arch/ppc32/include/asm.h
r60780c5 r1b50135 27 27 */ 28 28 29 #ifndef __ppc _ASM_H__30 #define __ppc _ASM_H__29 #ifndef __ppc32_ASM_H__ 30 #define __ppc32_ASM_H__ 31 31 32 32 #include <arch/types.h> -
arch/ppc32/include/asm/macro.h
r60780c5 r1b50135 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 */ 28 29 #ifndef __ppc32_MACRO_H__ 30 #define __ppc32_MACRO_H__ 28 31 29 32 /* … … 260 263 lwz r31, 124(\r) 261 264 .endm 265 266 #endif -
arch/ppc32/include/atomic.h
r60780c5 r1b50135 27 27 */ 28 28 29 #ifndef __ppc _ATOMIC_H__30 #define __ppc _ATOMIC_H__29 #ifndef __ppc32_ATOMIC_H__ 30 #define __ppc32_ATOMIC_H__ 31 31 32 32 /* -
arch/ppc32/include/barrier.h
r60780c5 r1b50135 27 27 */ 28 28 29 #ifndef __ppc _BARRIER_H__30 #define __ppc _BARRIER_H__29 #ifndef __ppc32_BARRIER_H__ 30 #define __ppc32_BARRIER_H__ 31 31 32 32 #define CS_ENTER_BARRIER() __asm__ volatile ("" ::: "memory") -
arch/ppc32/include/byteorder.h
r60780c5 r1b50135 27 27 */ 28 28 29 #ifndef __ppc _BYTEORDER_H__30 #define __ppc _BYTEORDER_H__29 #ifndef __ppc32_BYTEORDER_H__ 30 #define __ppc32_BYTEORDER_H__ 31 31 32 32 #include <arch/types.h> -
arch/ppc32/include/context.h
r60780c5 r1b50135 27 27 */ 28 28 29 #ifndef __ppc _CONTEXT_H__30 #define __ppc _CONTEXT_H__29 #ifndef __ppc32_CONTEXT_H__ 30 #define __ppc32_CONTEXT_H__ 31 31 32 32 #include <arch/types.h> -
arch/ppc32/include/cpu.h
r60780c5 r1b50135 27 27 */ 28 28 29 #ifndef __ppc _CPU_H__30 #define __ppc _CPU_H__29 #ifndef __ppc32_CPU_H__ 30 #define __ppc32_CPU_H__ 31 31 32 32 #include <typedefs.h> -
arch/ppc32/include/drivers/ofw.h
r60780c5 r1b50135 27 27 */ 28 28 29 #ifndef __ OFW_H__30 #define __ OFW_H__29 #ifndef __ppc32_OFW_H__ 30 #define __ppc32_OFW_H__ 31 31 32 32 #include <arch/types.h> -
arch/ppc32/include/faddr.h
r60780c5 r1b50135 27 27 */ 28 28 29 #ifndef __ppc _FADDR_H__30 #define __ppc _FADDR_H__29 #ifndef __ppc32_FADDR_H__ 30 #define __ppc32_FADDR_H__ 31 31 32 32 #include <arch/types.h> -
arch/ppc32/include/fmath.h
r60780c5 r1b50135 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 */ 28 29 #ifndef __ppc32_FMATH_H__ 30 #define __ppc32_FMATH_H__ 28 31 29 32 #include <arch/types.h> … … 63 66 /** return 1, if fmath is a infinity */ 64 67 int fmath_is_infinity(double num); 68 69 #endif -
arch/ppc32/include/fpu_context.h
r60780c5 r1b50135 27 27 */ 28 28 29 #ifndef __ppc _FPU_CONTEXT_H__30 #define __ppc _FPU_CONTEXT_H__29 #ifndef __ppc32_FPU_CONTEXT_H__ 30 #define __ppc32_FPU_CONTEXT_H__ 31 31 32 32 #include <arch/types.h> -
arch/ppc32/include/interrupt.h
r60780c5 r1b50135 27 27 */ 28 28 29 #ifndef __ INTERRUPT_H__30 #define __ INTERRUPT_H__29 #ifndef __ppc32_INTERRUPT_H__ 30 #define __ppc32_INTERRUPT_H__ 31 31 32 32 extern void interrupt(void); -
arch/ppc32/include/mm/frame.h
r60780c5 r1b50135 27 27 */ 28 28 29 #ifndef __ppc _FRAME_H__30 #define __ppc _FRAME_H__29 #ifndef __ppc32_FRAME_H__ 30 #define __ppc32_FRAME_H__ 31 31 32 32 #define FRAME_SIZE 4096 -
arch/ppc32/include/mm/memory_init.h
r60780c5 r1b50135 27 27 */ 28 28 29 #ifndef __ppc _MEMORY_INIT_H__30 #define __ppc _MEMORY_INIT_H__29 #ifndef __ppc32_MEMORY_INIT_H__ 30 #define __ppc32_MEMORY_INIT_H__ 31 31 32 32 #include <config.h> -
arch/ppc32/include/mm/page.h
r60780c5 r1b50135 27 27 */ 28 28 29 #ifndef __ppc _PAGE_H__30 #define __ppc _PAGE_H__29 #ifndef __ppc32_PAGE_H__ 30 #define __ppc32_PAGE_H__ 31 31 32 32 #include <mm/page.h> -
arch/ppc32/include/mm/vm.h
r60780c5 r1b50135 27 27 */ 28 28 29 #ifndef __ppc _VM_H__30 #define __ppc _VM_H__29 #ifndef __ppc32_VM_H__ 30 #define __ppc32_VM_H__ 31 31 32 32 #include <arch/types.h> -
arch/ppc32/include/thread.h
r60780c5 r1b50135 27 27 */ 28 28 29 #ifndef __ppc _THREAD_H__30 #define __ppc _THREAD_H__29 #ifndef __ppc32_THREAD_H__ 30 #define __ppc32_THREAD_H__ 31 31 32 32 #define ARCH_THREAD_DATA -
arch/ppc32/include/types.h
r60780c5 r1b50135 27 27 */ 28 28 29 #ifndef __ TYPES_H__30 #define __ TYPES_H__29 #ifndef __ppc32_TYPES_H__ 30 #define __ppc32_TYPES_H__ 31 31 32 32 #define NULL 0
Note:
See TracChangeset
for help on using the changeset viewer.
