
Modified XIOModule_IsExpired to check for all 1's in timer CounterReg instead of 0's while timer expired. Signed-off-by: Subbaraya Sundeep Bhatta <sbhatta@xilinx.com> Acked-by: Anirudha Sarangi <anirudh@xilinx.com>
437 lines
14 KiB
C
Executable file
437 lines
14 KiB
C
Executable file
/* $Id$ */
|
|
/******************************************************************************
|
|
*
|
|
* (c) Copyright 2011 Xilinx, Inc. All rights reserved.
|
|
*
|
|
* This file contains confidential and proprietary information of Xilinx, Inc.
|
|
* and is protected under U.S. and international copyright and other
|
|
* intellectual property laws.
|
|
*
|
|
* DISCLAIMER
|
|
* This disclaimer is not a license and does not grant any rights to the
|
|
* materials distributed herewith. Except as otherwise provided in a valid
|
|
* license issued to you by Xilinx, and to the maximum extent permitted by
|
|
* applicable law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND WITH ALL
|
|
* FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS,
|
|
* IMPLIED, OR STATUTORY, INCLUDING BUT NOT LIMITED TO WARRANTIES OF
|
|
* MERCHANTABILITY, NON-INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE;
|
|
* and (2) Xilinx shall not be liable (whether in contract or tort, including
|
|
* negligence, or under any other theory of liability) for any loss or damage
|
|
* of any kind or nature related to, arising under or in connection with these
|
|
* materials, including for any direct, or any indirect, special, incidental,
|
|
* or consequential loss or damage (including loss of data, profits, goodwill,
|
|
* or any type of loss or damage suffered as a result of any action brought by
|
|
* a third party) even if such damage or loss was reasonably foreseeable or
|
|
* Xilinx had been advised of the possibility of the same.
|
|
*
|
|
* CRITICAL APPLICATIONS
|
|
* Xilinx products are not designed or intended to be fail-safe, or for use in
|
|
* any application requiring fail-safe performance, such as life-support or
|
|
* safety devices or systems, Class III medical devices, nuclear facilities,
|
|
* applications related to the deployment of airbags, or any other applications
|
|
* that could lead to death, personal injury, or severe property or
|
|
* environmental damage (individually and collectively, "Critical
|
|
* Applications"). Customer assumes the sole risk and liability of any use of
|
|
* Xilinx products in Critical Applications, subject only to applicable laws
|
|
* and regulations governing limitations on product liability.
|
|
*
|
|
* THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS PART OF THIS FILE
|
|
* AT ALL TIMES.
|
|
*
|
|
******************************************************************************/
|
|
/******************************************************************************/
|
|
/**
|
|
*
|
|
* @file xiomodule_intr_example.c
|
|
*
|
|
* This file contains a design example using the IO Module driver (XIOModule)
|
|
* and hardware device using interrupt mode.This example tests the internal
|
|
* interrupts in the IO Module.
|
|
*
|
|
* This file can be used as a standalone example or by the TestAppGen utility
|
|
* to include a test of IOModule interrupts.
|
|
*
|
|
* @note
|
|
*
|
|
* None
|
|
*
|
|
* <pre>
|
|
*
|
|
* MODIFICATION HISTORY:
|
|
*
|
|
* Ver Who Date Changes
|
|
* ----- ---- -------- --------------------------------------------------------
|
|
* 1.00a sa 07/15/11 First release
|
|
* </pre>
|
|
******************************************************************************/
|
|
|
|
/***************************** Include Files *********************************/
|
|
|
|
#include "xparameters.h"
|
|
#include "xstatus.h"
|
|
#include "xiomodule.h"
|
|
#include "xil_exception.h"
|
|
|
|
|
|
/************************** Constant Definitions *****************************/
|
|
|
|
/*
|
|
* The following constants map to the XPAR parameters created in the
|
|
* xparameters.h file. They are defined here such that a user can easily
|
|
* change all the needed parameters in one place. This definition is not
|
|
* included if the example is generated from the TestAppGen test tool.
|
|
*/
|
|
#ifndef TESTAPP_GEN
|
|
#define IOMODULE_DEVICE_ID XPAR_IOMODULE_0_DEVICE_ID
|
|
#endif
|
|
|
|
#define MAX_INTR_COUNT 3
|
|
#define MIN_TIMER_BITS 8
|
|
#define RESET_VALUE ((1 << MIN_TIMER_BITS) - 1)
|
|
|
|
/**************************** Type Definitions *******************************/
|
|
|
|
|
|
/***************** Macros (Inline Functions) Definitions *********************/
|
|
|
|
|
|
/************************** Function Prototypes ******************************/
|
|
|
|
XStatus IOModuleIntrExample(XIOModule *IOModuleInstancePtr, u16 DeviceId);
|
|
XStatus IOModuleInterruptSetup(XIOModule *IOModuleInstancePtr,
|
|
u16 DeviceId);
|
|
|
|
void IOModuleHandler(void *CallBackRef, u8 Timer);
|
|
void IOModuleSetupIntrSystem(XIOModule *IOModuleInstancePtr);
|
|
void IOModuleDisableIntr(XIOModule *IOModuleInstancePtr);
|
|
|
|
/************************** Variable Definitions *****************************/
|
|
#ifndef TESTAPP_GEN
|
|
static XIOModule IOModule; /* Instance of the IO Module */
|
|
#endif
|
|
/*
|
|
* The following variables are shared between non-interrupt processing and
|
|
* interrupt processing such that they must be global.
|
|
*/
|
|
volatile int TimerExpired[XTC_DEVICE_TIMER_COUNT];
|
|
|
|
|
|
/*****************************************************************************/
|
|
/**
|
|
*
|
|
* This is the main function for the IO Module example. This function is not
|
|
* included if the example is generated from the TestAppGen test tool.
|
|
*
|
|
* @param None.
|
|
*
|
|
* @return XST_SUCCESS to indicate success, otherwise XST_FAILURE.
|
|
*
|
|
* @note None.
|
|
*
|
|
******************************************************************************/
|
|
#ifndef TESTAPP_GEN
|
|
int main(void)
|
|
{
|
|
XStatus Status;
|
|
|
|
/*
|
|
* Run the example, specify the Device ID generated in xparameters.h
|
|
*/
|
|
Status = IOModuleIntrExample(&IOModule, IOMODULE_DEVICE_ID);
|
|
if (Status != XST_SUCCESS)
|
|
{
|
|
return XST_FAILURE;
|
|
}
|
|
|
|
return XST_SUCCESS;
|
|
}
|
|
#endif
|
|
|
|
|
|
/*****************************************************************************/
|
|
/**
|
|
* This function does a minimal test on the IO Module device and driver as a
|
|
* design example. The purpose of this function is to illustrate how to use the
|
|
* IO Module component. It initializes the Programmable Interval Timers and
|
|
* then sets it up in compare mode with auto reload such that a periodic
|
|
* interrupt is generated.
|
|
*
|
|
* This function uses interrupt driven mode of the IO Module.
|
|
*
|
|
* @param IOModuleInstancePtr is a pointer to the IO Module driver
|
|
* Instance
|
|
* @param DeviceId is the XPAR_<IOModule_instance>_DEVICE_ID value from
|
|
* xparameters.h
|
|
*
|
|
* @return XST_SUCCESS if the Test is successful, otherwise XST_FAILURE
|
|
*
|
|
* @note This function contains an infinite loop such that if interrupts
|
|
* are not working it may never return.
|
|
*
|
|
*****************************************************************************/
|
|
XStatus IOModuleIntrExample(XIOModule *IOModuleInstancePtr, u16 DeviceId)
|
|
{
|
|
int Status;
|
|
u8 Timer;
|
|
XIOModule_Config *CfgPtr = IOModuleInstancePtr->CfgPtr;
|
|
|
|
/*
|
|
* Initialize the IO Module so that it's ready to use, specify the device
|
|
* ID that is generated in xparameters.h
|
|
*/
|
|
Status = XIOModule_Initialize(IOModuleInstancePtr, DeviceId);
|
|
if (Status != XST_SUCCESS) {
|
|
return XST_FAILURE;
|
|
}
|
|
|
|
/*
|
|
* Perform a self-test to ensure that the hardware was built correctly.
|
|
*/
|
|
Status = XIOModule_SelfTest(IOModuleInstancePtr);
|
|
if (Status != XST_SUCCESS) {
|
|
return XST_FAILURE;
|
|
}
|
|
|
|
/*
|
|
* Initialize and enable interrupts in the processor.
|
|
*/
|
|
IOModuleSetupIntrSystem(IOModuleInstancePtr);
|
|
|
|
/*
|
|
* Setup the handler for the IO Module handler that will be called from
|
|
* the interrupt context when an interrupt occurs, specify a pointer to
|
|
* the IO Module driver instance as the callback reference so the
|
|
* handler is able to access the instance data.
|
|
*/
|
|
XIOModule_SetHandler(IOModuleInstancePtr,
|
|
IOModuleHandler,
|
|
IOModuleInstancePtr);
|
|
|
|
for (Timer = 0; Timer < XTC_DEVICE_TIMER_COUNT; Timer++)
|
|
{
|
|
/*
|
|
* Skip unused timers,timers with prescaler (since they may
|
|
* have very long expiration times), timers without readable
|
|
* counters, and timers with small size (since the counter
|
|
* may not change when sampled).
|
|
*/
|
|
if (! (CfgPtr->PitUsed[Timer] &&
|
|
CfgPtr->PitPrescaler[Timer] == XTC_PRESCALER_NONE &&
|
|
CfgPtr->PitReadable[Timer] &&
|
|
CfgPtr->PitSize[Timer] > MIN_TIMER_BITS)) {
|
|
TimerExpired[Timer] = MAX_INTR_COUNT;
|
|
continue;
|
|
}
|
|
|
|
/*
|
|
* Use auto reload mode such that the Programmable Interval Timers will
|
|
* reload automatically and continue repeatedly, without this option
|
|
* they would expire once only
|
|
*/
|
|
XIOModule_Timer_SetOptions(IOModuleInstancePtr, Timer,
|
|
XTC_INT_MODE_OPTION | XTC_AUTO_RELOAD_OPTION);
|
|
|
|
/*
|
|
* Set a reset value for the Programmable Interval Timers such that
|
|
* they will expire earlier than letting them roll over from 0, the
|
|
* reset value is loaded into the Programmable Interval Timers when
|
|
* they are started.
|
|
*/
|
|
XIOModule_SetResetValue(IOModuleInstancePtr, Timer, RESET_VALUE);
|
|
|
|
/*
|
|
* Enable the interrupt for the Programmable Interval Timers.
|
|
*/
|
|
XIOModule_Enable(IOModuleInstancePtr,
|
|
Timer + XIN_IOMODULE_PIT_1_INTERRUPT_INTR);
|
|
|
|
/*
|
|
* Start the Programmable Interval Timers such that they are
|
|
* decrementing by default, then wait for them to timeout a number of
|
|
* times.
|
|
*/
|
|
XIOModule_Timer_Start(IOModuleInstancePtr, Timer);
|
|
}
|
|
|
|
while (1) {
|
|
int TotalExpiredCount = 0;
|
|
|
|
/*
|
|
* Wait for the Programmable Interval Timers to expire as indicated by
|
|
* the shared variable which the handler will increment, and stop each
|
|
* timer when it has reached the expected number of times.
|
|
*/
|
|
for (Timer = 0; Timer < XTC_DEVICE_TIMER_COUNT; Timer++) {
|
|
if (TimerExpired[Timer] >= MAX_INTR_COUNT)
|
|
XIOModule_Timer_Stop(IOModuleInstancePtr, Timer);
|
|
TotalExpiredCount += TimerExpired[Timer];
|
|
}
|
|
|
|
/*
|
|
* If all timers have expired the expected number of times, then stop
|
|
* this example.
|
|
*/
|
|
if (TotalExpiredCount == MAX_INTR_COUNT * XTC_DEVICE_TIMER_COUNT) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
IOModuleDisableIntr(IOModuleInstancePtr);
|
|
|
|
return XST_SUCCESS;
|
|
}
|
|
|
|
|
|
/*****************************************************************************/
|
|
/**
|
|
*
|
|
* This function is used by the TestAppGen generated application to setup
|
|
* the IO Module interrupts.
|
|
*
|
|
* @param IOModuleInstancePtr is the reference to the IO Module instance.
|
|
* @param DeviceId is device ID of the IO Module Device , typically
|
|
* XPAR_<IOMODULE_instance>_DEVICE_ID value from xparameters.h
|
|
*
|
|
* @return XST_SUCCESS to indicate success, otherwise XST_FAILURE
|
|
*
|
|
* @note None.
|
|
*
|
|
******************************************************************************/
|
|
XStatus IOModuleInterruptSetup(XIOModule *IOModuleInstancePtr,
|
|
u16 DeviceId)
|
|
{
|
|
XStatus Status;
|
|
|
|
/*
|
|
* Initialize the IO Module driver so that it is ready to use.
|
|
*/
|
|
Status = XIOModule_Initialize(IOModuleInstancePtr, DeviceId);
|
|
if (Status != XST_SUCCESS)
|
|
{
|
|
return XST_FAILURE;
|
|
}
|
|
|
|
/*
|
|
* Perform a self-test to ensure that the hardware was built correctly.
|
|
*/
|
|
Status = XIOModule_SelfTest(IOModuleInstancePtr);
|
|
if (Status != XST_SUCCESS)
|
|
{
|
|
return XST_FAILURE;
|
|
}
|
|
|
|
/*
|
|
* Initialize and enable interrupts in the processor.
|
|
*/
|
|
IOModuleSetupIntrSystem(IOModuleInstancePtr);
|
|
|
|
/*
|
|
* Start the IO Module such that interrupts are enabled for all
|
|
* internal interrupts.
|
|
*/
|
|
Status = XIOModule_Start(IOModuleInstancePtr);
|
|
if (Status != XST_SUCCESS)
|
|
{
|
|
return XST_FAILURE;
|
|
}
|
|
|
|
return XST_SUCCESS;
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
/**
|
|
* This function is the handler which performs processing for the IO module.
|
|
* It is called from an interrupt context such that the amount of processing
|
|
* performed should be minimized. It is called when an interrupt occurs
|
|
* if interrupts are enabled.
|
|
*
|
|
* This handler provides an example of how to handle Programmable Interval
|
|
* Timer interrupts but is application specific.
|
|
*
|
|
* @param CallBackRef is a pointer to the callback function
|
|
* @param Timer is the number of the interrupt this handler is
|
|
* associated with.
|
|
*
|
|
* @return None.
|
|
*
|
|
* @note None.
|
|
*
|
|
******************************************************************************/
|
|
void IOModuleHandler(void *CallBackRef, u8 Timer)
|
|
{
|
|
XIOModule *InstancePtr = (XIOModule *)CallBackRef;
|
|
|
|
/*
|
|
* Check if the Programmable Interval Timer has expired, checking is not
|
|
* necessary since that's the reason this function is executed, this just
|
|
* shows how the callback reference can be used as a pointer to the
|
|
* instance of the IO Module that had a timer that expired, increment a
|
|
* shared variable so the main thread of execution can see the timer
|
|
* expired.
|
|
*/
|
|
if (XIOModule_IsExpired(InstancePtr, Timer)) {
|
|
TimerExpired[Timer]++;
|
|
if(TimerExpired[Timer] == MAX_INTR_COUNT) {
|
|
XIOModule_Timer_SetOptions(InstancePtr, Timer, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
/**
|
|
* This function initializes and enables exception handling for interrupts in
|
|
* the processor.
|
|
*
|
|
* @param IOModuleInstancePtr is the reference to the IO Module instance.
|
|
*
|
|
* @return None.
|
|
*
|
|
* @note None.
|
|
*
|
|
******************************************************************************/
|
|
void IOModuleSetupIntrSystem(XIOModule *IOModuleInstancePtr)
|
|
{
|
|
/*
|
|
* Initialize the exception table.
|
|
*/
|
|
Xil_ExceptionInit();
|
|
|
|
/*
|
|
* Register the IO module interrupt handler with the exception table.
|
|
*/
|
|
Xil_ExceptionRegisterHandler(XIL_EXCEPTION_ID_INT,
|
|
(Xil_ExceptionHandler)XIOModule_DeviceInterruptHandler,
|
|
(void*) 0);
|
|
|
|
/*
|
|
* Enable exceptions.
|
|
*/
|
|
Xil_ExceptionEnable();
|
|
}
|
|
|
|
/******************************************************************************/
|
|
/**
|
|
*
|
|
* This function disables the interrupts for the IO Module.
|
|
*
|
|
* @param IOModuleInstancePtr is a reference to the IO Module driver
|
|
* Instance.
|
|
*
|
|
* @return None.
|
|
*
|
|
* @note None.
|
|
*
|
|
******************************************************************************/
|
|
void IOModuleDisableIntr(XIOModule *IOModuleInstancePtr)
|
|
{
|
|
u8 Timer;
|
|
|
|
/*
|
|
* Disable the interrupts
|
|
*/
|
|
for (Timer = 0; Timer < XTC_DEVICE_TIMER_COUNT; Timer++)
|
|
{
|
|
XIOModule_Disable(IOModuleInstancePtr,
|
|
Timer + XIN_IOMODULE_PIT_1_INTERRUPT_INTR);
|
|
}
|
|
}
|