21. Serial Peripheral Interface (SPI) Module

This chapter will discuss the operation of the Serial Peripheral Interface (SPI) module instantiated in this design.

21.1. IP Details and Available Configuration

Table 21.1 provides details of the source of the IP and and details of the memory map.

Table 21.1 SPI IP details

Value

Provider

gitlab

Vendor

incoresemi

Library

blocks/devices

Version

1.2.0

Ip Type

memory_mapped

Numer of Config Registers

11

Direct Memory Region

None

Configuration Register Alignment (bytes)

4

Table 21.2 provides information of the various parameters of the IP available at design time and their description

Table 21.2 SPI IP Configuration Options

Configuration

Options

Description

Bus interfaces

APB, AXI4L, AXI4

Choice of bus interface protocol supported on this IP

Base address

Integer

The base address where the memory map of the configuration register starts

Bytes reserved

Integer >= 0X2C

The number of bytes reserved for this instance. This can be much larger than the actual bytes required for the configuration registers but cannot be smaller than the value indicated.

slave_count

Integer > 0 and < 8

An integer indicating number of slaves to be controlled by SPI module.

fifo_depth

Integer > 2 and < 256

An integer indicating depth of FIFO used by tx_fifo and rx_fifo.

21.2. SPI Instance Details

Table 21.3 shows the values assigned to parameters of this instance of the IP.

Table 21.3 SPI Instance Parameters and Assigned Values

Parameter Name

Value Assigned

Base Address

0X20100

Bound Address

0X201FF

Bytes reserved

0XFF

Bus Interface

APB

slave_count

0X1

fifo_depth

0X14

21.3. SPI Features

The SPI module implements the standard SPI communication in master only configuration supporting:

  • Custom Setup / Hold / Inter-Transfer delays

  • 16-bit Prescalar for selecting Baudrate

  • CRC based Hashing for Rx/Tx Data

  • Bit-controlled data transfer

  • Interrupt line that gets connected to PLIC.

Fig. 21.1 shows Highlevel Architecture, Different Modes used to sample data and the Slave support delays provided by the SPI modules.

_images/spi-registers.svg

Fig. 21.1 SPI Architecture.

The following parameters can be configured in software:

  • Clock Phase and Polarity using CPHA && CPOL

  • Communication mode using DPLX

  • Setup, Hold & Inter Transfer delays using SPI_DR Registers

  • CRC of Transmitted and Received Data

  • Interrupt to write AND/OR Read from TxR and RxR respectively.

  • Bit wise control of data Tx/Rx.

The following parameters can be configured in the hardware:

  • Number of slaves that can be controlled using the SPI module (slave_count)

  • Depth of FIFO can be chosen (fifo_depth)

21.4. Register Map

The register map for the SPI control registers is shown in Table 21.4.

Table 21.4 SPI Register Mapping for all configuration registes

Register-Name

Offset(hex)

Size(Bits)

Reset(hex)

Description

SPI_CR1

0X0

32

0X0

Various fields to control SPI parameters

SPI_CR2

0X4

32

0X0

Various fields to control secondary SPI parameters

SPI_EN

0X8

8

0X0

Master control for SPI module

SPI_SR

0XC

32

0X0

Various fields that indicate status of SPI module.

TXR

0X10

32

0X0

Register to Holds data that needs to be sent over SPI

RXR

0X14

32

0X0

Register to Hold data that is received over the SPI

RX_CRC

0X18

32

0X0

Register to store so far received data’s CRC (only on CRC_EN)

TX_CRC

0X1C

32

0X0

Register to store so far transmitted data’s CRC (only on CRC_EN).

SPI_DR

0X20

32

0X0

Register to control delay parameters to support slow slaves.

SPI_PSCR

0X24

16

0X4

Prescalar value that divides bus clock and provides sclk

SPI_CRCPR

0X28

32

0X0

CRC Initial Value & Polynomial to use with CRC module

All addresses not mentioned in the above table within Base Address and Bound Address are reserved and accesses to those regions will generate a slave error on the bus interface

The register access attributes for the SPI control registers are shown in Table 21.5.

Table 21.5 SPI Register Access Attributes for all configuration Registers

Register-Name

Access Type

Reset Type

Min Access

Max Access

SPI_CR1

read-write

synchronous

4B

4B

SPI_CR2

read-write

synchronous

4B

4B

SPI_EN

read-write

synchronous

1B

4B

SPI_SR

read-only

synchronous

4B

4B

TXR

read-write

synchronous

4B

4B

RXR

read-only

synchronous

4B

4B

RX_CRC

read-only

synchronous

2B

4B

TX_CRC

read-only

synchronous

2B

4B

SPI_DR

read-write

synchronous

4B

4B

SPI_PSCR

read-write

synchronous

2B

4B

SPI_CRCPR

read-write

synchronous

4B

4B

21.5. SPI_CR1 Register

This is a 32-bit register which allows primary controls of SPI module including Phase, Polarity, data format, communication modes, Bits to transmit/receive.

Table 21.6 Communication modes by SPI

Communication Mode

Configuration

Duplex Mode (Tx & Rx)

Set dplx = 1 and transaction continues for MAX(tx_bits, rx_bits)

Simplex Mode (Tx Only)

Set dplx = 0 , rx_bits = 0 . Transaction continues for tx_bits

Simplex Mode (Rx Only)

Set dplx` = 0 , tx_bits = 0 . Transaction continues for rx_bits

Half Duplex Mode (First Tx then Rx)

Set dplx = 0 , is_rx_first = 0 . Transaction continues for SUM( tx_bits, rx_bits )

Half Duplex Mode (First Rx then Tx)

Set dplx = 0 , is_rx_first = 1 . Transaction continues for SUM( rx_bits, tx_bits )

Warning

On choosing unlimited transactions using ( tx_bits = 255 or rx_bits = 255), User should be aware that:

  • In Duplex transactions, if either rx_fifo is full or tx_fifo is empty, spi will terminate

  • In Other transactions,
    1. During Rx phase, if rx_fifo is full, spi will terminate

    2. During Tx phase, if tx_fifo is empty, spi will terminate

012567CPHACPOLReservedIS_RX_FIRSTLSB_1STread-writeread-writeread-writeread-write89101112131415ReservedCLR_STATECRC_LENCRC_NEXTCRC_ENDPLXReservedread-writeread-writeread-writeread-writeread-write1623TX_BITSread-write2431RX_BITSread-write
Table 21.7 SPI_CR1 subfeild description

Bits

Field Name

Attribute

Description

[0:0]

cpha

read-write

Selects clock phase for data capture

[1:1]

cpol

read-write

Selects clock polarity for data capture

[5:2]

Reserved

read-write

Reads will return zeros and writes will have no effect

[6:6]

is_rx_first

read-write

During a Half-duplex transaction, this bit decides whether RX(1) happens first or TX(0) happens first

[7:7]

lsb_1st

read-write

Bit transfer in LSB(1) / MSB(0) First

[9:8]

Reserved

read-write

Reads will return zeros and writes will have no effect

[10:10]

clr_state

read-write

Clears the internal FIFO and resets Tx/Rx States. This bit will be unset on clearing internal states.

[11:11]

crc_len

read-write

CRC Length 8-bit (0) / 16-bit (1)

[12:12]

crc_next

read-write

Next Transmit value from Tx (0) / Rx(1) Buffer

[13:13]

crc_en

read-write

CRC Check Enable

[14:14]

dplx

read-write

Selects mode of Communication Duplex (1) / Simplex (0)

[15:15]

Reserved

read-write

Reads will return zeros and writes will have no effect

[23:16]

tx_bits

read-write

to transmit (1-254) for bit transmission, 255 for unlimited data transfer

[31:24]

rx_bits

read-write

to receive (1-254) for bit reception, 255 for unlimited data receive.

21.6. SPI_CR2 Register

This is a 32-bit register which allows secondary controls of SPI module including Interrupt Controls, Idle pulse states & CRC controls.

0234567ReservedSS_PULSIDLE_MOSIERR_IERXNE_IETXE_IEread-writeread-writeread-writeread-writeread-write811121315ReservedFIFO_THReservedread-write16171823CRC_RINCRC_ROUTReservedread-writeread-write24262731SLV_IDReservedread-write
Table 21.8 SPI_CR2 subfeild description

Bits

Field Name

Attribute

Description

[2:0]

Reserved

read-write

Reads will return zeros and writes will have no effect

[3:3]

ss_puls

read-write

SS Goes High [1] or Keeps Low [0] during inter-transfer delay (See SPI_DR[3])

[4:4]

idle_mosi

read-write

MOSI Keeps High [1] or Keeps Low [0] during (Half)duplex transaction’s idle phase.

[5:5]

err_ie

read-write

Enable Interrupt for Errors

[6:6]

rxne_ie

read-write

Enable Interrupt when RxR is NOT empty

[7:7]

txe_ie

read-write

Enable Interrupt when TxR is empty

[11:8]

Reserved

read-write

Reads will return zeros and writes will have no effect

[12:12]

fifo_th

read-write

Sets Threshold for FIFO (0) Half (1) 3/4th’s

[15:13]

Reserved

read-write

Reads will return zeros and writes will have no effect

[16:16]

crc_rin

read-write

Reflect the data fed for CRC - www.crccalc.com

[17:17]

crc_rout

read-write

Reflect the CRC output - www.crccalc.com

[23:18]

Reserved

read-write

Reads will return zeros and writes will have no effect

[26:24]

slv_id

read-write

Slave Selector (SSN) where N=0 to 7 (depends on the slave_count in IP)

[31:27]

Reserved

read-write

Reads will return zeros and writes will have no effect

21.7. SPI_EN Register

8-bit register that acts as control bit for the SPI module. On completion of transaction this bit will be unset by SPI module. .. note :: Read all the warnings and notes in the TXR and RXR registers before

using this register

017ENABLEReservedread-write
Table 21.9 SPI_EN subfeild description

Bits

Field Name

Attribute

Description

[0:0]

enable

read-write

Enables (1) / Disables (0) the SPI module

[7:1]

Reserved

read-write

Reads will return zeros and writes will have no effect

21.8. SPI_SR Register

32-bit register that indicates status of SPI module, including the status to write/read TxR/RxR respectively along with internal FIFO status.

012347RXNETXERXFTXNFReservedread-onlyread-onlyread-onlyread-only8910111215CRCERRReservedOVRFBSYReservedread-onlyread-onlyread-only1623FTCNTread-only2431FRCNTread-only
Table 21.10 SPI_SR subfeild description

Bits

Field Name

Attribute

Description

[0:0]

rxne

read-only

RxR is not empty (when set, Ready to read RxR)

[1:1]

txe

read-only

TxR is empty (when set, Ready in writing to TxR)

[2:2]

rxf

read-only

RxFIFO is full

[3:3]

txnf

read-only

TxFIFO is not full (Data from TxR will be enqueued as long as this field is set )

[7:4]

Reserved

read-write

Reads will return zeros and writes will have no effect

[8:8]

crcerr

read-only

CRC Error

[9:9]

Reserved

read-write

Reads will return zeros and writes will have no effect

[10:10]

ovrf

read-only

Overflow Flag (Tx FIFO overflow)

[11:11]

bsy

read-only

SPI is performing Transactions (1) / IDLE (0)

[15:12]

Reserved

read-write

Reads will return zeros and writes will have no effect

[23:16]

ftcnt

read-only

Yet- to -transmit bytes in Tx FIFO ( Indicates number of bytes filled in FIFO)

[31:24]

frcnt

read-only

Unread bytes in Rx FIFO ( Indicates number of bytes filled in FIFO)

21.9. TXR Register

32-bit register that should be written for data transmission. Data should be written to this register when txe is set and each write is aligned according to the lsb_1st. As long as txnf is set, data can be written into this register that will be queued into TxFIFO whose filled status can be found from ftcnt.

Note

This register can be written even during SPI_EN is disabled. This allows Tx Data to be written to FIFO then enable the SPI. Read the Next Note.

Note

If the selected communication mode involves ‘Tx’, the transaction will start depending on the data filled into the tx_fifo. If txbits > 0 and txbits < fifo_depth x 8 , transaction will only start after tx_fifo gets filled. Otherwise the tx_fifo should be filled to half of the fifo_depth to start the transaction.

Note

It is better practice to fill the data into fifo and then assert SPI_EN = 1

Warning

When a new Transaction is being started, checking contents of ftcnt frcnt is good practice to avoid stale data from previous transactions. If any of the field returns non-zero, FIFO can be cleared by clr_state bit.

031TXRread-write

21.10. RXR Register

32-bit Read-Only register that should be read during data reception. Data should be read from this register when rxne is set and each read is aligned according to the lsb_1st. It is best practice to keep track of frcnt to know how many bytes are yet to be read from internal RxFIFO. If the FIFO fills up rxf will be set (ending the receive transaction)

Note

This register can be read even after SPI_EN is disabled. This allows Rx Data to be read from FIFO after transaction completes.

Warning

Contents of FIFO will get cleared on setting clr_state bit.

031RXRread-only

21.11. RX_CRC Register

32-bit register that’ll be updated with CRC hash of data received. The Hash will depend on crc_poly, crc_init, crc_en, crc_len, crc_rin & crc_rout parameters. Intermediate hashes are stored into this register periodically. Final hash can be read from this register when transaction winds up.

07RXCRCread-only815RXCRCread-only1623Reserved2431Reserved
Table 21.11 RX_CRC subfeild description

Bits

Field Name

Attribute

Description

[15:0]

rxcrc

read-only

CRC Hash for data received during Rxn

[31:16]

Reserved

read-write

Reads will return zeros and writes will have no effect

21.12. TX_CRC Register

32-bit register that’ll be updated with CRC hash of data transmitted. The Hash will depend on crc_poly, crc_init, crc_en, crc_len, crc_rin & crc_rout parameters. Intermediate hashes are stored into this register periodically. Final hash can be read from this register when transaction winds up.

07TXCRCread-only815TXCRCread-only1623Reserved2431Reserved
Table 21.12 TX_CRC subfeild description

Bits

Field Name

Attribute

Description

[15:0]

txcrc

read-only

CRC Hash for data received during Txn

[31:16]

Reserved

read-write

Reads will return zeros and writes will have no effect

21.13. SPI_DR Register

This 32-bit register holds ‘additional’ delay that should be provided to support slow-responding slaves, whose ‘setup’, ‘hold’ & ‘xfer’ delay should be assisted by master. This register provides option of choosing clock source and the delay enabling bits for quick enable and disable of particular delay.

Note

During the xfer delay, nss follows the ss_puls.

012347CLK_SRCSD_ENHD_ENXD_ENReservedread-writeread-writeread-writeread-write815SETUP_DELAYread-write1623HOLD_DELAYread-write2431XFER_DELAYread-write
Table 21.13 SPI_DR subfeild description

Bits

Field Name

Attribute

Description

[0:0]

clk_src

read-write

Selects bus clock(0) / SPI clock(1) for delays

[1:1]

sd_en

read-write

Enable Setup delay

[2:2]

hd_en

read-write

Enable Hold Delay

[3:3]

xd_en

read-write

Enable Transfer Delay (Applicable for Half Duplex transactions only)

[7:4]

Reserved

read-write

Reads will return zeros and writes will have no effect

[15:8]

setup_delay

read-write

8 bit delay for setup time

[23:16]

hold_delay

read-write

8-bit delay for Hold time

[31:24]

xfer_delay

read-write

8-bit delay between transactions (idles to SS_PULS)

21.14. SPI_PSCR Register

The prescalar value is the divisor value for clock. Prescalar minimum value is 2 and maximum value is 65534.

Note

Prescalar should be an even value. if odd value is sent, it will be added ‘+1’ to make it even.

Warning

When using prescalar value of 2, the SPI runs at half the frequency of bus clock , during transactions intermediate delays might be observable, Although Functionality doesn’t gets effected.

07PRESCALARread-write815PRESCALARread-write
Table 21.14 SPI_PSCR subfeild description

Bits

Field Name

Attribute

Description

[15:0]

prescalar

read-write

value > 1 and < 65535 are valid values for dividing bus clock.

21.15. SPI_CRCPR Register

This 32-bit register holds the value of polynomial and initial values according to the crc_len that dictates between CRC8 / CRC16

07CRC_POLYread-write815CRC_POLYread-write1623CRC_INITread-write2431CRC_INITread-write
Table 21.15 SPI_CRCPR subfeild description

Bits

Field Name

Attribute

Description

[15:0]

crc_poly

read-write

Polynomial to be used for generating CRC Hash

[31:16]

crc_init

read-write

Initial value of CRC Algo. to be used to generate Hash.

21.16. IO and Sideband Signals

The following table describes the io-signals generated from this IP that may directly or indirectly drive certain IO pads.

Table 21.16 SPI generated IO signals

Signal Name (RTL)

Size

Direction

Description

mosi

1

output

SPI Output

miso

1

input

SPI Input

sclk

1

output

Serial Clock

nss

1

output

Slave select

Note

some of these signals may be muxed with other functional IO from different ips and users should refer to any pinmux module available on chip

Table 21.17 SPI generated side-band signals generated

Signal Name (RTL)

Size

Direction

Description

interrupt

1

output

Signal indicating an interrupt has been raised by the SPI if enabled in control register (SPI_CR2). Signal is connected to PLIC.