Deleted Added
full compact
apicvar.h (232230) apicvar.h (235622)
1/*-
2 * Copyright (c) 2003 John Baldwin <jhb@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 12 unchanged lines hidden (view full) ---

21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
1/*-
2 * Copyright (c) 2003 John Baldwin <jhb@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 12 unchanged lines hidden (view full) ---

21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * $FreeBSD: head/sys/i386/include/apicvar.h 232230 2012-02-27 17:30:21Z jhb $
29 * $FreeBSD: head/sys/i386/include/apicvar.h 235622 2012-05-18 18:55:58Z iwasaki $
30 */
31
32#ifndef _MACHINE_APICVAR_H_
33#define _MACHINE_APICVAR_H_
34
35/*
36 * Local && I/O APIC variable definitions.
37 */

--- 83 unchanged lines hidden (view full) ---

121/* IPIs handled by IPI_BITMAPED_VECTOR (XXX ups is there a better place?) */
122#define IPI_AST 0 /* Generate software trap. */
123#define IPI_PREEMPT 1
124#define IPI_HARDCLOCK 2
125#define IPI_BITMAP_LAST IPI_HARDCLOCK
126#define IPI_IS_BITMAPED(x) ((x) <= IPI_BITMAP_LAST)
127
128#define IPI_STOP (APIC_IPI_INTS + 7) /* Stop CPU until restarted. */
30 */
31
32#ifndef _MACHINE_APICVAR_H_
33#define _MACHINE_APICVAR_H_
34
35/*
36 * Local && I/O APIC variable definitions.
37 */

--- 83 unchanged lines hidden (view full) ---

121/* IPIs handled by IPI_BITMAPED_VECTOR (XXX ups is there a better place?) */
122#define IPI_AST 0 /* Generate software trap. */
123#define IPI_PREEMPT 1
124#define IPI_HARDCLOCK 2
125#define IPI_BITMAP_LAST IPI_HARDCLOCK
126#define IPI_IS_BITMAPED(x) ((x) <= IPI_BITMAP_LAST)
127
128#define IPI_STOP (APIC_IPI_INTS + 7) /* Stop CPU until restarted. */
129#define IPI_STOP_HARD (APIC_IPI_INTS + 8) /* Stop CPU with a NMI. */
129#define IPI_SUSPEND (APIC_IPI_INTS + 8) /* Suspend CPU until restarted. */
130#define IPI_STOP_HARD (APIC_IPI_INTS + 9) /* Stop CPU with a NMI. */
130
131/*
132 * The spurious interrupt can share the priority class with the IPIs since
133 * it is not a normal interrupt. (Does not use the APIC's interrupt fifo)
134 */
135#define APIC_SPURIOUS_INT 255
136
137#define LVT_LINT0 0

--- 93 unchanged lines hidden ---
131
132/*
133 * The spurious interrupt can share the priority class with the IPIs since
134 * it is not a normal interrupt. (Does not use the APIC's interrupt fifo)
135 */
136#define APIC_SPURIOUS_INT 255
137
138#define LVT_LINT0 0

--- 93 unchanged lines hidden ---