📄 hal_misc.c
字号:
//==========================================================================//// hal_misc.c//// HAL miscellaneous functions////==========================================================================//####COPYRIGHTBEGIN####// // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License // Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at // http://www.redhat.com/ // // Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. // // The Original Code is eCos - Embedded Configurable Operating System, // released September 30, 1998. // // The Initial Developer of the Original Code is Red Hat. // Portions created by Red Hat are // Copyright (C) 1998, 1999, 2000 Red Hat, Inc. // All Rights Reserved. // ------------------------------------------- // //####COPYRIGHTEND####//==========================================================================//#####DESCRIPTIONBEGIN####//// Author(s): nickg, jskov// Contributors: nickg, jskov,// jlarmour// Date: 1999-02-20// Purpose: HAL miscellaneous functions// Description: This file contains miscellaneous functions provided by the// HAL.////####DESCRIPTIONEND####////===========================================================================#include <pkgconf/hal.h>#define CYGARC_HAL_COMMON_EXPORT_CPU_MACROS#include <cyg/hal/ppc_regs.h> // SPR definitions#include <cyg/infra/cyg_type.h>#include <cyg/infra/cyg_trac.h> // tracing macros#include <cyg/infra/cyg_ass.h> // assertion macros#include <cyg/infra/diag.h> // diag_printf#include <cyg/hal/hal_arch.h> // HAL header#include <cyg/hal/hal_cache.h> // HAL cache#if defined(CYGFUN_HAL_COMMON_KERNEL_SUPPORT) && \ defined(CYGPKG_HAL_EXCEPTIONS)# include <cyg/hal/hal_intr.h> // HAL interrupts/exceptions#endif#include <cyg/hal/hal_mem.h> // HAL memory handling//---------------------------------------------------------------------------// Functions used during initialization.#ifdef CYGSEM_HAL_STOP_CONSTRUCTORS_ON_FLAGcyg_bool cyg_hal_stop_constructors;#endiftypedef void (*pfunc) (void);extern pfunc __CTOR_LIST__[];extern pfunc __CTOR_END__[];voidcyg_hal_invoke_constructors (void){#ifdef CYGSEM_HAL_STOP_CONSTRUCTORS_ON_FLAG static pfunc *p = &__CTOR_END__[-1]; cyg_hal_stop_constructors = 0; for (; p >= __CTOR_LIST__; p--) { (*p) (); if (cyg_hal_stop_constructors) { p--; break; } }#else pfunc *p; for (p = &__CTOR_END__[-1]; p >= __CTOR_LIST__; p--) (*p) ();#endif}// Override any __eabi the compiler might generate. We don't want// constructors to be called twice.void __eabi (void) {}//---------------------------------------------------------------------------// First level C exception handler.externC void __handle_exception (void);externC HAL_SavedRegisters *_hal_registers;externC void *__mem_fault_handler;voidcyg_hal_exception_handler(HAL_SavedRegisters *regs){#ifdef CYGDBG_HAL_DEBUG_GDB_INCLUDE_STUBS // If we caught an exception inside the stubs, see if we were expecting it // and if so jump to the saved address if (__mem_fault_handler) { regs->pc = (CYG_ADDRWORD)__mem_fault_handler; return; // Caught an exception inside stubs } // Set the pointer to the registers of the current exception // context. At entry the GDB stub will expand the // HAL_SavedRegisters structure into a (bigger) register array. _hal_registers = regs; __handle_exception();#ifdef CYGPKG_HAL_QUICC { // This is unpleasant: it appears that if we interrupt the board // using ^C coming in on the QUICC's SMC1, by planting a breakpoint // at the interrupt return address, the decrementer interrupt is // not taken when the bp exception returns AND WORSE no other // interrupt is possible until the decrementer fires again. This // does not apply to simple "incoming character" interrupts; it // seems it has to be combined with an immediate trap on RTI for // this to occur. // // The solution is to test for decrementer underflow after the // (any) exception, and maybe reinitialize the decrementer. If the // decrementer interrupt gets taken, that causes decrementer reinit // too, and no harm is done. cyg_uint32 result; asm volatile( "mfdec %0;" : "=r"(result) ); if ( CYGNUM_HAL_RTC_PERIOD < result ) { // then we missed a tick, but the exception masked it // reset the decrementer here asm volatile( "mtdec %0;" : : "r"(CYGNUM_HAL_RTC_PERIOD) ); } }#endif#elif defined(CYGFUN_HAL_COMMON_KERNEL_SUPPORT) && \ defined(CYGPKG_HAL_EXCEPTIONS) int vector = regs->vector>>8; // We should decode the vector and pass a more appropriate // value as the second argument. For now we simply pass a // pointer to the saved registers. We should also divert // breakpoint and other debug vectors into the debug stubs. if (vector==CYGNUM_HAL_VECTOR_PROGRAM) { int srr1; CYGARC_MFSPR(CYGARC_REG_SRR1, srr1); // get srr1 switch ((srr1 >> 17) & 0xf) { case 1: vector = CYGNUM_HAL_EXCEPTION_TRAP; break; case 2: vector = CYGNUM_HAL_EXCEPTION_PRIVILEGED_INSTRUCTION; break; case 4: vector = CYGNUM_HAL_EXCEPTION_ILLEGAL_INSTRUCTION; break; case 8: vector = CYGNUM_HAL_EXCEPTION_FPU; break; default: CYG_FAIL("Unknown PROGRAM exception!!"); } } cyg_hal_deliver_exception( vector, (CYG_ADDRWORD)regs );#else CYG_FAIL("Exception!!!"); #endif return;}//---------------------------------------------------------------------------// Default ISRsexternC cyg_uint32hal_default_isr(CYG_ADDRWORD vector, CYG_ADDRWORD data){ diag_printf("Interrupt: %d\n", vector); CYG_FAIL("Spurious Interrupt!!!"); return 0;}// The decrementer default ISR has to do nothing. The reason is that// decrementer interrupts cannot be disabled - if a kernel configuration// does not use the RTC, but does use external interrupts, the decrementer// underflow could cause a CYG_FAIL (as above) even though the user did// not expect any decrementer interrupts to happen.externC cyg_uint32hal_default_decrementer_isr(CYG_ADDRWORD vector, CYG_ADDRWORD data){ return 0;}//---------------------------------------------------------------------------// Idle thread actionvoidhal_idle_thread_action( cyg_uint32 count ){#if 0#ifdef CYGPKG_HAL_POWERPC_MPC860 register cyg_uint32 result; cyg_uint32 *psivec = (cyg_uint32*)CYGARC_REG_IMM_SIVEC ; cyg_uint32 *psimask = (cyg_uint32*)CYGARC_REG_IMM_SIMASK; cyg_uint32 *psipend = (cyg_uint32*)CYGARC_REG_IMM_SIPEND; cyg_uint16 *ptbscr = (cyg_uint16*)CYGARC_REG_IMM_TBSCR; asm volatile( "mfdec %0;" : "=r"(result) ); diag_printf( "Dec %08x, TBSCR %04x, vec %d: sivec %08x, simask %08x, sipend %08x\n", result, (cyg_uint32)(*ptbscr), (*psivec)>>26, *psivec, *psimask, *psipend );#endif#endif}//---------------------------------------------------------------------------// Use MMU resources to map memory regions. // This relies that the platform HAL providing an// externC cyg_memdesc_t cyg_hal_mem_map[];// as detailed in hal_cache.h, and the variant HAL providing the// MMU mapping/clear functions.externC voidhal_MMU_init (void){ int id = 0; int i = 0; cyg_hal_clear_MMU (); while (cyg_hal_mem_map[i].size) { id = cyg_hal_map_memory (id, cyg_hal_mem_map[i].virtual_addr, cyg_hal_mem_map[i].physical_addr, cyg_hal_mem_map[i].size, cyg_hal_mem_map[i].flags); i++; }}//---------------------------------------------------------------------------// Initial cache enabling// Specific behavior for each platform configured via plf_cache.hexternC voidhal_enable_caches(void){#ifdef CYGPRI_INIT_CACHES // Initialize caches. HAL_ICACHE_UNLOCK_ALL(); HAL_DCACHE_UNLOCK_ALL(); HAL_ICACHE_INVALIDATE_ALL(); HAL_DCACHE_INVALIDATE_ALL(); // Enable caches.#ifdef CYGPRI_ENABLE_CACHES HAL_ICACHE_ENABLE(); HAL_DCACHE_ENABLE();#endif#endif#ifdef CYGPKG_HAL_POWERPC_MPC8xx // Disable serialization { cyg_uint32 ictrl; CYGARC_MFSPR (ICTRL, ictrl); ictrl |= ICTRL_NOSERSHOW; CYGARC_MTSPR (ICTRL, ictrl); }#endif}//---------------------------------------------------------------------------//A jump via a null pointer causes the CPU to end up here.externC voidhal_null_call(void){ CYG_FAIL("Call via NULL-pointer!"); for(;;);}//---------------------------------------------------------------------------// End of hal_misc.c
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -