gda.h 3.1 KB

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