OpenCores
URL https://opencores.org/ocsvn/neorv32/neorv32/trunk

Subversion Repositories neorv32

[/] [neorv32/] [trunk/] [docs/] [datasheet/] [soc_spi.adoc] - Diff between revs 60 and 64

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 60 Rev 64
Line 20... Line 20...
 
 
SPI is a synchronous serial transmission interface. The NEORV32 SPI transceiver allows 8-, 16-, 24- and 32-
SPI is a synchronous serial transmission interface. The NEORV32 SPI transceiver allows 8-, 16-, 24- and 32-
bit long transmissions. The unit provides 8 dedicated chip select signals via the top entity's `spi_csn_o`
bit long transmissions. The unit provides 8 dedicated chip select signals via the top entity's `spi_csn_o`
signal.
signal.
 
 
The SPI unit is enabled via the _SPI_CT_EN_ bit in the _SPI_CT_ control register. The idle clock polarity is configured via the _SPI_CT_CPHA_
The SPI unit is enabled via the _SPI_CTRL_EN_ bit in the `CTRL` control register. The idle clock polarity is configured via the _SPI_CTRL_CPHA_
bit and can be low (`0`) or high (`1`) during idle. The data quantity to be transferred within a
bit and can be low (`0`) or high (`1`) during idle. The data quantity to be transferred within a
single transmission is defined via the _SPI_CT_SIZEx bits_. The unit supports 8-bit (`00`), 16-bit (`01`), 24-
single transmission is defined via the _SPI_CTRL_SIZEx bits_. The unit supports 8-bit (`00`), 16-bit (`01`), 24-
bit (`10`) and 32-bit (`11`) transfers. Whenever a transfer is completed, the "transmission done interrupt" is triggered.
bit (`10`) and 32-bit (`11`) transfers. Whenever a transfer is completed, the "transmission done interrupt" is triggered.
A transmission is still in progress as long as the _SPI_CT_BUSY_ flag is set.
A transmission is still in progress as long as the _SPI_CTRL_BUSY_ flag is set.
 
 
The SPI controller features 8 dedicated chip-select lines. These lines are controlled via the control register's _SPI_CT_CSx_ bits. When
The SPI controller features 8 dedicated chip-select lines. These lines are controlled via the control register's _SPI_CTRL_CSx_ bits. When
a specifc _SPI_CT_CSx_ bit is **set**, the according chip select line `spi_csn_o(x)` goes **low** (low-active chip select lines).
a specifc _SPI_CTRL_CSx_ bit is **set**, the according chip select line `spi_csn_o(x)` goes **low** (low-active chip select lines).
 
 
The SPI clock frequency is defined via the 3-bit _SPI_CT_PRSCx_ clock prescaler. The following prescalers
The SPI clock frequency is defined via the 3-bit _SPI_CTRL_PRSCx_ clock prescaler. The following prescalers
are available:
are available:
 
 
.SPI prescaler configuration
.SPI prescaler configuration
[cols="<4,^1,^1,^1,^1,^1,^1,^1,^1"]
[cols="<4,^1,^1,^1,^1,^1,^1,^1,^1"]
[options="header",grid="rows"]
[options="header",grid="rows"]
|=======================
|=======================
| **`SPI_CT_PRSCx`**          | `0b000` | `0b001` | `0b010` | `0b011` | `0b100` | `0b101` | `0b110` | `0b111`
| **`SPI_CTRL_PRSCx`**        | `0b000` | `0b001` | `0b010` | `0b011` | `0b100` | `0b101` | `0b110` | `0b111`
| Resulting `clock_prescaler` |       2 |       4 |       8 |      64 |     128 |    1024 |    2048 |    4096
| Resulting `clock_prescaler` |       2 |       4 |       8 |      64 |     128 |    1024 |    2048 |    4096
|=======================
|=======================
 
 
Based on the _SPI_CT_PRSCx_ configuration, the actual SPI clock frequency f~SPI~ is derived from the processor's main clock f~main~ and is determined by:
Based on the _SPI_CTRL_PRSCx_ configuration, the actual SPI clock frequency f~SPI~ is derived from the processor's main clock f~main~ and is determined by:
 
 
_**f~SPI~**_ = _f~main~[Hz]_ / (2 * `clock_prescaler`)
_**f~SPI~**_ = _f~main~[Hz]_ / (2 * `clock_prescaler`)
 
 
A transmission is started when writing data to the _SPI_DATA_ register. The data must be LSB-aligned. So if
A transmission is started when writing data to the `DATA` register. The data must be LSB-aligned. So if
the SPI transceiver is configured for less than 32-bit transfers data quantity, the transmit data must be placed
the SPI transceiver is configured for less than 32-bit transfers data quantity, the transmit data must be placed
into the lowest 8/16/24 bit of _SPI_DATA_. Vice versa, the received data is also always LSB-aligned.
into the lowest 8/16/24 bit of `DATA`. Vice versa, the received data is also always LSB-aligned.
 
 
.SPI register map
.SPI register map (`struct NEORV32_SPI`)
[cols="<2,<2,<4,^1,<7"]
[cols="<2,<2,<4,^1,<7"]
[options="header",grid="all"]
[options="header",grid="all"]
|=======================
|=======================
| Address | Name [C] | Bit(s), Name [C] | R/W | Function
| Address | Name [C] | Bit(s), Name [C] | R/W | Function
.16+<| `0xffffffa8` .16+<| _SPI_CT_ <|`0` _SPI_CT_CS0_     ^| r/w .8+<| Direct chip-select 0..7; setting `spi_csn_o(x)` low when set
.16+<| `0xffffffa8` .16+<| `NEORV32_SPI.CTRL` <|`0` _SPI_CTRL_CS0_     ^| r/w .8+<| Direct chip-select 0..7; setting `spi_csn_o(x)` low when set
                                    <|`1` _SPI_CT_CS1_     ^| r/w
                                              <|`1` _SPI_CTRL_CS1_     ^| r/w
                                    <|`2` _SPI_CT_CS2_     ^| r/w
                                              <|`2` _SPI_CTRL_CS2_     ^| r/w
                                    <|`3` _SPI_CT_CS3_     ^| r/w
                                              <|`3` _SPI_CTRL_CS3_     ^| r/w
                                    <|`4` _SPI_CT_CS4_     ^| r/w
                                              <|`4` _SPI_CTRL_CS4_     ^| r/w
                                    <|`5` _SPI_CT_CS5_     ^| r/w
                                              <|`5` _SPI_CTRL_CS5_     ^| r/w
                                    <|`6` _SPI_CT_CS6_     ^| r/w
                                              <|`6` _SPI_CTRL_CS6_     ^| r/w
                                    <|`7` _SPI_CT_CS7_     ^| r/w
                                              <|`7` _SPI_CTRL_CS7_     ^| r/w
                                    <|`8` _SPI_CT_EN_      ^| r/w <| SPI enable
                                              <|`8` _SPI_CTRL_EN_      ^| r/w <| SPI enable
                                    <|`9` _SPI_CT_CPHA_    ^| r/w <| polarity of `spi_sck_o` when idle
                                              <|`9` _SPI_CTRL_CPHA_    ^| r/w <| polarity of `spi_sck_o` when idle
                                    <|`10` _SPI_CT_PRSC0_  ^| r/w .3+| 3-bit clock prescaler select
                                              <|`10` _SPI_CTRL_PRSC0_  ^| r/w .3+| 3-bit clock prescaler select
                                    <|`11` _SPI_CT_PRSC1_  ^| r/w
                                              <|`11` _SPI_CTRL_PRSC1_  ^| r/w
                                    <|`12` _SPI_CT_PRSC2_  ^| r/w
                                              <|`12` _SPI_CTRL_PRSC2_  ^| r/w
                                    <|`14` _SPI_CT_SIZE0_  ^| r/w .2+<| transfer size (`00`=8-bit, `01`=16-bit, `10`=24-bit, `11`=32-bit)
                                              <|`14` _SPI_CTRL_SIZE0_  ^| r/w .2+<| transfer size (`00`=8-bit, `01`=16-bit, `10`=24-bit, `11`=32-bit)
                                    <|`15` _SPI_CT_SIZE1_  ^| r/w
                                              <|`15` _SPI_CTRL_SIZE1_  ^| r/w
                                    <|`31` _SPI_CT_BUSY_   ^| r/- <| transmission in progress when set
                                              <|`31` _SPI_CTRL_BUSY_   ^| r/- <| transmission in progress when set
| `0xffffffac` | _SPI_DATA_ |`31:0` | r/w | receive/transmit data, LSB-aligned
| `0xffffffac` | `NEORV32_SPI.DATA` |`31:0` | r/w | receive/transmit data, LSB-aligned
|=======================
|=======================

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.