1 /******************************************************************************
3 * Copyright (C) 2010 - 2015 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 /*****************************************************************************/
36 * @addtogroup iicps_v3_0
39 * Contains implementation of required functions for the XIicPs driver.
40 * See xiicps.h for detailed description of the device and driver.
42 * <pre> MODIFICATION HISTORY:
44 * Ver Who Date Changes
45 * ----- ------ -------- --------------------------------------------
46 * 1.00a drg/jz 01/30/10 First release
47 * 1.00a sdm 09/21/11 Updated the InstancePtr->Options in the
48 * XIicPs_CfgInitialize by calling XIicPs_GetOptions.
49 * 2.1 hk 04/25/14 Explicitly reset CR and clear FIFO in Abort function
50 * and state the same in the comments. CR# 784254.
51 * Fix for CR# 761060 - provision for repeated start.
52 * 2.3 sk 10/07/14 Repeated start feature removed.
53 * 3.0 sk 11/03/14 Modified TimeOut Register value to 0xFF
55 * 12/06/14 Implemented Repeated start feature.
56 * 01/31/15 Modified the code according to MISRAC 2012 Compliant.
60 ******************************************************************************/
62 /***************************** Include Files *********************************/
66 /************************** Constant Definitions *****************************/
68 /**************************** Type Definitions *******************************/
70 /***************** Macros (Inline Functions) Definitions *********************/
72 /************************** Function Prototypes ******************************/
74 static void StubHandler(void *CallBackRef, u32 StatusEvent);
76 /************************** Variable Definitions *****************************/
79 /*****************************************************************************/
82 * Initializes a specific XIicPs instance such that the driver is ready to use.
84 * The state of the device after initialization is:
85 * - Device is disabled
88 * @param InstancePtr is a pointer to the XIicPs instance.
89 * @param ConfigPtr is a reference to a structure containing information
90 * about a specific IIC device. This function initializes an
91 * InstancePtr object for a specific device specified by the
93 * @param EffectiveAddr is the device base address in the virtual memory
94 * address space. The caller is responsible for keeping the address
95 * mapping from EffectiveAddr to the device physical base address
96 * unchanged once this function is invoked. Unexpected errors may
97 * occur if the address mapping changes after this function is
98 * called. If address translation is not used, use
99 * ConfigPtr->BaseAddress for this parameter, passing the physical
102 * @return The return value is XST_SUCCESS if successful.
106 ******************************************************************************/
107 s32 XIicPs_CfgInitialize(XIicPs *InstancePtr, XIicPs_Config *ConfigPtr,
111 * Assert validates the input arguments.
113 Xil_AssertNonvoid(InstancePtr != NULL);
114 Xil_AssertNonvoid(ConfigPtr != NULL);
117 * Set some default values.
119 InstancePtr->Config.DeviceId = ConfigPtr->DeviceId;
120 InstancePtr->Config.BaseAddress = EffectiveAddr;
121 InstancePtr->Config.InputClockHz = ConfigPtr->InputClockHz;
122 InstancePtr->StatusHandler = StubHandler;
123 InstancePtr->CallBackRef = NULL;
125 InstancePtr->IsReady = (u32)XIL_COMPONENT_IS_READY;
128 * Reset the IIC device to get it into its initial state. It is expected
129 * that device configuration will take place after this initialization
130 * is done, but before the device is started.
132 XIicPs_Reset(InstancePtr);
135 * Keep a copy of what options this instance has.
137 InstancePtr->Options = XIicPs_GetOptions(InstancePtr);
139 /* Initialize repeated start flag to 0 */
140 InstancePtr->IsRepeatedStart = 0;
142 return (s32)XST_SUCCESS;
145 /*****************************************************************************/
147 * Check whether the I2C bus is busy
149 * @param InstancePtr is a pointer to the XIicPs instance.
152 * - TRUE if the bus is busy.
153 * - FALSE if the bus is not busy.
157 ******************************************************************************/
158 s32 XIicPs_BusIsBusy(XIicPs *InstancePtr)
163 StatusReg = XIicPs_ReadReg(InstancePtr->Config.BaseAddress,
165 if ((StatusReg & XIICPS_SR_BA_MASK) != 0x0U) {
173 /*****************************************************************************/
176 * This is a stub for the status callback. The stub is here in case the upper
177 * layers forget to set the handler.
179 * @param CallBackRef is a pointer to the upper layer callback reference.
180 * @param StatusEvent is the event that just occurred.
181 * @param ByteCount is the number of bytes transferred up until the event
188 ******************************************************************************/
189 static void StubHandler(void *CallBackRef, u32 StatusEvent)
191 (void) ((void *)CallBackRef);
193 Xil_AssertVoidAlways();
197 /*****************************************************************************/
200 * Aborts a transfer in progress by resetting the FIFOs. The byte counts are
203 * @param InstancePtr is a pointer to the XIicPs instance.
209 ******************************************************************************/
210 void XIicPs_Abort(XIicPs *InstancePtr)
215 Xil_AssertVoid(InstancePtr != NULL);
216 Xil_AssertVoid(InstancePtr->IsReady == (u32)XIL_COMPONENT_IS_READY);
219 * Enter a critical section, so disable the interrupts while we clear
220 * the FIFO and the status register.
222 IntrMaskReg = XIicPs_ReadReg(InstancePtr->Config.BaseAddress,
224 XIicPs_WriteReg(InstancePtr->Config.BaseAddress,
225 XIICPS_IDR_OFFSET, XIICPS_IXR_ALL_INTR_MASK);
228 * Reset the settings in config register and clear the FIFOs.
230 XIicPs_WriteReg(InstancePtr->Config.BaseAddress, XIICPS_CR_OFFSET,
231 XIICPS_CR_RESET_VALUE | XIICPS_CR_CLR_FIFO_MASK);
234 * Read, then write the interrupt status to make sure there are no
235 * pending interrupts.
237 IntrStatusReg = XIicPs_ReadReg(InstancePtr->Config.BaseAddress,
239 XIicPs_WriteReg(InstancePtr->Config.BaseAddress,
240 XIICPS_ISR_OFFSET, IntrStatusReg);
243 * Restore the interrupt state.
245 IntrMaskReg = XIICPS_IXR_ALL_INTR_MASK & (~IntrMaskReg);
246 XIicPs_WriteReg(InstancePtr->Config.BaseAddress,
247 XIICPS_IER_OFFSET, IntrMaskReg);
251 /*****************************************************************************/
254 * Resets the IIC device. Reset must only be called after the driver has been
255 * initialized. The configuration of the device after reset is the same as its
256 * configuration after initialization. Any data transfer that is in progress is
259 * The upper layer software is responsible for re-configuring (if necessary)
260 * and reenabling interrupts for the IIC device after the reset.
262 * @param InstancePtr is a pointer to the XIicPs instance.
268 ******************************************************************************/
269 void XIicPs_Reset(XIicPs *InstancePtr)
272 Xil_AssertVoid(InstancePtr != NULL);
273 Xil_AssertVoid(InstancePtr->IsReady == (u32)XIL_COMPONENT_IS_READY);
276 * Abort any transfer that is in progress.
278 XIicPs_Abort(InstancePtr);
281 * Reset any values so the software state matches the hardware device.
283 XIicPs_WriteReg(InstancePtr->Config.BaseAddress, XIICPS_CR_OFFSET,
284 XIICPS_CR_RESET_VALUE);
285 XIicPs_WriteReg(InstancePtr->Config.BaseAddress,
286 XIICPS_TIME_OUT_OFFSET, XIICPS_TO_RESET_VALUE);
287 XIicPs_WriteReg(InstancePtr->Config.BaseAddress, XIICPS_IDR_OFFSET,
288 XIICPS_IXR_ALL_INTR_MASK);
291 /*****************************************************************************/
293 * Put more data into the transmit FIFO, number of bytes is ether expected
294 * number of bytes for this transfer or available space in FIFO, which ever
297 * @param InstancePtr is a pointer to the XIicPs instance.
299 * @return Number of bytes left for this instance.
301 * @note This is function is shared by master and slave.
303 ******************************************************************************/
304 s32 TransmitFifoFill(XIicPs *InstancePtr)
311 * Determine number of bytes to write to FIFO.
313 AvailBytes = (u8)XIICPS_FIFO_DEPTH -
314 (u8)XIicPs_ReadReg(InstancePtr->Config.BaseAddress,
315 XIICPS_TRANS_SIZE_OFFSET);
317 if (InstancePtr->SendByteCount > (s32)AvailBytes) {
318 NumBytesToSend = (s32)AvailBytes;
320 NumBytesToSend = InstancePtr->SendByteCount;
324 * Fill FIFO with amount determined above.
326 for (LoopCnt = 0; LoopCnt < NumBytesToSend; LoopCnt++) {
327 XIicPs_SendByte(InstancePtr);
330 return InstancePtr->SendByteCount;