![]() |
Nano100BN Series BSP
V3.03.002
The Board Support Package for Nano100BN Series
|
#include <Nano100Series.h>
Data Fields | |
| __IO uint32_t | CTL |
| __IO uint32_t | STATUS |
| __IO uint32_t | CLKDIV |
| __IO uint32_t | SSR |
| __I uint32_t | RX0 |
| __I uint32_t | RX1 |
| uint32_t | RESERVE0 [2] |
| __O uint32_t | TX0 |
| __O uint32_t | TX1 |
| uint32_t | RESERVE1 [3] |
| __IO uint32_t | VARCLK |
| __IO uint32_t | DMA |
| __IO uint32_t | FFCTL |
@addtogroup SPI Serial Peripheral Interface Controller(SPI) Memory Mapped Structure for SPI Controller
Definition at line 9190 of file Nano100Series.h.
| __IO uint32_t SPI_T::CLKDIV |
| Bits | Field | Descriptions |
|---|---|---|
| [7:0] | DIVIDER1 | Clock Divider 1 Register |
| The value in this field is the 1th frequency divider of the PCLK to generate the serial clock of SPI_SCLK. | ||
| The desired frequency is obtained according to the following equation: | ||
| Where | ||
| is the SPI engine clock source. It is defined in the CLK_SEL1. | ||
| [23:16] | DIVIDER2 | Clock Divider 2 Register |
| The value in this field is the 2nd frequency divider of the PCLK to generate the serial clock of SPI_SCLK. | ||
| The desired frequency is obtained according to the following equation: |
Definition at line 9364 of file Nano100Series.h.
| __IO uint32_t SPI_T::CTL |
| Bits | Field | Descriptions |
|---|---|---|
| [0] | GO_BUSY | SPI Transfer Control Bit And Busy Status |
| 0 = Writing this bit "0" will stop data transfer if SPI is transferring. | ||
| 1 = In Master mode, writing "1" to this bit will start the SPI data transfer; In Slave mode, writing '1' to this bit indicates that the salve is ready to communicate with a master. | ||
| If the FIFO mode is disabled, during the data transfer, this bit keeps the value of '1'. | ||
| As the transfer is finished, this bit will be cleared automatically. | ||
| Software can read this bit to check if the SPI is in busy status. | ||
| In FIFO mode, this bit will be controlled by hardware. | ||
| Software should not modify this bit. | ||
| In slave mode, this bit always returns 1 when software reads this register. | ||
| In master mode, this bit reflects the busy or idle status of SPI. | ||
| Note: | ||
| 1. When FIFO mode is disabled, all configurations should be set before writing "1" to the GO_BUSY bit in the SPI_CTL register. | ||
| 2. When FIFO bit is disabled and the software uses TX or RX PDMA function to transfer data, this bit will be cleared after the PDMA controller finishes the data transfer. | ||
| [1] | RX_NEG | Receive At Negative Edge |
| 0 = The received data is latched on the rising edge of SPI_SCLK. | ||
| 1 = The received data is latched on the falling edge of SPI_SCLK. | ||
| [2] | TX_NEG | Transmit At Negative Edge |
| 0 = The transmitted data output is changed on the rising edge of SPI_SCLK. | ||
| 1 = The transmitted data output is changed on the falling edge of SPI_SCLK. | ||
| [7:3] | TX_BIT_LEN | Transmit Bit Length |
| This field specifies how many bits can be transmitted / received in one transaction. | ||
| The minimum bit length is 8 bits and can be up to 32 bits. | ||
| TX_BIT_LEN Description | ||
| 01000 8 bits are transmitted in one transaction | ||
| 01001 9 bits are transmitted in one transaction | ||
| ---— -------— | ||
| 11111 31 bits are transmitted in one transaction | ||
| 00000 32 bits are transmitted in one transaction | ||
| [10] | LSB | Send LSB First |
| 0 = The MSB, which bit of transmit/receive register depends on the setting of TX_BITLEN, is transmitted/received first. | ||
| 1 = The LSB, bit 0 of the SPI_TX0/1, is sent first to the the SPI data output pin, and the first bit received from the SPI data input pin will be put in the LSB position of the SPI_RX register (SPI_RX0/1). | ||
| [11] | CLKP | Clock Polarity |
| 0 = The default level of SCLK is low in idle state. | ||
| 1 = The default level of SCLK is high in idle state. | ||
| [15:12] | SP_CYCLE | Suspend Interval (Master Only) |
| These four bits provide configurable suspend interval between two successive transmit/receive transaction in a transfer. | ||
| The suspend interval is from the last falling clock edge of the current transaction to the first rising clock edge of the successive transaction if CLKP = "0". | ||
| If CLKP = "1", the interval is from the rising clock edge to the falling clock edge. | ||
| The default value is 0x3. The desired suspend interval is obtained according to the following equation: | ||
| (SP_CYCLE[3:0) + 0.5) * period of SPICLK | ||
| Ex: | ||
| SP_CYCLE = 0x0 ... 0.5 SPICLK clock cycle. | ||
| SP_CYCLE = 0x1 ... 1.5 SPICLK clock cycle. | ||
| ...... | ||
| SP_CYCLE = 0xE ... 14.5 SPICLK clock cycle. | ||
| SP_CYCLE = 0xF ... 15.5 SPICLK clock cycle. | ||
| If the Variable Clock function is enabled, the minimum period of suspend interval (the transmit data in FIFO buffer is not empty) between the successive transaction is (6.5 + SP_CYCLE) * SPICLK clock cycle | ||
| [17] | INTEN | Interrupt Enable |
| 0 = SPI Interrupt Disabled. | ||
| 1 = SPI Interrupt Enabled. | ||
| [18] | SLAVE | Slave Mode |
| 0 = SPI controller set as Master mode. | ||
| 1 = SPI controller set as Slave mode. | ||
| [19] | REORDER | Byte Reorder Function Enable |
| 0 = Disable byte reorder function | ||
| 1 = Enable byte reorder function and insert a byte suspend interval among each byte. | ||
| The setting of TX_BIT_LEN must be configured as 00b ( 32 bits/ word). | ||
| The suspend interval is defined in SP_CYCLE. | ||
| Note: | ||
| 1. The byte reorder function is only available if TX_BIT_LEN is defined as 16, 24, and 32 bits. | ||
| 2. In Slave mode with level-trigger configuration, if the byte suspend function is enabled, the slave select pin must be kept at active state during the successive four bytes transfer. | ||
| 3. The byte reorder function is not supported when the variable serial clock function or the dual I/O mode is enabled. | ||
| [21] | FIFOM | FIFO Mode Enable |
| 0 = Normal mode. | ||
| 1 = FIFO mode. | ||
| Note: | ||
| 1. Before enabling FIFO mode, the other related settings should be set in advance. | ||
| 2. In Master mode, if the FIFO mode is enabled, the GO_BUSY bit will be set "1" automatically after the data was written into the 8-depth FIFO. | ||
| The user can clear this FIFO bit after the transmit FIFO status is empty and the GO_BUSY back to 0. | ||
| [22] | TWOB | 2-Bit Transfer Mode Active |
| 0 = 2-bit transfer mode Disabled. | ||
| 1 = 2-bit transfer mode Enabled. | ||
| Note that when enabling TWOB, the serial transmitted 2-bits data are from SPI_TX1/0, and the received 2-bits data input are put into SPI_RX1/0. | ||
| [23] | VARCLK_EN | Variable Clock Enable |
| 0 = The serial clock output frequency is fixed and only decided by the value of DIVIDER1 | ||
| 1 = The serial clock output frequency is variable. | ||
| The output frequency is decided by the value of VARCLK (SPI_VARCLK), DIVIDER1, and DIVIDER2. | ||
| Note: When this VARCLK_EN bit is set to 1, the setting of TX_BIT_LEN must be programmed as 0x10 (16-bit mode). | ||
| [28] | DUAL_IO_DIR | Dual IO Mode Direction |
| 0 = Date read in the Dual I/O Mode function. | ||
| 1 = Data write in the Dual I/O Mode function. | ||
| [29] | DUAL_IO_EN | Dual IO Mode Enable |
| 0 = Dual I/O Mode function Disabled. | ||
| 1 = Dual I/O Mode function Enabled. | ||
| [31] | WKEUP_EN | Wake-Up Enable |
| 0 = Wake-up function Disabled when the system enters Power-down mode. | ||
| 1 = Wake-up function Enabled. | ||
| When the system enters Power-down mode, the system can be wake-up from the SPI controller when this bit is enabled and if there is any toggle in the SPICLK port. | ||
| After the system wake-up, this bit must be cleared by user to disable the wake-up requirement. |
Definition at line 9291 of file Nano100Series.h.
| __IO uint32_t SPI_T::DMA |
| Bits | Field | Descriptions |
|---|---|---|
| [0] | TX_DMA_EN | Transmit PDMA Enable (PDMA Writes Data To SPI) |
| Set this bit to 1 will start the transmit PDMA process. | ||
| SPI controller will issue request to PDMA controller automatically. | ||
| If using PDMA mode to transfer data, remember not to set GO_BUSY bit of SPI_CNTRL register. | ||
| The DMA controller inside SPI controller will set it automatically whenever necessary. | ||
| Note: | ||
| 1. Two transaction need minimal 18 APB clock + 8 SPI serial clocks suspend interval in master mode for edge mode and 18 APB clock + 9.5 serial clocks for level mode. | ||
| 2. If the 2-bit function is enabled, the requirement timing shall append 18 APB clock based on the above clock period. | ||
| Hardware will clear this bit to 0 automatically after PDMA transfer done. If FIFO mode not release, it should be remove. | ||
| [1] | RX_DMA_EN | Receiving PDMA Enable(PDMA Reads SPI Data To Memory) |
| Set this bit to "1" will start the receive PDMA process. | ||
| SPI controller will issue request to PDMA controller automatically when there is data written into the received buffer or the status of RX_EMPTY status is set to 0 in FIFO mode. | ||
| If using the RX_PDMA mode to receive data but TX_DMA is disabled, the GO_BUSY bit shall be set by user. | ||
| Hardware will clear this bit to 0 automatically after PDMA transfer done. | ||
| In Slave mode and the FIFO bit is disabled, if the receive PDMA is enabled but the transmit PDMA is disabled, the minimal suspend interval between two successive transactions input is need to be larger than 9 SPI slave engine clock + 4 APB clock for edge mode and 9.5 SPI slave engine clock + 4 APB clock | ||
| [2] | PDMA_RST | PDMA Reset |
| It is used to reset the SPI PDMA function into default state. | ||
| 0 = After reset PDMA function or in normal operation. | ||
| 1 = Reset PDMA function. | ||
| Note: it is auto cleared to "0" after the reset function done. |
Definition at line 9526 of file Nano100Series.h.
| __IO uint32_t SPI_T::FFCTL |
| Bits | Field | Descriptions |
|---|---|---|
| [0] | RX_CLR | Receiving FIFO Counter Clear |
| This bit is used to clear the receiver counter in FIFO Mode. | ||
| This bit can be written "1" to clear the receiver counter and this bit will be cleared to "0" automatically after clearing receiving counter. | ||
| After the clear operation, the flag of RX_EMPTY in SPI_STATUS[0] will be set to "1". | ||
| [1] | TX_CLR | Transmitting FIFO Counter Clear |
| This bit is used to clear the transmit counter in FIFO Mode. | ||
| This bit can be written "1" to clear the transmitting counter and this bit will be cleared to "0" automatically after clearing transmitting counter. | ||
| After the clear operation, the flag of TX_EMPTY in SPI_STATUS[2] will be set to "1". | ||
| [2] | RXINT_EN | RX Threshold Interrupt Enable |
| 0 = Rx threshold interrupt Disabled. | ||
| 1 = RX threshold interrupt Enable. | ||
| [3] | TXINT_EN | TX Threshold Interrupt Enable |
| 0 = Tx threshold interrupt Disabled. | ||
| 1 = TX threshold interrupt Enable. | ||
| [4] | RXOVINT_EN | RX FIFO Over Run Interrupt Enable |
| 0 = RX FIFO over run interrupt Disabled. | ||
| 1 = RX FIFO over run interrupt Enabled. | ||
| [7] | TIMEOUT_EN | RX Read Timeout Function Enable |
| 0 = RX read Timeout function Disabled. | ||
| 1 = RX read Timeout function Enabled. | ||
| [26:24] | RX_THRESHOLD | Received FIFO Threshold |
| 3-bits register, value from 0 ~7. | ||
| If RX valid data counts large than RXTHRESHOLD, RXINT_STS will set to 1, else RXINT_STS will set to 0. | ||
| [30:28] | TX_THRESHOLD | Transmit FIFO Threshold |
| 3-bit register, value from 0 ~7. | ||
| If TX valid data counts small or equal than TXTHRESHOLD, TXINT_STS will set to 1, else TXINT_STS will set to 0 |
Definition at line 9562 of file Nano100Series.h.
| uint32_t SPI_T::RESERVE0[2] |
Definition at line 9446 of file Nano100Series.h.
| uint32_t SPI_T::RESERVE1[3] |
Definition at line 9480 of file Nano100Series.h.
| __I uint32_t SPI_T::RX0 |
| Bits | Field | Descriptions |
|---|---|---|
| [31:0] | RDATA | Receive Data FIFO Register |
| The received data can be read on it. | ||
| If the FIFO bit is set as 1, the user also checks the RX_EMPTY, SPI_STATUS[0], to check if there is any more received data or not. | ||
| Note: These registers are read only. |
Definition at line 9431 of file Nano100Series.h.
| __I uint32_t SPI_T::RX1 |
| Bits | Field | Descriptions |
|---|---|---|
| [31:0] | RDATA | Receive Data FIFO Register |
| The received data can be read on it. | ||
| If the FIFO bit is set as 1, the user also checks the RX_EMPTY, SPI_STATUS[0], to check if there is any more received data or not. | ||
| Note: These registers are read only. |
Definition at line 9445 of file Nano100Series.h.
| __IO uint32_t SPI_T::SSR |
| Bits | Field | Descriptions |
|---|---|---|
| [1:0] | SSR | Slave Select Active Register (Master Only) |
| If AUTOSS bit is cleared, writing "1" to SSR[0] bit sets the SPISS[0] line to an active state and writing "0" sets the line back to inactive state.(the same as SSR[1] for SPISS[1]) | ||
| If AUTOSS bit is set, writing "1" to any bit location of this field will select appropriate SPISS[1:0] line to be automatically driven to active state for the duration of the transaction, and will be driven to inactive state for the rest of the time. | ||
| (The active level of SPISS[1:0] is specified in SS_LVL). | ||
| Note: | ||
| 1. This interface can only drive one device/slave at a given time. | ||
| Therefore, the slaves select of the selected device must be set to its active level before starting any read or write transfer. | ||
| 2. SPISS[0] is also defined as device/slave select input in Slave mode. | ||
| And that the slave select input must be driven by edge active trigger which level depend on the SS_LVL setting, otherwise the SPI slave core will go into dead path until the edge active triggers again or reset the SPI core by software. | ||
| [2] | SS_LVL | Slave Select Active Level |
| It defines the active level of device/slave select signal (SPISS[1:0]). | ||
| 0 = The SPI_SS slave select signal is active Low. | ||
| 1 = The SPI_SS slave select signal is active High. | ||
| [3] | AUTOSS | Automatic Slave Selection (Master Only) |
| 0 = If this bit is set as "0", slave select signals are asserted and de-asserted by setting and clearing related bits in SSR[1:0] register. | ||
| 1 = If this bit is set as "1", SPISS[1:0] signals are generated automatically. | ||
| It means that device/slave select signal, which is set in SSR[1:0] register is asserted by the SPI controller when transmit/receive is started, and is de-asserted after each transaction is done. | ||
| [4] | SS_LTRIG | Slave Select Level Trigger |
| 0 = The input slave select signal is edge-trigger. | ||
| 1 = The slave select signal will be level-trigger. | ||
| It depends on SS_LVL to decide the signal is active low or active high. | ||
| [5] | NOSLVSEL | No Slave Selected In Slave Mode |
| This is used to ignore the slave select signal in Slave mode. | ||
| The SPI controller can work on 3 wire interface including SPICLK, SPI_MISO, and SPI_MOSI when it is set as a slave device. | ||
| 0 = The controller is 4-wire bi-direction interface. | ||
| 1 = The controller is 3-wire bi-direction interface in Slave mode. | ||
| When this bit is set as 1, the controller start to transmit/receive data after the GO_BUSY bit active and the serial clock input. | ||
| Note: In no slave select signal mode, the SS_LTRIG, SPI_SSR[4], shall be set as "1". | ||
| [8] | SLV_ABORT | Abort In Slave Mode With No Slave Selected |
| In normal operation, there is interrupt event when the received data meet the required bits which define in TX_BIT_LEN. | ||
| If the received bits are less than the requirement and there is no more serial clock input over the time period which is defined by user in slave mode with no slave select, the user can set this bit to force the current transfer done and then the user can get a transfer done interrupt event. | ||
| Note: It is auto cleared to "0" by hardware when the abort event is active. | ||
| [9] | SSTA_INTEN | Slave Start Interrupt Enable |
| It is used to enable interrupt when the transfer has started in Slave mode with no slave select. | ||
| If there is no transfer done interrupt over the time period which is defined by user after the transfer start, the user can set the SLV_ABORT bit to force the transfer done. | ||
| 0 = Tansfer start interrupt Disabled. | ||
| 1 = Transaction start interrupt Enabled. | ||
| It is cleared when the current transfer done or the SLV_START_INTSTS bit cleared (write 1 clear). | ||
| [16] | SS_INT_OPT | Slave Select Interrupt Option |
| It is used to enable the interrupt when the transfer has done in slave mode. | ||
| 0 = No any interrupt, even there is slave select inactive event. | ||
| 1 = There is interrupt event when the slave select is inactive. | ||
| It is used to inform the user the transaction has finished and the slave select into the inactive state. |
Definition at line 9417 of file Nano100Series.h.
| __IO uint32_t SPI_T::STATUS |
| Bits | Field | Descriptions |
|---|---|---|
| [0] | RX_EMPTY | Received FIFO_EMPTY Status |
| 0 = Received data FIFO is not empty in the dual FIFO mode. | ||
| 1 = Received data FIFO is empty in the dual FIFO mode. | ||
| [1] | RX_FULL | Received FIFO_FULL Status |
| 0 = Received data FIFO is not full in dual FIFO mode. | ||
| 1 = Received data FIFO is full in the dual FIFO mode. | ||
| [2] | TX_EMPTY | Transmitted FIFO_EMPTY Status |
| 0 = Transmitted data FIFO is not empty in the dual FIFO mode. | ||
| 1 =Transmitted data FIFO is empty in the dual FIFO mode. | ||
| [3] | TX_FULL | Transmitted FIFO_FULL Status |
| 0 = Transmitted data FIFO is not full in the dual FIFO mode. | ||
| 1 = Transmitted data FIFO is full in the dual FIFO mode. | ||
| [4] | LTRIG_FLAG | Level Trigger Accomplish Flag |
| In Slave mode, this bit indicates whether the received bit number meets the requirement or not after the current transaction done. | ||
| 0 = The transferred bit length of one transaction does not meet the specified requirement. | ||
| 1 = The transferred bit length meets the specified requirement which defined in TX_BIT_LEN. | ||
| Note: This bit is READ only. | ||
| As the software sets the GO_BUSY bit to 1, the LTRIG_FLAG will be cleared to 0 after 4 SPI engine clock periods plus 1 system clock period. | ||
| In FIFO mode, this bit is unmeaning. | ||
| [6] | SLV_START_INTSTS | Slave Start Interrupt Status |
| It is used to dedicate that the transfer has started in Slave mode with no slave select. | ||
| 0 = Slave started transfer no active. | ||
| 1 = Transfer has started in Slave mode with no slave select. | ||
| It is auto clear by transfer done or writing one clear. | ||
| [7] | INTSTS | Interrupt Status |
| 0 = Transfer is not finished yet. | ||
| 1 = Transfer is done. The interrupt is requested when the INTEN bit is enabled. | ||
| Note: This bit is read only, but can be cleared by writing "1" to this bit. | ||
| [8] | RXINT_STS | RX FIFO Threshold Interrupt Status (Read Only) |
| 0 = RX valid data counts small or equal than RXTHRESHOLD. | ||
| 1 = RX valid data counts bigger than RXTHRESHOLD. | ||
| Note: If RXINT_EN = 1 and RX_INTSTS = 1, SPI will generate interrupt. | ||
| [9] | RX_OVER_RUN | RX FIFO Over Run Status |
| If SPI receives data when RX FIFO is full, this bit will set to 1, and the received data will dropped. | ||
| Note: This bit will be cleared by writing 1 to itself. | ||
| [10] | TXINT_STS | TX FIFO Threshold Interrupt Status (Read Only) |
| 0 = TX valid data counts bigger than TXTHRESHOLD. | ||
| 1 = TX valid data counts small or equal than TXTHRESHOLD. | ||
| [12] | TIME_OUT_STS | TIMEOUT Interrupt Flag |
| 0 = There is not timeout event on the received buffer. | ||
| 1 = RX FIFO is not empty and there is not be read over the 64 SPI_CLK period in master mode and over the 576 ECLK period in slave mode. | ||
| When the received FIFO is read by user, the timeout status will be cleared automatically. | ||
| Note: This bit will be cleared by writing 1 to itself. | ||
| [19:16] | RX_FIFO_CNT | Data counts in RX FIFO (Read Only) |
| [23:20] | TX_FIFO_CNT | Data counts in TX FIFO (Read Only) |
Definition at line 9346 of file Nano100Series.h.
| __O uint32_t SPI_T::TX0 |
| Bits | Field | Descriptions |
|---|---|---|
| [31:0] | TDATA | Transmit Data FIFO Register |
| The Data Transmit Registers hold the data to be transmitted in the next transfer. | ||
| The number of valid bits depends on the setting of transmit bit length field of the SPI_CTL register. | ||
| For example, if TX_BIT_LEN is set to 0x08, the bit SPI_TX[7:0] will be transmitted in next transfer. | ||
| If TX_BIT_LEN is set to 0x00, the SPI controller will perform a 32-bit transfer. | ||
| Note: When the SPI controller is configured as a slave device and the FIFO mode is disabled, if the SPI controller attempts to transmit data to a master, the software must update the transmit data register before setting the GO_BUSY bit to 1 |
Definition at line 9463 of file Nano100Series.h.
| __O uint32_t SPI_T::TX1 |
| Bits | Field | Descriptions |
|---|---|---|
| [31:0] | TDATA | Transmit Data FIFO Register |
| The Data Transmit Registers hold the data to be transmitted in the next transfer. | ||
| The number of valid bits depends on the setting of transmit bit length field of the SPI_CTL register. | ||
| For example, if TX_BIT_LEN is set to 0x08, the bit SPI_TX[7:0] will be transmitted in next transfer. | ||
| If TX_BIT_LEN is set to 0x00, the SPI controller will perform a 32-bit transfer. | ||
| Note: When the SPI controller is configured as a slave device and the FIFO mode is disabled, if the SPI controller attempts to transmit data to a master, the software must update the transmit data register before setting the GO_BUSY bit to 1 |
Definition at line 9479 of file Nano100Series.h.
| __IO uint32_t SPI_T::VARCLK |
| Bits | Field | Descriptions |
|---|---|---|
| [31:0] | VARCLK | Variable Clock Pattern Flag |
| The value in this field is the frequency patterns of the SPICLK. | ||
| If the bit pattern of VARCLK is '0', the output frequency of SPICLK is according the value of DIVIDER1. | ||
| If the bit patterns of VARCLK are '1', the output frequency of SPICLK is according the value of DIVIDER2. | ||
| Note: It is used for CLKP = 0 only. |
Definition at line 9496 of file Nano100Series.h.
1.8.15