Changeset 63cda71 in mainline for boot/arch/sparc64


Ignore:
Timestamp:
2006-07-13T14:58:57Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
94d614e
Parents:
eda7bf81
Message:

Fix ofw_memmap() in boot infrastructure.
The cell size is 32-bit and not equal sizeof(ofw_arg_t).
Define architecture dependant #address-cells and #size-cells for cases
the respective properties are missing in the OpenFirmware device tree.
The algorithm now works both for ppc32 and sparc64.

Add memmap_t, screen_t and keyboard_t to sparc64 bootinfo structure.
Be more verbose during sparc64 boot.

Move ALIGN_UP to generic part of boot/.

Change header guards in several places so that they don't contain double underscore.

Location:
boot/arch/sparc64/loader
Files:
2 added
6 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/sparc64/loader/Makefile

    reda7bf81 r63cda71  
    5353        ../../../generic/printf.c \
    5454        ../../../genarch/ofw.c \
    55         ofw.c \
     55        ofwarch.c \
    5656        asm.S \
    5757        boot.S
     
    6565.PHONY: all clean depend
    6666
    67 all: image.boot
     67all: image.boot disasm
    6868
    6969-include Makefile.depend
     
    8686%.o: %.c
    8787        $(CC) $(DEFS) $(CFLAGS) -c $< -o $@
     88
     89disasm: image.boot
     90        $(OBJDUMP) -d image.boot > boot.disasm
  • boot/arch/sparc64/loader/asm.h

    reda7bf81 r63cda71  
    2727 */
    2828
    29 #ifndef __ASM_H__
    30 #define __ASM_H__
     29#ifndef BOOT_sparc64_ASM_H_
     30#define BOOT_sparc64_ASM_H_
    3131
    3232#define PAGE_SIZE 8192
  • boot/arch/sparc64/loader/boot.S

    reda7bf81 r63cda71  
    3030
    3131#define PSTATE_IE_BIT   2
     32#define PSTATE_AM_BIT   8
    3233
    3334.register %g2, #scratch
     
    5657
    5758        /*
    58          * Disable interrupts.
     59         * Disable interrupts and disable address masking.
    5960         */
    6061        rdpr %pstate, %g2
    61         and %g2, ~PSTATE_IE_BIT, %g2    ! mask the Interrupt Enable bit
     62        and %g2, ~(PSTATE_IE_BIT|PSTATE_AM_BIT), %g2
    6263        wrpr %g2, 0, %pstate
    6364
     
    6667        set ofw_cif, %l0
    6768 
    68         call init               ! initialize OpenFirmware
     69        call ofw_init           ! initialize OpenFirmware
    6970        stx %o4, [%l0]
    7071       
  • boot/arch/sparc64/loader/main.c

    reda7bf81 r63cda71  
    3232#include "_components.h"
    3333#include <ofw.h>
     34#include <align.h>
    3435
    3536#define KERNEL_VIRTUAL_ADDRESS 0x400000
     
    4445        init_components(components);
    4546
     47        if (!ofw_memmap(&bootinfo.memmap)) {
     48                printf("Error: unable to get memory map, halting.\n");
     49                halt();
     50        }
     51       
     52        if (bootinfo.memmap.total == 0) {
     53                printf("Error: no memory detected, halting.\n");
     54                halt();
     55        }
     56       
     57        if (!ofw_screen(&bootinfo.screen)) {
     58                printf("Error: unable to get screen properties, halting.\n");
     59                halt();
     60        }
     61        bootinfo.screen.addr = ofw_translate(bootinfo.screen.addr);
     62       
     63        if (!ofw_keyboard(&bootinfo.keyboard)) {
     64                printf("Error: unable to get keyboard properties, halting.\n");
     65                halt();
     66        }
     67       
     68        printf("\nDevice statistics\n");
     69        printf(" memory: %dM\n", bootinfo.memmap.total>>20);
     70        printf(" screen at %P, resolution %dx%d, %d bpp (scanline %d bytes)\n", (uintptr_t) bootinfo.screen.addr, bootinfo.screen.width, bootinfo.screen.height, bootinfo.screen.bpp, bootinfo.screen.scanline);
     71        printf(" keyboard at %P (size %d bytes)\n", (uintptr_t) bootinfo.keyboard.addr, bootinfo.keyboard.size);
     72
    4673        printf("\nMemory statistics\n");
    47         printf(" kernel entry point at %L\n", KERNEL_VIRTUAL_ADDRESS);
    48         printf(" %L: boot info structure\n", &bootinfo);
     74        printf(" kernel entry point at %P\n", KERNEL_VIRTUAL_ADDRESS);
     75        printf(" %P: boot info structure\n", &bootinfo);
    4976       
    5077        unsigned int i;
    5178        for (i = 0; i < COMPONENTS; i++)
    52                 printf(" %L: %s image (size %d bytes)\n", components[i].start, components[i].name, components[i].size);
     79                printf(" %P: %s image (size %d bytes)\n", components[i].start, components[i].name, components[i].size);
    5380
    5481        printf("\nCopying components\n");
  • boot/arch/sparc64/loader/main.h

    reda7bf81 r63cda71  
    2727 */
    2828
    29 #ifndef __MAIN_H__
    30 #define __MAIN_H__
     29#ifndef BOOT_sparc64_MAIN_H_
     30#define BOOT_sparc64_MAIN_H_
    3131
    32 /** Align to the nearest higher address.
    33  *
    34  * @param addr  Address or size to be aligned.
    35  * @param align Size of alignment, must be power of 2.
    36  */
    37 #define ALIGN_UP(addr, align) (((addr) + ((align) - 1)) & ~((align) - 1))
     32#include <ofw.h>
    3833
    3934#define TASKMAP_MAX_RECORDS 32
     
    4742        unsigned int cnt;
    4843        task_t tasks[TASKMAP_MAX_RECORDS];
     44        memmap_t memmap;
     45        screen_t screen;
     46        keyboard_t keyboard;
    4947} bootinfo_t;
    5048
  • boot/arch/sparc64/loader/types.h

    reda7bf81 r63cda71  
    2727 */
    2828
    29 #ifndef TYPES_H__
    30 #define TYPES_H__
     29#ifndef BOOT_sparc64_TYPES_H_
     30#define BOOT_sparc64_TYPES_H_
    3131
    3232#include <gentypes.h>
Note: See TracChangeset for help on using the changeset viewer.