mach_mpparse.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. #ifndef __ASM_MACH_MPPARSE_H
  2. #define __ASM_MACH_MPPARSE_H
  3. #include <mach_apic.h>
  4. extern int use_cyclone;
  5. #ifdef CONFIG_X86_SUMMIT_NUMA
  6. extern void setup_summit(void);
  7. #else
  8. #define setup_summit() {}
  9. #endif
  10. static inline void mpc_oem_bus_info(struct mpc_config_bus *m, char *name,
  11. struct mpc_config_translation *translation)
  12. {
  13. Dprintk("Bus #%d is %s\n", m->mpc_busid, name);
  14. }
  15. static inline void mpc_oem_pci_bus(struct mpc_config_bus *m,
  16. struct mpc_config_translation *translation)
  17. {
  18. }
  19. static inline int mps_oem_check(struct mp_config_table *mpc, char *oem,
  20. char *productid)
  21. {
  22. if (!strncmp(oem, "IBM ENSW", 8) &&
  23. (!strncmp(productid, "VIGIL SMP", 9)
  24. || !strncmp(productid, "EXA", 3)
  25. || !strncmp(productid, "RUTHLESS SMP", 12))){
  26. use_cyclone = 1; /*enable cyclone-timer*/
  27. setup_summit();
  28. return 1;
  29. }
  30. return 0;
  31. }
  32. /* Hook from generic ACPI tables.c */
  33. static inline int acpi_madt_oem_check(char *oem_id, char *oem_table_id)
  34. {
  35. if (!strncmp(oem_id, "IBM", 3) &&
  36. (!strncmp(oem_table_id, "SERVIGIL", 8)
  37. || !strncmp(oem_table_id, "EXA", 3))){
  38. use_cyclone = 1; /*enable cyclone-timer*/
  39. setup_summit();
  40. return 1;
  41. }
  42. return 0;
  43. }
  44. struct rio_table_hdr {
  45. unsigned char version; /* Version number of this data structure */
  46. /* Version 3 adds chassis_num & WP_index */
  47. unsigned char num_scal_dev; /* # of Scalability devices (Twisters for Vigil) */
  48. unsigned char num_rio_dev; /* # of RIO I/O devices (Cyclones and Winnipegs) */
  49. } __attribute__((packed));
  50. struct scal_detail {
  51. unsigned char node_id; /* Scalability Node ID */
  52. unsigned long CBAR; /* Address of 1MB register space */
  53. unsigned char port0node; /* Node ID port connected to: 0xFF=None */
  54. unsigned char port0port; /* Port num port connected to: 0,1,2, or 0xFF=None */
  55. unsigned char port1node; /* Node ID port connected to: 0xFF = None */
  56. unsigned char port1port; /* Port num port connected to: 0,1,2, or 0xFF=None */
  57. unsigned char port2node; /* Node ID port connected to: 0xFF = None */
  58. unsigned char port2port; /* Port num port connected to: 0,1,2, or 0xFF=None */
  59. unsigned char chassis_num; /* 1 based Chassis number (1 = boot node) */
  60. } __attribute__((packed));
  61. struct rio_detail {
  62. unsigned char node_id; /* RIO Node ID */
  63. unsigned long BBAR; /* Address of 1MB register space */
  64. unsigned char type; /* Type of device */
  65. unsigned char owner_id; /* For WPEG: Node ID of Cyclone that owns this WPEG*/
  66. /* For CYC: Node ID of Twister that owns this CYC */
  67. unsigned char port0node; /* Node ID port connected to: 0xFF=None */
  68. unsigned char port0port; /* Port num port connected to: 0,1,2, or 0xFF=None */
  69. unsigned char port1node; /* Node ID port connected to: 0xFF=None */
  70. unsigned char port1port; /* Port num port connected to: 0,1,2, or 0xFF=None */
  71. unsigned char first_slot; /* For WPEG: Lowest slot number below this WPEG */
  72. /* For CYC: 0 */
  73. unsigned char status; /* For WPEG: Bit 0 = 1 : the XAPIC is used */
  74. /* = 0 : the XAPIC is not used, ie:*/
  75. /* ints fwded to another XAPIC */
  76. /* Bits1:7 Reserved */
  77. /* For CYC: Bits0:7 Reserved */
  78. unsigned char WP_index; /* For WPEG: WPEG instance index - lower ones have */
  79. /* lower slot numbers/PCI bus numbers */
  80. /* For CYC: No meaning */
  81. unsigned char chassis_num; /* 1 based Chassis number */
  82. /* For LookOut WPEGs this field indicates the */
  83. /* Expansion Chassis #, enumerated from Boot */
  84. /* Node WPEG external port, then Boot Node CYC */
  85. /* external port, then Next Vigil chassis WPEG */
  86. /* external port, etc. */
  87. /* Shared Lookouts have only 1 chassis number (the */
  88. /* first one assigned) */
  89. } __attribute__((packed));
  90. typedef enum {
  91. CompatTwister = 0, /* Compatibility Twister */
  92. AltTwister = 1, /* Alternate Twister of internal 8-way */
  93. CompatCyclone = 2, /* Compatibility Cyclone */
  94. AltCyclone = 3, /* Alternate Cyclone of internal 8-way */
  95. CompatWPEG = 4, /* Compatibility WPEG */
  96. AltWPEG = 5, /* Second Planar WPEG */
  97. LookOutAWPEG = 6, /* LookOut WPEG */
  98. LookOutBWPEG = 7, /* LookOut WPEG */
  99. } node_type;
  100. static inline int is_WPEG(struct rio_detail *rio){
  101. return (rio->type == CompatWPEG || rio->type == AltWPEG ||
  102. rio->type == LookOutAWPEG || rio->type == LookOutBWPEG);
  103. }
  104. #endif /* __ASM_MACH_MPPARSE_H */