📄 xiicps_hw.h
字号:
/* $Id: xiicps_hw.h,v 1.1.2.1 2011/01/20 03:45:04 sadanan Exp $ *//******************************************************************************** (c) Copyright 2010 Xilinx, Inc. All rights reserved.** This file contains confidential and proprietary information of Xilinx, Inc.* and is protected under U.S. and international copyright and other* intellectual property laws.** DISCLAIMER* This disclaimer is not a license and does not grant any rights to the* materials distributed herewith. Except as otherwise provided in a valid* license issued to you by Xilinx, and to the maximum extent permitted by* applicable law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND WITH ALL* FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS,* IMPLIED, OR STATUTORY, INCLUDING BUT NOT LIMITED TO WARRANTIES OF* MERCHANTABILITY, NON-INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE;* and (2) Xilinx shall not be liable (whether in contract or tort, including* negligence, or under any other theory of liability) for any loss or damage* of any kind or nature related to, arising under or in connection with these* materials, including for any direct, or any indirect, special, incidental,* or consequential loss or damage (including loss of data, profits, goodwill,* or any type of loss or damage suffered as a result of any action brought by* a third party) even if such damage or loss was reasonably foreseeable or* Xilinx had been advised of the possibility of the same.** CRITICAL APPLICATIONS* Xilinx products are not designed or intended to be fail-safe, or for use in* any application requiring fail-safe performance, such as life-support or* safety devices or systems, Class III medical devices, nuclear facilities,* applications related to the deployment of airbags, or any other applications* that could lead to death, personal injury, or severe property or* environmental damage (individually and collectively, "Critical* Applications"). Customer assumes the sole risk and liability of any use of* Xilinx products in Critical Applications, subject only to applicable laws* and regulations governing limitations on product liability.** THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS PART OF THIS FILE* AT ALL TIMES.*******************************************************************************//*****************************************************************************//**** @file xiicps_hw.h** This header file contains the hardware definition for an IIC device.* It includes register definitions and interface functions to read/write* the registers.** <pre>* MODIFICATION HISTORY:** Ver Who Date Changes* ----- ------ -------- -----------------------------------------------* 1.00a drg/jz 01/30/10 First release* </pre>*******************************************************************************/#ifndef XIICPS_HW_H /* prevent circular inclusions */#define XIICPS_HW_H /* by using protection macros */#ifdef __cplusplusextern "C" {#endif/***************************** Include Files *********************************/#include "xil_types.h"#include "xil_assert.h"#include "xil_io.h"/************************** Constant Definitions *****************************//** @name Register Map * * Register offsets for the IIC. * @{ */#define XIICPS_CR_OFFSET 0x00 /**< 32-bit Control */#define XIICPS_SR_OFFSET 0x04 /**< Status */#define XIICPS_ADDR_OFFSET 0x08 /**< IIC Address */#define XIICPS_DATA_OFFSET 0x0C /**< IIC FIFO Data */#define XIICPS_ISR_OFFSET 0x10 /**< Interrupt Status */#define XIICPS_TRANS_SIZE_OFFSET 0x14 /**< Transfer Size */#define XIICPS_SLV_PAUSE_OFFSET 0x18 /**< Slave monitor pause */#define XIICPS_TIME_OUT_OFFSET 0x1C /**< Time Out */#define XIICPS_IMR_OFFSET 0x20 /**< Interrupt Enabled Mask */#define XIICPS_IER_OFFSET 0x24 /**< Interrupt Enable */#define XIICPS_IDR_OFFSET 0x28 /**< Interrupt Disable *//* @} *//** @name Control Register * * This register contains various control bits that * affects the operation of the IIC controller. Read/Write. * @{ */#define XIICPS_CR_DIV_A_MASK 0x0000C000 /**< Clock Divisor A */#define XIICPS_CR_DIV_A_SHIFT 14 /**< Clock Divisor A shift */#define XIICPS_DIV_A_MAX 4 /**< Maximum value of Divisor A */#define XIICPS_CR_DIV_B_MASK 0x00003F00 /**< Clock Divisor B */#define XIICPS_CR_DIV_B_SHIFT 8 /**< Clock Divisor B shift */#define XIICPS_CR_CLR_FIFO_MASK 0x00000040 /**< Clear FIFO, auto clears*/#define XIICPS_CR_SLVMON_MASK 0x00000020 /**< Slave monitor mode */#define XIICPS_CR_HOLD_MASK 0x00000010 /**< Hold bus 1=Hold scl, 0=terminate transfer */#define XIICPS_CR_ACKEN_MASK 0x00000008 /**< Enable TX of ACK when Master receiver*/#define XIICPS_CR_NEA_MASK 0x00000004 /**< Addressing Mode 1=7 bit, 0=10 bit */#define XIICPS_CR_MS_MASK 0x00000002 /**< Master mode bit 1=Master, 0=Slave */#define XIICPS_CR_RD_WR_MASK 0x00000001 /**< Read or Write Master transfer 0=Transmitter, 1=Receiver*/#define XIICPS_CR_RESET_VALUE 0 /**< Reset value of the Control register *//* @} *//** @name IIC Status Register * * This register is used to indicate status of the IIC controller. Read only * @{ */#define XIICPS_SR_BA_MASK 0x00000100 /**< Bus Active Mask */#define XIICPS_SR_RXOVF_MASK 0x00000080 /**< Receiver Overflow Mask */#define XIICPS_SR_TXDV_MASK 0x00000040 /**< Transmit Data Valid Mask */#define XIICPS_SR_RXDV_MASK 0x00000020 /**< Receiver Data Valid Mask */#define XIICPS_SR_RXRW_MASK 0x00000008 /**< Receive read/write Mask *//* @} *//** @name IIC Address Register * * Normal addressing mode uses add[6:0]. Extended addressing mode uses add[9:0]. * A write access to this register always initiates a transfer if the IIC is in * master mode. Read/Write * @{ */#define XIICPS_ADDR_MASK 0x000003FF /**< IIC Address Mask *//* @} *//** @name IIC Data Register * * When written to, the data register sets data to transmit. When read from, the * data register reads the last received byte of data. Read/Write * @{ */#define XIICPS_DATA_MASK 0x000000FF /**< IIC Data Mask *//* @} *//** @name IIC Interrupt Registers * * <b>IIC Interrupt Status Register</b> * * This register holds the interrupt status flags for the IIC controller. Some * of the flags are level triggered * - i.e. are set as long as the interrupt condition exists. Other flags are * edge triggered, which means they are set one the interrupt condition occurs * then remain set until they are cleared by software. * The interrupts are cleared by writing a one to the interrupt bit position * in the Interrupt Status Register. Read/Write. * * <b>IIC Interrupt Enable Register</b> * * This register is used to enable interrupt sources for the IIC controller. * Writing a '1' to a bit in this register clears the corresponding bit in the * IIC Interrupt Mask register. Write only. * * <b>IIC Interrupt Disable Register </b> * * This register is used to disable interrupt sources for the IIC controller. * Writing a '1' to a bit in this register sets the corresponding bit in the * IIC Interrupt Mask register. Write only. * * <b>IIC Interrupt Mask Register</b> * * This register shows the enabled/disabled status of each IIC controller * interrupt source. A bit set to 1 will ignore the corresponding interrupt in * the status register. A bit set to 0 means the interrupt is enabled. * All mask bits are set and all interrupts are disabled after reset. Read only. * * All four registers have the same bit definitions. They are only defined once * for each of the Interrupt Enable Register, Interrupt Disable Register, * Interrupt Mask Register, and Interrupt Status Register * @{ */#define XIICPS_IXR_ARB_LOST_MASK 0x00000200 /**< Arbitration Lost Interrupt mask */#define XIICPS_IXR_RX_UNF_MASK 0x00000080 /**< FIFO Recieve Underflow Interrupt mask */#define XIICPS_IXR_TX_OVR_MASK 0x00000040 /**< Transmit Overflow Interrupt mask */#define XIICPS_IXR_RX_OVR_MASK 0x00000020 /**< Receive Overflow Interrupt mask */#define XIICPS_IXR_SLV_RDY_MASK 0x00000010 /**< Monitored Slave Ready Interrupt mask */#define XIICPS_IXR_TO_MASK 0x00000008 /**< Transfer Time Out Interrupt mask */#define XIICPS_IXR_NACK_MASK 0x00000004 /**< NACK Interrupt mask */#define XIICPS_IXR_DATA_MASK 0x00000002 /**< Data Interrupt mask */#define XIICPS_IXR_COMP_MASK 0x00000001 /**< Transfer Complete Interrupt mask */#define XIICPS_IXR_DEFAULT_MASK 0x000002FF /**< Default ISR Mask */#define XIICPS_IXR_ALL_INTR_MASK 0x000002FF /**< All ISR Mask *//* @} *//** @name IIC Transfer Size Register** The register's meaning varies according to the operating mode as follows:* - Master transmitter mode: number of data bytes still not transmitted minus* one* - Master receiver mode: number of data bytes that are still expected to be* received* - Slave transmitter mode: number of bytes remaining in the FIFO after the* master terminates the transfer* - Slave receiver mode: number of valid data bytes in the FIFO** This register is cleared if CLR_FIFO bit in the control register is set.* Read/Write* @{*/#define XIICPS_TRANS_SIZE_MASK 0x0000003F /**< IIC Transfer Size Mask */#define XIICPS_FIFO_DEPTH 16 /**< Number of bytes in the FIFO */#define XIICPS_DATA_INTR_DEPTH 14 /**< Number of bytes at DATA intr *//* @} *//** @name IIC Slave Monitor Pause Register** This register is associated with the slave monitor mode of the I2C interface.* It is meaningful only when the module is in master mode and bit SLVMON in the* control register is set.** This register defines the pause interval between consecutive attempts to* address the slave once a write to an I2C address register is done by the* host. It represents the number of sclk cycles minus one between two attempts.** The reset value of the register is 0, which results in the master repeatedly* trying to access the slave immediately after unsuccessful attempt.* Read/Write* @{*/#define XIICPS_SLV_PAUSE_MASK 0x0000000F /**< Slave monitor pause mask *//* @} *//** @name IIC Time Out Register** The value of time out register represents the time out interval in number of* sclk cycles minus one.** When the accessed slave holds the sclk line low for longer than the time out* period, thus prohibiting the I2C interface in master mode to complete the* current transfer, an interrupt is generated and TO interrupt flag is set.** The reset value of the register is 0x1f.* Read/Write* @{ */#define XIICPS_TIME_OUT_MASK 0x000000FF /**< IIC Time Out mask */#define XIICPS_TO_RESET_VALUE 0x0000001F /**< IIC Time Out reset value *//* @} *//**************************** Type Definitions *******************************//***************** Macros (Inline Functions) Definitions *********************/#define XIicPs_In32 Xil_In32#define XIicPs_Out32 Xil_Out32/****************************************************************************//*** Read an IIC register.** @param BaseAddress contains the base address of the device.* @param RegOffset contains the offset from the 1st register of the* device to select the specific register.** @return The value read from the register.** @note C-Style signature:* u32 XIicPs_ReadReg(u32 BaseAddress. int RegOffset)*******************************************************************************/#define XIicPs_ReadReg(BaseAddress, RegOffset) \ XIicPs_In32((BaseAddress) + (RegOffset))/***************************************************************************//*** Write an IIC register.** @param BaseAddress contains the base address of the device.* @param RegOffset contains the offset from the 1st register of the* device to select the specific register.* @param RegisterValue is the value to be written to the register.** @return None.** @note C-Style signature:* void XIicPs_WriteReg(u32 BaseAddress, int RegOffset, u32 RegisterValue)*******************************************************************************/#define XIicPs_WriteReg(BaseAddress, RegOffset, RegisterValue) \ XIicPs_Out32((BaseAddress) + (RegOffset), (RegisterValue))/***************************************************************************//*** Read the interrupt enable register.** @param BaseAddress contains the base address of the device.** @return Current bit mask that represents currently enabled interrupts.** @note C-Style signature:* u32 XIicPs_ReadIER(u32 BaseAddress)*******************************************************************************/#define XIicPs_ReadIER(BaseAddress) \ XIicPs_ReadReg((BaseAddress), XIICPS_IER_OFFSET)/***************************************************************************//*** Write to the interrupt enable register.** @param BaseAddress contains the base address of the device.** @param IntrMask is the interrupts to be enabled.** @return None.** @note C-Style signature:* void XIicPs_EnabledInterrupts(u32 BaseAddress, u32 IntrMask)*******************************************************************************/#define XIicPs_EnableInterrupts(BaseAddress, IntrMask) \ XIicPs_WriteReg((BaseAddress), XIICPS_IER_OFFSET, (IntrMask))/***************************************************************************//*** Disable all interrupts.** @param BaseAddress contains the base address of the device.** @return None.** @note C-Style signature:* void XIicPs_DisableAllInterrupts(u32 BaseAddress)*******************************************************************************/#define XIicPs_DisableAllInterrupts(BaseAddress) \ XIicPs_WriteReg((BaseAddress), XIICPS_IDR_OFFSET, \ XIICPS_IXR_ALL_INTR_MASK)/***************************************************************************//*** Disable selected interrupts.** @param BaseAddress contains the base address of the device.** @param IntrMask is the interrupts to be disabled.** @return None.** @note C-Style signature:* void XIicPs_DisableInterrupts(u32 BaseAddress, u32 IntrMask)*******************************************************************************/#define XIicPs_DisableInterrupts(BaseAddress, IntrMask) \ XIicPs_WriteReg((BaseAddress), XIICPS_IDR_OFFSET, \ (IntrMask))/************************** Function Prototypes ******************************//************************** Variable Definitions *****************************/#ifdef __cplusplus}#endif#endif /* end of protection macro */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -