您的位置 首页 ADAS

深化了解ARM系统架构(S3C6410)—S3C6410看门狗源码实例

当系统运行受到外部干扰或者系统错误,程序有时会出现跑飞,导致整个系统瘫痪。他会设置一段时间,当超出这段时间,从程序中跳出进入中断处…

当体系运转遭到外部搅扰或许体系过错,程序有时会呈现跑飞,导致整个体系瘫痪。他会设置一段时刻,当超出这段时刻,从程序中跳出进入中止处理程序。WatchDog本质上是一种定时器,那么一般定时器具有的特性它也应该具有,是的当它计时超不时也会引起事情的发生,仅仅这个事情除了可所以体系中止外,他也可所以一个体系重启信号(Reset Signal)。能够这么说,能发送体系重启信号的定时器咱们就叫它WatchDog。看门狗定时器中止是咱们不期望看到的,因而咱们要想方设法防止它发生。首要的办法就是在中止发生前,从头对看门狗定时器的寄存器进行赋值,使它的定时器从头开始记时,这种办法俗称喂狗。

S3C6410看门狗定时器的功用:

作为惯例时钟,而且能够发生中止

作为看门狗定时器运用,当时钟计数器减为零时,它将发生一个复位信号。

The S3C6410XRISC microprocessor watchdog timer is used to resume the controller operation wheneverit is disturbed by malfunctions such as noise and system errors. The watchdogtimer generates the reset signal.

It can be usedas a normal 16-bit interval timer to request interrupt service.Advantagein using WDT instead of PWM timer is that WDT generates the reset signal.

FEATURES

The WatchdogTimer includes the following features:

• Normal interval timer mode with interruptrequest.

• Internal reset signal is activated when thetimer count value reaches 0 (time-out).

• Level-triggered Interrupt mechanism.

看门狗模块包含一个8位预分频器,一个分频器,一个16bit计数器。它的8位预分频器把PCLK分频后,再被分频得到4种频率,16分频,32分频,64分频,128分频。WatchDog能够挑选作业于哪种频率下。S3C2440用3个寄存器对WatchDog进行操作:

看门狗定时器操控寄存器(WTCON)

看门狗定时器数据寄存器(WTDAT)

看门狗定时器计数寄存器(WTCNT)

Figure 34-1shows the functional block diagram of the watchdog timer. The watchdog timeruses only PCLK as its source clock. The PCLK frequency is prescaled to generatethe corresponding watchdog timer clock, and the resulting frequency is dividedagain.

The prescalervalue and the frequency division factor are specified in the watchdog timercontrol (WTCON)register. Valid prescaler values range from 0 to 28-1. Thefrequency division factor can be selected as 16, 32, 64,or 128.

Use thefollowing equation to calculate the watchdog timer clock frequency and theduration of each timer clock cycle:

t_watchdog = 1/( PCLK / (Prescaler value + 1) / Division_factor )

留意:

1、Once the watchdog timer is enabled, the value ofwatchdog timer data (WTDAT) register cannot be automatically reloaded into thetimer counter (WTCNT). For this reason, an initial value must be written to thewatchdog timer count (WTCNT) register, before the watchdog timer starts.

2、When the S3C6410 is in debug mode using Embedded%&&&&&%E, the watchdog timer must not operate.The watchdog timer can determinewhether or not it is currently in the debug mode from the CPU coresignal(DBGACK signal). Once the DBGACK signal is asserted, the reset output ofthe watchdog timer is not activated as the watchdog timer is expired.

看门狗寄存器映射:

1、WATCHDOG TIMER CONTROL(WTCON) REGISTER

WTCON答应用户使能看门狗定时器,从不同四个源挑选时钟,使能中止,使能看门狗定时器输出。S3C6410看门狗定时器用于体系故障后复位。假如不期望复位,则使能定时器无效。

The WTCONregister allows the user to enable/disable the watchdog timer, select the clocksignal from 4 different sources, enable/disable interrupts, and enable/disablethe watchdog timer output.

The Watchdogtimer is used to resume the S3C6410 restart on mal-function after its power on.At this time,disable the interrupt generation and enable the Watchdog timeroutput for reset signal.

If controllerrestart is not desired and if the user wants to use the normal timer only,which is provided by the Watchdog timer, enable the interrupt generation anddisable the Watchdog timer output for reset signal.

留意:Initial state of ‘Reset enable/disable’ is 1(reset enable). If user do notdisable this bit, S3C6410 will be rebooted in about 5.63sec (In the case ofPCLK is 12MHz). So at boot loader, this bit should be disabled before undercontrol of Operating System, or Firmware.

2、WATCHDOG TIMER DATA (WTDAT) REGISTER

WTDAT用于确认超时期限。WTDAT的内容在开始的定时器操作时不能主动加载到定时器计数其间。但运用0x8000将唆使第一次超时,在这种情况下,WTDAT的值将主动载入WTCNT。

The WTDATregister is used to specify the time-out duration. The content of WTDAT cannotbe automatically loaded into the timer counter at initial watchdog timeroperation. However, using 0x8000 (initial value of WTCNT)will drive the firsttime-out. Then, the value of WTDAT will be automatically reloaded into WTCNT.

3、WATCHDOG TIMER COUNT(WTCNT) REGISTER

The WTCNT register contains the current count values for the watchdogtimer during normal operation.

留意:The content of the WTDAT register cannot be automatically loaded into thetimer count register when the watchdog timer is enabled initially, so the WTCNTregister must be set to an initial value before enabling it.

界说寄存器:

  1. //watchdog
  2. #defineWTCON(*(volatileunsigned*)(0x7E004000))
  3. #defineWTDAT(*(volatileunsigned*)(0x7E004004))
  4. #defineWTCNT(*(volatileunsigned*)(0x7E004008))

初始化函数:

  1. voidinit_watchdog()
  2. {
  3. WTDAT=0xff;
  4. WTCNT=0x8000;
  5. WTCON=0XC021;//Prescalervalue为6,16分频
  6. }

在mian函数中调用:

  1. init_watchdog();
  2. while(1);

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/qiche/adas/276979.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部