Changeset 4037847 in mainline


Ignore:
Timestamp:
2006-03-24T19:14:12Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c715e9b
Parents:
5201199
Message:

kernel boot API change

Location:
arch/ppc32
Files:
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • arch/ppc32/include/boot/boot.h

    r5201199 r4037847  
    3535#define TEMP_STACK_SIZE 0x100
    3636
     37#define MEMMAP_MAX_RECORDS 32
     38
     39#ifndef __ASM__
     40
     41#include <arch/types.h>
     42
     43typedef struct {
     44        __address start;
     45        __u32 size;
     46} memzone_t;
     47
     48typedef struct {
     49        __u32 total;
     50        __u32 count;
     51        memzone_t zones[MEMMAP_MAX_RECORDS];
     52} memmap_t;
     53
     54typedef 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
     62typedef struct {
     63        memmap_t memmap;
     64        screen_t screen;
     65} bootinfo_t;
     66
     67extern bootinfo_t bootinfo;
     68
    3769#endif
     70
     71#endif
  • arch/ppc32/src/boot/boot.S

    r5201199 r4037847  
    2929#include <arch/asm/regname.h>
    3030#include <arch/boot/boot.h>
    31 #include <arch/boot/memmap.h>
    3231
    3332.section K_TEXT_START, "ax"
     
    4140        addi sp, sp, end_stack@l
    4241       
    43         # r10 contains physical address to memmap_t
    44         # from boot loader
     42        # r3 contains physical address of bootinfo_t
     43        # r4 contains size of bootinfo_t
    4544       
    4645        lis r31, 0x80000000@ha
     
    4948        add r3, r3, r31
    5049
    51         lis r31, memmap@ha
    52         addi r31, r31, memmap@l    # r31 = memmap
     50        lis r31, bootinfo@ha
     51        addi r31, r31, bootinfo@l  # r31 = bootinfo
    5352       
    54         lwz r30, 0(r3)             # memmap->total
    55         stw r30, 0(r31)
     53        cmpwi r4, 0
     54        beq bootinfo_end
    5655       
    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:
    6857               
    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:
    7469       
    7570        b main_bsp
  • arch/ppc32/src/mm/frame.c

    r5201199 r4037847  
    2727 */
    2828
     29#include <arch/boot/boot.h>
    2930#include <arch/mm/frame.h>
    30 #include <arch/boot/memmap.h>
    3131#include <arch/mm/memory_init.h>
    3232#include <mm/frame.h>
     
    4343        size_t size;
    4444       
    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));
    4848               
    4949                if ((minconf < start) || (minconf >= start + size))
     
    5353               
    5454                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);
    5757        }
    5858
  • arch/ppc32/src/mm/memory_init.c

    r5201199 r4037847  
    2727 */
    2828
    29 #include <arch/boot/memmap.h>
     29#include <arch/boot/boot.h>
    3030#include <arch/mm/memory_init.h>
    3131#include <typedefs.h>
    3232#include <print.h>
    3333
    34 memmap_t memmap;
    35 
    3634
    3735size_t get_memory_size(void)
    3836{
    39         return memmap.total;
     37        return bootinfo.memmap.total;
    4038}
    4139
     
    4543        count_t i;
    4644       
    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);
    4947}
  • arch/ppc32/src/ppc32.c

    r5201199 r4037847  
    2828
    2929#include <arch.h>
     30#include <arch/boot/boot.h>
    3031#include <arch/console.h>
    3132#include <arch/drivers/cuda.h>
    3233#include <arch/mm/memory_init.h>
    3334#include <arch/interrupt.h>
     35
     36bootinfo_t bootinfo;
    3437
    3538void arch_pre_mm_init(void)
Note: See TracChangeset for help on using the changeset viewer.