
Added initial support Xilinx Embedded Software. Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
451 lines
14 KiB
C
Executable file
451 lines
14 KiB
C
Executable file
/******************************************************************************
|
|
*
|
|
* Copyright (C) 2012 - 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 xtmrctr_fast_intr_example.c
|
|
*
|
|
* This file contains a design example using the timer counter driver
|
|
* (XTmCtr) and hardware device using fast interrupt mode.This example assumes
|
|
* that the interrupt controller is also present as a part of the system
|
|
*
|
|
*
|
|
* <pre>
|
|
* MODIFICATION HISTORY:
|
|
*
|
|
* Ver Who Date Changes
|
|
* ----- ---- -------- -----------------------------------------------
|
|
* 1.00a bss 07/31/12 First release
|
|
*
|
|
*</pre>
|
|
******************************************************************************/
|
|
|
|
/***************************** Include Files *********************************/
|
|
|
|
#include "xparameters.h"
|
|
#include "xtmrctr.h"
|
|
#include "xintc.h"
|
|
#include "xil_exception.h"
|
|
|
|
/************************** 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.
|
|
*/
|
|
#define TMRCTR_DEVICE_ID XPAR_TMRCTR_0_DEVICE_ID
|
|
#define INTC_DEVICE_ID XPAR_INTC_0_DEVICE_ID
|
|
#define TMRCTR_INTERRUPT_ID XPAR_INTC_0_TMRCTR_0_VEC_ID
|
|
|
|
/*
|
|
* The following constant determines which timer counter of the device that is
|
|
* used for this example, there are currently 2 timer counters in a device
|
|
* and this example uses the first one, 0, the timer numbers are 0 based
|
|
*/
|
|
#define TIMER_CNTR_0 0
|
|
|
|
|
|
/*
|
|
* The following constant is used to set the reset value of the timer counter,
|
|
* making this number larger reduces the amount of time this example consumes
|
|
* because it is the value the timer counter is loaded with when it is started
|
|
*/
|
|
#define RESET_VALUE 0xF0000000
|
|
|
|
/**************************** Type Definitions *******************************/
|
|
|
|
|
|
/***************** Macros (Inline Functions) Definitions *********************/
|
|
|
|
|
|
/************************** Function Prototypes ******************************/
|
|
|
|
int TmrCtrFastIntrExample(XIntc* IntcInstancePtr,
|
|
XTmrCtr* InstancePtr,
|
|
u16 DeviceId,
|
|
u16 IntrId,
|
|
u8 TmrCtrNumber);
|
|
|
|
static int TmrCtrSetupIntrSystem(XIntc* IntcInstancePtr,
|
|
XTmrCtr* InstancePtr,
|
|
u16 DeviceId,
|
|
u16 IntrId,
|
|
u8 TmrCtrNumber);
|
|
|
|
void TimerCounterHandler(void *CallBackRef, u8 TmrCtrNumber);
|
|
|
|
void TmrCtrDisableIntr(XIntc* IntcInstancePtr, u16 IntrId);
|
|
|
|
void TmrCtr_FastHandler(void) __attribute__ ((fast_interrupt));
|
|
|
|
/************************** Variable Definitions *****************************/
|
|
|
|
XIntc InterruptController; /* The instance of the Interrupt Controller */
|
|
XTmrCtr TimerCounterInst; /* The instance of the Timer Counter */
|
|
|
|
/*
|
|
* The following variables are shared between non-interrupt processing and
|
|
* interrupt processing such that they must be global.
|
|
*/
|
|
volatile int TimerExpired;
|
|
|
|
|
|
/*****************************************************************************/
|
|
/**
|
|
* This is the main function of the Tmrctr example using Fast Interrupt feature
|
|
* in MicroBlaze and Intc controller.
|
|
*
|
|
* @param None.
|
|
*
|
|
* @return - XST_SUCCESS to indicate success.
|
|
* - XST_FAILURE to indicate a failure.
|
|
*
|
|
* @note None.
|
|
*
|
|
******************************************************************************/
|
|
|
|
int main(void)
|
|
{
|
|
|
|
int Status;
|
|
|
|
/*
|
|
* Run the Timer Counter Fast Interrupt example.
|
|
*/
|
|
Status = TmrCtrFastIntrExample(&InterruptController,
|
|
&TimerCounterInst,
|
|
TMRCTR_DEVICE_ID,
|
|
TMRCTR_INTERRUPT_ID,
|
|
TIMER_CNTR_0);
|
|
|
|
if (Status != XST_SUCCESS) {
|
|
return XST_FAILURE;
|
|
}
|
|
|
|
return XST_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
/*****************************************************************************/
|
|
/**
|
|
* This function does a minimal test on the timer counter device and driver as a
|
|
* design example. The purpose of this function is to illustrate how to use the
|
|
* XTmrCtr component. It initializes a timer counter 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 timer counter.
|
|
*
|
|
* @param IntcInstancePtr is a pointer to the Interrupt Controller
|
|
* driver Instance
|
|
* @param TmrCtrInstancePtr is a pointer to the XTmrCtr driver Instance
|
|
* @param DeviceId is the XPAR_<TmrCtr_instance>_DEVICE_ID value from
|
|
* xparameters.h
|
|
* @param IntrId is XPAR_<INTC_instance>_<TmrCtr_instance>_VEC_ID
|
|
* value from xparameters.h
|
|
* @param TmrCtrNumber is the number of the timer to which this
|
|
* handler is associated with.
|
|
*
|
|
* @return
|
|
* - XST_SUCCESS if the Test is successful
|
|
* - XST_FAILURE if the Test is not successful
|
|
*
|
|
* @note This function contains an infinite loop such that if interrupts
|
|
* are not working it may never return.
|
|
*
|
|
*****************************************************************************/
|
|
int TmrCtrFastIntrExample(XIntc* IntcInstancePtr,
|
|
XTmrCtr* TmrCtrInstancePtr,
|
|
u16 DeviceId,
|
|
u16 IntrId,
|
|
u8 TmrCtrNumber)
|
|
{
|
|
int Status;
|
|
int LastTimerExpired = 0;
|
|
|
|
/*
|
|
* Initialize the timer counter so that it's ready to use,
|
|
* specify the device ID that is generated in xparameters.h
|
|
*/
|
|
Status = XTmrCtr_Initialize(TmrCtrInstancePtr, DeviceId);
|
|
if (Status != XST_SUCCESS) {
|
|
return XST_FAILURE;
|
|
}
|
|
|
|
/*
|
|
* Perform a self-test to ensure that the hardware was built
|
|
* correctly, use the 1st timer in the device (0)
|
|
*/
|
|
Status = XTmrCtr_SelfTest(TmrCtrInstancePtr, TmrCtrNumber);
|
|
if (Status != XST_SUCCESS) {
|
|
return XST_FAILURE;
|
|
}
|
|
|
|
/*
|
|
* Connect the timer counter to the interrupt subsystem such that
|
|
* interrupts can occur. This function is application specific.
|
|
*/
|
|
Status = TmrCtrSetupIntrSystem(IntcInstancePtr,
|
|
TmrCtrInstancePtr,
|
|
DeviceId,
|
|
IntrId,
|
|
TmrCtrNumber);
|
|
if (Status != XST_SUCCESS) {
|
|
return XST_FAILURE;
|
|
}
|
|
|
|
/*
|
|
* Setup the handler for the timer counter that will be called from the
|
|
* interrupt context when the timer expires, specify a pointer to the
|
|
* timer counter driver instance as the callback reference so the
|
|
* handler is able to access the instance data
|
|
*/
|
|
XTmrCtr_SetHandler(TmrCtrInstancePtr, TimerCounterHandler,
|
|
TmrCtrInstancePtr);
|
|
|
|
/*
|
|
* Enable the interrupt of the timer counter so interrupts will occur
|
|
* and use auto reload mode such that the timer counter will reload
|
|
* itself automatically and continue repeatedly, without this option
|
|
* it would expire once only
|
|
*/
|
|
XTmrCtr_SetOptions(TmrCtrInstancePtr, TmrCtrNumber,
|
|
XTC_INT_MODE_OPTION | XTC_AUTO_RELOAD_OPTION);
|
|
|
|
/*
|
|
* Set a reset value for the timer counter such that it will expire
|
|
* eariler than letting it roll over from 0, the reset value is loaded
|
|
* into the timer counter when it is started
|
|
*/
|
|
XTmrCtr_SetResetValue(TmrCtrInstancePtr, TmrCtrNumber, RESET_VALUE);
|
|
|
|
/*
|
|
* Start the timer counter such that it's incrementing by default,
|
|
* then wait for it to timeout a number of times
|
|
*/
|
|
XTmrCtr_Start(TmrCtrInstancePtr, TmrCtrNumber);
|
|
|
|
while (1) {
|
|
/*
|
|
* Wait for the first timer counter to expire as indicated by
|
|
* the shared variable which the handler will increment
|
|
*/
|
|
while (TimerExpired == LastTimerExpired) {
|
|
}
|
|
LastTimerExpired = TimerExpired;
|
|
|
|
/*
|
|
* If it has expired a number of times, then stop the timer
|
|
* counter and stop this example
|
|
*/
|
|
if (TimerExpired == 3) {
|
|
|
|
XTmrCtr_Stop(TmrCtrInstancePtr, TmrCtrNumber);
|
|
break;
|
|
}
|
|
}
|
|
|
|
TmrCtrDisableIntr(IntcInstancePtr, DeviceId);
|
|
return XST_SUCCESS;
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
/**
|
|
* This function is the handler which performs processing for the timer counter.
|
|
* It is called from an interrupt context such that the amount of processing
|
|
* performed should be minimized. It is called when the timer counter expires
|
|
* if interrupts are enabled.
|
|
*
|
|
* This handler provides an example of how to handle timer counter interrupts
|
|
* but is application specific.
|
|
*
|
|
* @param CallBackRef is a pointer to the callback function
|
|
* @param TmrCtrNumber is the number of the timer to which this
|
|
* handler is associated with.
|
|
*
|
|
* @return None.
|
|
*
|
|
* @note None.
|
|
*
|
|
******************************************************************************/
|
|
void TimerCounterHandler(void *CallBackRef, u8 TmrCtrNumber)
|
|
{
|
|
XTmrCtr *InstancePtr = (XTmrCtr *)CallBackRef;
|
|
|
|
/*
|
|
* Check if the timer counter 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 timer counter that expired, increment a shared variable so
|
|
* the main thread of execution can see the timer expired
|
|
*/
|
|
if (XTmrCtr_IsExpired(InstancePtr, TmrCtrNumber)) {
|
|
TimerExpired++;
|
|
if(TimerExpired == 3) {
|
|
XTmrCtr_SetOptions(InstancePtr, TmrCtrNumber, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
/**
|
|
* This function setups the interrupt system such that interrupts can occur
|
|
* for the timer counter. This function is application specific since the actual
|
|
* system may or may not have an interrupt controller. The timer counter 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 Interrupt Controller
|
|
* driver Instance.
|
|
* @param TmrCtrInstancePtr is a pointer to the XTmrCtr driver Instance.
|
|
* @param DeviceId is the XPAR_<TmrCtr_instance>_DEVICE_ID value from
|
|
* xparameters.h.
|
|
* @param IntrId is XPAR_<INTC_instance>_<TmrCtr_instance>_VEC_ID
|
|
* value from xparameters.h.
|
|
* @param TmrCtrNumber is the number of the timer to which this
|
|
* handler is associated with.
|
|
*
|
|
* @return
|
|
* - XST_SUCCESS if the initialization is successful
|
|
* - XST_FAILURE if the initialization is not successful
|
|
*
|
|
* @note None
|
|
*
|
|
*
|
|
******************************************************************************/
|
|
static int TmrCtrSetupIntrSystem(XIntc* IntcInstancePtr,
|
|
XTmrCtr* TmrCtrInstancePtr,
|
|
u16 DeviceId,
|
|
u16 IntrId,
|
|
u8 TmrCtrNumber)
|
|
{
|
|
int Status;
|
|
|
|
/*
|
|
* 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;
|
|
}
|
|
|
|
/*
|
|
* Connect a Fast handler that will be called when an interrupt
|
|
* for the device occurs.
|
|
*/
|
|
Status = XIntc_ConnectFastHandler(IntcInstancePtr, IntrId,
|
|
(XFastInterruptHandler)TmrCtr_FastHandler);
|
|
if (Status != XST_SUCCESS) {
|
|
return XST_FAILURE;
|
|
}
|
|
|
|
/*
|
|
* Start the interrupt controller such that interrupts are enabled for
|
|
* all devices that cause interrupts, specific real mode so that
|
|
* the timer counter can cause interrupts through the
|
|
* interrupt controller.
|
|
*/
|
|
Status = XIntc_Start(IntcInstancePtr, XIN_REAL_MODE);
|
|
if (Status != XST_SUCCESS) {
|
|
return XST_FAILURE;
|
|
}
|
|
|
|
/*
|
|
* Enable the interrupt for the timer counter
|
|
*/
|
|
XIntc_Enable(IntcInstancePtr, IntrId);
|
|
|
|
/*
|
|
* Initialize the exception table.
|
|
*/
|
|
Xil_ExceptionInit();
|
|
|
|
/*
|
|
* Register the interrupt controller handler with the exception table.
|
|
*/
|
|
Xil_ExceptionRegisterHandler(XIL_EXCEPTION_ID_INT,
|
|
(Xil_ExceptionHandler)
|
|
XIntc_InterruptHandler,
|
|
IntcInstancePtr);
|
|
/*
|
|
* Enable non-critical exceptions.
|
|
*/
|
|
Xil_ExceptionEnable();
|
|
|
|
return XST_SUCCESS;
|
|
}
|
|
|
|
|
|
/*****************************************************************************/
|
|
/**
|
|
*
|
|
* This function disables the interrupts for the Timer.
|
|
*
|
|
* @param IntcInstancePtr is a reference to the Interrupt Controller
|
|
* driver Instance.
|
|
* @param IntrId is XPAR_<INTC_instance>_<Timer_instance>_VEC_ID
|
|
* value from xparameters.h.
|
|
*
|
|
* @return None.
|
|
*
|
|
* @note None.
|
|
*
|
|
******************************************************************************/
|
|
void TmrCtrDisableIntr(XIntc* IntcInstancePtr, u16 IntrId)
|
|
{
|
|
/*
|
|
* Disable the interrupt for the timer counter
|
|
*/
|
|
XIntc_Disable(IntcInstancePtr, IntrId);
|
|
|
|
return;
|
|
}
|
|
|
|
|
|
/*****************************************************************************/
|
|
/**
|
|
*
|
|
* This is the Fast Interrupt Handler for the Timer.
|
|
*
|
|
* @return None.
|
|
*
|
|
* @note None.
|
|
*
|
|
****************************************************************************/
|
|
void TmrCtr_FastHandler(void)
|
|
{
|
|
|
|
/* Call the TmrCtr Interrupt handler */
|
|
XTmrCtr_InterruptHandler(&TimerCounterInst);
|
|
}
|