summaryrefslogtreecommitdiffstats
path: root/arch/x86/cpu/lapic.c
blob: 4690603c75c3f622760810a6de60998600b164cd (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
/*
 * From coreboot file of same name
 *
 * Copyright (C) 2008-2009 coresystems GmbH
 * Copyright (C) 2014 Google, Inc
 *
 * SPDX-License-Identifier:	GPL-2.0
 */

#include <common.h>
#include <asm/msr.h>
#include <asm/io.h>
#include <asm/lapic.h>
#include <asm/post.h>

void lapic_setup(void)
{
#if NEED_LAPIC == 1
	/* Only Pentium Pro and later have those MSR stuff */
	debug("Setting up local apic: ");

	/* Enable the local apic */
	enable_lapic();

	/*
	 * Set Task Priority to 'accept all'.
	 */
	lapic_write_around(LAPIC_TASKPRI,
			   lapic_read_around(LAPIC_TASKPRI) & ~LAPIC_TPRI_MASK);

	/* Put the local apic in virtual wire mode */
	lapic_write_around(LAPIC_SPIV, (lapic_read_around(LAPIC_SPIV) &
				~(LAPIC_VECTOR_MASK)) | LAPIC_SPIV_ENABLE);
	lapic_write_around(LAPIC_LVT0, (lapic_read_around(LAPIC_LVT0) &
			~(LAPIC_LVT_MASKED | LAPIC_LVT_LEVEL_TRIGGER |
			  LAPIC_LVT_REMOTE_IRR | LAPIC_INPUT_POLARITY |
			  LAPIC_SEND_PENDING | LAPIC_LVT_RESERVED_1 |
			  LAPIC_DELIVERY_MODE_MASK)) |
			(LAPIC_LVT_REMOTE_IRR | LAPIC_SEND_PENDING |
			 LAPIC_DELIVERY_MODE_EXTINT));
	lapic_write_around(LAPIC_LVT1, (lapic_read_around(LAPIC_LVT1) &
			~(LAPIC_LVT_MASKED | LAPIC_LVT_LEVEL_TRIGGER |
			  LAPIC_LVT_REMOTE_IRR | LAPIC_INPUT_POLARITY |
			  LAPIC_SEND_PENDING | LAPIC_LVT_RESERVED_1 |
			  LAPIC_DELIVERY_MODE_MASK)) |
		(LAPIC_LVT_REMOTE_IRR | LAPIC_SEND_PENDING |
			LAPIC_DELIVERY_MODE_NMI));

	debug("apic_id: 0x%02lx, ", lapicid());
#else /* !NEED_LLAPIC */
	/* Only Pentium Pro and later have those MSR stuff */
	debug("Disabling local apic: ");
	disable_lapic();
#endif /* !NEED_LAPIC */
	debug("done.\n");
	post_code(POST_LAPIC);
}
OpenPOWER on IntegriCloud