Deleted Added
full compact
apicvar.h (209371) apicvar.h (212541)
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/amd64/include/apicvar.h 209371 2010-06-20 21:33:29Z mav $
29 * $FreeBSD: head/sys/amd64/include/apicvar.h 212541 2010-09-13 07:25:35Z mav $
30 */
31
32#ifndef _MACHINE_APICVAR_H_
33#define _MACHINE_APICVAR_H_
34
35#include <machine/segments.h>
36
37/*

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

118#define IPI_INVLCACHE (APIC_IPI_INTS + 4)
119/* Vector to handle bitmap based IPIs */
120#define IPI_BITMAP_VECTOR (APIC_IPI_INTS + 6)
121
122/* IPIs handled by IPI_BITMAPED_VECTOR (XXX ups is there a better place?) */
123#define IPI_AST 0 /* Generate software trap. */
124#define IPI_PREEMPT 1
125#define IPI_HARDCLOCK 2
30 */
31
32#ifndef _MACHINE_APICVAR_H_
33#define _MACHINE_APICVAR_H_
34
35#include <machine/segments.h>
36
37/*

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

118#define IPI_INVLCACHE (APIC_IPI_INTS + 4)
119/* Vector to handle bitmap based IPIs */
120#define IPI_BITMAP_VECTOR (APIC_IPI_INTS + 6)
121
122/* IPIs handled by IPI_BITMAPED_VECTOR (XXX ups is there a better place?) */
123#define IPI_AST 0 /* Generate software trap. */
124#define IPI_PREEMPT 1
125#define IPI_HARDCLOCK 2
126#define IPI_STATCLOCK 3
127#define IPI_BITMAP_LAST IPI_STATCLOCK
126#define IPI_BITMAP_LAST IPI_HARDCLOCK
128#define IPI_IS_BITMAPED(x) ((x) <= IPI_BITMAP_LAST)
129
130#define IPI_STOP (APIC_IPI_INTS + 7) /* Stop CPU until restarted. */
131#define IPI_SUSPEND (APIC_IPI_INTS + 8) /* Suspend CPU until restarted. */
132#define IPI_STOP_HARD (APIC_IPI_INTS + 9) /* Stop CPU with a NMI. */
133
134/*
135 * The spurious interrupt can share the priority class with the IPIs since

--- 98 unchanged lines hidden ---
127#define IPI_IS_BITMAPED(x) ((x) <= IPI_BITMAP_LAST)
128
129#define IPI_STOP (APIC_IPI_INTS + 7) /* Stop CPU until restarted. */
130#define IPI_SUSPEND (APIC_IPI_INTS + 8) /* Suspend CPU until restarted. */
131#define IPI_STOP_HARD (APIC_IPI_INTS + 9) /* Stop CPU with a NMI. */
132
133/*
134 * The spurious interrupt can share the priority class with the IPIs since

--- 98 unchanged lines hidden ---