/****************************************************************************** * * Copyright (C) 2010 - 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 xscutimer.c * * Contains the implementation of interface functions of the SCU Timer driver. * See xscutimer.h for a description of the driver. * *
* MODIFICATION HISTORY:
*
* Ver   Who Date     Changes
* ----- --- -------- ---------------------------------------------
* 1.00a nm  03/10/10 First release
* 
* ******************************************************************************/ /***************************** Include Files *********************************/ #include "xscutimer.h" /************************** Constant Definitions *****************************/ /**************************** Type Definitions *******************************/ /***************** Macros (Inline Functions) Definitions *********************/ /************************** Function Prototypes ******************************/ /************************** Variable Definitions *****************************/ /****************************************************************************/ /** * * Initialize a specific timer instance/driver. This function must be called * before other functions of the driver are called. * * @param InstancePtr is a pointer to the XScuTimer instance. * @param ConfigPtr points to the XScuTimer configuration structure. * @param EffectiveAddress is the base address for the device. It could be * a virtual address if address translation is supported in the * system, otherwise it is the physical address. * * @return * - XST_SUCCESS if initialization was successful. * - XST_DEVICE_IS_STARTED if the device has already been started. * * @note None. * ******************************************************************************/ int XScuTimer_CfgInitialize(XScuTimer *InstancePtr, XScuTimer_Config *ConfigPtr, u32 EffectiveAddress) { Xil_AssertNonvoid(InstancePtr != NULL); Xil_AssertNonvoid(ConfigPtr != NULL); /* * If the device is started, disallow the initialize and return a * status indicating it is started. This allows the user to stop the * device and reinitialize, but prevents a user from inadvertently * initializing. */ if (InstancePtr->IsStarted == XIL_COMPONENT_IS_STARTED) { return XST_DEVICE_IS_STARTED; } /* * Copy configuration into the instance structure. */ InstancePtr->Config.DeviceId = ConfigPtr->DeviceId; /* * Save the base address pointer such that the registers of the block * can be accessed and indicate it has not been started yet. */ InstancePtr->Config.BaseAddr = EffectiveAddress; InstancePtr->IsStarted = 0; /* * Indicate the instance is ready to use, successfully initialized. */ InstancePtr->IsReady = XIL_COMPONENT_IS_READY; return XST_SUCCESS; } /****************************************************************************/ /** * * Start the timer. * * @param InstancePtr is a pointer to the XScuTimer instance. * * @return None. * * @note None. * ******************************************************************************/ void XScuTimer_Start(XScuTimer *InstancePtr) { u32 Register; Xil_AssertVoid(InstancePtr != NULL); Xil_AssertVoid(InstancePtr->IsReady == XIL_COMPONENT_IS_READY); /* * Read the contents of the Control register. */ Register = XScuTimer_ReadReg(InstancePtr->Config.BaseAddr, XSCUTIMER_CONTROL_OFFSET); /* * Set the 'timer enable' bit in the register. */ Register |= XSCUTIMER_CONTROL_ENABLE_MASK; /* * Update the Control register with the new value. */ XScuTimer_WriteReg(InstancePtr->Config.BaseAddr, XSCUTIMER_CONTROL_OFFSET, Register); /* * Indicate that the device is started. */ InstancePtr->IsStarted = XIL_COMPONENT_IS_STARTED; } /****************************************************************************/ /** * * Stop the timer. * * @param InstancePtr is a pointer to the XScuTimer instance. * * @return None. * * @note None. * ******************************************************************************/ void XScuTimer_Stop(XScuTimer *InstancePtr) { u32 Register; Xil_AssertVoid(InstancePtr != NULL); Xil_AssertVoid(InstancePtr->IsReady == XIL_COMPONENT_IS_READY); /* * Read the contents of the Control register. */ Register = XScuTimer_ReadReg(InstancePtr->Config.BaseAddr, XSCUTIMER_CONTROL_OFFSET); /* * Clear the 'timer enable' bit in the register. */ Register &= ~XSCUTIMER_CONTROL_ENABLE_MASK; /* * Update the Control register with the new value. */ XScuTimer_WriteReg(InstancePtr->Config.BaseAddr, XSCUTIMER_CONTROL_OFFSET, Register); /* * Indicate that the device is stopped. */ InstancePtr->IsStarted = 0; } /*****************************************************************************/ /** * * This function sets the prescaler bits in the timer control register. * * @param InstancePtr is a pointer to the XScuTimer instance. * @param PrescalerValue is a 8 bit value that sets the prescaler to use. * * @return None * * @note None * ****************************************************************************/ void XScuTimer_SetPrescaler(XScuTimer *InstancePtr, u8 PrescalerValue) { u32 ControlReg; /* * Assert to validate input arguments. */ Xil_AssertVoid(InstancePtr != NULL); Xil_AssertVoid(InstancePtr->IsReady == XIL_COMPONENT_IS_READY); /* * Read the Timer control register. */ ControlReg = XScuTimer_ReadReg(InstancePtr->Config.BaseAddr, XSCUTIMER_CONTROL_OFFSET); /* * Clear all of the prescaler control bits in the register. */ ControlReg &= ~XSCUTIMER_CONTROL_PRESCALER_MASK; /* * Set the prescaler value. */ ControlReg |= (PrescalerValue << XSCUTIMER_CONTROL_PRESCALER_SHIFT); /* * Write the register with the new values. */ XScuTimer_WriteReg(InstancePtr->Config.BaseAddr, XSCUTIMER_CONTROL_OFFSET, ControlReg); } /*****************************************************************************/ /** * * This function returns the current prescaler value. * * @param InstancePtr is a pointer to the XScuTimer instance. * * @return The prescaler value. * * @note None. * ****************************************************************************/ u8 XScuTimer_GetPrescaler(XScuTimer *InstancePtr) { u32 ControlReg; /* * Assert to validate input arguments. */ Xil_AssertNonvoid(InstancePtr != NULL); Xil_AssertNonvoid(InstancePtr->IsReady == XIL_COMPONENT_IS_READY); /* * Read the Timer control register. */ ControlReg = XScuTimer_ReadReg(InstancePtr->Config.BaseAddr, XSCUTIMER_CONTROL_OFFSET); ControlReg &= XSCUTIMER_CONTROL_PRESCALER_MASK; return (ControlReg >> XSCUTIMER_CONTROL_PRESCALER_SHIFT); }