Changeset 48c1ef9 in mainline for arch/ppc64/include/boot/boot.h


Ignore:
Timestamp:
2006-05-21T20:38:18Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
040542aa
Parents:
bd55bbb
Message:

port ppc32 changes to ppc64 (raw)

File:
1 edited

Legend:

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

    rbd55bbb r48c1ef9  
    3535#define TEMP_STACK_SIZE 0x100
    3636
     37#define TASKMAP_MAX_RECORDS 32
    3738#define MEMMAP_MAX_RECORDS 32
    3839
     
    4243
    4344typedef struct {
     45        __address addr;
     46        __u64 size;
     47} utask_t;
     48
     49typedef struct {
     50        __u32 count;
     51        utask_t tasks[TASKMAP_MAX_RECORDS];
     52} taskmap_t;
     53
     54typedef struct {
    4455        __address start;
    45         __u32 size;
     56        __u64 size;
    4657} memzone_t;
    4758
    4859typedef struct {
    49         __u32 total;
     60        __u64 total;
    5061        __u32 count;
    5162        memzone_t zones[MEMMAP_MAX_RECORDS];
     
    6172
    6273typedef struct {
     74        taskmap_t taskmap;
    6375        memmap_t memmap;
    6476        screen_t screen;
Note: See TracChangeset for help on using the changeset viewer.