📄 var_intr.h
字号:
#ifndef CYGONCE_HAL_VAR_INTR_H
#define CYGONCE_HAL_VAR_INTR_H
//==========================================================================
//
// var_intr.h
//
// SH4 Interrupt and clock support
//
//==========================================================================
//####ECOSGPLCOPYRIGHTBEGIN####
// -------------------------------------------
// This file is part of eCos, the Embedded Configurable Operating System.
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
//
// eCos is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
// Software Foundation; either version 2 or (at your option) any later version.
//
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
// for more details.
//
// You should have received a copy of the GNU General Public License along
// with eCos; if not, write to the Free Software Foundation, Inc.,
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
//
// As a special exception, if other files instantiate templates or use macros
// or inline functions from this file, or you compile this file and link it
// with other works to produce a work based on this file, this file does not
// by itself cause the resulting work to be covered by the GNU General Public
// License. However the source code for this file must still be made available
// in accordance with section (3) of the GNU General Public License.
//
// This exception does not invalidate any other reasons why a work based on
// this file might be covered by the GNU General Public License.
//
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
// at http://sources.redhat.com/ecos/ecos-license/
// -------------------------------------------
//####ECOSGPLCOPYRIGHTEND####
//==========================================================================
//#####DESCRIPTIONBEGIN####
//
// Author(s): jskov
// Contributors: jskov,
// Date: 1999-04-24
// Purpose: Define Interrupt support
// Description: The macros defined here provide the HAL APIs for handling
// interrupts and the clock.
//
// Usage:
// #include <cyg/hal/hal_intr.h>
// ...
//
//
//####DESCRIPTIONEND####
//
//==========================================================================
#include <pkgconf/hal.h>
#include CYGBLD_HAL_CPU_MODULES_H // INTC module selection
// More include statements below. First part of this file must be
// usable for both assembly and C files, so only use defines here.
//--------------------------------------------------------------------------
// Optional platform overrides and fallbacks
#include <cyg/hal/plf_intr.h>
#ifndef CYGPRI_HAL_INTERRUPT_UPDATE_LEVEL_PLF
# define CYGPRI_HAL_INTERRUPT_UPDATE_LEVEL_PLF(vec, level) \
case CYGNUM_HAL_INTERRUPT_NMI: \
/* fall through */ \
case CYGNUM_HAL_INTERRUPT_LVL0 ... CYGNUM_HAL_INTERRUPT_LVL14: \
/* Cannot change levels */ \
break;
#endif
#ifndef CYGPRI_HAL_INTERRUPT_ACKNOWLEDGE_PLF
# define CYGPRI_HAL_INTERRUPT_ACKNOWLEDGE_PLF(vec)
#endif
#ifndef CYGPRI_HAL_INTERRUPT_CONFIGURE_PLF
# define CYGPRI_HAL_INTERRUPT_CONFIGURE_PLF(vec, level, up)
#endif
//--------------------------------------------------------------------------
// Additional SH4 exception vectors.
// These are identified with event values 0x800 and 0x820, so we need to
// extend the decode macros accordingly. Performance wise it's not an
// issue - these are exceptions, not interrupts. No critical fast path.
#define CYGNUM_HAL_VECTOR_FPU_EXCEPTION 9 // FPU exception
#define CYGNUM_HAL_VECTOR_TLB_MUTI_HIT 10 // mutible TLB hit
#define CYGNUM_HAL_VECTOR_FPU_DISABLE 17
#define CYGNUM_HAL_VECTOR_SLOT_FPU_DISABLE 18
#define CYG_VECTOR_IS_INTERRUPT(v) \
((CYGNUM_HAL_VECTOR_INSTRUCTION_BP < (v)) && ((v) < CYGNUM_HAL_VECTOR_FPU_DISABLE))
#define CYGNUM_HAL_VSR_MAX CYGNUM_HAL_VECTOR_SLOT_FPU_DISABLE
#define CYGNUM_HAL_VSR_EXCEPTION_COUNT (CYGNUM_HAL_VSR_MAX-CYGNUM_HAL_VECTOR_POWERON+1)
#define CYGNUM_HAL_INTERRUPT_RESERVED_5C0 32
#define CYGNUM_HAL_INTERRUPT_RESERVED_5E0 33
#define CYGNUM_HAL_INTERRUPT_HUDI 34
#define CYGNUM_HAL_INTERRUPT_GPIO 35
#define CYGNUM_HAL_INTERRUPT_DMAC_DMTE0 36
#define CYGNUM_HAL_INTERRUPT_DMAC_DMTE1 37
#define CYGNUM_HAL_INTERRUPT_DMAC_DMTE2 38
#define CYGNUM_HAL_INTERRUPT_DMAC_DMTE3 39
#define CYGNUM_HAL_INTERRUPT_DMAC_DMAE 40
#define CYGNUM_HAL_INTERRUPT_RESERVED_6E0 41
#define CYGNUM_HAL_INTERRUPT_SCIF_ERI 42
#define CYGNUM_HAL_INTERRUPT_SCIF_RXI 43
#define CYGNUM_HAL_INTERRUPT_SCIF_BRI 44
#define CYGNUM_HAL_INTERRUPT_SCIF_TXI 45
#define CYGNUM_HAL_ISR_MAX CYGNUM_HAL_INTERRUPT_SCIF_TXI
#if (CYGARC_SH_MOD_INTC == 2)
#ifndef CYGHWR_HAL_SH_IRQ_USE_IRQLVL
# define CYGNUM_HAL_INTERRUPT_IRL0 CYGNUM_HAL_INTERRUPT_LVL2
# define CYGNUM_HAL_INTERRUPT_IRL1 CYGNUM_HAL_INTERRUPT_LVL5
# define CYGNUM_HAL_INTERRUPT_IRL2 CYGNUM_HAL_INTERRUPT_LVL8
# define CYGNUM_HAL_INTERRUPT_IRL3 CYGNUM_HAL_INTERRUPT_LVL11
#endif
#define CYGNUM_HAL_INTERRUPT_PCISERR 66
#define CYGNUM_HAL_INTERRUPT_PCIDMA3 67
#define CYGNUM_HAL_INTERRUPT_PCIDMA2 68
#define CYGNUM_HAL_INTERRUPT_PCIDMA1 69
#define CYGNUM_HAL_INTERRUPT_PCIDMA0 70
#define CYGNUM_HAL_INTERRUPT_PCIPWON 71
#define CYGNUM_HAL_INTERRUPT_PCIPWDWN 72
#define CYGNUM_HAL_INTERRUPT_PCIERR 73
#define CYGNUM_HAL_INTERRUPT_TUNI3 74
#define CYGNUM_HAL_INTERRUPT_TUNI4 78
#undef CYGNUM_HAL_ISR_MAX
#define CYGNUM_HAL_ISR_MAX CYGNUM_HAL_INTERRUPT_TUNI4
#endif // (CYGARC_SH_MOD_INTC == 2)
// Exception vectors. These are the values used when passed out to an
// external exception handler using cyg_hal_deliver_exception()
// These are in addition to the exceptions defined by the architecture.
#define CYGNUM_HAL_EXCEPTION_FPU_EXCEPTION 9 // fpu exception
#define CYGNUM_HAL_EXCEPTION_TLB_MULTI_HIT 10 // TLB multi hit exception
#define CYGNUM_HAL_EXCEPTION_FPU_DISABLE 17
#define CYGNUM_HAL_EXCEPTION_SLOT_FPU_DISABLE 18
#define CYGNUM_HAL_EXCEPTION_MIN CYGNUM_HAL_EXCEPTION_POWERON
#define CYGNUM_HAL_EXCEPTION_MAX CYGNUM_HAL_EXCEPTION_SLOT_FPU_DISABLE
// The vector used by the Real time clock
#define CYGNUM_HAL_INTERRUPT_RTC CYGNUM_HAL_INTERRUPT_TMU0_TUNI0
//--------------------------------------------------------------------------
#endif // ifndef CYGONCE_HAL_VAR_INTR_H
// End of hal_intr.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -