gda.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id$
  2.  *
  3.  * This file is subject to the terms and conditions of the GNU General Public
  4.  * License.  See the file "COPYING" in the main directory of this archive
  5.  * for more details.
  6.  *
  7.  * Derived from IRIX <sys/SN/gda.h>.
  8.  *
  9.  * Copyright (C) 1992 - 1997, 2000-2001 Silicon Graphics, Inc. All rights reserved.
  10.  *
  11.  * gda.h -- Contains the data structure for the global data area,
  12.  *  The GDA contains information communicated between the
  13.  * PROM, SYMMON, and the kernel. 
  14.  */
  15. #ifndef _ASM_IA64_SN_GDA_H
  16. #define _ASM_IA64_SN_GDA_H
  17. #include <asm/sn/addrs.h>
  18. #include <asm/sn/sn_cpuid.h>
  19. #define GDA_MAGIC 0x58464552
  20. /*
  21.  * GDA Version History
  22.  *
  23.  * Version # | Change
  24.  * -------------+-------------------------------------------------------
  25.  *  1 | Initial IP27 version 
  26.  *  2 | Prom sets g_partid field to the partition number. 0 IS
  27.  * | a valid partition #. 
  28.  */
  29. #define GDA_VERSION 2 /* Current GDA version # */
  30. #define G_MAGICOFF 0
  31. #define G_VERSIONOFF 4
  32. #define G_PROMOPOFF 6
  33. #define G_MASTEROFF 8
  34. #define G_VDSOFF 12
  35. #define G_HKDNORMOFF 16
  36. #define G_HKDUTLBOFF 24
  37. #define G_HKDXUTLBOFF 32
  38. #define G_PARTIDOFF 40
  39. #define G_TABLEOFF 128
  40. #ifndef __ASSEMBLY__
  41. typedef struct gda {
  42. u32 g_magic; /* GDA magic number */
  43. u16 g_version; /* Version of this structure */
  44. u16 g_masterid; /* The NASID:CPUNUM of the master cpu */
  45. u32 g_promop; /* Passes requests from the kernel to prom */
  46. u32 g_vds; /* Store the virtual dipswitches here */
  47. void **g_hooked_norm;/* ptr to pda loc for norm hndlr */
  48. void **g_hooked_utlb;/* ptr to pda loc for utlb hndlr */
  49. void **g_hooked_xtlb;/* ptr to pda loc for xtlb hndlr */
  50. int g_partid; /* partition id */
  51. int g_symmax; /* Max symbols in name table. */
  52. void *g_dbstab; /* Address of idbg symbol table */
  53. char *g_nametab; /* Address of idbg name table */
  54. void *g_ktext_repmask;
  55. /* Pointer to a mask of nodes with copies
  56.  * of the kernel. */
  57. char g_padding[56]; /* pad out to 128 bytes */
  58. nasid_t g_nasidtable[MAX_COMPACT_NODES+1]; /* NASID of each node,
  59.   * indexed by cnodeid.
  60.   */
  61. } gda_t;
  62. #define GDA ((gda_t*) GDA_ADDR(get_nasid()))
  63. #endif /* __ASSEMBLY__ */
  64. /*
  65.  * Define: PART_GDA_VERSION
  66.  * Purpose: Define the minimum version of the GDA required, lower 
  67.  * revisions assume GDA is NOT set up, and read partition
  68.  * information from the board info.
  69.  */
  70. #define PART_GDA_VERSION 2
  71. /*
  72.  * The following requests can be sent to the PROM during startup.
  73.  */
  74. #define PROMOP_MAGIC 0x0ead0000
  75. #define PROMOP_MAGIC_MASK 0x0fff0000
  76. #define PROMOP_BIST_SHIFT       11
  77. #define PROMOP_BIST_MASK        (0x3 << 11)
  78. #define PROMOP_REG PI_ERR_STACK_ADDR_A
  79. #define PROMOP_INVALID (PROMOP_MAGIC | 0x00)
  80. #define PROMOP_HALT             (PROMOP_MAGIC | 0x10)
  81. #define PROMOP_POWERDOWN        (PROMOP_MAGIC | 0x20)
  82. #define PROMOP_RESTART          (PROMOP_MAGIC | 0x30)
  83. #define PROMOP_REBOOT           (PROMOP_MAGIC | 0x40)
  84. #define PROMOP_IMODE            (PROMOP_MAGIC | 0x50)
  85. #define PROMOP_CMD_MASK 0x00f0
  86. #define PROMOP_OPTIONS_MASK 0xfff0
  87. #define PROMOP_SKIP_DIAGS 0x0100 /* don't bother running diags */
  88. #define PROMOP_SKIP_MEMINIT 0x0200 /* don't bother initing memory */
  89. #define PROMOP_SKIP_DEVINIT 0x0400 /* don't bother initing devices */
  90. #define PROMOP_BIST1 0x0800 /* keep track of which BIST ran */
  91. #define PROMOP_BIST2 0x1000 /* keep track of which BIST ran */
  92. #endif /* _ASM_IA64_SN_GDA_H */