blob: c0a955a9a08784f662a071d976ef57bc0637c8c6 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_MPSPEC_DEF_H
2#define _ASM_X86_MPSPEC_DEF_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
4/*
5 * Structure definitions for SMP machines following the
6 * Intel Multiprocessing Specification 1.1 and 1.4.
7 */
8
9/*
10 * This tag identifies where the SMP configuration
Thomas Gleixner64883ab2008-01-30 13:30:35 +010011 * information is.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
Thomas Gleixner64883ab2008-01-30 13:30:35 +010013
Joe Perches8f084032008-03-23 01:02:48 -070014#define SMP_MAGIC_IDENT (('_'<<24) | ('P'<<16) | ('M'<<8) | '_')
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Thomas Gleixner64883ab2008-01-30 13:30:35 +010016#ifdef CONFIG_X86_32
17# define MAX_MPC_ENTRY 1024
Thomas Gleixner64883ab2008-01-30 13:30:35 +010018#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Jaswinder Singh Rajput41401db2009-01-08 15:42:46 +053020/* Intel MP Floating Pointer Structure */
21struct mpf_intel {
Jaswinder Singh Rajput1eb1b3b2009-01-08 15:43:26 +053022 char signature[4]; /* "_MP_" */
23 unsigned int physptr; /* Configuration table address */
24 unsigned char length; /* Our length (paragraphs) */
25 unsigned char specification; /* Specification version */
26 unsigned char checksum; /* Checksum (makes sum 0) */
27 unsigned char feature1; /* Standard or configuration ? */
28 unsigned char feature2; /* Bit7 set for IMCR|PIC */
29 unsigned char feature3; /* Unused (0) */
30 unsigned char feature4; /* Unused (0) */
31 unsigned char feature5; /* Unused (0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032};
33
Thomas Gleixner64883ab2008-01-30 13:30:35 +010034#define MPC_SIGNATURE "PCMP"
35
Jaswinder Singh Rajputf29521e2009-01-03 15:46:57 +053036struct mpc_table {
Jaswinder Singh Rajput6c65da52009-01-04 22:22:56 +053037 char signature[4];
38 unsigned short length; /* Size of table */
39 char spec; /* 0x01 */
40 char checksum;
41 char oem[8];
42 char productid[12];
43 unsigned int oemptr; /* 0 if not present */
44 unsigned short oemsize; /* 0 if not present */
45 unsigned short oemcount;
46 unsigned int lapic; /* APIC address */
Thomas Gleixner64883ab2008-01-30 13:30:35 +010047 unsigned int reserved;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048};
49
50/* Followed by entries */
51
Thomas Gleixner64883ab2008-01-30 13:30:35 +010052#define MP_PROCESSOR 0
53#define MP_BUS 1
54#define MP_IOAPIC 2
55#define MP_INTSRC 3
56#define MP_LINTSRC 4
57/* Used by IBM NUMA-Q to describe node locality */
58#define MP_TRANSLATION 192
59
60#define CPU_ENABLED 1 /* Processor is available */
61#define CPU_BOOTPROCESSOR 2 /* Processor is the BP */
62
63#define CPU_STEPPING_MASK 0x000F
64#define CPU_MODEL_MASK 0x00F0
65#define CPU_FAMILY_MASK 0x0F00
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Jaswinder Singh Rajputf4f21b72009-01-03 15:48:52 +053067struct mpc_cpu {
Jaswinder Singh Rajputc4563822009-01-04 21:58:25 +053068 unsigned char type;
69 unsigned char apicid; /* Local APIC number */
70 unsigned char apicver; /* Its versions */
71 unsigned char cpuflag;
72 unsigned int cpufeature;
73 unsigned int featureflag; /* CPUID feature value */
74 unsigned int reserved[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070075};
76
Jaswinder Singh Rajput00fb8602009-01-03 15:47:32 +053077struct mpc_bus {
Jaswinder Singh Rajputd4c715f2009-01-04 21:59:26 +053078 unsigned char type;
79 unsigned char busid;
80 unsigned char bustype[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -070081};
82
83/* List of Bus Type string values, Intel MP Spec. */
84#define BUSTYPE_EISA "EISA"
85#define BUSTYPE_ISA "ISA"
86#define BUSTYPE_INTERN "INTERN" /* Internal BUS */
87#define BUSTYPE_MCA "MCA"
88#define BUSTYPE_VL "VL" /* Local bus */
89#define BUSTYPE_PCI "PCI"
90#define BUSTYPE_PCMCIA "PCMCIA"
91#define BUSTYPE_CBUS "CBUS"
92#define BUSTYPE_CBUSII "CBUSII"
93#define BUSTYPE_FUTURE "FUTURE"
94#define BUSTYPE_MBI "MBI"
95#define BUSTYPE_MBII "MBII"
96#define BUSTYPE_MPI "MPI"
97#define BUSTYPE_MPSA "MPSA"
98#define BUSTYPE_NUBUS "NUBUS"
99#define BUSTYPE_TC "TC"
100#define BUSTYPE_VME "VME"
101#define BUSTYPE_XPRESS "XPRESS"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100103#define MPC_APIC_USABLE 0x01
104
Jaswinder Singh Rajput2b85b5f2009-01-03 15:49:57 +0530105struct mpc_ioapic {
Jaswinder Singh Rajput5df82c72009-01-04 21:54:39 +0530106 unsigned char type;
107 unsigned char apicid;
108 unsigned char apicver;
109 unsigned char flags;
110 unsigned int apicaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111};
112
Jaswinder Singh Rajput540d4e72009-01-03 15:50:52 +0530113struct mpc_intsrc {
Jaswinder Singh Rajpute253b392009-01-04 21:56:44 +0530114 unsigned char type;
115 unsigned char irqtype;
116 unsigned short irqflag;
117 unsigned char srcbus;
118 unsigned char srcbusirq;
119 unsigned char dstapic;
120 unsigned char dstirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121};
122
123enum mp_irq_source_types {
124 mp_INT = 0,
125 mp_NMI = 1,
126 mp_SMI = 2,
127 mp_ExtINT = 3
128};
129
130#define MP_IRQDIR_DEFAULT 0
131#define MP_IRQDIR_HIGH 1
132#define MP_IRQDIR_LOW 3
133
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100134#define MP_APIC_ALL 0xFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Jaswinder Singh Rajput8fb29522009-01-03 15:51:54 +0530136struct mpc_lintsrc {
Jaswinder Singh Rajputb5ced7c2009-01-04 21:55:53 +0530137 unsigned char type;
138 unsigned char irqtype;
139 unsigned short irqflag;
140 unsigned char srcbusid;
141 unsigned char srcbusirq;
142 unsigned char destapic;
143 unsigned char destapiclint;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144};
145
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100146#define MPC_OEM_SIGNATURE "_OEM"
147
Jaswinder Singh Rajputb0e239f2009-01-03 15:52:54 +0530148struct mpc_oemtable {
Jaswinder Singh Rajputa1d02722009-01-04 22:00:46 +0530149 char signature[4];
150 unsigned short length; /* Size of table */
151 char rev; /* 0x01 */
152 char checksum;
153 char mpc[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154};
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156/*
157 * Default configurations
158 *
159 * 1 2 CPU ISA 82489DX
160 * 2 2 CPU EISA 82489DX neither IRQ 0 timer nor IRQ 13 DMA chaining
161 * 3 2 CPU EISA 82489DX
162 * 4 2 CPU MCA 82489DX
163 * 5 2 CPU ISA+PCI
164 * 6 2 CPU EISA+PCI
165 * 7 2 CPU MCA+PCI
166 */
167
168enum mp_bustype {
169 MP_BUS_ISA = 1,
170 MP_BUS_EISA,
171 MP_BUS_PCI,
172 MP_BUS_MCA,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173};
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700174#endif /* _ASM_X86_MPSPEC_DEF_H */