Home | History | Annotate | Line # | Download | only in include
i82489var.h revision 1.11
      1  1.11    cegger /*	$NetBSD: i82489var.h,v 1.11 2008/04/14 05:52:34 cegger Exp $	*/
      2   1.1      fvdl 
      3   1.1      fvdl /*-
      4   1.1      fvdl  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5   1.1      fvdl  * All rights reserved.
      6   1.1      fvdl  *
      7   1.1      fvdl  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1      fvdl  * by Frank van der Linden.
      9   1.1      fvdl  *
     10   1.1      fvdl  * Redistribution and use in source and binary forms, with or without
     11   1.1      fvdl  * modification, are permitted provided that the following conditions
     12   1.1      fvdl  * are met:
     13   1.1      fvdl  * 1. Redistributions of source code must retain the above copyright
     14   1.1      fvdl  *    notice, this list of conditions and the following disclaimer.
     15   1.1      fvdl  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1      fvdl  *    notice, this list of conditions and the following disclaimer in the
     17   1.1      fvdl  *    documentation and/or other materials provided with the distribution.
     18   1.1      fvdl  * 3. All advertising materials mentioning features or use of this software
     19   1.1      fvdl  *    must display the following acknowledgement:
     20   1.1      fvdl  *	This product includes software developed by the NetBSD
     21   1.1      fvdl  *	Foundation, Inc. and its contributors.
     22   1.1      fvdl  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23   1.1      fvdl  *    contributors may be used to endorse or promote products derived
     24   1.1      fvdl  *    from this software without specific prior written permission.
     25   1.1      fvdl  *
     26   1.1      fvdl  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27   1.1      fvdl  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28   1.1      fvdl  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29   1.1      fvdl  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30   1.1      fvdl  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31   1.1      fvdl  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32   1.1      fvdl  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33   1.1      fvdl  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34   1.1      fvdl  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35   1.1      fvdl  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36   1.1      fvdl  * POSSIBILITY OF SUCH DAMAGE.
     37   1.1      fvdl  */
     38   1.1      fvdl 
     39   1.2     lukem #ifndef _X86_I82489VAR_H_
     40   1.2     lukem #define _X86_I82489VAR_H_
     41   1.1      fvdl 
     42   1.1      fvdl /*
     43   1.1      fvdl  * Software definitions belonging to Local APIC driver.
     44   1.1      fvdl  */
     45   1.1      fvdl 
     46  1.11    cegger static __inline uint32_t i82489_readreg(int);
     47  1.11    cegger static __inline void i82489_writereg(int, uint32_t);
     48   1.1      fvdl 
     49   1.1      fvdl #ifdef _KERNEL
     50  1.11    cegger extern volatile uint32_t local_apic[];
     51  1.11    cegger extern volatile uint32_t lapic_tpr;
     52   1.1      fvdl #endif
     53   1.1      fvdl 
     54  1.11    cegger static __inline uint32_t
     55  1.11    cegger i82489_readreg(int reg)
     56   1.1      fvdl {
     57  1.11    cegger 	return *((volatile uint32_t *)(((volatile uint8_t *)local_apic)
     58   1.1      fvdl 	    + reg));
     59   1.1      fvdl }
     60   1.1      fvdl 
     61   1.5     perry static __inline void
     62  1.11    cegger i82489_writereg(int reg, uint32_t val)
     63   1.1      fvdl {
     64  1.11    cegger 	*((volatile uint32_t *)(((volatile uint8_t *)local_apic) + reg)) = val;
     65   1.1      fvdl }
     66   1.1      fvdl 
     67  1.11    cegger #define lapic_cpu_number() 	(i82489_readreg(LAPIC_ID) >> LAPIC_ID_SHIFT)
     68   1.1      fvdl 
     69   1.1      fvdl /*
     70   1.1      fvdl  * "spurious interrupt vector"; vector used by interrupt which was
     71   1.1      fvdl  * aborted because the CPU masked it after it happened but before it
     72   1.1      fvdl  * was delivered.. "Oh, sorry, i caught you at a bad time".
     73   1.1      fvdl  * Low-order 4 bits must be all ones.
     74   1.1      fvdl  */
     75   1.1      fvdl extern void Xintrspurious(void);
     76   1.1      fvdl #define LAPIC_SPURIOUS_VECTOR		0xef
     77   1.1      fvdl 
     78   1.1      fvdl /*
     79   1.6        ad  * Vectors used for inter-processor interrupts.
     80   1.1      fvdl  */
     81   1.1      fvdl extern void Xintr_lapic_ipi(void);
     82   1.1      fvdl extern void Xrecurse_lapic_ipi(void);
     83   1.1      fvdl extern void Xresume_lapic_ipi(void);
     84   1.1      fvdl #define LAPIC_IPI_VECTOR			0xe0
     85   1.1      fvdl 
     86   1.6        ad extern void Xintr_lapic_tlb_bcast(void);
     87   1.6        ad #define LAPIC_TLB_BCAST_VECTOR			0xe1
     88   1.6        ad 
     89   1.6        ad extern void Xintr_lapic_tlb_mcast(void);
     90   1.6        ad #define LAPIC_TLB_MCAST_VECTOR			0xe2
     91   1.6        ad 
     92   1.1      fvdl /*
     93   1.1      fvdl  * Vector used for local apic timer interrupts.
     94   1.1      fvdl  */
     95   1.1      fvdl 
     96   1.1      fvdl extern void Xintr_lapic_ltimer(void);
     97   1.1      fvdl extern void Xresume_lapic_ltimer(void);
     98   1.1      fvdl extern void Xrecurse_lapic_ltimer(void);
     99   1.1      fvdl #define LAPIC_TIMER_VECTOR		0xc0
    100   1.1      fvdl 
    101   1.1      fvdl /*
    102   1.1      fvdl  * 'pin numbers' for local APIC
    103   1.1      fvdl  */
    104   1.1      fvdl #define LAPIC_PIN_TIMER		0
    105   1.1      fvdl #define LAPIC_PIN_PCINT		2
    106   1.1      fvdl #define LAPIC_PIN_LVINT0	3
    107   1.1      fvdl #define LAPIC_PIN_LVINT1	4
    108   1.1      fvdl #define LAPIC_PIN_LVERR		5
    109   1.1      fvdl 
    110   1.1      fvdl extern void Xintr_lapic0(void);
    111   1.1      fvdl extern void Xintr_lapic2(void);
    112   1.1      fvdl extern void Xintr_lapic3(void);
    113   1.1      fvdl extern void Xintr_lapic4(void);
    114   1.1      fvdl extern void Xintr_lapic5(void);
    115   1.1      fvdl 
    116   1.1      fvdl 
    117   1.1      fvdl struct cpu_info;
    118   1.1      fvdl 
    119   1.3  junyoung extern void lapic_boot_init(paddr_t);
    120   1.3  junyoung extern void lapic_set_lvt(void);
    121   1.3  junyoung extern void lapic_enable(void);
    122  1.10  jmcneill extern void lapic_suspend(void);
    123  1.10  jmcneill extern void lapic_resume(void);
    124   1.3  junyoung extern void lapic_calibrate_timer(struct cpu_info *ci);
    125   1.3  junyoung extern void lapic_initclocks(void);
    126   1.1      fvdl 
    127   1.1      fvdl #endif
    128