Changeset e4ddfa8 in mainline for arch/ppc32/src
- Timestamp:
- 2006-03-14T19:06:16Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1065603e
- Parents:
- edc89bd0
- Location:
- arch/ppc32/src
- Files:
-
- 4 edited
-
boot/boot.S (modified) (2 diffs)
-
drivers/cuda.c (modified) (1 diff)
-
exception.S (modified) (1 diff)
-
ppc32.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
arch/ppc32/src/boot/boot.S
redc89bd0 re4ddfa8 36 36 .global kernel_image_start 37 37 kernel_image_start: 38 39 # load temporary stack 40 41 lis sp, end_stack@ha 42 addi sp, sp, end_stack@l 38 43 39 44 # r10 contains physical address to memmap_t … … 70 75 71 76 b main_bsp 77 78 .section K_DATA_START, "aw", @progbits 79 80 .space TEMP_STACK_SIZE 81 end_stack: -
arch/ppc32/src/drivers/cuda.c
redc89bd0 re4ddfa8 49 49 50 50 51 void cuda_init(void) 52 { 53 } 54 55 51 56 static void cuda_packet(const __u8 data) 52 57 { -
arch/ppc32/src/exception.S
redc89bd0 re4ddfa8 85 85 .global exc_decrementer 86 86 exc_decrementer: 87 rfi 87 88 b exc_decrementer 88 89 -
arch/ppc32/src/ppc32.c
redc89bd0 re4ddfa8 29 29 #include <arch.h> 30 30 #include <arch/console.h> 31 31 #include <arch/drivers/cuda.h> 32 32 #include <arch/mm/memory_init.h> 33 33 … … 35 35 { 36 36 ppc32_console_init(); 37 cuda_init(); 37 38 } 38 39
Note:
See TracChangeset
for help on using the changeset viewer.
