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