1 /******************************************************************************
3 * Copyright (C) 2010 - 2014 Xilinx, Inc. All rights reserved.
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to deal
7 * in the Software without restriction, including without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 * copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * Use of the Software is limited solely to applications:
16 * (a) running on a Xilinx device, or
17 * (b) that interact with a Xilinx device through a bus or interconnect.
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * XILINX BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
24 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27 * Except as contained in this notice, the name of the Xilinx shall not be used
28 * in advertising or otherwise to promote the sale, use or other dealings in
29 * this Software without prior written authorization from Xilinx.
31 ******************************************************************************/
32 /*****************************************************************************/
35 * @file xttcps_options.c
37 * This file contains functions to get or set option features for the device.
40 * MODIFICATION HISTORY:
42 * Ver Who Date Changes
43 * ----- ------ -------- ---------------------------------------------
44 * 1.00a drg/jz 01/21/10 First release
45 * 1.01a nm 03/05/2012 Removed break statement after return to remove
46 * compilation warnings.
49 ******************************************************************************/
51 /***************************** Include Files *********************************/
55 /************************** Constant Definitions *****************************/
58 /**************************** Type Definitions *******************************/
61 /***************** Macros (Inline Functions) Definitions *********************/
64 /************************** Function Prototypes ******************************/
67 /************************** Variable Definitions *****************************/
70 * Create the table of options which are processed to get/set the device
71 * options. These options are table driven to allow easy maintenance and
72 * expansion of the options.
80 static OptionsMap TmrCtrOptionsTable[] = {
81 {XTTCPS_OPTION_EXTERNAL_CLK, XTTCPS_CLK_CNTRL_SRC_MASK,
82 XTTCPS_CLK_CNTRL_OFFSET},
83 {XTTCPS_OPTION_CLK_EDGE_NEG, XTTCPS_CLK_CNTRL_EXT_EDGE_MASK,
84 XTTCPS_CLK_CNTRL_OFFSET},
85 {XTTCPS_OPTION_INTERVAL_MODE, XTTCPS_CNT_CNTRL_INT_MASK,
86 XTTCPS_CNT_CNTRL_OFFSET},
87 {XTTCPS_OPTION_DECREMENT, XTTCPS_CNT_CNTRL_DECR_MASK,
88 XTTCPS_CNT_CNTRL_OFFSET},
89 {XTTCPS_OPTION_MATCH_MODE, XTTCPS_CNT_CNTRL_MATCH_MASK,
90 XTTCPS_CNT_CNTRL_OFFSET},
91 {XTTCPS_OPTION_WAVE_DISABLE, XTTCPS_CNT_CNTRL_EN_WAVE_MASK,
92 XTTCPS_CNT_CNTRL_OFFSET},
93 {XTTCPS_OPTION_WAVE_POLARITY, XTTCPS_CNT_CNTRL_POL_WAVE_MASK,
94 XTTCPS_CNT_CNTRL_OFFSET},
97 #define XTTCPS_NUM_TMRCTR_OPTIONS (sizeof(TmrCtrOptionsTable) / \
100 /*****************************************************************************/
103 * This function sets the options for the TTC device.
105 * @param InstancePtr is a pointer to the XTtcPs instance.
106 * @param Options contains the specified options to be set. This is a bit
107 * mask where a 1 means to turn the option on, and a 0 means to
108 * turn the option off. One or more bit values may be contained
109 * in the mask. See the bit definitions named XTTCPS_*_OPTION in
113 * - XST_SUCCESS if options are successfully set.
114 * - XST_FAILURE if any of the options are unknown.
118 ******************************************************************************/
119 int XTtcPs_SetOptions(XTtcPs *InstancePtr, u32 Options)
125 Xil_AssertNonvoid(InstancePtr != NULL);
126 Xil_AssertNonvoid(InstancePtr->IsReady == XIL_COMPONENT_IS_READY);
128 ClockReg = XTtcPs_ReadReg(InstancePtr->Config.BaseAddress,
129 XTTCPS_CLK_CNTRL_OFFSET);
130 CountReg = XTtcPs_ReadReg(InstancePtr->Config.BaseAddress,
131 XTTCPS_CNT_CNTRL_OFFSET);
134 * Loop through the options table, turning the option on or off
135 * depending on whether the bit is set in the incoming options flag.
137 for (Index = 0; Index < XTTCPS_NUM_TMRCTR_OPTIONS; Index++) {
138 if (Options & TmrCtrOptionsTable[Index].Option) {
140 switch (TmrCtrOptionsTable[Index].Register) {
142 case XTTCPS_CLK_CNTRL_OFFSET:
144 ClockReg |= TmrCtrOptionsTable[Index].Mask;
147 case XTTCPS_CNT_CNTRL_OFFSET:
149 CountReg |= TmrCtrOptionsTable[Index].Mask;
157 switch (TmrCtrOptionsTable[Index].Register) {
159 case XTTCPS_CLK_CNTRL_OFFSET:
161 ClockReg &= ~TmrCtrOptionsTable[Index].Mask;
164 case XTTCPS_CNT_CNTRL_OFFSET:
166 CountReg &= ~TmrCtrOptionsTable[Index].Mask;
176 * Now write the registers. Leave it to the upper layers to restart the
179 XTtcPs_WriteReg(InstancePtr->Config.BaseAddress,
180 XTTCPS_CLK_CNTRL_OFFSET, ClockReg);
181 XTtcPs_WriteReg(InstancePtr->Config.BaseAddress,
182 XTTCPS_CNT_CNTRL_OFFSET, CountReg);
187 /*****************************************************************************/
190 * This function gets the settings for the options for the TTC device.
192 * @param InstancePtr is a pointer to the XTtcPs instance.
196 * The return u32 contains the specified options that are set. This is a bit
197 * mask where a '1' means the option is on, and a'0' means the option is off.
198 * One or more bit values may be contained in the mask. See the bit definitions
199 * named XTTCPS_*_OPTION in the file xttcps.h.
203 ******************************************************************************/
204 u32 XTtcPs_GetOptions(XTtcPs *InstancePtr)
210 Xil_AssertNonvoid(InstancePtr != NULL);
211 Xil_AssertNonvoid(InstancePtr->IsReady == XIL_COMPONENT_IS_READY);
215 * Loop through the options table to determine which options are set
217 for (Index = 0; Index < XTTCPS_NUM_TMRCTR_OPTIONS; Index++) {
219 * Get the control register to determine which options are
222 Register = XTtcPs_ReadReg(InstancePtr->Config.BaseAddress,
223 TmrCtrOptionsTable[Index].
226 if (Register & TmrCtrOptionsTable[Index].Mask) {
227 OptionsFlag |= TmrCtrOptionsTable[Index].Option;