source: mainline/arch/ia32/include/smp/apic.h@ d9f7a6a

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since d9f7a6a was 7f1bfce, checked in by Jakub Jermar <jakub@…>, 20 years ago

Add SP_DELTA macro for each architecture.
On IA-32, this macro represents two doublewords that must be on the stack when switching to a new stack.
On MIPS, there is no need to fix sp when switching to a new stack.
On IA-64, this macro is used to allocate the 16-byte scratch area.

IA-64 work.
Changes in start.S. More changes to come.
Define memcopy().

Janitorial fixes.
Add missing #include <panic.h> to rwlock4/test.c.
Remove wrong use of inline keyword from both declaration and definition of l_apic_id().

  • Property mode set to 100644
File size: 4.3 KB
Line 
1/*
2 * Copyright (C) 2001-2004 Jakub Jermar
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 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#ifndef __APIC_H__
30#define __APIC_H__
31
32#include <arch/types.h>
33#include <cpu.h>
34
35#define FIXED (0<<0)
36#define LOPRI (1<<0)
37
38/* local APIC macros */
39#define IPI_INIT 0
40#define IPI_STARTUP 0
41
42#define DLVRMODE_FIXED (0<<8)
43#define DLVRMODE_INIT (5<<8)
44#define DLVRMODE_STUP (6<<8)
45#define DESTMODE_PHYS (0<<11)
46#define DESTMODE_LOGIC (1<<11)
47#define LEVEL_ASSERT (1<<14)
48#define LEVEL_DEASSERT (0<<14)
49#define TRGRMODE_LEVEL (1<<15)
50#define TRGRMODE_EDGE (0<<15)
51#define SHORTHAND_DEST (0<<18)
52#define SHORTHAND_INCL (2<<18)
53#define SHORTHAND_EXCL (3<<18)
54
55#define SEND_PENDING (1<<12)
56
57/* Interrupt Command Register */
58#define ICRlo (0x300/sizeof(__u32))
59#define ICRhi (0x310/sizeof(__u32))
60#define ICRloClear ((1<<13)|(3<<16)|(0xfff<<20))
61#define ICRhiClear (0xffffff<<0)
62
63/* End Of Interrupt */
64#define EOI (0x0b0/sizeof(__u32))
65
66/* Error Status Register */
67#define ESR (0x280/sizeof(__u32))
68#define ESRClear ((0xffffff<<8)|(1<<4))
69
70/* Task Priority Register */
71#define TPR (0x080/sizeof(__u32))
72#define TPRClear 0xffffff00
73
74/* Spurious Vector Register */
75#define SVR (0x0f0/sizeof(__u32))
76#define SVRClear (~0x3f0)
77
78/* Time Divide Configuratio Register */
79#define TDCR (0x3e0/sizeof(__u32))
80#define TDCRClear (~0xb)
81
82/* Initial Count Register for Timer */
83#define ICRT (0x380/sizeof(__u32))
84
85/* Current Count Register for Timer */
86#define CCRT (0x390/sizeof(__u32))
87
88/* LVT */
89#define LVT_Tm (0x320/sizeof(__u32))
90#define LVT_LINT0 (0x350/sizeof(__u32))
91#define LVT_LINT1 (0x360/sizeof(__u32))
92#define LVT_Err (0x370/sizeof(__u32))
93#define LVT_PCINT (0x340/sizeof(__u32))
94
95/* Local APIC ID Register */
96#define L_APIC_ID (0x020/sizeof(__u32))
97#define L_APIC_IDClear (~(0xf<<24))
98#define L_APIC_IDShift 24
99#define L_APIC_IDMask 0xf
100
101/* Local APIC Version Register */
102#define LAVR (0x030/sizeof(__u32))
103#define LAVR_Mask 0xff
104#define is_local_apic(x) (((x)&LAVR_Mask&0xf0)==0x1)
105#define is_82489DX_apic(x) ((((x)&LAVR_Mask&0xf0)==0x0))
106#define is_local_xapic(x) (((x)&LAVR_Mask)==0x14)
107
108/* IO APIC */
109#define IOREGSEL (0x00/sizeof(__u32))
110#define IOWIN (0x10/sizeof(__u32))
111
112#define IOAPICID 0x00
113#define IOAPICVER 0x01
114#define IOAPICARB 0x02
115#define IOREDTBL 0x10
116
117
118extern volatile __u32 *l_apic;
119extern volatile __u32 *io_apic;
120
121extern __u32 apic_id_mask;
122
123extern void apic_init(void);
124extern void apic_spurious(__u8 n, __u32 stack[]);
125
126extern void l_apic_init(void);
127extern void l_apic_eoi(void);
128extern int l_apic_broadcast_custom_ipi(__u8 vector);
129extern int l_apic_send_init_ipi(__u8 apicid);
130extern void l_apic_debug(void);
131extern void l_apic_timer_interrupt(__u8 n, __u32 stack[]);
132extern __u8 l_apic_id(void);
133
134extern __u32 io_apic_read(__u8 address);
135extern void io_apic_write(__u8 address , __u32 x);
136extern void io_apic_change_ioredtbl(int signal, int dest, __u8 v, int flags);
137extern void io_apic_disable_irqs(__u16 irqmask);
138extern void io_apic_enable_irqs(__u16 irqmask);
139
140#endif
Note: See TracBrowser for help on using the repository browser.