embeddedsw/XilinxProcessorIPLib/drivers/wdttb/examples/xwdttb_intr_example.c

488 lines
14 KiB
C
Raw Normal View History

/******************************************************************************
*
* Copyright (C) 2006 - 2014 Xilinx, Inc. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* Use of the Software is limited solely to applications:
* (a) running on a Xilinx device, or
* (b) that interact with a Xilinx device through a bus or interconnect.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* XILINX CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
* OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* Except as contained in this notice, the name of the Xilinx shall not be used
* in advertising or otherwise to promote the sale, use or other dealings in
* this Software without prior written authorization from Xilinx.
*
******************************************************************************/
/*****************************************************************************/
/**
*
* @file xwdttb_intr_example.c
*
* This file contains a design example using the TimeBase Watchdog Timer Device
* (WdtTb) driver and hardware device using interrupt mode (for the WDT
* interrupt).
*
* @note
*
* This example assumes that the reset output of the WdtTb device is not
* connected to the reset of the processor. This example will not return
* if the interrupts are not working.
*
* <pre>
*
* MODIFICATION HISTORY:
*
* Ver Who Date Changes
* ----- ---- -------- ---------------------------------------------------------
* 1.00b hvm 05/10/06 First release
* 1.00b sv 05/30/06 Updated to support interrupt examples in Test App
* 1.11a hvm 03/30/09 Modified the example to avoid a race condition
* 2.00a ktn 10/22/09 Updated the example to use the HAL APIs/macros.
* Updated the example with support for MicroBlaze.
* 2.00a ssb 01/11/01 Updated the example to be used with the SCUGIC in
* Zynq.
* </pre>
*
******************************************************************************/
/***************************** Include Files *********************************/
#include "xparameters.h"
#include "xwdttb.h"
#include "xil_exception.h"
#ifdef XPAR_INTC_0_DEVICE_ID
#include "xintc.h"
#include <stdio.h>
#else
#include "xscugic.h"
#include "xil_printf.h"
#endif
/************************** Constant Definitions *****************************/
/*
* The following constants map to the XPAR parameters created in the
* xparameters.h file. They are only defined here such that a user can easily
* change all the needed parameters in one place.
*/
#ifndef TESTAPP_GEN
#define WDTTB_DEVICE_ID XPAR_WDTTB_0_DEVICE_ID
#define WDTTB_IRPT_INTR XPAR_INTC_0_WDTTB_0_WDT_INTERRUPT_VEC_ID
#ifdef XPAR_INTC_0_DEVICE_ID
#define INTC_DEVICE_ID XPAR_INTC_0_DEVICE_ID
#else
#define INTC_DEVICE_ID XPAR_SCUGIC_SINGLE_DEVICE_ID
#endif /* XPAR_INTC_0_DEVICE_ID */
#endif
/**************************** Type Definitions *******************************/
#ifdef XPAR_INTC_0_DEVICE_ID
#define INTC XIntc
#define INTC_HANDLER XIntc_InterruptHandler
#else
#define INTC XScuGic
#define INTC_HANDLER XScuGic_InterruptHandler
#endif /* XPAR_INTC_0_DEVICE_ID */
/***************** Macros (Inline Functions) Definitions *********************/
/************************** Function Prototypes ******************************/
int WdtTbIntrExample(INTC *IntcInstancePtr,
XWdtTb *WdtTbInstancePtr,
u16 WdtTbDeviceId,
u16 WdtTbIntrId);
static void WdtTbIntrHandler(void *CallBackRef);
static int WdtTbSetupIntrSystem(INTC *IntcInstancePtr,
XWdtTb *WdtTbInstancePtr,
u16 WdtTbIntrId);
static void WdtTbDisableIntrSystem(INTC *IntcInstancePtr,
u16 WdtTbIntrId);
/************************** Variable Definitions *****************************/
#ifndef TESTAPP_GEN
XWdtTb WdtTbInstance; /* Instance of Time Base WatchDog Timer */
INTC IntcInstance; /* Instance of the Interrupt Controller */
#endif
static volatile int WdtExpired;
/*****************************************************************************/
/**
* Main function to call the WdtTb interrupt example.
*
* @param None.
*
* @return XST_SUCCESS if successful, otherwise XST_FAILURE.
*
* @note None.
*
******************************************************************************/
#ifndef TESTAPP_GEN
int main(void)
{
int Status;
/*
* Call the WdtTb interrupt example, specify the parameters generated in
* xparameters.h
*/
Status = WdtTbIntrExample(&IntcInstance,
&WdtTbInstance,
WDTTB_DEVICE_ID,
WDTTB_IRPT_INTR);
if (Status != XST_SUCCESS) {
return XST_FAILURE;
}
return XST_SUCCESS;
}
#endif
/*****************************************************************************/
/**
*
* This function tests the functioning of the TimeBase WatchDog Timer module
* in the Interrupt mode (for the WDT interrupt).
*
* After one expiration of the WDT timeout interval, an interrupt is generated
* and the WDT state bit is set to one in the status register. If the state bit
* is not cleared (by writing a 1 to the state bit) before the next expiration of
* the timeout interval, a WDT reset is generated.
* A WDT reset sets the WDT reset status bit in the status register so that
* the application code can determine if the last system reset was a WDT reset.
*
* This function assumes that the reset output of the WdtTb device is not
* connected to the reset of the processor. The function allows the watchdog
* timer to timeout such that a reset will occur if it is connected.
*
* @param IntcInstancePtr is a pointer to the instance of the INTC driver.
* @param WdtTbInstancePtr is a pointer to the instance of WdtTb driver.
* @param WdtTbDeviceId is the Device ID of the WdtTb Device and is
* typically XPAR_<WDTTB_instance>_DEVICE_ID value from
* xparameters.h.
* @param WdtTbIntrId is the Interrupt Id of the WatchDog and is typically
* XPAR_<INTC_instance>_<WDTTB_instance>_WDT_INTERRUPT_VEC_ID
* value from xparameters.h.
*
* @return XST_SUCCESS if successful, otherwise XST_FAILURE.
*
* @note This example will not return if the interrupts are not working.
*
******************************************************************************/
int WdtTbIntrExample(INTC *IntcInstancePtr,
XWdtTb *WdtTbInstancePtr,
u16 WdtTbDeviceId,
u16 WdtTbIntrId)
{
int Status;
/*
* Initialize the WdtTb driver
*/
Status = XWdtTb_Initialize(WdtTbInstancePtr, WdtTbDeviceId);
if (Status != XST_SUCCESS) {
return XST_FAILURE;
}
/*
* Perform a self-test to ensure that the hardware was built correctly
*/
Status = XWdtTb_SelfTest(WdtTbInstancePtr);
if (Status != XST_SUCCESS) {
return XST_FAILURE;
}
/*
* Stop the timer to start the test for interrupt mode
*/
XWdtTb_Stop(WdtTbInstancePtr);
/*
* Connect the WdtTb to the interrupt subsystem so that interrupts
* can occur
*/
Status = WdtTbSetupIntrSystem(IntcInstancePtr,
WdtTbInstancePtr,
WdtTbIntrId);
if (Status != XST_SUCCESS) {
return XST_FAILURE;
}
/*
* Start the WdtTb device
*/
WdtExpired = FALSE;
XWdtTb_Start(WdtTbInstancePtr);
/*
* Wait for the firt expiration of the WDT
*/
while (WdtExpired != TRUE);
WdtExpired = FALSE;
/*
* Wait for the second expiration of the WDT
*/
while (WdtExpired != TRUE);
WdtExpired = FALSE;
/*
* Check whether the WatchDog Reset Status has been set.
* If this is set means then the test has failed
*/
if (XWdtTb_ReadReg(WdtTbInstancePtr->RegBaseAddress,
XWT_TWCSR0_OFFSET) & XWT_CSR0_WRS_MASK) {
/*
* Disable and disconnect the interrupt system
*/
WdtTbDisableIntrSystem(IntcInstancePtr, WdtTbIntrId);
/*
* Stop the timer
*/
XWdtTb_Stop(WdtTbInstancePtr);
return XST_FAILURE;
}
/*
* Disable and disconnect the interrupt system
*/
WdtTbDisableIntrSystem(IntcInstancePtr, WdtTbIntrId);
/*
* Stop the timer
*/
XWdtTb_Stop(WdtTbInstancePtr);
return XST_SUCCESS;
}
/*****************************************************************************/
/**
*
* This function setups the interrupt system such that WDT interrupt can occur
* for the WdtTb. This function is application specific since the actual
* system may or may not have an interrupt controller. The WdtTb device could be
* directly connected to a processor without an interrupt controller. The
* user should modify this function to fit the application.
*
* @param IntcInstancePtr is a pointer to the instance of the Intc driver.
* @param WdtTbInstancePtr is a pointer to the instance of WdtTb driver.
* @param WdtTbIntrId is the Interrupt Id of the WDT interrupt and is
* typically
* XPAR_<INTC_instance>_<WDTTB_instance>_WDT_INTERRUPT_VEC_ID
* value from xparameters.h.
*
* @return XST_SUCCESS if successful, otherwise XST_FAILURE.
*
* @note None.
*
******************************************************************************/
static int WdtTbSetupIntrSystem(INTC *IntcInstancePtr,
XWdtTb *WdtTbInstancePtr,
u16 WdtTbIntrId)
{
int Status;
#ifdef XPAR_INTC_0_DEVICE_ID
#ifndef TESTAPP_GEN
/*
* Initialize the interrupt controller driver so that
* it's ready to use. Specify the device ID that is generated in
* xparameters.h
*/
Status = XIntc_Initialize(IntcInstancePtr, INTC_DEVICE_ID);
if(Status != XST_SUCCESS) {
return XST_FAILURE;
}
#endif /* TESTAPP_GEN */
/*
* Connect a device driver handler that will be called when the WDT
* interrupt for the device occurs, the device driver handler performs
* the specific interrupt processing for the device
*/
Status = XIntc_Connect(IntcInstancePtr, WdtTbIntrId,
(XInterruptHandler)WdtTbIntrHandler,
(void *)WdtTbInstancePtr);
if(Status != XST_SUCCESS) {
return XST_FAILURE;
}
#ifndef TESTAPP_GEN
/*
* Start the interrupt controller such that interrupts are enabled for
* all devices that cause interrupts
*/
Status = XIntc_Start(IntcInstancePtr, XIN_REAL_MODE);
if(Status != XST_SUCCESS) {
return XST_FAILURE;
}
#endif /* TESTAPP_GEN */
/*
* Enable the WDT interrupt of the WdtTb Device
*/
XIntc_Enable(IntcInstancePtr, WdtTbIntrId);
#else
#ifndef TESTAPP_GEN
XScuGic_Config *IntcConfig;
/*
* Initialize the interrupt controller driver so that it is ready to
* use.
*/
IntcConfig = XScuGic_LookupConfig(INTC_DEVICE_ID);
if (NULL == IntcConfig) {
return XST_FAILURE;
}
Status = XScuGic_CfgInitialize(IntcInstancePtr, IntcConfig,
IntcConfig->CpuBaseAddress);
if (Status != XST_SUCCESS) {
return XST_FAILURE;
}
#endif /* TESTAPP_GEN */
XScuGic_SetPriorityTriggerType(IntcInstancePtr, WdtTbIntrId,
0xA0, 0x3);
/*
* Connect the interrupt handler that will be called when an
* interrupt occurs for the device.
*/
Status = XScuGic_Connect(IntcInstancePtr, WdtTbIntrId,
(Xil_ExceptionHandler)WdtTbIntrHandler,
WdtTbInstancePtr);
if (Status != XST_SUCCESS) {
return Status;
}
/*
* Enable the interrupt for the Timer device.
*/
XScuGic_Enable(IntcInstancePtr, WdtTbIntrId);
#endif /* XPAR_INTC_0_DEVICE_ID */
#ifndef TESTAPP_GEN
/*
* Initialize the exception table
*/
Xil_ExceptionInit();
/*
* Register the interrupt controller handler with the exception table
*/
Xil_ExceptionRegisterHandler(XIL_EXCEPTION_ID_INT,
(Xil_ExceptionHandler)INTC_HANDLER,
IntcInstancePtr);
/*
* Enable non-critical exceptions
*/
Xil_ExceptionEnable();
#endif /* TESTAPP_GEN */
return XST_SUCCESS;
}
/*****************************************************************************/
/**
*
* This function is the Interrupt handler for the WDT Interrupt of the
* WdtTb device. It is called on the expiration of the WDT period and is called
* from an interrupt context.
*
* This function provides an example of how to handle WDT interrupt of the
* WdtTb device.
*
* @param CallBackRef is a pointer to the callback function.
*
* @return None.
*
* @note None.
*
******************************************************************************/
static void WdtTbIntrHandler(void *CallBackRef)
{
XWdtTb *WdtTbInstancePtr = (XWdtTb *)CallBackRef;
/*
* Set the flag indicating that the WDT has expired
*/
WdtExpired = TRUE;
/*
* Restart the watchdog timer as a normal application would
*/
XWdtTb_RestartWdt(WdtTbInstancePtr);
}
/*****************************************************************************/
/**
*
* This function disables the interrupts that occur for the WdtTb.
*
* @param IntcInstancePtr is the pointer to the instance of INTC driver.
* @param WdtTbIntrId is the WDT Interrupt Id and is typically
* XPAR_<INTC_instance>_<WDTTB_instance>_WDT_INTERRUPT_VEC_ID
* value from xparameters.h.
*
* @return None.
*
* @note None.
*
******************************************************************************/
static void WdtTbDisableIntrSystem(INTC *IntcInstancePtr, u16 WdtTbIntrId)
{
/*
* Disconnect and disable the interrupt for the WdtTb
*/
#ifdef XPAR_INTC_0_DEVICE_ID
XIntc_Disconnect(IntcInstancePtr, WdtTbIntrId);
#else
/* Disconnect the interrupt */
XScuGic_Disable(IntcInstancePtr, WdtTbIntrId);
XScuGic_Disconnect(IntcInstancePtr, WdtTbIntrId);
#endif
}