Changeset 40d4c1d in mainline for kernel/arch/ppc32
- Timestamp:
- 2010-01-08T22:13:34Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 234e39e
- Parents:
- eb0bc90 (diff), 6d7f9bfe (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- kernel/arch/ppc32
- Files:
-
- 2 added
- 3 edited
-
Makefile.inc (modified) (1 diff)
-
include/exception.h (modified) (2 diffs)
-
src/debug/stacktrace.c (added)
-
src/debug/stacktrace_asm.S (added)
-
src/mm/page.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/Makefile.inc
reb0bc90 r40d4c1d 46 46 arch/$(KARCH)/src/context.S \ 47 47 arch/$(KARCH)/src/debug/panic.s \ 48 arch/$(KARCH)/src/debug/stacktrace.c \ 49 arch/$(KARCH)/src/debug/stacktrace_asm.S \ 48 50 arch/$(KARCH)/src/fpu_context.S \ 49 51 arch/$(KARCH)/src/boot/boot.S \ -
kernel/arch/ppc32/include/exception.h
reb0bc90 r40d4c1d 39 39 #include <arch/regutils.h> 40 40 41 typedef struct {41 typedef struct istate { 42 42 uint32_t r0; 43 43 uint32_t r2; … … 98 98 } 99 99 100 static inline unative_t istate_get_fp(istate_t *istate) 101 { 102 return istate->sp; 103 } 104 100 105 #endif 101 106 -
kernel/arch/ppc32/src/mm/page.c
reb0bc90 r40d4c1d 51 51 KA2PA(KERNEL_ADDRESS_SPACE_END_ARCH)) 52 52 panic("Unable to map physical memory %p (%" PRIs " bytes).", 53 physaddr, size) 53 physaddr, size); 54 54 55 55 uintptr_t virtaddr = PA2KA(last_frame);
Note:
See TracChangeset
for help on using the changeset viewer.
