Changeset 4037847 in mainline
- Timestamp:
- 2006-03-24T19:14:12Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c715e9b
- Parents:
- 5201199
- Location:
- arch/ppc32
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ppc32/include/boot/boot.h
r5201199 r4037847 35 35 #define TEMP_STACK_SIZE 0x100 36 36 37 #define MEMMAP_MAX_RECORDS 32 38 39 #ifndef __ASM__ 40 41 #include <arch/types.h> 42 43 typedef struct { 44 __address start; 45 __u32 size; 46 } memzone_t; 47 48 typedef struct { 49 __u32 total; 50 __u32 count; 51 memzone_t zones[MEMMAP_MAX_RECORDS]; 52 } memmap_t; 53 54 typedef struct { 55 unsigned int addr; 56 unsigned int width; 57 unsigned int height; 58 unsigned int bpp; 59 unsigned int scanline; 60 } screen_t; 61 62 typedef struct { 63 memmap_t memmap; 64 screen_t screen; 65 } bootinfo_t; 66 67 extern bootinfo_t bootinfo; 68 37 69 #endif 70 71 #endif -
arch/ppc32/src/boot/boot.S
r5201199 r4037847 29 29 #include <arch/asm/regname.h> 30 30 #include <arch/boot/boot.h> 31 #include <arch/boot/memmap.h>32 31 33 32 .section K_TEXT_START, "ax" … … 41 40 addi sp, sp, end_stack@l 42 41 43 # r 10 contains physical address to memmap_t44 # from boot loader42 # r3 contains physical address of bootinfo_t 43 # r4 contains size of bootinfo_t 45 44 46 45 lis r31, 0x80000000@ha … … 49 48 add r3, r3, r31 50 49 51 lis r31, memmap@ha52 addi r31, r31, memmap@l # r31 = memmap50 lis r31, bootinfo@ha 51 addi r31, r31, bootinfo@l # r31 = bootinfo 53 52 54 lwz r30, 0(r3) # memmap->total55 stw r30, 0(r31)53 cmpwi r4, 0 54 beq bootinfo_end 56 55 57 lwzu r30, 4(r3) # memmap->count 58 stwu r30, 4(r31) 59 60 cmpwi r30, 0 61 beq memmap_end 62 63 mtctr r30 64 memmap_loop: 65 66 lwzu r30, 4(r3) # memmap->zones[i].start 67 stwu r30, 4(r31) 56 bootinfo_loop: 68 57 69 lwzu r30, 4(r3) # memmap->zones[i].size 70 stwu r30, 4(r31) 71 72 bdnz memmap_loop 73 memmap_end: 58 lwz r30, 0(r3) 59 stw r30, 0(r31) 60 61 addi r3, r3, 4 62 addi r31, r31, 4 63 subi r4, r4, 4 64 65 cmpwi r4, 0 66 bgt bootinfo_loop 67 68 bootinfo_end: 74 69 75 70 b main_bsp -
arch/ppc32/src/mm/frame.c
r5201199 r4037847 27 27 */ 28 28 29 #include <arch/boot/boot.h> 29 30 #include <arch/mm/frame.h> 30 #include <arch/boot/memmap.h>31 31 #include <arch/mm/memory_init.h> 32 32 #include <mm/frame.h> … … 43 43 size_t size; 44 44 45 for (i = 0; i < memmap.count; i++) {46 start = ADDR2PFN(ALIGN_UP( memmap.zones[i].start, FRAME_SIZE));47 size = SIZE2FRAMES(ALIGN_DOWN( memmap.zones[i].size, FRAME_SIZE));45 for (i = 0; i < bootinfo.memmap.count; i++) { 46 start = ADDR2PFN(ALIGN_UP(bootinfo.memmap.zones[i].start, FRAME_SIZE)); 47 size = SIZE2FRAMES(ALIGN_DOWN(bootinfo.memmap.zones[i].size, FRAME_SIZE)); 48 48 49 49 if ((minconf < start) || (minconf >= start + size)) … … 53 53 54 54 zone_create(start, size, conf, 0); 55 if (last_frame < ALIGN_UP( memmap.zones[i].start +memmap.zones[i].size, FRAME_SIZE))56 last_frame = ALIGN_UP( memmap.zones[i].start +memmap.zones[i].size, FRAME_SIZE);55 if (last_frame < ALIGN_UP(bootinfo.memmap.zones[i].start + bootinfo.memmap.zones[i].size, FRAME_SIZE)) 56 last_frame = ALIGN_UP(bootinfo.memmap.zones[i].start + bootinfo.memmap.zones[i].size, FRAME_SIZE); 57 57 } 58 58 -
arch/ppc32/src/mm/memory_init.c
r5201199 r4037847 27 27 */ 28 28 29 #include <arch/boot/ memmap.h>29 #include <arch/boot/boot.h> 30 30 #include <arch/mm/memory_init.h> 31 31 #include <typedefs.h> 32 32 #include <print.h> 33 33 34 memmap_t memmap;35 36 34 37 35 size_t get_memory_size(void) 38 36 { 39 return memmap.total;37 return bootinfo.memmap.total; 40 38 } 41 39 … … 45 43 count_t i; 46 44 47 for (i = 0; i < memmap.count; i++)48 printf("base: %L size: %L\n", memmap.zones[i].start,memmap.zones[i].size);45 for (i = 0; i < bootinfo.memmap.count; i++) 46 printf("base: %L size: %L\n", bootinfo.memmap.zones[i].start, bootinfo.memmap.zones[i].size); 49 47 } -
arch/ppc32/src/ppc32.c
r5201199 r4037847 28 28 29 29 #include <arch.h> 30 #include <arch/boot/boot.h> 30 31 #include <arch/console.h> 31 32 #include <arch/drivers/cuda.h> 32 33 #include <arch/mm/memory_init.h> 33 34 #include <arch/interrupt.h> 35 36 bootinfo_t bootinfo; 34 37 35 38 void arch_pre_mm_init(void)
Note:
See TracChangeset
for help on using the changeset viewer.