Home | History | Annotate | Line # | Download | only in include
      1  1.21        ad /*	$NetBSD: i82489var.h,v 1.21 2020/05/21 21:12:30 ad 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  *
     19   1.1      fvdl  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.1      fvdl  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.1      fvdl  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.1      fvdl  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.1      fvdl  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.1      fvdl  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.1      fvdl  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.1      fvdl  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.1      fvdl  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.1      fvdl  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.1      fvdl  * POSSIBILITY OF SUCH DAMAGE.
     30   1.1      fvdl  */
     31   1.1      fvdl 
     32   1.2     lukem #ifndef _X86_I82489VAR_H_
     33   1.2     lukem #define _X86_I82489VAR_H_
     34   1.1      fvdl 
     35   1.1      fvdl /*
     36   1.1      fvdl  * Software definitions belonging to Local APIC driver.
     37   1.1      fvdl  */
     38   1.1      fvdl 
     39   1.1      fvdl #ifdef _KERNEL
     40  1.16      maxv extern volatile vaddr_t local_apic_va;
     41  1.19    nonaka extern bool x2apic_mode;
     42   1.1      fvdl #endif
     43   1.1      fvdl 
     44   1.1      fvdl /*
     45   1.1      fvdl  * "spurious interrupt vector"; vector used by interrupt which was
     46   1.1      fvdl  * aborted because the CPU masked it after it happened but before it
     47   1.1      fvdl  * was delivered.. "Oh, sorry, i caught you at a bad time".
     48   1.1      fvdl  * Low-order 4 bits must be all ones.
     49   1.1      fvdl  */
     50   1.1      fvdl extern void Xintrspurious(void);
     51   1.1      fvdl #define LAPIC_SPURIOUS_VECTOR		0xef
     52   1.1      fvdl 
     53   1.1      fvdl /*
     54   1.6        ad  * Vectors used for inter-processor interrupts.
     55   1.1      fvdl  */
     56   1.1      fvdl extern void Xintr_lapic_ipi(void);
     57  1.19    nonaka extern void Xintr_x2apic_ipi(void);
     58   1.1      fvdl extern void Xrecurse_lapic_ipi(void);
     59   1.1      fvdl extern void Xresume_lapic_ipi(void);
     60   1.1      fvdl #define LAPIC_IPI_VECTOR			0xe0
     61   1.1      fvdl 
     62  1.14     rmind extern void Xintr_lapic_tlb(void);
     63  1.19    nonaka extern void Xintr_x2apic_tlb(void);
     64  1.14     rmind #define LAPIC_TLB_VECTOR			0xe1
     65   1.6        ad 
     66   1.1      fvdl /*
     67   1.1      fvdl  * Vector used for local apic timer interrupts.
     68   1.1      fvdl  */
     69   1.1      fvdl 
     70   1.1      fvdl extern void Xintr_lapic_ltimer(void);
     71  1.19    nonaka extern void Xintr_x2apic_ltimer(void);
     72   1.1      fvdl extern void Xresume_lapic_ltimer(void);
     73   1.1      fvdl extern void Xrecurse_lapic_ltimer(void);
     74   1.1      fvdl #define LAPIC_TIMER_VECTOR		0xc0
     75   1.1      fvdl 
     76   1.1      fvdl /*
     77   1.1      fvdl  * 'pin numbers' for local APIC
     78   1.1      fvdl  */
     79   1.1      fvdl #define LAPIC_PIN_TIMER		0
     80   1.1      fvdl #define LAPIC_PIN_PCINT		2
     81   1.1      fvdl #define LAPIC_PIN_LVINT0	3
     82   1.1      fvdl #define LAPIC_PIN_LVINT1	4
     83   1.1      fvdl #define LAPIC_PIN_LVERR		5
     84   1.1      fvdl 
     85   1.1      fvdl 
     86   1.1      fvdl struct cpu_info;
     87   1.1      fvdl 
     88   1.3  junyoung extern void lapic_boot_init(paddr_t);
     89   1.3  junyoung extern void lapic_set_lvt(void);
     90   1.3  junyoung extern void lapic_enable(void);
     91  1.21        ad extern void lapic_calibrate_timer(bool);
     92  1.21        ad extern void lapic_reset(void);
     93   1.1      fvdl 
     94  1.19    nonaka extern uint32_t lapic_readreg(u_int);
     95  1.19    nonaka extern void lapic_writereg(u_int, uint32_t);
     96  1.18    nonaka extern void lapic_write_tpri(uint32_t);
     97  1.19    nonaka extern uint32_t lapic_cpu_number(void);
     98  1.19    nonaka extern bool lapic_is_x2apic(void);
     99  1.18    nonaka 
    100   1.1      fvdl #endif
    101