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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __ASM_MPSPEC_H
  2. #define __ASM_MPSPEC_H
  3. /*
  4.  * Structure definitions for SMP machines following the
  5.  * Intel Multiprocessing Specification 1.1 and 1.4.
  6.  */
  7. /*
  8.  * This tag identifies where the SMP configuration
  9.  * information is. 
  10.  */
  11.  
  12. #define SMP_MAGIC_IDENT (('_'<<24)|('P'<<16)|('M'<<8)|'_')
  13. /*
  14.  * a maximum of 16 APICs with the current APIC ID architecture.
  15.  */
  16. #ifdef CONFIG_MULTIQUAD
  17. #define MAX_APICS 256
  18. #else /* !CONFIG_MULTIQUAD */
  19. #define MAX_APICS 16
  20. #endif /* CONFIG_MULTIQUAD */
  21. #define MAX_MPC_ENTRY 1024
  22. struct intel_mp_floating
  23. {
  24. char mpf_signature[4]; /* "_MP_"  */
  25. unsigned long mpf_physptr; /* Configuration table address */
  26. unsigned char mpf_length; /* Our length (paragraphs) */
  27. unsigned char mpf_specification;/* Specification version */
  28. unsigned char mpf_checksum; /* Checksum (makes sum 0) */
  29. unsigned char mpf_feature1; /* Standard or configuration ?  */
  30. unsigned char mpf_feature2; /* Bit7 set for IMCR|PIC */
  31. unsigned char mpf_feature3; /* Unused (0) */
  32. unsigned char mpf_feature4; /* Unused (0) */
  33. unsigned char mpf_feature5; /* Unused (0) */
  34. };
  35. struct mp_config_table
  36. {
  37. char mpc_signature[4];
  38. #define MPC_SIGNATURE "PCMP"
  39. unsigned short mpc_length; /* Size of table */
  40. char  mpc_spec; /* 0x01 */
  41. char  mpc_checksum;
  42. char  mpc_oem[8];
  43. char  mpc_productid[12];
  44. unsigned long mpc_oemptr; /* 0 if not present */
  45. unsigned short mpc_oemsize; /* 0 if not present */
  46. unsigned short mpc_oemcount;
  47. unsigned long mpc_lapic; /* APIC address */
  48. unsigned long reserved;
  49. };
  50. /* Followed by entries */
  51. #define MP_PROCESSOR 0
  52. #define MP_BUS 1
  53. #define MP_IOAPIC 2
  54. #define MP_INTSRC 3
  55. #define MP_LINTSRC 4
  56. #define MP_TRANSLATION  192  /* Used by IBM NUMA-Q to describe node locality */
  57. struct mpc_config_processor
  58. {
  59. unsigned char mpc_type;
  60. unsigned char mpc_apicid; /* Local APIC number */
  61. unsigned char mpc_apicver; /* Its versions */
  62. unsigned char mpc_cpuflag;
  63. #define CPU_ENABLED 1 /* Processor is available */
  64. #define CPU_BOOTPROCESSOR 2 /* Processor is the BP */
  65. unsigned long mpc_cpufeature;
  66. #define CPU_STEPPING_MASK 0x0F
  67. #define CPU_MODEL_MASK 0xF0
  68. #define CPU_FAMILY_MASK 0xF00
  69. unsigned long mpc_featureflag; /* CPUID feature value */
  70. unsigned long mpc_reserved[2];
  71. };
  72. struct mpc_config_bus
  73. {
  74. unsigned char mpc_type;
  75. unsigned char mpc_busid;
  76. unsigned char mpc_bustype[6] __attribute((packed));
  77. };
  78. /* List of Bus Type string values, Intel MP Spec. */
  79. #define BUSTYPE_EISA "EISA"
  80. #define BUSTYPE_ISA "ISA"
  81. #define BUSTYPE_INTERN "INTERN" /* Internal BUS */
  82. #define BUSTYPE_MCA "MCA"
  83. #define BUSTYPE_VL "VL" /* Local bus */
  84. #define BUSTYPE_PCI "PCI"
  85. #define BUSTYPE_PCMCIA "PCMCIA"
  86. #define BUSTYPE_CBUS "CBUS"
  87. #define BUSTYPE_CBUSII "CBUSII"
  88. #define BUSTYPE_FUTURE "FUTURE"
  89. #define BUSTYPE_MBI "MBI"
  90. #define BUSTYPE_MBII "MBII"
  91. #define BUSTYPE_MPI "MPI"
  92. #define BUSTYPE_MPSA "MPSA"
  93. #define BUSTYPE_NUBUS "NUBUS"
  94. #define BUSTYPE_TC "TC"
  95. #define BUSTYPE_VME "VME"
  96. #define BUSTYPE_XPRESS "XPRESS"
  97. struct mpc_config_ioapic
  98. {
  99. unsigned char mpc_type;
  100. unsigned char mpc_apicid;
  101. unsigned char mpc_apicver;
  102. unsigned char mpc_flags;
  103. #define MPC_APIC_USABLE 0x01
  104. unsigned long mpc_apicaddr;
  105. };
  106. struct mpc_config_intsrc
  107. {
  108. unsigned char mpc_type;
  109. unsigned char mpc_irqtype;
  110. unsigned short mpc_irqflag;
  111. unsigned char mpc_srcbus;
  112. unsigned char mpc_srcbusirq;
  113. unsigned char mpc_dstapic;
  114. unsigned char mpc_dstirq;
  115. };
  116. enum mp_irq_source_types {
  117. mp_INT = 0,
  118. mp_NMI = 1,
  119. mp_SMI = 2,
  120. mp_ExtINT = 3
  121. };
  122. #define MP_IRQDIR_DEFAULT 0
  123. #define MP_IRQDIR_HIGH 1
  124. #define MP_IRQDIR_LOW 3
  125. struct mpc_config_lintsrc
  126. {
  127. unsigned char mpc_type;
  128. unsigned char mpc_irqtype;
  129. unsigned short mpc_irqflag;
  130. unsigned char mpc_srcbusid;
  131. unsigned char mpc_srcbusirq;
  132. unsigned char mpc_destapic;
  133. #define MP_APIC_ALL 0xFF
  134. unsigned char mpc_destapiclint;
  135. };
  136. struct mp_config_oemtable
  137. {
  138. char oem_signature[4];
  139. #define MPC_OEM_SIGNATURE "_OEM"
  140. unsigned short oem_length; /* Size of table */
  141. char  oem_rev; /* 0x01 */
  142. char  oem_checksum;
  143. char  mpc_oem[8];
  144. };
  145. struct mpc_config_translation
  146. {
  147.         unsigned char mpc_type;
  148.         unsigned char trans_len;
  149.         unsigned char trans_type;
  150.         unsigned char trans_quad;
  151.         unsigned char trans_global;
  152.         unsigned char trans_local;
  153.         unsigned short trans_reserved;
  154. };
  155. /*
  156.  * Default configurations
  157.  *
  158.  * 1 2 CPU ISA 82489DX
  159.  * 2 2 CPU EISA 82489DX neither IRQ 0 timer nor IRQ 13 DMA chaining
  160.  * 3 2 CPU EISA 82489DX
  161.  * 4 2 CPU MCA 82489DX
  162.  * 5 2 CPU ISA+PCI
  163.  * 6 2 CPU EISA+PCI
  164.  * 7 2 CPU MCA+PCI
  165.  */
  166. #ifdef CONFIG_MULTIQUAD
  167. #define MAX_IRQ_SOURCES 512
  168. #else /* !CONFIG_MULTIQUAD */
  169. #define MAX_IRQ_SOURCES 256
  170. #endif /* CONFIG_MULTIQUAD */
  171. #define MAX_MP_BUSSES 32
  172. enum mp_bustype {
  173. MP_BUS_ISA = 1,
  174. MP_BUS_EISA,
  175. MP_BUS_PCI,
  176. MP_BUS_MCA
  177. };
  178. extern int mp_bus_id_to_type [MAX_MP_BUSSES];
  179. extern int mp_bus_id_to_node [MAX_MP_BUSSES];
  180. extern int mp_bus_id_to_local [MAX_MP_BUSSES];
  181. extern int quad_local_to_mp_bus_id [NR_CPUS/4][4];
  182. extern int mp_bus_id_to_pci_bus [MAX_MP_BUSSES];
  183. extern unsigned int boot_cpu_physical_apicid;
  184. extern unsigned long phys_cpu_present_map;
  185. extern int smp_found_config;
  186. extern void find_smp_config (void);
  187. extern void get_smp_config (void);
  188. extern int nr_ioapics;
  189. extern int apic_version [MAX_APICS];
  190. extern int mp_bus_id_to_type [MAX_MP_BUSSES];
  191. extern int mp_irq_entries;
  192. extern struct mpc_config_intsrc mp_irqs [MAX_IRQ_SOURCES];
  193. extern int mpc_default_type;
  194. extern int mp_bus_id_to_pci_bus [MAX_MP_BUSSES];
  195. extern int mp_current_pci_id;
  196. extern unsigned long mp_lapic_addr;
  197. extern int pic_mode;
  198. extern int using_apic_timer;
  199. #endif