⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 watchdog_aeb.cxx

📁 移植到WLIT项目的redboot源代码
💻 CXX
字号:
//==========================================================================////      devs/watchdog/arm/aeb/watchdog_aeb.cxx////      Watchdog implementation for ARM AEB1 board (SHARP LH77790 CPU)////==========================================================================//####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):    jskov// Contributors: jskov// Date:         1999-09-01// Purpose:      Watchdog class implementation// Description:  Contains an implementation of the Watchdog class for use//               with the SHARP LH77790 watchdog timer.////####DESCRIPTIONEND####////==========================================================================#include <pkgconf/system.h>             // system configuration file#include <pkgconf/watchdog.h>           // configuration for this package#include <pkgconf/kernel.h>             // kernel config#include <cyg/infra/cyg_trac.h>         // tracing macros#include <cyg/kernel/instrmnt.h>        // instrumentation#include <cyg/hal/hal_io.h>             // IO register access#include <cyg/io/watchdog.hxx>          // watchdog API// -------------------------------------------------------------------------// Register definitions#define CYGARC_REG_WATCHDOG_BASE        0xFFFFAC00#define CYGARC_REG_WATCHDOG_WDCTLR      (CYGARC_REG_WATCHDOG_BASE+0x30)#define CYGARC_REG_WATCHDOG_WDCNTR      (CYGARC_REG_WATCHDOG_BASE+0x34)// Control register bits#define CYGARC_REG_WATCHDOG_WDCTLR_EN        0x01 // enable#define CYGARC_REG_WATCHDOG_WDCTLR_RSP_NMF   0x00 // non-maskable fiq#define CYGARC_REG_WATCHDOG_WDCTLR_RSP_ER    0x04 // external reset#define CYGARC_REG_WATCHDOG_WDCTLR_RSP_SR    0x06 // system reset#define CYGARC_REG_WATCHDOG_WDCTLR_FRZ       0x08 // lock enable bit#define CYGARC_REG_WATCHDOG_WDCTLR_TOP_MASK  0x70 // time out period#define CYGARC_REG_WATCHDOG_WDCTLR_TOP_17    0x00 // 2^17#define CYGARC_REG_WATCHDOG_WDCTLR_TOP_17_P  5242880 // = 5.2ms#define CYGARC_REG_WATCHDOG_WDCTLR_TOP_25    0x40 // 2^25#define CYGARC_REG_WATCHDOG_WDCTLR_TOP_25_P  1342177300 // = 1.3421773s// -------------------------------------------------------------------------// ConstructorvoidCyg_Watchdog::init_hw(void){    CYG_REPORT_FUNCTION();        // No HW init.    resolution          = CYGARC_REG_WATCHDOG_WDCTLR_TOP_25_P;    CYG_REPORT_RETURN();}// -------------------------------------------------------------------------// Start the watchdog running.voidCyg_Watchdog::start(){    CYG_REPORT_FUNCTION();    // Clear the watchdog counter.    HAL_WRITE_UINT32(CYGARC_REG_WATCHDOG_WDCNTR, 0);    // Enable the watchdog (and lock/FRZ it).    HAL_WRITE_UINT8(CYGARC_REG_WATCHDOG_WDCTLR,                     (CYGARC_REG_WATCHDOG_WDCTLR_TOP_25                     | CYGARC_REG_WATCHDOG_WDCTLR_FRZ                     | CYGARC_REG_WATCHDOG_WDCTLR_RSP_SR                     | CYGARC_REG_WATCHDOG_WDCTLR_EN));        CYG_REPORT_RETURN();}// -------------------------------------------------------------------------// Reset watchdog timer. This needs to be called regularly to prevent// the watchdog firing.voidCyg_Watchdog::reset(){        CYG_REPORT_FUNCTION();    HAL_WRITE_UINT32(CYGARC_REG_WATCHDOG_WDCNTR, 0);        CYG_REPORT_RETURN();}#if 0// -------------------------------------------------------------------------// Action which will do a board reset. Application can register this// action to get a board reset on watchdog timeout.voidCyg_Watchdog::reset_action(void){    CYG_REPORT_FUNCTION();        // Clear the watchdog counter.    HAL_WRITE_UINT32(CYGARC_REG_WATCHDOG_WDCNTR, 0);    // Enable the watchdog with the smallest timeout.    HAL_WRITE_UINT8(CYGARC_REG_WATCHDOG_WDCTLR,                     (CYGARC_REG_WATCHDOG_WDCTLR_TOP_17                     | CYGARC_REG_WATCHDOG_WDCTLR_FRZ                     | CYGARC_REG_WATCHDOG_WDCTLR_RSP_SR                     | CYGARC_REG_WATCHDOG_WDCTLR_EN));    CYG_REPORT_RETURN();}#endif// -------------------------------------------------------------------------// EOF watchdog_aeb.cxx

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -