![]() |
Kinetis Bootloader
2.0.0
Common bootloader for Kinetis devices
|
Collaboration diagram for DSPI Peripheral driver:Data Structures | |
| struct | dspi_command_data_config_t |
| DSPI master command date configuration used for SPIx_PUSHR. More... | |
| struct | dspi_master_ctar_config_t |
| DSPI master ctar config structure. More... | |
| struct | dspi_master_config_t |
| DSPI master config structure. More... | |
| struct | dspi_slave_ctar_config_t |
| DSPI slave ctar configuration structure. More... | |
| struct | dspi_slave_config_t |
| DSPI slave configuration structure. More... | |
| struct | dspi_transfer_t |
| DSPI master/slave transfer structure. More... | |
| struct | dspi_master_handle_t |
| DSPI master transfer handle structure used for transactional API. More... | |
| struct | dspi_slave_handle_t |
| DSPI slave transfer handle structure used for transactional API. More... | |
Typedefs | |
| typedef void(* | dspi_master_transfer_callback_t) (SPI_Type *base, dspi_master_handle_t *handle, status_t status, void *userData) |
| Completion callback function pointer type. More... | |
| typedef void(* | dspi_slave_transfer_callback_t) (SPI_Type *base, dspi_slave_handle_t *handle, status_t status, void *userData) |
| Completion callback function pointer type. More... | |
Enumerations | |
| enum | _dspi_status { kStatus_DSPI_Busy = MAKE_STATUS(kStatusGroup_DSPI, 0), kStatus_DSPI_Error = MAKE_STATUS(kStatusGroup_DSPI, 1), kStatus_DSPI_Idle = MAKE_STATUS(kStatusGroup_DSPI, 2), kStatus_DSPI_OutOfRange = MAKE_STATUS(kStatusGroup_DSPI, 3) } |
| Status for the DSPI driver. More... | |
| enum | _dspi_flags { kDSPI_TxCompleteFlag = SPI_SR_TCF_MASK, kDSPI_EndOfQueueFlag = SPI_SR_EOQF_MASK, kDSPI_TxFifoUnderflowFlag = SPI_SR_TFUF_MASK, kDSPI_TxFifoFillRequestFlag = SPI_SR_TFFF_MASK, kDSPI_RxFifoOverflowFlag = SPI_SR_RFOF_MASK, kDSPI_RxFifoDrainRequestFlag = SPI_SR_RFDF_MASK, kDSPI_TxAndRxStatusFlag = SPI_SR_TXRXS_MASK, kDSPI_AllStatusFlag } |
| DSPI status flags in SPIx_SR register. More... | |
| enum | _dspi_interrupt_enable { kDSPI_TxCompleteInterruptEnable = SPI_RSER_TCF_RE_MASK, kDSPI_EndOfQueueInterruptEnable = SPI_RSER_EOQF_RE_MASK, kDSPI_TxFifoUnderflowInterruptEnable = SPI_RSER_TFUF_RE_MASK, kDSPI_TxFifoFillRequestInterruptEnable = SPI_RSER_TFFF_RE_MASK, kDSPI_RxFifoOverflowInterruptEnable = SPI_RSER_RFOF_RE_MASK, kDSPI_RxFifoDrainRequestInterruptEnable = SPI_RSER_RFDF_RE_MASK, kDSPI_AllInterruptEnable } |
| DSPI interrupt source. More... | |
| enum | _dspi_dma_enable { kDSPI_TxDmaEnable = (SPI_RSER_TFFF_RE_MASK | SPI_RSER_TFFF_DIRS_MASK), kDSPI_RxDmaEnable = (SPI_RSER_RFDF_RE_MASK | SPI_RSER_RFDF_DIRS_MASK) } |
| DSPI DMA source. More... | |
| enum | dspi_master_slave_mode_t { kDSPI_Master = 1U, kDSPI_Slave = 0U } |
| DSPI master or slave mode configuration. More... | |
| enum | dspi_master_sample_point_t { kDSPI_SckToSin0Clock = 0U, kDSPI_SckToSin1Clock = 1U, kDSPI_SckToSin2Clock = 2U } |
| DSPI Sample Point: Controls when the DSPI master samples SIN in Modified Transfer Format. This field is valid only when CPHA bit in CTAR register is 0. More... | |
| enum | dspi_which_pcs_t { kDSPI_Pcs0 = 1U << 0, kDSPI_Pcs1 = 1U << 1, kDSPI_Pcs2 = 1U << 2, kDSPI_Pcs3 = 1U << 3, kDSPI_Pcs4 = 1U << 4, kDSPI_Pcs5 = 1U << 5 } |
| DSPI Peripheral Chip Select (Pcs) configuration (which Pcs to configure). More... | |
| enum | dspi_pcs_polarity_config_t { kDSPI_PcsActiveHigh = 0U, kDSPI_PcsActiveLow = 1U } |
| DSPI Peripheral Chip Select (Pcs) Polarity configuration. More... | |
| enum | _dspi_pcs_polarity { kDSPI_Pcs0ActiveLow = 1U << 0, kDSPI_Pcs1ActiveLow = 1U << 1, kDSPI_Pcs2ActiveLow = 1U << 2, kDSPI_Pcs3ActiveLow = 1U << 3, kDSPI_Pcs4ActiveLow = 1U << 4, kDSPI_Pcs5ActiveLow = 1U << 5, kDSPI_PcsAllActiveLow = 0xFFU } |
| DSPI Peripheral Chip Select (Pcs) Polarity. More... | |
| enum | dspi_clock_polarity_t { kDSPI_ClockPolarityActiveHigh = 0U, kDSPI_ClockPolarityActiveLow = 1U } |
| DSPI clock polarity configuration for a given CTAR. More... | |
| enum | dspi_clock_phase_t { kDSPI_ClockPhaseFirstEdge = 0U, kDSPI_ClockPhaseSecondEdge = 1U } |
| DSPI clock phase configuration for a given CTAR. More... | |
| enum | dspi_shift_direction_t { kDSPI_MsbFirst = 0U, kDSPI_LsbFirst = 1U } |
| DSPI data shifter direction options for a given CTAR. More... | |
| enum | dspi_delay_type_t { kDSPI_PcsToSck = 1U, kDSPI_LastSckToPcs, kDSPI_BetweenTransfer } |
| DSPI delay type selection. More... | |
| enum | dspi_ctar_selection_t { kDSPI_Ctar0 = 0U, kDSPI_Ctar1 = 1U, kDSPI_Ctar2 = 2U, kDSPI_Ctar3 = 3U, kDSPI_Ctar4 = 4U, kDSPI_Ctar5 = 5U, kDSPI_Ctar6 = 6U, kDSPI_Ctar7 = 7U } |
| DSPI Clock and Transfer Attributes Register (CTAR) selection. More... | |
| enum | _dspi_transfer_config_flag_for_master { kDSPI_MasterCtar0 = 0U << DSPI_MASTER_CTAR_SHIFT, kDSPI_MasterCtar1 = 1U << DSPI_MASTER_CTAR_SHIFT, kDSPI_MasterCtar2 = 2U << DSPI_MASTER_CTAR_SHIFT, kDSPI_MasterCtar3 = 3U << DSPI_MASTER_CTAR_SHIFT, kDSPI_MasterCtar4 = 4U << DSPI_MASTER_CTAR_SHIFT, kDSPI_MasterCtar5 = 5U << DSPI_MASTER_CTAR_SHIFT, kDSPI_MasterCtar6 = 6U << DSPI_MASTER_CTAR_SHIFT, kDSPI_MasterCtar7 = 7U << DSPI_MASTER_CTAR_SHIFT, kDSPI_MasterPcs0 = 0U << DSPI_MASTER_PCS_SHIFT, kDSPI_MasterPcs1 = 1U << DSPI_MASTER_PCS_SHIFT, kDSPI_MasterPcs2 = 2U << DSPI_MASTER_PCS_SHIFT, kDSPI_MasterPcs3 = 3U << DSPI_MASTER_PCS_SHIFT, kDSPI_MasterPcs4 = 4U << DSPI_MASTER_PCS_SHIFT, kDSPI_MasterPcs5 = 5U << DSPI_MASTER_PCS_SHIFT, kDSPI_MasterPcsContinuous = 1U << 20, kDSPI_MasterActiveAfterTransfer = 1U << 21 } |
| Can use this enum for DSPI master transfer configFlags. More... | |
| enum | _dspi_transfer_config_flag_for_slave { kDSPI_SlaveCtar0 = 0U << DSPI_SLAVE_CTAR_SHIFT } |
| Can use this enum for DSPI slave transfer configFlags. More... | |
| enum | _dspi_transfer_state { kDSPI_Idle = 0x0U, kDSPI_Busy, kDSPI_Error } |
| DSPI transfer state, which is used for DSPI transactiaonl APIs' state machine. More... | |
Initialization and deinitialization | |
| void | DSPI_MasterInit (SPI_Type *base, const dspi_master_config_t *masterConfig, uint32_t srcClock_Hz) |
| Initializes the DSPI master. More... | |
| void | DSPI_MasterGetDefaultConfig (dspi_master_config_t *masterConfig) |
| Sets the dspi_master_config_t structure to default values. More... | |
| void | DSPI_SlaveInit (SPI_Type *base, const dspi_slave_config_t *slaveConfig) |
| DSPI slave configuration. More... | |
| void | DSPI_SlaveGetDefaultConfig (dspi_slave_config_t *slaveConfig) |
| Sets the dspi_slave_config_t structure to default values. More... | |
| void | DSPI_Deinit (SPI_Type *base) |
| De-initializes the DSPI peripheral. Call this API to disable the DSPI clock. More... | |
| static void | DSPI_Enable (SPI_Type *base, bool enable) |
| Enables the DSPI peripheral and sets the MCR MDIS to 0. More... | |
Status | |
| static uint32_t | DSPI_GetStatusFlags (SPI_Type *base) |
| Gets the DSPI status flag state. More... | |
| static void | DSPI_ClearStatusFlags (SPI_Type *base, uint32_t statusFlags) |
| Clears the DSPI status flag. More... | |
Interrupts | |
| void | DSPI_EnableInterrupts (SPI_Type *base, uint32_t mask) |
| Enables the DSPI interrupts. More... | |
| static void | DSPI_DisableInterrupts (SPI_Type *base, uint32_t mask) |
| Disables the DSPI interrupts. More... | |
DMA Control | |
| static void | DSPI_EnableDMA (SPI_Type *base, uint32_t mask) |
| Enables the DSPI DMA request. More... | |
| static void | DSPI_DisableDMA (SPI_Type *base, uint32_t mask) |
| Disables the DSPI DMA request. More... | |
| static uint32_t | DSPI_MasterGetTxRegisterAddress (SPI_Type *base) |
| Gets the DSPI master PUSHR data register address for the DMA operation. More... | |
| static uint32_t | DSPI_SlaveGetTxRegisterAddress (SPI_Type *base) |
| Gets the DSPI slave PUSHR data register address for the DMA operation. More... | |
| static uint32_t | DSPI_GetRxRegisterAddress (SPI_Type *base) |
| Gets the DSPI POPR data register address for the DMA operation. More... | |
Bus Operations | |
| static void | DSPI_SetMasterSlaveMode (SPI_Type *base, dspi_master_slave_mode_t mode) |
| Configures the DSPI for master or slave. More... | |
| static bool | DSPI_IsMaster (SPI_Type *base) |
| Returns whether the DSPI module is in master mode. More... | |
| static void | DSPI_StartTransfer (SPI_Type *base) |
| Starts the DSPI transfers and clears HALT bit in MCR. More... | |
| static void | DSPI_StopTransfer (SPI_Type *base) |
| Stops (halts) DSPI transfers and sets HALT bit in MCR. More... | |
| static void | DSPI_SetFifoEnable (SPI_Type *base, bool enableTxFifo, bool enableRxFifo) |
| Enables (or disables) the DSPI FIFOs. More... | |
| static void | DSPI_FlushFifo (SPI_Type *base, bool flushTxFifo, bool flushRxFifo) |
| Flushes the DSPI FIFOs. More... | |
| static void | DSPI_SetAllPcsPolarity (SPI_Type *base, uint32_t mask) |
| Configures the DSPI peripheral chip select polarity simultaneously. For example, PCS0 and PCS1 set to active low and other PCS set to active high. Note that the number of PCSs is specific to the device. More... | |
| uint32_t | DSPI_MasterSetBaudRate (SPI_Type *base, dspi_ctar_selection_t whichCtar, uint32_t baudRate_Bps, uint32_t srcClock_Hz) |
| Sets the DSPI baud rate in bits per second. More... | |
| void | DSPI_MasterSetDelayScaler (SPI_Type *base, dspi_ctar_selection_t whichCtar, uint32_t prescaler, uint32_t scaler, dspi_delay_type_t whichDelay) |
| Manually configures the delay prescaler and scaler for a particular CTAR. More... | |
| uint32_t | DSPI_MasterSetDelayTimes (SPI_Type *base, dspi_ctar_selection_t whichCtar, dspi_delay_type_t whichDelay, uint32_t srcClock_Hz, uint32_t delayTimeInNanoSec) |
| Calculates the delay prescaler and scaler based on the desired delay input in nanoseconds. More... | |
| static void | DSPI_MasterWriteData (SPI_Type *base, dspi_command_data_config_t *command, uint16_t data) |
| Writes data into the data buffer for master mode. More... | |
| void | DSPI_GetDefaultDataCommandConfig (dspi_command_data_config_t *command) |
| Sets the dspi_command_data_config_t structure to default values. More... | |
| void | DSPI_MasterWriteDataBlocking (SPI_Type *base, dspi_command_data_config_t *command, uint16_t data) |
| Writes data into the data buffer master mode and waits till complete to return. More... | |
| static uint32_t | DSPI_MasterGetFormattedCommand (dspi_command_data_config_t *command) |
| Returns the DSPI command word formatted to the PUSHR data register bit field. More... | |
| void | DSPI_MasterWriteCommandDataBlocking (SPI_Type *base, uint32_t data) |
| Writes a 32-bit data word (16-bit command appended with 16-bit data) into the data buffer, master mode and waits till complete to return. More... | |
| static void | DSPI_SlaveWriteData (SPI_Type *base, uint32_t data) |
| Writes data into the data buffer in slave mode. More... | |
| void | DSPI_SlaveWriteDataBlocking (SPI_Type *base, uint32_t data) |
| Writes data into the data buffer in slave mode, waits till data was transmitted, and returns. More... | |
| static uint32_t | DSPI_ReadData (SPI_Type *base) |
| Reads data from the data buffer. More... | |
Transactional | |
| void | DSPI_MasterTransferCreateHandle (SPI_Type *base, dspi_master_handle_t *handle, dspi_master_transfer_callback_t callback, void *userData) |
| Initializes the DSPI master handle. More... | |
| status_t | DSPI_MasterTransferBlocking (SPI_Type *base, dspi_transfer_t *transfer) |
| DSPI master transfer data using polling. More... | |
| status_t | DSPI_MasterTransferNonBlocking (SPI_Type *base, dspi_master_handle_t *handle, dspi_transfer_t *transfer) |
| DSPI master transfer data using interrupts. More... | |
| status_t | DSPI_MasterTransferGetCount (SPI_Type *base, dspi_master_handle_t *handle, size_t *count) |
| Gets the master transfer count. More... | |
| void | DSPI_MasterTransferAbort (SPI_Type *base, dspi_master_handle_t *handle) |
| DSPI master aborts transfer using an interrupt. More... | |
| void | DSPI_MasterTransferHandleIRQ (SPI_Type *base, dspi_master_handle_t *handle) |
| DSPI Master IRQ handler function. More... | |
| void | DSPI_SlaveTransferCreateHandle (SPI_Type *base, dspi_slave_handle_t *handle, dspi_slave_transfer_callback_t callback, void *userData) |
| Initializes the DSPI slave handle. More... | |
| status_t | DSPI_SlaveTransferNonBlocking (SPI_Type *base, dspi_slave_handle_t *handle, dspi_transfer_t *transfer) |
| DSPI slave transfers data using an interrupt. More... | |
| status_t | DSPI_SlaveTransferGetCount (SPI_Type *base, dspi_slave_handle_t *handle, size_t *count) |
| Gets the slave transfer count. More... | |
| void | DSPI_SlaveTransferAbort (SPI_Type *base, dspi_slave_handle_t *handle) |
| DSPI slave aborts a transfer using an interrupt. More... | |
| void | DSPI_SlaveTransferHandleIRQ (SPI_Type *base, dspi_slave_handle_t *handle) |
| DSPI Master IRQ handler function. More... | |
This section describes the programming interface of the DSPI Peripheral driver. The DSPI driver configures DSPI module, provides the functional and transactional interfaces to build the DSPI application.
This function group initializes the default configuration structure for master and slave, initializes the DSPI master with a master configuration, initializes the DSPI slave with a slave configuration, and de-initializes the DSPI module.
This function group enables/disables the DSPI module both interrupt and DMA, gets the data register address for the DMA transfer, sets master and slave, starts and stops the transfer, and so on.
This function group controls the transfer, master send/receive data, and slave send/receive data.
This function group gets/clears the DSPI status.
This function group transfers a block of data, gets the transfer status, and aborts the transfer.
| struct dspi_command_data_config_t |
DSPI master command date configuration used for SPIx_PUSHR.
| Data Fields | ||
|---|---|---|
| bool | clearTransferCount |
Clears SPI Transfer Counter (SPI_TCNT) before transmission starts. |
| bool | isEndOfQueue |
Signals that the current transfer is the last in the queue. |
| bool | isPcsContinuous |
Option to enable the continuous assertion of chip select between transfers. |
| dspi_ctar_selection_t | whichCtar |
The desired Clock and Transfer Attributes Register (CTAR) to use for CTAS. |
| dspi_which_pcs_t | whichPcs |
The desired Pcs signal to use for the data transfer. |
| struct dspi_master_ctar_config_t |
DSPI master ctar config structure.
| Data Fields | ||
|---|---|---|
| uint32_t | baudRate |
Baud Rate for dspi. |
| uint32_t | betweenTransferDelayInNanoSec |
After SCK delay time with nanosecond , set to 0 will set the minimum delay.It woulde set the boundary value if out of range that can be set. |
| uint32_t | bitsPerFrame |
Bits per frame, minimum 4, maximum 16. |
| dspi_clock_phase_t | cpha |
Clock phase. |
| dspi_clock_polarity_t | cpol |
Clock polarity. |
| dspi_shift_direction_t | direction |
MSB or LSB data shift direction. |
| uint32_t | lastSckToPcsDelayInNanoSec |
Last SCK to PCS delay time with nanosecond , set to 0 will set the minimum delay.It woulde set the boundary value if out of range that can be set. |
| uint32_t | pcsToSckDelayInNanoSec |
PCS to SCK delay time with nanosecond , set to 0 will set the minimum delay.It woulde set the boundary value if out of range that can be set. |
| struct dspi_master_config_t |
DSPI master config structure.
Collaboration diagram for dspi_master_config_t:| Data Fields | ||
|---|---|---|
| dspi_master_ctar_config_t | ctarConfig |
Set the ctarConfig to the desired CTAR. |
| bool | enableContinuousSCK |
CONT_SCKE, ctinuous SCK enable . Note that continuous SCK is only supported for CPHA = 1. |
| bool | enableModifiedTimingFormat |
Enables a modified transfer format to be used if it's true. |
| bool | enableRxFifoOverWrite |
ROOE, Receive FIFO overflow overwrite enable. ROOE = 0, the incoming data is ignored, the data from the transfer that generated the overflow is either ignored. ROOE = 1, the incoming data is shifted in to the shift to the shift register. |
| dspi_pcs_polarity_config_t | pcsActiveHighOrLow |
Desired PCS active high or low. |
| dspi_master_sample_point_t | samplePoint |
Controls when the module master samples SIN in Modified Transfer Format. It's valid only when CPHA=0. |
| dspi_ctar_selection_t | whichCtar |
Desired CTAR to use. |
| dspi_which_pcs_t | whichPcs |
Desired Peripheral Chip Select (pcs). |
| struct dspi_slave_ctar_config_t |
DSPI slave ctar configuration structure.
| Data Fields | ||
|---|---|---|
| uint32_t | bitsPerFrame |
Bits per frame, minimum 4, maximum 16. |
| dspi_clock_phase_t | cpha |
Clock phase. Slave only supports MSB , does not support LSB. |
| dspi_clock_polarity_t | cpol |
Clock polarity. |
| struct dspi_slave_config_t |
DSPI slave configuration structure.
Collaboration diagram for dspi_slave_config_t:| Data Fields | ||
|---|---|---|
| dspi_slave_ctar_config_t | ctarConfig |
Set the ctarConfig to the desired CTAR. |
| bool | enableContinuousSCK |
CONT_SCKE, continuous SCK enable. Note that continuous SCK is only supported for CPHA = 1. |
| bool | enableModifiedTimingFormat |
Enables a modified transfer format to be used if it's true. |
| bool | enableRxFifoOverWrite |
ROOE, Receive FIFO overflow overwrite enable. ROOE = 0, the incoming data is ignored, the data from the transfer that generated the overflow is either ignored. ROOE = 1, the incoming data is shifted in to the shift to the shift register. |
| dspi_master_sample_point_t | samplePoint |
Controls when the module master samples SIN in Modified Transfer Format. It's valid only when CPHA=0. |
| dspi_ctar_selection_t | whichCtar |
Desired CTAR to use. |
| struct dspi_transfer_t |
DSPI master/slave transfer structure.
| struct _dspi_master_handle |
DSPI master transfer handle structure used for transactional API.
Forward declaration of the _dspi_master_handle typedefs.
| Data Fields | ||
|---|---|---|
| uint32_t | bitsPerFrame |
Desired number of bits per frame. |
| dspi_master_transfer_callback_t | callback |
Completion callback. |
| volatile uint32_t | command |
Desired data command. |
| uint8_t | fifoSize |
FIFO dataSize. |
| volatile bool | isPcsActiveAfterTransfer |
Is PCS signal keep active after the last frame transfer. |
| volatile bool | isThereExtraByte |
Is there extra byte. |
| volatile uint32_t | lastCommand |
Desired last data command. |
| volatile size_t | remainingReceiveByteCount |
Number of bytes remaining to receive. |
| volatile size_t | remainingSendByteCount |
Number of bytes remaining to send. |
| uint8_t *volatile | rxData |
Receive buffer. |
| volatile uint8_t | state |
DSPI transfer state , _dspi_transfer_state. |
| size_t | totalByteCount |
Number of transfer bytes |
| uint8_t *volatile | txData |
Send buffer. |
| void * | userData |
Callback user data. |
| struct _dspi_slave_handle |
DSPI slave transfer handle structure used for transactional API.
Forward declaration of the _dspi_slave_handle typedefs.
| Data Fields | ||
|---|---|---|
| uint32_t | bitsPerFrame |
Desired number of bits per frame. |
| dspi_slave_transfer_callback_t | callback |
Completion callback. |
| volatile uint32_t | errorCount |
Error count for slave transfer. |
| volatile bool | isThereExtraByte |
Is there extra byte. |
| volatile size_t | remainingReceiveByteCount |
Number of bytes remaining to receive. |
| volatile size_t | remainingSendByteCount |
Number of bytes remaining to send. |
| uint8_t *volatile | rxData |
Receive buffer. |
| volatile uint8_t | state |
DSPI transfer state. |
| size_t | totalByteCount |
Number of transfer bytes |
| uint8_t *volatile | txData |
Send buffer. |
| void * | userData |
Callback user data. |
| typedef void(* dspi_master_transfer_callback_t) (SPI_Type *base, dspi_master_handle_t *handle, status_t status, void *userData) |
Completion callback function pointer type.
| base | DSPI peripheral address. |
| handle | Pointer to the handle for the DSPI master. |
| status | Success or error code describing whether the transfer completed. |
| userData | Arbitrary pointer-dataSized value passed from the application. |
| typedef void(* dspi_slave_transfer_callback_t) (SPI_Type *base, dspi_slave_handle_t *handle, status_t status, void *userData) |
Completion callback function pointer type.
| base | DSPI peripheral address. |
| handle | Pointer to the handle for the DSPI slave. |
| status | Success or error code describing whether the transfer completed. |
| userData | Arbitrary pointer-dataSized value passed from the application. |
| enum _dspi_dma_enable |
| enum _dspi_flags |
DSPI status flags in SPIx_SR register.
DSPI interrupt source.
| enum _dspi_pcs_polarity |
DSPI Peripheral Chip Select (Pcs) Polarity.
| enum _dspi_status |
Can use this enum for DSPI master transfer configFlags.
| enum _dspi_transfer_state |
| enum dspi_clock_phase_t |
DSPI Clock and Transfer Attributes Register (CTAR) selection.
| enum dspi_delay_type_t |
DSPI Sample Point: Controls when the DSPI master samples SIN in Modified Transfer Format. This field is valid only when CPHA bit in CTAR register is 0.
| enum dspi_which_pcs_t |
|
inlinestatic |
Clears the DSPI status flag.
This function clears the desired status bit by using a write-1-to-clear. The user passes in the base and the desired status bit to clear. The list of status bits is defined in the dspi_status_and_interrupt_request_t. The function uses these bit positions in its algorithm to clear the desired flag state. Example usage:
| base | DSPI peripheral address. |
| statusFlags | The status flag , used from type dspi_flags. |
< The status flags are cleared by writing 1 (w1c).
| void DSPI_Deinit | ( | SPI_Type * | base | ) |
De-initializes the DSPI peripheral. Call this API to disable the DSPI clock.
| base | DSPI peripheral address. |
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
Enables the DSPI peripheral and sets the MCR MDIS to 0.
| base | DSPI peripheral address. |
| enable | pass true to enable module, false to disable module. |
|
inlinestatic |
| void DSPI_EnableInterrupts | ( | SPI_Type * | base, |
| uint32_t | mask | ||
| ) |
Enables the DSPI interrupts.
This function configures the various interrupt masks of the DSPI. The parameters are base and an interrupt mask. Note, for Tx Fill and Rx FIFO drain requests, enable the interrupt request and disable the DMA request.
| base | DSPI peripheral address. |
| mask | The interrupt mask, can use the enum _dspi_interrupt_enable. |
|
inlinestatic |
Flushes the DSPI FIFOs.
| base | DSPI peripheral address. |
| flushTxFifo | Flushes (true) the Tx FIFO, else do not flush (false) the Tx FIFO |
| flushRxFifo | Flushes (true) the Rx FIFO, else do not flush (false) the Rx FIFO |
| void DSPI_GetDefaultDataCommandConfig | ( | dspi_command_data_config_t * | command | ) |
Sets the dspi_command_data_config_t structure to default values.
The purpose of this API is to get the configuration structure initialized for use in the DSPI_MasterWrite_xx(). User may use the initialized structure unchanged in DSPI_MasterWrite_xx() or modify the structure before calling DSPI_MasterWrite_xx(). Example:
| command | pointer to dspi_command_data_config_t structure. |
|
inlinestatic |
Gets the DSPI POPR data register address for the DMA operation.
This function gets the DSPI POPR data register address as this value is needed for the DMA operation.
| base | DSPI peripheral address. |
|
inlinestatic |
Gets the DSPI status flag state.
| base | DSPI peripheral address. |
|
inlinestatic |
Returns whether the DSPI module is in master mode.
| base | DSPI peripheral address. |
| void DSPI_MasterGetDefaultConfig | ( | dspi_master_config_t * | masterConfig | ) |
Sets the dspi_master_config_t structure to default values.
The purpose of this API is to get the configuration structure initialized for the DSPI_MasterInit(). User may use the initialized structure unchanged in DSPI_MasterInit() or modify the structure before calling DSPI_MasterInit(). Example:
| masterConfig | pointer to dspi_master_config_t structure |
|
inlinestatic |
Returns the DSPI command word formatted to the PUSHR data register bit field.
This function allows the caller to pass in the data command structure and returns the command word formatted according to the DSPI PUSHR register bit field placement. The user can then "OR" the returned command word with the desired data to send and use the function DSPI_HAL_WriteCommandDataMastermode or DSPI_HAL_WriteCommandDataMastermodeBlocking to write the entire 32-bit command data word to the PUSHR. This helps improve performance in cases where the command structure is constant. For example, the user calls this function before starting a transfer to generate the command word. When they are ready to transmit the data, they would OR this formatted command word with the desired data to transmit. This process increases transmit performance when compared to calling send functions such as DSPI_HAL_WriteDataMastermode which format the command word each time a data word is to be sent.
| command | Pointer to command structure. |
|
inlinestatic |
Gets the DSPI master PUSHR data register address for the DMA operation.
This function gets the DSPI master PUSHR data register address because this value is needed for the DMA operation.
| base | DSPI peripheral address. |
| void DSPI_MasterInit | ( | SPI_Type * | base, |
| const dspi_master_config_t * | masterConfig, | ||
| uint32_t | srcClock_Hz | ||
| ) |
Initializes the DSPI master.
This function initializes the DSPI master configuration. An example use case is as follows:
| base | DSPI peripheral address. |
| masterConfig | Pointer to structure dspi_master_config_t. |
| srcClock_Hz | Module source input clock in Hertz |
| uint32_t DSPI_MasterSetBaudRate | ( | SPI_Type * | base, |
| dspi_ctar_selection_t | whichCtar, | ||
| uint32_t | baudRate_Bps, | ||
| uint32_t | srcClock_Hz | ||
| ) |
Sets the DSPI baud rate in bits per second.
This function takes in the desired baudRate_Bps (baud rate) and calculates the nearest possible baud rate without exceeding the desired baud rate, and returns the calculated baud rate in bits-per-second. It requires that the caller also provide the frequency of the module source clock (in Hertz).
| base | DSPI peripheral address. |
| whichCtar | The desired Clock and Transfer Attributes Register (CTAR) of the type dspi_ctar_selection_t |
| baudRate_Bps | The desired baud rate in bits per second |
| srcClock_Hz | Module source input clock in Hertz |
| void DSPI_MasterSetDelayScaler | ( | SPI_Type * | base, |
| dspi_ctar_selection_t | whichCtar, | ||
| uint32_t | prescaler, | ||
| uint32_t | scaler, | ||
| dspi_delay_type_t | whichDelay | ||
| ) |
Manually configures the delay prescaler and scaler for a particular CTAR.
This function configures the PCS to SCK delay pre-scalar (PcsSCK) and scalar (CSSCK), after SCK delay pre-scalar (PASC) and scalar (ASC), and the delay after transfer pre-scalar (PDT)and scalar (DT).
These delay names are available in type dspi_delay_type_t.
The user passes the delay to configure along with the prescaler and scaler value. This allows the user to directly set the prescaler/scaler values if they have pre-calculated them or if they simply wish to manually increment either value.
| base | DSPI peripheral address. |
| whichCtar | The desired Clock and Transfer Attributes Register (CTAR) of type dspi_ctar_selection_t. |
| prescaler | The prescaler delay value (can be an integer 0, 1, 2, or 3). |
| scaler | The scaler delay value (can be any integer between 0 to 15). |
| whichDelay | The desired delay to configure, must be of type dspi_delay_type_t |
| uint32_t DSPI_MasterSetDelayTimes | ( | SPI_Type * | base, |
| dspi_ctar_selection_t | whichCtar, | ||
| dspi_delay_type_t | whichDelay, | ||
| uint32_t | srcClock_Hz, | ||
| uint32_t | delayTimeInNanoSec | ||
| ) |
Calculates the delay prescaler and scaler based on the desired delay input in nanoseconds.
This function calculates the values for: PCS to SCK delay pre-scalar (PCSSCK) and scalar (CSSCK), or After SCK delay pre-scalar (PASC) and scalar (ASC), or Delay after transfer pre-scalar (PDT)and scalar (DT).
These delay names are available in type dspi_delay_type_t.
The user passes which delay they want to configure along with the desired delay value in nanoseconds. The function calculates the values needed for the prescaler and scaler and returning the actual calculated delay as an exact delay match may not be possible. In this case, the closest match is calculated without going below the desired delay value input. It is possible to input a very large delay value that exceeds the capability of the part, in which case the maximum supported delay is returned. The higher level peripheral driver alerts the user of an out of range delay input.
| base | DSPI peripheral address. |
| whichCtar | The desired Clock and Transfer Attributes Register (CTAR) of type dspi_ctar_selection_t. |
| whichDelay | The desired delay to configure, must be of type dspi_delay_type_t |
| srcClock_Hz | Module source input clock in Hertz |
| delayTimeInNanoSec | The desired delay value in nanoseconds. |
| void DSPI_MasterTransferAbort | ( | SPI_Type * | base, |
| dspi_master_handle_t * | handle | ||
| ) |
DSPI master aborts transfer using an interrupt.
This function aborts a transfer using an interrupt.
| base | DSPI peripheral base address. |
| handle | pointer to dspi_master_handle_t structure which stores the transfer state. |
| status_t DSPI_MasterTransferBlocking | ( | SPI_Type * | base, |
| dspi_transfer_t * | transfer | ||
| ) |
DSPI master transfer data using polling.
This function transfers data with polling. This is a blocking function, which does not return until all transfers have been completed.
| base | DSPI peripheral base address. |
| transfer | pointer to dspi_transfer_t structure. |
| void DSPI_MasterTransferCreateHandle | ( | SPI_Type * | base, |
| dspi_master_handle_t * | handle, | ||
| dspi_master_transfer_callback_t | callback, | ||
| void * | userData | ||
| ) |
Initializes the DSPI master handle.
This function initializes the DSPI handle which can be used for other DSPI transactional APIs. Usually, for a specified DSPI instance, call this API once to get the initialized handle.
| base | DSPI peripheral base address. |
| handle | DSPI handle pointer to dspi_master_handle_t. |
| callback | dspi callback. |
| userData | callback function parameter. |
| status_t DSPI_MasterTransferGetCount | ( | SPI_Type * | base, |
| dspi_master_handle_t * | handle, | ||
| size_t * | count | ||
| ) |
Gets the master transfer count.
This function gets the master transfer count.
| base | DSPI peripheral base address. |
| handle | pointer to dspi_master_handle_t structure which stores the transfer state. |
| count | Number of bytes transferred so far by the non-blocking transaction. |
| void DSPI_MasterTransferHandleIRQ | ( | SPI_Type * | base, |
| dspi_master_handle_t * | handle | ||
| ) |
DSPI Master IRQ handler function.
This function processes the DSPI transmit and receive IRQ.
| base | DSPI peripheral base address. |
| handle | pointer to dspi_master_handle_t structure which stores the transfer state. |
| status_t DSPI_MasterTransferNonBlocking | ( | SPI_Type * | base, |
| dspi_master_handle_t * | handle, | ||
| dspi_transfer_t * | transfer | ||
| ) |
DSPI master transfer data using interrupts.
This function transfers data using interrupts. This is a non-blocking function, which returns right away. When all data have been transferred, the callback function is called.
| base | DSPI peripheral base address. |
| handle | pointer to dspi_master_handle_t structure which stores the transfer state. |
| transfer | pointer to dspi_transfer_t structure. |
| void DSPI_MasterWriteCommandDataBlocking | ( | SPI_Type * | base, |
| uint32_t | data | ||
| ) |
Writes a 32-bit data word (16-bit command appended with 16-bit data) into the data buffer, master mode and waits till complete to return.
In this function, the user must append the 16-bit data to the 16-bit command info then provide the total 32-bit word as the data to send. The command portion provides characteristics of the data such as the optional continuous chip select operation between transfers, the desired Clock and Transfer Attributes register to use for the associated SPI frame, the desired PCS signal to use for the data transfer, whether the current transfer is the last in the queue, and whether to clear the transfer count (normally needed when sending the first frame of a data packet). The user is responsible for appending this command with the data to send. This is an example:
Note that this function does not return until after the transmit is complete. Also note that the DSPI must be enabled and running to transmit data (MCR[MDIS] & [HALT] = 0). Because the SPI is a synchronous protocol, the receive data is available when transmit completes.
For a blocking polling transfer, see methods below. Option 1: uint32_t command_to_send = DSPI_MasterGetFormattedCommand(&command); uint32_t data0 = command_to_send | data_need_to_send_0; uint32_t data1 = command_to_send | data_need_to_send_1; uint32_t data2 = command_to_send | data_need_to_send_2;
DSPI_MasterWriteCommandDataBlocking(base,data0); DSPI_MasterWriteCommandDataBlocking(base,data1); DSPI_MasterWriteCommandDataBlocking(base,data2);
Option 2: DSPI_MasterWriteDataBlocking(base,&command,data_need_to_send_0); DSPI_MasterWriteDataBlocking(base,&command,data_need_to_send_1); DSPI_MasterWriteDataBlocking(base,&command,data_need_to_send_2);
| base | DSPI peripheral address. |
| data | The data word (command and data combined) to be sent |
|
inlinestatic |
Writes data into the data buffer for master mode.
In master mode, the 16-bit data is appended to the 16-bit command info. The command portion provides characteristics of the data such as the optional continuous chip select operation between transfers, the desired Clock and Transfer Attributes register to use for the associated SPI frame, the desired PCS signal to use for the data transfer, whether the current transfer is the last in the queue, and whether to clear the transfer count (normally needed when sending the first frame of a data packet). This is an example:
| base | DSPI peripheral address. |
| command | Pointer to command structure. |
| data | The data word to be sent. |
| void DSPI_MasterWriteDataBlocking | ( | SPI_Type * | base, |
| dspi_command_data_config_t * | command, | ||
| uint16_t | data | ||
| ) |
Writes data into the data buffer master mode and waits till complete to return.
In master mode, the 16-bit data is appended to the 16-bit command info. The command portion provides characteristics of the data such as the optional continuous chip select operation between transfers, the desired Clock and Transfer Attributes register to use for the associated SPI frame, the desired PCS signal to use for the data transfer, whether the current transfer is the last in the queue, and whether to clear the transfer count (normally needed when sending the first frame of a data packet). This is an example:
Note that this function does not return until after the transmit is complete. Also note that the DSPI must be enabled and running to transmit data (MCR[MDIS] & [HALT] = 0). Because the SPI is a synchronous protocol, receive data is available when transmit completes.
| base | DSPI peripheral address. |
| command | Pointer to command structure. |
| data | The data word to be sent. |
|
inlinestatic |
Reads data from the data buffer.
| base | DSPI peripheral address. |
|
inlinestatic |
Configures the DSPI peripheral chip select polarity simultaneously. For example, PCS0 and PCS1 set to active low and other PCS set to active high. Note that the number of PCSs is specific to the device.
| base | DSPI peripheral address. |
| mask | The PCS polarity mask , can use the enum _dspi_pcs_polarity. |
|
inlinestatic |
Enables (or disables) the DSPI FIFOs.
This function allows the caller to disable/enable the Tx and Rx FIFOs (independently). Note that to disable, the caller must pass in a logic 0 (false) for the particular FIFO configuration. To enable, the caller must pass in a logic 1 (true).
| base | DSPI peripheral address. |
| enableTxFifo | Disables (false) the TX FIFO, else enables (true) the TX FIFO |
| enableRxFifo | Disables (false) the RX FIFO, else enables (true) the RX FIFO |
|
inlinestatic |
Configures the DSPI for master or slave.
| base | DSPI peripheral address. |
| mode | Mode setting (master or slave) of type dspi_master_slave_mode_t. |
| void DSPI_SlaveGetDefaultConfig | ( | dspi_slave_config_t * | slaveConfig | ) |
Sets the dspi_slave_config_t structure to default values.
The purpose of this API is to get the configuration structure initialized for the DSPI_SlaveInit(). User may use the initialized structure unchanged in DSPI_SlaveInit(), or modify the structure before calling DSPI_SlaveInit(). Example:
| slaveConfig | pointer to dspi_slave_config_t structure. |
|
inlinestatic |
Gets the DSPI slave PUSHR data register address for the DMA operation.
This function gets the DSPI slave PUSHR data register address as this value is needed for the DMA operation.
| base | DSPI peripheral address. |
| void DSPI_SlaveInit | ( | SPI_Type * | base, |
| const dspi_slave_config_t * | slaveConfig | ||
| ) |
DSPI slave configuration.
This function initializes the DSPI slave configuration. An example use case is as follows:
| base | DSPI peripheral address. |
| slaveConfig | Pointer to structure dspi_master_config_t. |
| void DSPI_SlaveTransferAbort | ( | SPI_Type * | base, |
| dspi_slave_handle_t * | handle | ||
| ) |
DSPI slave aborts a transfer using an interrupt.
This function aborts transfer using an interrupt.
| base | DSPI peripheral base address. |
| handle | pointer to dspi_slave_handle_t structure which stores the transfer state. |
| void DSPI_SlaveTransferCreateHandle | ( | SPI_Type * | base, |
| dspi_slave_handle_t * | handle, | ||
| dspi_slave_transfer_callback_t | callback, | ||
| void * | userData | ||
| ) |
Initializes the DSPI slave handle.
This function initializes the DSPI handle, which can be used for other DSPI transactional APIs. Usually, for a specified DSPI instance, call this API once to get the initialized handle.
| handle | DSPI handle pointer to dspi_slave_handle_t. |
| base | DSPI peripheral base address. |
| callback | DSPI callback. |
| userData | callback function parameter. |
| status_t DSPI_SlaveTransferGetCount | ( | SPI_Type * | base, |
| dspi_slave_handle_t * | handle, | ||
| size_t * | count | ||
| ) |
Gets the slave transfer count.
This function gets the slave transfer count.
| base | DSPI peripheral base address. |
| handle | pointer to dspi_master_handle_t structure which stores the transfer state. |
| count | Number of bytes transferred so far by the non-blocking transaction. |
| void DSPI_SlaveTransferHandleIRQ | ( | SPI_Type * | base, |
| dspi_slave_handle_t * | handle | ||
| ) |
DSPI Master IRQ handler function.
This function processes the DSPI transmit and receive IRQ.
| base | DSPI peripheral base address. |
| handle | pointer to dspi_slave_handle_t structure which stores the transfer state. |
| status_t DSPI_SlaveTransferNonBlocking | ( | SPI_Type * | base, |
| dspi_slave_handle_t * | handle, | ||
| dspi_transfer_t * | transfer | ||
| ) |
DSPI slave transfers data using an interrupt.
This function transfers data using an interrupt. This is a non-blocking function, which returns right away. When all data have been transferred, the callback function is called.
| base | DSPI peripheral base address. |
| handle | pointer to dspi_slave_handle_t structure which stores the transfer state. |
| transfer | pointer to dspi_transfer_t structure. |
|
inlinestatic |
Writes data into the data buffer in slave mode.
In slave mode, up to 16-bit words may be written.
| base | DSPI peripheral address. |
| data | The data to send. |
| void DSPI_SlaveWriteDataBlocking | ( | SPI_Type * | base, |
| uint32_t | data | ||
| ) |
Writes data into the data buffer in slave mode, waits till data was transmitted, and returns.
In slave mode, up to 16-bit words may be written. The function first clears the transmit complete flag, writes data into data register, and finally waits until the data is transmitted.
| base | DSPI peripheral address. |
| data | The data to send. |
|
inlinestatic |
Starts the DSPI transfers and clears HALT bit in MCR.
This function sets the module to begin data transfer in either master or slave mode.
| base | DSPI peripheral address. |
|
inlinestatic |
Stops (halts) DSPI transfers and sets HALT bit in MCR.
This function stops data transfers in either master or slave mode.
| base | DSPI peripheral address. |