setup.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm/setup.h
  3.  *
  4.  *  Copyright (C) 1997-1999 Russell King
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  *
  10.  *  Structure passed to kernel to tell it about the
  11.  *  hardware it's running on.  See Documentation/arm/Setup
  12.  *  for more info.
  13.  */
  14. #ifndef __ASMARM_SETUP_H
  15. #define __ASMARM_SETUP_H
  16. #define COMMAND_LINE_SIZE 1024
  17. /* The list ends with an ATAG_NONE node. */
  18. #define ATAG_NONE 0x00000000
  19. struct tag_header {
  20. u32 size;
  21. u32 tag;
  22. };
  23. /* The list must start with an ATAG_CORE node */
  24. #define ATAG_CORE 0x54410001
  25. struct tag_core {
  26. u32 flags; /* bit 0 = read-only */
  27. u32 pagesize;
  28. u32 rootdev;
  29. };
  30. /* it is allowed to have multiple ATAG_MEM nodes */
  31. #define ATAG_MEM 0x54410002
  32. struct tag_mem32 {
  33. u32 size;
  34. u32 start; /* physical start address */
  35. };
  36. /* VGA text type displays */
  37. #define ATAG_VIDEOTEXT 0x54410003
  38. struct tag_videotext {
  39. u8 x;
  40. u8 y;
  41. u16 video_page;
  42. u8 video_mode;
  43. u8 video_cols;
  44. u16 video_ega_bx;
  45. u8 video_lines;
  46. u8 video_isvga;
  47. u16 video_points;
  48. };
  49. /* describes how the ramdisk will be used in kernel */
  50. #define ATAG_RAMDISK 0x54410004
  51. struct tag_ramdisk {
  52. u32 flags; /* bit 0 = load, bit 1 = prompt */
  53. u32 size; /* decompressed ramdisk size in _kilo_ bytes */
  54. u32 start; /* starting block of floppy-based RAM disk image */
  55. };
  56. /* describes where the compressed ramdisk image lives (virtual address) */
  57. /*
  58.  * this one accidentally used virtual addresses - as such,
  59.  * it's deprecated.
  60.  */
  61. #define ATAG_INITRD 0x54410005
  62. /* describes where the compressed ramdisk image lives (physical address) */
  63. #define ATAG_INITRD2 0x54420005
  64. struct tag_initrd {
  65. u32 start; /* physical start address */
  66. u32 size; /* size of compressed ramdisk image in bytes */
  67. };
  68. /* board serial number. "64 bits should be enough for everybody" */
  69. #define ATAG_SERIAL 0x54410006
  70. struct tag_serialnr {
  71. u32 low;
  72. u32 high;
  73. };
  74. /* board revision */
  75. #define ATAG_REVISION 0x54410007
  76. struct tag_revision {
  77. u32 rev;
  78. };
  79. /* initial values for vesafb-type framebuffers. see struct screen_info
  80.  * in include/linux/tty.h
  81.  */
  82. #define ATAG_VIDEOLFB 0x54410008
  83. struct tag_videolfb {
  84. u16 lfb_width;
  85. u16 lfb_height;
  86. u16 lfb_depth;
  87. u16 lfb_linelength;
  88. u32 lfb_base;
  89. u32 lfb_size;
  90. u8 red_size;
  91. u8 red_pos;
  92. u8 green_size;
  93. u8 green_pos;
  94. u8 blue_size;
  95. u8 blue_pos;
  96. u8 rsvd_size;
  97. u8 rsvd_pos;
  98. };
  99. /* command line:  terminated string */
  100. #define ATAG_CMDLINE 0x54410009
  101. struct tag_cmdline {
  102. char cmdline[1]; /* this is the minimum size */
  103. };
  104. /* acorn RiscPC specific information */
  105. #define ATAG_ACORN 0x41000101
  106. struct tag_acorn {
  107. u32 memc_control_reg;
  108. u32 vram_pages;
  109. u8 sounddefault;
  110. u8 adfsdrives;
  111. };
  112. /* footbridge memory clock, see arch/arm/mach-footbridge/arch.c */
  113. #define ATAG_MEMCLK 0x41000402
  114. struct tag_memclk {
  115. u32 fmemclk;
  116. };
  117. struct tag {
  118. struct tag_header hdr;
  119. union {
  120. struct tag_core core;
  121. struct tag_mem32 mem;
  122. struct tag_videotext videotext;
  123. struct tag_ramdisk ramdisk;
  124. struct tag_initrd initrd;
  125. struct tag_serialnr serialnr;
  126. struct tag_revision revision;
  127. struct tag_videolfb videolfb;
  128. struct tag_cmdline cmdline;
  129. /*
  130.  * Acorn specific
  131.  */
  132. struct tag_acorn acorn;
  133. /*
  134.  * DC21285 specific
  135.  */
  136. struct tag_memclk memclk;
  137. } u;
  138. };
  139. struct tagtable {
  140. u32 tag;
  141. int (*parse)(const struct tag *);
  142. };
  143. #define __tag __attribute_used__ __attribute__((__section__(".taglist.init")))
  144. #define __tagtable(tag, fn) 
  145. static struct tagtable __tagtable_##fn __tag = { tag, fn }
  146. #define tag_member_present(tag,member)
  147. ((unsigned long)(&((struct tag *)0L)->member + 1)
  148. <= (tag)->hdr.size * 4)
  149. #define tag_next(t) ((struct tag *)((u32 *)(t) + (t)->hdr.size))
  150. #define tag_size(type) ((sizeof(struct tag_header) + sizeof(struct type)) >> 2)
  151. #define for_each_tag(t,base)
  152. for (t = base; t->hdr.size; t = tag_next(t))
  153. /*
  154.  * Memory map description
  155.  */
  156. #ifdef CONFIG_ARCH_LH7A40X
  157. # define NR_BANKS 16
  158. #else
  159. # define NR_BANKS 8
  160. #endif
  161. struct meminfo {
  162. int nr_banks;
  163. struct {
  164. unsigned long start;
  165. unsigned long size;
  166. int           node;
  167. } bank[NR_BANKS];
  168. };
  169. /*
  170.  * Early command line parameters.
  171.  */
  172. struct early_params {
  173. const char *arg;
  174. void (*fn)(char **p);
  175. };
  176. #define __early_param(name,fn)
  177. static struct early_params __early_##fn __attribute_used__
  178. __attribute__((__section__(".early_param.init"))) = { name, fn }
  179. #endif