 |
AM261x MCU+ SDK
26.00.00
|
|
Go to the documentation of this file.
69 #include <drivers/i2c/v1/cslr_i2c.h>
70 #include <drivers/hw_include/hw_types.h>
71 #include <drivers/hw_include/cslr_i2c.h>
84 #define I2C_STS_SUCCESS ((int32_t) 0)
87 #define I2C_STS_ERR ((int32_t)-1)
90 #define I2C_STS_ERR_TIMEOUT ((int32_t)-2)
92 #define I2C_STS_ERR_INVALID_PARAM ((int32_t)-3)
94 #define I2C_STS_ERR_BUS_BUSY ((int32_t)-4)
97 #define I2C_STS_ERR_NO_ACK ((int32_t)-5)
100 #define I2C_STS_ERR_ARBITRATION_LOST ((int32_t)-6)
102 #define I2C_STS_RESTART ((int32_t)-7)
114 #define I2C_NO_WAIT ((uint32_t)0)
117 #define I2C_WAIT_FOREVER ((uint32_t)-1)
127 #define I2C_STATE_RESET ((uint8_t) 0U)
130 #define I2C_STATE_IDLE ((uint8_t) 1U)
133 #define I2C_STATE_BUSY ((uint8_t) 2U)
136 #define I2C_STATE_ERROR ((uint8_t) 3U)
148 #define I2C_100KHZ ((uint8_t) 0U)
150 #define I2C_400KHZ ((uint8_t) 1U)
161 #define I2C_MEM_ADDR_SIZE_8_BITS ((uint8_t) 1U)
163 #define I2C_MEM_ADDR_SIZE_16_BITS ((uint8_t) 2U)
174 #define I2C_WRITE_STATE ((uint8_t) 10U)
176 #define I2C_READ_STATE ((uint8_t) 11U)
178 #define I2C_TARGET_XFER_STATE ((uint8_t) 12U)
180 #define I2C_TARGET_RESTART_STATE ((uint8_t) 13U)
190 #define I2C_CFG_MASK_TX (CSL_I2C_ICMDR_TRX_MASK)
191 #define I2C_CFG_MASK_RX (CSL_I2C_ICMDR_TRX_MASK)
192 #define I2C_CFG_MASK_STOP (CSL_I2C_ICMDR_STP_MASK)
193 #define I2C_CFG_MASK_START (CSL_I2C_ICMDR_STT_MASK)
194 #define I2C_CFG_MASK_RUN_FREE (CSL_I2C_ICMDR_FREE_MASK)
195 #define I2C_CFG_MASK_REPEAT_MODE (CSL_I2C_ICMDR_RM_MASK)
196 #define I2C_CFG_MASK_LOOP_BACK (CSL_I2C_ICMDR_DLB_MASK)
197 #define I2C_CFG_MASK_XA (CSL_I2C_ICMDR_XA_MASK)
199 #define I2C_CFG_CMD_TX (CSL_I2C_ICMDR_TRX_MASK)
200 #define I2C_CFG_CMD_RX (0U)
201 #define I2C_CFG_CMD_STOP (CSL_I2C_ICMDR_STP_MASK)
202 #define I2C_CFG_CMD_START (CSL_I2C_ICMDR_STT_MASK)
203 #define I2C_CFG_CMD_RUN_FREE_ON (CSL_I2C_ICMDR_FREE_MASK)
204 #define I2C_CFG_CMD_RUN_FREE_OFF (0U)
205 #define I2C_CFG_CMD_REPEAT_MODE_ON (CSL_I2C_ICMDR_RM_MASK)
206 #define I2C_CFG_CMD_REPEAT_MODE_OFF (0U)
207 #define I2C_CFG_CMD_LOOP_BACK_ON (CSL_I2C_ICMDR_DLB_MASK)
208 #define I2C_CFG_CMD_LOOP_BACK_OFF (0U)
209 #define I2C_CFG_CMD_10BIT_ADDRESS (I2C_CFG_MASK_XA)
210 #define I2C_CFG_CMD_7BIT_ADDRESS (0U)
221 #define I2C_INT_ARBITRATION_LOST (CSL_I2C_ICSTR_AL_MASK)
222 #define I2C_INT_NO_ACK (CSL_I2C_ICSTR_NACK_MASK)
223 #define I2C_INT_ADRR_READY_ACESS (CSL_I2C_ICSTR_ARDY_MASK)
224 #define I2C_INT_RECV_READY (CSL_I2C_ICSTR_ICRRDY_MASK)
225 #define I2C_INT_TRANSMIT_READY (CSL_I2C_ICSTR_ICXRDY_MASK)
226 #define I2C_INT_STOP_CONDITION (CSL_I2C_ICSTR_SCD_MASK)
227 #define I2C_INT_ADRR_ZERO (CSL_I2C_ICSTR_AD0_MASK)
228 #define I2C_INT_ADRR_TARGET (CSL_I2C_ICSTR_AAS_MASK)
229 #define I2C_INT_TRANSMIT_UNDER_FLOW (CSL_I2C_ICSTR_XSMT_MASK)
230 #define I2C_INT_RECV_OVER_RUN (CSL_I2C_ICSTR_RSFULL_MASK)
231 #define I2C_INT_BUS_BUSY (CSL_I2C_ICSTR_BB_MASK)
232 #define I2C_INT_NO_ACK_SENT (CSL_I2C_ICSTR_NACKSNT_MASK)
233 #define I2C_INT_TARGET_DIRECTION (CSL_I2C_ICSTR_SDIR_MASK)
235 #define I2C_ALL_INTS ( I2C_INT_ARBITRATION_LOST | \
237 I2C_INT_ADRR_READY_ACESS | \
238 I2C_INT_RECV_READY | \
239 I2C_INT_TRANSMIT_READY | \
240 I2C_INT_STOP_CONDITION | \
241 I2C_INT_ADRR_ZERO | \
242 I2C_INT_ADRR_TARGET | \
243 I2C_INT_TRANSMIT_UNDER_FLOW | \
244 I2C_INT_RECV_OVER_RUN | \
246 I2C_INT_NO_ACK_SENT | \
247 I2C_INT_TARGET_DIRECTION \
250 #define I2C_INT_MASK_ARBITRATION_LOST (CSL_I2C_ICIMR_AL_MASK)
251 #define I2C_INT_MASK_NO_ACK (CSL_I2C_ICIMR_NACK_MASK)
252 #define I2C_INT_MASK_ADRR_READY_ACESS (CSL_I2C_ICIMR_ARDY_MASK)
253 #define I2C_INT_MASK_RECV_READY (CSL_I2C_ICIMR_ICRRDY_MASK)
254 #define I2C_INT_MASK_TRANSMIT_READY (CSL_I2C_ICIMR_ICXRDY_MASK)
255 #define I2C_INT_MASK_STOP_CONDITION (CSL_I2C_ICIMR_SCD_MASK)
256 #define I2C_INT_MASK_ADRR_TARGET (CSL_I2C_ICIMR_AAS_MASK)
258 #define I2C_ALL_INTS_MASK ( I2C_INT_MASK_ARBITRATION_LOST | \
259 I2C_INT_MASK_NO_ACK | \
260 I2C_INT_MASK_ADRR_READY_ACESS | \
261 I2C_INT_MASK_RECV_READY | \
262 I2C_INT_MASK_TRANSMIT_READY | \
263 I2C_INT_MASK_STOP_CONDITION | \
264 I2C_INT_MASK_ADRR_TARGET \
439 int32_t transferStatus);
452 int32_t transferStatus);
I2C_Clock_getTicks Clock_getTicks
Definition: i2c_lld.h:478
int32_t I2C_lld_target_readIntr(I2CLLD_Handle handle, I2C_ExtendedParams *extendedParams)
API to initiate an I2C read operation in interrupt mode as I2C Target.
void I2CControllerStart(uint32_t baseAddr)
void I2CTargetEnable(uint32_t baseAddr)
void * args
Definition: hsmclient_msg.h:4
uint32_t startTicks
Definition: i2c_lld.h:514
I2CLLD_Transaction * txn
Definition: i2c_lld.h:308
uint32_t readCount
Definition: i2c_lld.h:292
int32_t I2C_lld_Transaction_init(I2CLLD_Transaction *transaction)
API to set default values of I2CLLD_Transaction in transaction.
I2CLLD_targetTransaction * currentTargetTransaction
Definition: i2c_lld.h:504
void I2CControllerControl(uint32_t baseAddr, uint32_t ctrlMask, uint32_t ctrlCmds)
uint32_t writeCountIdx
Definition: i2c_lld.h:508
uint8_t * writeBuf
Definition: i2c_lld.h:381
uint8_t * writeBufIdx
Definition: i2c_lld.h:506
uint32_t writeCount
Definition: i2c_lld.h:383
int32_t I2C_lld_Message_init(I2CLLD_Message *msg)
API to set default values of I2CLLD_Message in msg.
uint32_t readCount
Definition: i2c_lld.h:387
void I2CControllerTargetAddrSet(uint32_t baseAddr, uint32_t targetAddr)
uint32_t targetAddress
Definition: i2c_lld.h:315
void(* I2C_lld_targetTransferCompleteCallback)(void *args, const I2CLLD_targetTransaction *targetTxn, int32_t transferStatus)
The definition of a transfer completion callback function used by the I2C driver when used in Target ...
Definition: i2c_lld.h:450
int32_t I2C_lld_write(I2CLLD_Handle handle, I2C_ExtendedParams *extendedParams, uint32_t timeout)
API to initiate an I2C write operation in polled mode as I2C Controller.
uint32_t funcClk
Definition: i2c_lld.h:474
void I2CModeControl(uint32_t baseAddr, uint32_t ctrlMask, uint32_t ctrlCmds)
I2C Message.
Definition: i2c_lld.h:305
I2C_Clock_uSleep Clock_uSleep
Definition: i2c_lld.h:482
void I2CControllerIntEnableEx(uint32_t baseAddr, uint32_t intFlag)
uint32_t memAddr
Definition: i2c_lld.h:354
void * arg
Definition: i2c_lld.h:317
uint8_t * readBuf
Definition: i2c_lld.h:385
int32_t I2C_lld_read(I2CLLD_Handle handle, I2C_ExtendedParams *extendedParams, uint32_t timeout)
API to initiate an I2C read operation in polled mode as I2C Controller.
int32_t I2C_lld_target_writeIntr(I2CLLD_Handle handle, I2C_ExtendedParams *extendedParams)
API to Initiate an I2C write operation in interrupt mode as I2C Target.
uint8_t * writeBuf
Definition: i2c_lld.h:286
void(* I2C_lld_transferCompleteCallback)(void *args, const I2CLLD_Message *msg, int32_t transferStatus)
The definition of a transfer completion callback function used by the I2C driver when used in Control...
Definition: i2c_lld.h:437
uint8_t * readBuf
Definition: i2c_lld.h:290
uint32_t timeout
Definition: i2c_lld.h:319
I2CLLD_Transaction i2ctxn
Definition: i2c_lld.h:520
uint32_t ownTargetAddr
Definition: i2c_lld.h:476
bool expandSA
Definition: i2c_lld.h:324
int32_t I2C_lld_readIntr(I2CLLD_Handle handle, I2C_ExtendedParams *extendedParams)
API to initiate an I2C read operation in interrupt mode as I2C Controller.
bool expandSA
Definition: i2c_lld.h:340
I2CLLD_Message * currentMsg
Definition: i2c_lld.h:502
I2C Transaction.
Definition: i2c_lld.h:283
uint8_t * buffer
Definition: i2c_lld.h:336
int32_t I2C_lld_mem_read(I2CLLD_Handle handle, I2C_Memory_ExtendedParams *mem_extendedParams, uint32_t timeout)
API to initiate a Memory read operation in Polled mode.
int32_t I2C_lld_mem_write(I2CLLD_Handle handle, I2C_Memory_ExtendedParams *mem_extendedParams, uint32_t timeout)
API to initiate a Memory write Operation in polling Mode.
uint32_t timeout
Definition: i2c_lld.h:389
uint8_t * dataArray
Definition: i2c_lld.h:522
uint32_t intrNum
Definition: i2c_lld.h:470
void I2CControllerIntClearEx(uint32_t baseAddr, uint32_t intFlag)
uint32_t baseAddr
Definition: i2c_lld.h:468
int32_t I2C_lld_transferIntr(I2CLLD_Handle handle, I2CLLD_Message *msg)
API to initiate a transfer from I2C in interrupt mode.
bool expandSA
Definition: i2c_lld.h:392
void I2C_lld_targetIsr(void *args)
I2C Target ISR, can be used as IRQ handler in Target mode.
uint32_t txnCount
Definition: i2c_lld.h:310
int32_t I2C_lld_transferPoll(I2CLLD_Handle handle, I2CLLD_Message *msg)
API to initiate a transfer from I2C in polled mode.
uint32_t readCountIdx
Definition: i2c_lld.h:512
int32_t I2C_lld_init(I2CLLD_Handle handle)
API to Initializes the I2C instance.
I2C_lld_transferCompleteCallback transferCompleteCallback
Definition: i2c_lld.h:484
I2C_ExtendedParams extendedParams
Definition: i2c_lld.h:352
uint32_t writeCount
Definition: i2c_lld.h:288
uint32_t(* I2C_Clock_getTicks)(void)
The definition of a get System Tick function used by the I2C driver to keep track of time.
Definition: i2c_lld.h:407
bool memTxnActive
Definition: i2c_lld.h:529
uint8_t memAddrSize
Definition: i2c_lld.h:526
bool controllerMode
Definition: i2c_lld.h:321
uint32_t(* I2C_Clock_usecToTicks)(uint64_t usecs)
The definition of a micro seconds to ticks function used by the I2C driver to get ticks from microsec...
Definition: i2c_lld.h:418
Data structure used with I2C_lld_mem_write(), I2C_lld_mem_writeIntr(), I2C_lld_mem_read(),...
Definition: i2c_lld.h:350
uint32_t deviceAddress
Definition: i2c_lld.h:334
int32_t I2C_lld_writeIntr(I2CLLD_Handle handle, I2C_ExtendedParams *extendedParams)
API to initiate an I2C write operation in interrupt mode as I2C Controller.
void(* I2C_Clock_uSleep)(uint32_t usec)
The definition of a sleep function used by the I2C driver for delay.
Definition: i2c_lld.h:427
uint32_t intStatusErr
Definition: i2c_lld.h:495
Data structure used with I2C_lld_write(), I2C_lld_writeIntr(), I2C_lld_read(), I2C_lld_readIntr()
Definition: i2c_lld.h:332
void I2CSetDataCount(uint32_t baseAddr, uint32_t count)
int32_t I2C_lld_mem_readIntr(I2CLLD_Handle handle, I2C_Memory_ExtendedParams *mem_extendedParams)
API to initiate a Memory read operation in interrupt mode.
uint8_t * readBufIdx
Definition: i2c_lld.h:510
uint8_t bitRate
Definition: i2c_lld.h:472
int32_t I2C_lld_probe(I2CLLD_Handle handle, uint32_t targetAddr)
API to probe I2C.
int32_t I2C_lld_setBusFrequency(I2CLLD_Handle handle, uint32_t busFrequency)
API to set the bus frequency.
int32_t I2C_lld_mem_writeIntr(I2CLLD_Handle handle, I2C_Memory_ExtendedParams *mem_extendedParams)
API to initiate a Memory write operation in interrupt Mode.
void I2C_lld_controllerIsr(void *args)
I2C Controller ISR, can be used as IRQ handler in Controller mode.
I2C_lld_targetTransferCompleteCallback targetTransferCompleteCallback
Definition: i2c_lld.h:486
int32_t I2C_lld_deInit(I2CLLD_Handle handle)
API to De-Initializes the I2C instance.
uint8_t state
Definition: i2c_lld.h:493
uint32_t size
Definition: i2c_lld.h:338
I2CLLD_targetTransaction i2cTargetTransaction
Definition: i2c_lld.h:531
I2C Driver Object.
Definition: i2c_lld.h:461
int32_t I2C_lld_target_write(I2CLLD_Handle handle, I2C_ExtendedParams *extendedParams, uint32_t timeout)
API to initiate an I2C write operation in polled mode as I2C Target.
I2C_Clock_usecToTicks Clock_usecToTicks
Definition: i2c_lld.h:480
I2CLLD_Message i2cMsg
Definition: i2c_lld.h:518
I2C Target Transaction.
Definition: i2c_lld.h:378
int32_t I2C_lld_target_read(I2CLLD_Handle handle, I2C_ExtendedParams *extendedParams, uint32_t timeout)
API to initiate an I2C read Operation in polled mode as I2C Target.
void * args
Definition: i2c_lld.h:533
struct I2CLLD_Object * I2CLLD_Handle
int32_t I2C_lld_targetTransferIntr(I2CLLD_Handle handle, I2CLLD_targetTransaction *txn)
API to initiate a transfer from I2C in interrupt mode as target.
uint8_t memAddrSize
Definition: i2c_lld.h:356
uint32_t currentTxnCount
Definition: i2c_lld.h:516