summaryrefslogtreecommitdiffstats
path: root/sys/ia64/acpica/madt.c
blob: 50169da7678d18278e1c4d14a8f932b044c618ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
/*-
 * Copyright (c) 2001 Doug Rabson
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 * $FreeBSD$
 */

#include "acpi.h"

#include <machine/cpu.h>

struct sapic *sapic_create(int, int, u_int64_t);

#pragma pack(1)

#define	APIC_INTERRUPT_SOURCE_OVERRIDE	2
#define	APIC_NMI			3
#define	APIC_LOCAL_APIC_NMI		4
#define	APIC_LOCAL_APIC_OVERRIDE	5
#define	APIC_IO_SAPIC			6
#define	APIC_LOCAL_SAPIC		7
#define	APIC_PLATFORM_INTERRUPT		8
 
typedef struct	/* Interrupt Source Override */
{
	APIC_HEADER	Header;
	UINT8		Bus;
	UINT8		Source;
	UINT32		GlobalSystemInterrupt;
	UINT16		Flags;
} INTERRUPT_SOURCE_OVERRIDE;

typedef struct	/* IO SAPIC */
{
	APIC_HEADER	Header;
	UINT8		IoSapicId;		/* I/O SAPIC ID */
	UINT8		Reserved;		/* reserved - must be zero */
	UINT32		Vector;			/* interrupt base */
	UINT64		IoSapicAddress;		/* SAPIC's physical address */
} IO_SAPIC;

typedef struct  /* LOCAL SAPIC */
{
	APIC_HEADER	Header;
	UINT8		ProcessorId;		/* ACPI processor id */
	UINT8		LocalSapicId;		/* Processor local SAPIC id */
	UINT8		LocalSapicEid;		/* Processor local SAPIC eid */
	UINT8		Reserved[3];
	UINT32		ProcessorEnabled: 1;
	UINT32		FlagsReserved: 31;
} LOCAL_SAPIC;

typedef struct  /* PLATFORM INTERRUPT SOURCE */
{
	APIC_HEADER	Header;
	UINT16		Polarity   : 2;		/* Polarity of input signal */
	UINT16		TriggerMode: 2;		/* Trigger mode of input signal */
	UINT16		Reserved1  : 12;
	UINT8		InterruptType;		/* 1-PMI, 2-INIT, 3-Error */
	UINT8		ProcessorId;		/* Processor ID of destination */
	UINT8		ProcessorEid;		/* Processor EID of destination */
	UINT8		IoSapicVector;		/* Value for redirection table */
	UINT32		GlobalSystemInterrupt;	/* Global System Interrupt */
	UINT32		Reserved2;
} PLATFORM_INTERRUPT_SOURCE;

#pragma pack()

static void
parse_interrupt_override(INTERRUPT_SOURCE_OVERRIDE *override)
{
	if (bootverbose)
		printf("\t\tBus=%d, Source=%d, Irq=0x%x\n", override->Bus,
		    override->Source, override->GlobalSystemInterrupt);
}

static void
parse_io_sapic(IO_SAPIC *sapic)
{
	if (bootverbose)
		printf("\t\tId=0x%x, Vector=0x%x, Address=0x%lx\n",
		    sapic->IoSapicId, sapic->Vector, sapic->IoSapicAddress);
	sapic_create(sapic->IoSapicId, sapic->Vector, sapic->IoSapicAddress);
}

static void
parse_local_sapic(LOCAL_SAPIC *sapic)
{
	if (bootverbose) {
		printf("\t\tProcessorId=0x%x, Id=0x%x, Eid=0x%x",
		    sapic->ProcessorId, sapic->LocalSapicId,
		    sapic->LocalSapicEid);
		if (!sapic->ProcessorEnabled)
			printf(" (disabled)");
		printf("\n");
	}
#ifdef SMP
	if (sapic->ProcessorEnabled)
		cpu_mp_add(sapic->ProcessorId, sapic->LocalSapicId,
		    sapic->LocalSapicEid);
#endif
}

static void
parse_platform_interrupt(PLATFORM_INTERRUPT_SOURCE *source)
{
	if (bootverbose)
		printf("\t\tPolarity=%d, TriggerMode=%d, Id=0x%x, "
		    "Eid=0x%x, Vector=0x%x, Irq=%d\n", source->Polarity,
		    source->TriggerMode, source->ProcessorId,
		    source->ProcessorEid, source->IoSapicVector,
		    source->GlobalSystemInterrupt);
}

static int
parse_madt(APIC_TABLE *madt, int countcpus)
{
	char *end, *p;
	int cpus;

	end = (char *)madt + madt->Header.Length;

	/*
	 * MADT header is followed by a number of variable length
	 * structures.
	 */

	if (countcpus) {
		cpus = 0;

		for (p = (char *)(madt + 1); p < end; ) {
			APIC_HEADER *head = (APIC_HEADER *)p;

			if (head->Type == APIC_LOCAL_SAPIC) {
				LOCAL_SAPIC *sapic = (LOCAL_SAPIC *) head;
				if (sapic->ProcessorEnabled)
					cpus++;
			}
			p = p + head->Length;
		}

		return (cpus);
	}

	for (p = (char *)(madt + 1); p < end; ) {
		APIC_HEADER *head = (APIC_HEADER *)p;

		if (bootverbose)
			printf("\t");

		switch (head->Type) {
		case APIC_PROC:
			if (bootverbose)
				printf("Local APIC entry\n");
			break;

		case APIC_IO:
			if (bootverbose)
				printf("I/O APIC entry\n");
			break;

		case APIC_INTERRUPT_SOURCE_OVERRIDE:
			if (bootverbose)
				printf("Interrupt source override entry\n");
			parse_interrupt_override
				((INTERRUPT_SOURCE_OVERRIDE *) head);
			break;

		case APIC_NMI:
			if (bootverbose)
				printf("NMI entry\n");
			break;

		case APIC_LOCAL_APIC_NMI:
			if (bootverbose)
				printf("Local APIC NMI entry\n");
			break;


		case APIC_LOCAL_APIC_OVERRIDE:
			if (bootverbose)
				printf("Local APIC override entry\n");
			break;

		case APIC_IO_SAPIC:
			if (bootverbose)
				printf("I/O SAPIC entry\n");
			parse_io_sapic((IO_SAPIC *) head);
			break;

		case APIC_LOCAL_SAPIC:
			if (bootverbose)
				printf("Local SAPIC entry\n");
			parse_local_sapic((LOCAL_SAPIC *) head);
			break;

		case APIC_PLATFORM_INTERRUPT:
			if (bootverbose)
				printf("Platform interrupt entry\n");
			parse_platform_interrupt
				((PLATFORM_INTERRUPT_SOURCE *) head);
			break;

		default:
			if (bootverbose)
				printf("Unknown type %d entry\n", head->Type);
			break;
		}

		p = p + head->Length;
	}

	return (0);
}

static int
parse_table(int countcpus)
{
	ACPI_POINTER		rsdp_ptr;
	RSDP_DESCRIPTOR		*rsdp;
	XSDT_DESCRIPTOR		*xsdt;
	ACPI_TABLE_HEADER	*table;
	int			i, count;

	if (AcpiOsGetRootPointer(ACPI_LOGICAL_ADDRESSING, &rsdp_ptr) != AE_OK)
		return 0;

	rsdp = (RSDP_DESCRIPTOR *)IA64_PHYS_TO_RR7(rsdp_ptr.Pointer.Physical);
	xsdt = (XSDT_DESCRIPTOR *)IA64_PHYS_TO_RR7(rsdp->XsdtPhysicalAddress);

	count = (UINT64 *)((char *)xsdt + xsdt->Header.Length)
	    - xsdt->TableOffsetEntry;
	for (i = 0; i < count; i++) {
		table = (ACPI_TABLE_HEADER *)
			IA64_PHYS_TO_RR7(xsdt->TableOffsetEntry[i]);

		if (bootverbose && !countcpus)
			printf("Table '%c%c%c%c' at %p\n", table->Signature[0],
			    table->Signature[1], table->Signature[2],
			    table->Signature[3], table);

		if (!strncmp(table->Signature, APIC_SIG, 4))
			return (parse_madt((APIC_TABLE *) table, countcpus));
	}
	return (0);
}

void
ia64_probe_sapics(void)
{
	parse_table(0);
}

/*
 * Count the number of local SAPIC entries in the APIC table. Every enabled
 * entry corresponds to a processor.
 */
int
ia64_count_cpus(void)
{
	return (parse_table(1));
}
OpenPOWER on IntegriCloud