bootx.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.bootx.h 1.5 05/17/01 18:14:24 cort
  3.  */
  4. /*
  5.  * This file describes the structure passed from the BootX application
  6.  * (for MacOS) when it is used to boot Linux.
  7.  *
  8.  * Written by Benjamin Herrenschmidt.
  9.  */
  10. #ifndef __ASM_BOOTX_H__
  11. #define __ASM_BOOTX_H__
  12. #ifdef macintosh
  13. #include <Types.h>
  14. #include "linux_type_defs.h"
  15. #endif
  16. #ifdef macintosh
  17. /* All this requires PowerPC alignment */
  18. #pragma options align=power
  19. #endif
  20. /* On kernel entry:
  21.  *
  22.  * r3 = 0x426f6f58    ('BooX')
  23.  * r4 = pointer to boot_infos
  24.  * r5 = NULL
  25.  *
  26.  * Data and instruction translation disabled, interrupts
  27.  * disabled, kernel loaded at physical 0x00000000 on PCI
  28.  * machines (will be different on NuBus).
  29.  */
  30. #define BOOT_INFO_VERSION               5
  31. #define BOOT_INFO_COMPATIBLE_VERSION    1
  32. /* Bit in the architecture flag mask. More to be defined in
  33.    future versions. Note that either BOOT_ARCH_PCI or
  34.    BOOT_ARCH_NUBUS is set. The other BOOT_ARCH_NUBUS_xxx are
  35.    set additionally when BOOT_ARCH_NUBUS is set.
  36.  */
  37. #define BOOT_ARCH_PCI                   0x00000001UL
  38. #define BOOT_ARCH_NUBUS                 0x00000002UL
  39. #define BOOT_ARCH_NUBUS_PDM             0x00000010UL
  40. #define BOOT_ARCH_NUBUS_PERFORMA        0x00000020UL
  41. #define BOOT_ARCH_NUBUS_POWERBOOK       0x00000040UL
  42. /*  Maximum number of ranges in phys memory map */
  43. #define MAX_MEM_MAP_SIZE 26
  44. /* This is the format of an element in the physical memory map. Note that
  45.    the map is optional and current BootX will only build it for pre-PCI
  46.    machines */
  47. typedef struct boot_info_map_entry
  48. {
  49.     __u32       physAddr;                /* Physical starting address */
  50.     __u32       size;                    /* Size in bytes */
  51. } boot_info_map_entry_t;
  52. /* Here are the boot informations that are passed to the bootstrap
  53.  * Note that the kernel arguments and the device tree are appended
  54.  * at the end of this structure. */
  55. typedef struct boot_infos
  56. {
  57.     /* Version of this structure */
  58.     __u32       version;
  59.     /* backward compatible down to version: */
  60.     __u32       compatible_version;
  61.     
  62.     /* NEW (vers. 2) this holds the current _logical_ base addr of
  63.        the frame buffer (for use by early boot message) */
  64.     __u8*       logicalDisplayBase;
  65.     /* NEW (vers. 4) Apple's machine identification */
  66.     __u32       machineID;
  67.     /* NEW (vers. 4) Detected hw architecture */
  68.     __u32       architecture;
  69.     
  70.     /* The device tree (internal addresses relative to the beginning of the tree,
  71.      * device tree offset relative to the beginning of this structure).
  72.      * On pre-PCI macintosh (BOOT_ARCH_PCI bit set to 0 in architecture), this
  73.      * field is 0.
  74.      */
  75.     __u32       deviceTreeOffset;        /* Device tree offset */
  76.     __u32       deviceTreeSize;          /* Size of the device tree */
  77.         
  78.     /* Some infos about the current MacOS display */
  79.     __u32       dispDeviceRect[4];       /* left,top,right,bottom */
  80.     __u32       dispDeviceDepth;         /* (8, 16 or 32) */
  81.     __u8*       dispDeviceBase;          /* base address (physical) */
  82.     __u32       dispDeviceRowBytes;      /* rowbytes (in bytes) */
  83.     __u32       dispDeviceColorsOffset;  /* Colormap (8 bits only) or 0 (*) */
  84.     /* Optional offset in the registry to the current
  85.      * MacOS display. (Can be 0 when not detected) */
  86.      __u32      dispDeviceRegEntryOffset;
  87.     /* Optional pointer to boot ramdisk (offset from this structure) */
  88.     __u32       ramDisk;
  89.     __u32       ramDiskSize;             /* size of ramdisk image */
  90.     
  91.     /* Kernel command line arguments (offset from this structure) */
  92.     __u32       kernelParamsOffset;
  93.     
  94.     /* ALL BELOW NEW (vers. 4) */
  95.     
  96.     /* This defines the physical memory. Valid with BOOT_ARCH_NUBUS flag
  97.        (non-PCI) only. On PCI, memory is contiguous and it's size is in the
  98.        device-tree. */
  99.     boot_info_map_entry_t
  100.              physMemoryMap[MAX_MEM_MAP_SIZE]; /* Where the phys memory is */
  101.     __u32       physMemoryMapSize;               /* How many entries in map */
  102.     
  103.     /* The framebuffer size (optional, currently 0) */
  104.     __u32       frameBufferSize;         /* Represents a max size, can be 0. */
  105.     
  106.     /* NEW (vers. 5) */
  107.     /* Total params size (args + colormap + device tree + ramdisk) */
  108.     __u32       totalParamsSize;
  109. } boot_infos_t;
  110. /* (*) The format of the colormap is 256 * 3 * 2 bytes. Each color index is represented
  111.  * by 3 short words containing a 16 bits (unsigned) color component.
  112.  * Later versions may contain the gamma table for direct-color devices here.
  113.  */
  114. #define BOOTX_COLORTABLE_SIZE    (256UL*3UL*2UL)
  115. #ifdef macintosh
  116. #pragma options align=reset
  117. #endif
  118. #endif