/****************************************************************************** * * Copyright (C) 2006 - 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 xiic_dynamic_eeprom_example.c * * This file consists of a Interrupt mode design example which uses the Xilinx * IIC device and XIic driver to exercise the EEPROM in Dynamic controller mode. * The XIic driver uses the complete FIFO functionality to transmit/receive data. * * This example writes/reads from the lower 256 bytes of the IIC EEPROMS. Please * refer to the datasheets of the IIC EEPROM's for details about the internal * addressing and page size of these devices. * * The XIic_DynMasterSend() API is used to transmit the data and * XIic_DynMasterRecv() API is used to receive the data. * * This example is tested on ML300/ML310/ML403/ML501/ML507/ML510/ML605/SP601 and * SP605 Xilinx boards. * * The ML310/ML410/ML510 boards have a on-board 64 Kb serial IIC EEPROM * (Microchip 24LC64A). The WP pin of the IIC EEPROM is hardwired to ground on * this board. * * The ML300 board has an on-board 32 Kb serial IIC EEPROM(Microchip 24LC32A). * The WP pin of the IIC EEPROM has to be connected to ground for this example. * The WP is connected to pin Y3 of the FPGA. * * The ML403 board has an on-board 4 Kb serial IIC EEPROM(Microchip 24LC04A). * The WP pin of the IIC EEPROM is hardwired to ground on this board. * * The ML501/ML505/ML507/ML605/SP601/SP605 boards have an on-board 8 Kb serial * IIC EEPROM(STM M24C08). The WP pin of the IIC EEPROM is hardwired to ground * on these boards. * * The AddressType for ML300/ML310/ML410/ML510 boards should be u16 as the * address pointer in the on board EEPROM is 2 bytes. * * The AddressType for ML403/ML501/ML505/ML507/ML605/SP601/SP605 boards should * be u8 as the address pointer for the on board EEPROM is 1 byte. * * The 7 bit IIC Slave address of the IIC EEPROM on the ML300/ML310/ML403/ML410/ * ML501/ML505/ML507/ML510 boards is 0x50. * The 7 bit IIC Slave address of the IIC EEPROM on the ML605/SP601/SP605 boards * is 0x54. * Refer to the User Guide's of the respective boards for further information * about the IIC slave address of IIC EEPROM's. * * The define EEPROM_ADDRESS in this file needs to be changed depending on * the board on which this example is to be run. * * This code assumes that no Operating System is being used. * * @note * * None. * *
* MODIFICATION HISTORY: * * Ver Who Date Changes * ----- ---- -------- --------------------------------------------------------- * 1.00a mta 04/13/06 Created. * 2.00a ktn 11/17/09 Updated to use the HAL APIs. * 2.01a ktn 03/17/10 Updated the information about the EEPROM's used on * ML605/SP601/SP605 boards. Updated the example so that it * can be used to access the entire IIC EEPROM for devices * like M24C04/M24C08 that use LSB bits of the IIC device * select code (IIC slave address) to specify the higher * address bits of the EEPROM internal address. ** ******************************************************************************/ /***************************** Include Files *********************************/ #include "xparameters.h" #include "xiic.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 defined here such that a user can easily * change all the needed parameters in one place. */ #define IIC_DEVICE_ID XPAR_IIC_0_DEVICE_ID #define INTC_DEVICE_ID XPAR_INTC_0_DEVICE_ID #define IIC_INTR_ID XPAR_INTC_0_IIC_0_VEC_ID /* * The following constant defines the address of the IIC Slave device on the * IIC bus. Note that since the address is only 7 bits, this constant is the * address divided by 2. * The 7 bit IIC Slave address of the IIC EEPROM on the ML300/ML310/ML403/ML510/ * ML501/ML505/ML507/ML510 boards is 0x50. The 7 bit IIC Slave address of the * IIC EEPROM on the ML605/SP601/SP605 boards is 0x54. * Please refer the User Guide's of the respective boards for further * information about the IIC slave address of IIC EEPROM's. */ #define EEPROM_ADDRESS 0x50 /* 0xA0 as an 8 bit number. */ /* * The page size determines how much data should be written at a time. * The ML310/ML300 board supports a page size of 32 and 16. * The write function should be called with this as a maximum byte count. */ #define PAGE_SIZE 16 /* * The Starting address in the IIC EEPROM on which this test is performed. */ #define EEPROM_TEST_START_ADDRESS 128 /**************************** Type Definitions *******************************/ /* * The AddressType for ML300/ML310/ML410/ML510 boards should be u16 as the * address pointer in the on board EEPROM is 2 bytes. * The AddressType for ML403/ML501/ML505/ML507/ML605/SP601/SP605 boards should * be u8 as the address pointer in the on board EEPROM is 1 bytes. */ typedef u8 AddressType; /***************** Macros (Inline Functions) Definitions *********************/ /************************** Function Prototypes ******************************/ int IicDynEepromExample(); int DynEepromWriteData(u16 ByteCount); int DynEepromReadData(u8 *BufferPtr, u16 ByteCount); static int SetupInterruptSystem(XIic *IicInstPtr); static void SendHandler(XIic *InstancePtr); static void ReceiveHandler(XIic *InstancePtr); static void StatusHandler(XIic *InstancePtr, int Event); /************************** Variable Definitions *****************************/ XIic IicInstance; /* The instance of the IIC device. */ XIntc InterruptController; /* The instance of the Interrupt Controller. */ /* * Write buffer for writing a page. */ u8 WriteBuffer[sizeof(AddressType) + PAGE_SIZE]; u8 ReadBuffer[PAGE_SIZE]; /* Read buffer for reading a page. */ volatile u8 TransmitComplete; /* Flag to check completion of Transmission */ volatile u8 ReceiveComplete; /* Flag to check completion of Reception */ u8 EepromIicAddr; /* Variable for storing Eeprom IIC address */ /************************** Function Definitions *****************************/ /*****************************************************************************/ /** * * Main function to call the Dynamic EEPROM example. * * @param None. * * @return XST_SUCCESS if successful else XST_FAILURE. * * @note None. * ******************************************************************************/ int main(void) { int Status; /* * Run the Dynamic EEPROM example. */ Status = IicDynEepromExample(); if (Status != XST_SUCCESS) { return XST_FAILURE; } return XST_SUCCESS; } /*****************************************************************************/ /** * This function writes, reads, and verifies the data to the IIC EEPROM in * Dynamic controller mode. It does the write as a single page write, performs a * buffered read. * * @param None. * * @return XST_SUCCESS if successful else XST_FAILURE. * * @note None. * ******************************************************************************/ int IicDynEepromExample() { u8 Index; int Status; XIic_Config *ConfigPtr; /* Pointer to configuration data */ AddressType Address = EEPROM_TEST_START_ADDRESS; EepromIicAddr = EEPROM_ADDRESS; /* * Initialize the IIC driver so that it is ready to use. */ ConfigPtr = XIic_LookupConfig(IIC_DEVICE_ID); if (ConfigPtr == NULL) { return XST_FAILURE; } Status = XIic_CfgInitialize(&IicInstance, ConfigPtr, ConfigPtr->BaseAddress); if (Status != XST_SUCCESS) { return XST_FAILURE; } /* * Initialize the Dynamic IIC core. */ Status = XIic_DynamicInitialize(&IicInstance); if (Status != XST_SUCCESS) { return XST_FAILURE; } /* * Setup the Interrupt System. */ Status = SetupInterruptSystem(&IicInstance); if (Status != XST_SUCCESS) { return XST_FAILURE; } /* * Set the Handlers for transmit and reception. */ XIic_SetSendHandler(&IicInstance, &IicInstance, (XIic_Handler) SendHandler); XIic_SetRecvHandler(&IicInstance, &IicInstance, (XIic_Handler) ReceiveHandler); XIic_SetStatusHandler(&IicInstance, &IicInstance, (XIic_StatusHandler) StatusHandler); /* * Initialize the data to write and the read buffer. */ if (sizeof(Address) == 1) { WriteBuffer[0] = (u8) (EEPROM_TEST_START_ADDRESS); EepromIicAddr |= (EEPROM_TEST_START_ADDRESS >> 8) & 0x7; } else { WriteBuffer[0] = (u8) (EEPROM_TEST_START_ADDRESS >> 8); WriteBuffer[1] = (u8) (EEPROM_TEST_START_ADDRESS); ReadBuffer[Index] = 0; } for (Index = 0; Index < PAGE_SIZE; Index++) { WriteBuffer[sizeof(Address) + Index] = 0xFF; ReadBuffer[Index] = 0; } /* * Set the Slave address. */ Status = XIic_SetAddress(&IicInstance, XII_ADDR_TO_SEND_TYPE, EepromIicAddr); if (Status != XST_SUCCESS) { return XST_FAILURE; } /* * Write to the EEPROM. */ Status = DynEepromWriteData(sizeof(Address) + PAGE_SIZE); if (Status != XST_SUCCESS) { return XST_FAILURE; } /* * Read from the EEPROM. */ Status = DynEepromReadData(ReadBuffer, PAGE_SIZE); if (Status != XST_SUCCESS) { return XST_FAILURE; } /* * Verify the data read against the data written. */ for (Index = 0; Index < PAGE_SIZE; Index++) { if (ReadBuffer[Index] != WriteBuffer[Index + sizeof(Address)]) { return XST_FAILURE; } ReadBuffer[Index] = 0; } /* * Initialize the data to write and the read buffer. */ if (sizeof(Address) == 1) { WriteBuffer[0] = (u8) (EEPROM_TEST_START_ADDRESS); } else { WriteBuffer[0] = (u8) (EEPROM_TEST_START_ADDRESS >> 8); WriteBuffer[1] = (u8) (EEPROM_TEST_START_ADDRESS); ReadBuffer[Index] = 0; } for (Index = 0; Index < PAGE_SIZE; Index++) { WriteBuffer[sizeof(Address) + Index] = Index; } /* * Write to the EEPROM. */ Status = DynEepromWriteData(sizeof(Address) + PAGE_SIZE); if (Status != XST_SUCCESS) { return XST_FAILURE; } /* * Read from the EEPROM. */ Status = DynEepromReadData(ReadBuffer, PAGE_SIZE); if (Status != XST_SUCCESS) { return XST_FAILURE; } /* * Verify the data read against the data written. */ for (Index = 0; Index < PAGE_SIZE; Index++) { if (ReadBuffer[Index] != WriteBuffer[Index + sizeof(Address)]) { return XST_FAILURE; } ReadBuffer[Index] = 0; } return XST_SUCCESS; } /*****************************************************************************/ /** * This function writes a buffer of data to the IIC serial EEPROM. * * @param ByteCount contains the number of bytes in the buffer to be * written. * * @return XST_SUCCESS if successful else XST_FAILURE. * * @note The Byte count should not exceed the page size of the EEPROM as * noted by the constant PAGE_SIZE. * ******************************************************************************/ int DynEepromWriteData(u16 ByteCount) { int Status; /* * Set the defaults. */ TransmitComplete = 1; IicInstance.Stats.TxErrors = 0; /* * Start the IIC device. */ Status = XIic_Start(&IicInstance); if (Status != XST_SUCCESS) { return XST_FAILURE; } /* * Send the Data. */ Status = XIic_DynMasterSend(&IicInstance, WriteBuffer, ByteCount); if (Status != XST_SUCCESS) { return XST_FAILURE; } /* * Wait till the transmission is completed. */ while ((TransmitComplete) || (XIic_IsIicBusy(&IicInstance) == TRUE)) { /* * This condition is required to be checked in the case where we * are writing two consecutive buffers of data to the EEPROM. * The EEPROM takes about 2 milliseconds time to update the data * internally after a STOP has been sent on the bus. * A NACK will be generated in the case of a second write before * the EEPROM updates the data internally resulting in a * Transmission Error. */ if (IicInstance.Stats.TxErrors != 0) { /* * Enable the IIC device. */ Status = XIic_Start(&IicInstance); if (Status != XST_SUCCESS) { return XST_FAILURE; } if (!XIic_IsIicBusy(&IicInstance)) { /* * Send the Data. */ Status = XIic_MasterSend(&IicInstance, WriteBuffer, ByteCount); if (Status == XST_SUCCESS) { IicInstance.Stats.TxErrors = 0; } else { } } } } /* * Stop the IIC device. */ Status = XIic_Stop(&IicInstance); if (Status != XST_SUCCESS) { return XST_FAILURE; } return XST_SUCCESS; } /*****************************************************************************/ /** * This function reads data from the IIC serial EEPROM into a specified buffer. * * @param BufferPtr contains the address of the data buffer to be filled. * @param ByteCount contains the number of bytes in the buffer to be read. * * @return XST_SUCCESS if successful else XST_FAILURE. * * @note None. * ******************************************************************************/ int DynEepromReadData(u8 *BufferPtr, u16 ByteCount) { int Status; AddressType Address = EEPROM_TEST_START_ADDRESS; /* * Set the Defaults. */ ReceiveComplete = 1; /* * Position the Pointer in EEPROM. */ Status = DynEepromWriteData(sizeof(Address)); if (Status != XST_SUCCESS) { return XST_FAILURE; } /* * Start the IIC device. */ Status = XIic_Start(&IicInstance); if (Status != XST_SUCCESS) { return XST_FAILURE; } /* * Receive the Data. */ Status = XIic_DynMasterRecv(&IicInstance, BufferPtr, ByteCount); if (Status != XST_SUCCESS) { return XST_FAILURE; } /* * Wait till all the data is received. */ while ((ReceiveComplete) || (XIic_IsIicBusy(&IicInstance) == TRUE)) { } /* * Stop the IIC device. */ Status = XIic_Stop(&IicInstance); if (Status != XST_SUCCESS) { return XST_FAILURE; } return XST_SUCCESS; } /*****************************************************************************/ /** * This function setups the interrupt system so interrupts can occur for the * IIC device. The function is application-specific since the actual system may * or may not have an interrupt controller. The IIC device could be directly * connected to a processor without an interrupt controller. The user should * modify this function to fit the application. * * @param IicInstPtr contains a pointer to the instance of the IIC device * which is going to be connected to the interrupt controller. * * @return XST_SUCCESS if successful else XST_FAILURE. * * @note None. * ******************************************************************************/ static int SetupInterruptSystem(XIic *IicInstPtr) { int Status; if (InterruptController.IsStarted == XIL_COMPONENT_IS_STARTED) { return XST_SUCCESS; } /* * Initialize the interrupt controller driver so that it's ready to use. */ Status = XIntc_Initialize(&InterruptController, INTC_DEVICE_ID); if (Status != XST_SUCCESS) { return XST_FAILURE; } /* * Connect the device driver handler that will be called when an * interrupt for the device occurs, the handler defined above performs * the specific interrupt processing for the device. */ Status = XIntc_Connect(&InterruptController, IIC_INTR_ID, (XInterruptHandler) XIic_InterruptHandler, IicInstPtr); if (Status != XST_SUCCESS) { return XST_FAILURE; } /* * Start the interrupt controller so interrupts are enabled for all * devices that cause interrupts. */ Status = XIntc_Start(&InterruptController, XIN_REAL_MODE); if (Status != XST_SUCCESS) { return XST_FAILURE; } /* * Enable the interrupts for the IIC device. */ XIntc_Enable(&InterruptController, IIC_INTR_ID); /* * 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, &InterruptController); /* * Enable non-critical exceptions. */ Xil_ExceptionEnable(); return XST_SUCCESS; } /*****************************************************************************/ /** * This Send handler is called asynchronously from an interrupt * context and indicates that data in the specified buffer has been sent. * * @param InstancePtr is not used, but contains a pointer to the IIC * device driver instance which the handler is being called for. * * @return None. * * @note None. * ******************************************************************************/ static void SendHandler(XIic *InstancePtr) { TransmitComplete = 0; } /*****************************************************************************/ /** * This Receive handler is called asynchronously from an interrupt * context and indicates that data in the specified buffer has been Received. * * @param InstancePtr is not used, but contains a pointer to the IIC * device driver instance which the handler is being called for. * * @return None. * * @note None. * ******************************************************************************/ static void ReceiveHandler(XIic *InstancePtr) { ReceiveComplete = 0; } /*****************************************************************************/ /** * This Status handler is called asynchronously from an interrupt * context and indicates the events that have occurred. * * @param InstancePtr is a pointer to the IIC driver instance for which * the handler is being called for. * @param Event indicates the condition that has occurred. * * @return None. * * @note None. * ******************************************************************************/ static void StatusHandler(XIic *InstancePtr, int Event) { }