1 |
60 |
zero_gravi |
<<<
|
2 |
|
|
:sectnums:
|
3 |
|
|
==== Custom Functions Subsystem (CFS)
|
4 |
|
|
|
5 |
|
|
[cols="<3,<3,<4"]
|
6 |
|
|
[frame="topbot",grid="none"]
|
7 |
|
|
|=======================
|
8 |
|
|
| Hardware source file(s): | neorv32_gfs.vhd |
|
9 |
|
|
| Software driver file(s): | neorv32_gfs.c |
|
10 |
|
|
| | neorv32_gfs.h |
|
11 |
|
|
| Top entity port: | `cfs_in_i` | custom input conduit
|
12 |
|
|
| | `cfs_out_o` | custom output conduit
|
13 |
|
|
| Configuration generics: | _IO_CFS_EN_ | implement CFS when _true_
|
14 |
|
|
| | _IO_CFS_CONFIG_ | custom generic conduit
|
15 |
|
|
| | _IO_CFS_IN_SIZE_ | size of `cfs_in_i`
|
16 |
|
|
| | _IO_CFS_OUT_SIZE_ | size of `cfs_out_o`
|
17 |
|
|
| CPU interrupts: | fast IRQ channel 1 | CFS interrupt (see <<_processor_interrupts>>)
|
18 |
|
|
|=======================
|
19 |
|
|
|
20 |
|
|
**Theory of Operation**
|
21 |
|
|
|
22 |
71 |
zero_gravi |
The custom functions subsystem is meant for implementing custom and application-specific logic.
|
23 |
73 |
zero_gravi |
The CFS provides up to 32x 32-bit memory-mapped read/write
|
24 |
71 |
zero_gravi |
registers (`REG`, see register map below) that can be accessed by the CPU via normal load/store operations.
|
25 |
65 |
zero_gravi |
The actual functionality of these register has to be defined by the hardware designer. Furthermore, the CFS
|
26 |
73 |
zero_gravi |
provides two IO conduits to implement custom on-chip or off-chip interfaces.
|
27 |
60 |
zero_gravi |
|
28 |
65 |
zero_gravi |
In contrast to connecting custom hardware accelerators via external memory interfaces (like SPI or the processor's
|
29 |
|
|
external bus interface), the CFS provide a convenient, low-latency and tightly-coupled extension and
|
30 |
|
|
customization option.
|
31 |
60 |
zero_gravi |
|
32 |
65 |
zero_gravi |
Just like any other externally-connected IP, logic implemented within the custom functions subsystem can operate
|
33 |
|
|
_independently_ of the CPU providing true parallel processing capabilities. Potential use cases might include
|
34 |
|
|
dedicated hardware accelerators for en-/decryption (AES), signal processing (FFT) or AI applications
|
35 |
|
|
(CNNs) as well as custom IO systems like fast memory interfaces (DDR) and mass storage (SDIO), networking (CAN)
|
36 |
|
|
or real-time data transport (I2S).
|
37 |
|
|
|
38 |
72 |
zero_gravi |
[TIP]
|
39 |
|
|
If you like to implement _custom instructions_ that are executed right within the CPU's ALU
|
40 |
|
|
see the <<_zxcfu_custom_instructions_extension_cfu>> and the according <<_custom_functions_unit_cfu>>.
|
41 |
|
|
|
42 |
|
|
[TIP]
|
43 |
60 |
zero_gravi |
Take a look at the template CFS VHDL source file (`rtl/core/neorv32_cfs.vhd`). The file is highly
|
44 |
|
|
commented to illustrate all aspects that are relevant for implementing custom CFS-based co-processor designs.
|
45 |
|
|
|
46 |
65 |
zero_gravi |
|
47 |
60 |
zero_gravi |
**CFS Software Access**
|
48 |
|
|
|
49 |
|
|
The CFS memory-mapped registers can be accessed by software using the provided C-language aliases (see
|
50 |
73 |
zero_gravi |
register map table below). Note that all interface registers are declared as 32-bit words of type `uint32_t`.
|
51 |
60 |
zero_gravi |
|
52 |
73 |
zero_gravi |
.CFS Software Access Example
|
53 |
60 |
zero_gravi |
[source,c]
|
54 |
|
|
----
|
55 |
|
|
// C-code CFS usage example
|
56 |
64 |
zero_gravi |
NEORV32_CFS.REG[0] = (uint32_t)some_data_array(i); // write to CFS register 0
|
57 |
73 |
zero_gravi |
int temp = (int)NEORV32_CFS.REG[20]; // read from CFS register 20
|
58 |
60 |
zero_gravi |
----
|
59 |
|
|
|
60 |
71 |
zero_gravi |
[TIP]
|
61 |
|
|
A very simple example program that uses the _default_ CFS hardware module can be found in `sw/example/cfs_demo`.
|
62 |
65 |
zero_gravi |
|
63 |
71 |
zero_gravi |
|
64 |
60 |
zero_gravi |
**CFS Interrupt**
|
65 |
|
|
|
66 |
71 |
zero_gravi |
The CFS provides a single high-level-triggered interrupt request signal mapped to the CPU's fast interrupt channel 1.
|
67 |
73 |
zero_gravi |
Once triggered, the interrupt becomes pending (if enabled in the `mis` CSR) and has to be explicitly cleared again by
|
68 |
|
|
writing zero to the according <<_mip>> CSR bit. See section <<_processor_interrupts>> for more information.
|
69 |
60 |
zero_gravi |
|
70 |
65 |
zero_gravi |
|
71 |
60 |
zero_gravi |
**CFS Configuration Generic**
|
72 |
|
|
|
73 |
|
|
By default, the CFS provides a single 32-bit `std_(u)logic_vector` configuration generic _IO_CFS_CONFIG_
|
74 |
|
|
that is available in the processor's top entity. This generic can be used to pass custom configuration options
|
75 |
71 |
zero_gravi |
from the top entity directly down to the CFS. The actual definition of the generic and it's usage inside the
|
76 |
65 |
zero_gravi |
CFS is left to the hardware designer.
|
77 |
60 |
zero_gravi |
|
78 |
65 |
zero_gravi |
|
79 |
60 |
zero_gravi |
**CFS Custom IOs**
|
80 |
|
|
|
81 |
|
|
By default, the CFS also provides two unidirectional input and output conduits `cfs_in_i` and `cfs_out_o`.
|
82 |
65 |
zero_gravi |
These signals are directly propagated to the processor's top entity. These conduits can be used to implement
|
83 |
71 |
zero_gravi |
application-specific interfaces like memory or peripheral connections. The actual use case of these signals
|
84 |
65 |
zero_gravi |
has to be defined by the hardware designer.
|
85 |
|
|
|
86 |
|
|
The size of the input signal conduit `cfs_in_i` is defined via the top's _IO_CFS_IN_SIZE_ configuration
|
87 |
|
|
generic (default = 32-bit). The size of the output signal conduit `cfs_out_o` is defined via the top's
|
88 |
60 |
zero_gravi |
_IO_CFS_OUT_SIZE_ configuration generic (default = 32-bit). If the custom function subsystem is not implemented
|
89 |
|
|
(_IO_CFS_EN_ = false) the `cfs_out_o` signal is tied to all-zero.
|
90 |
|
|
|
91 |
65 |
zero_gravi |
|
92 |
64 |
zero_gravi |
.CFS register map (`struct NEORV32_CFS`)
|
93 |
60 |
zero_gravi |
[cols="^4,<5,^2,^3,<14"]
|
94 |
|
|
[options="header",grid="all"]
|
95 |
|
|
|=======================
|
96 |
|
|
| Address | Name [C] | Bit(s) | R/W | Function
|
97 |
64 |
zero_gravi |
| `0xfffffe00` | `NEORV32_CFS.REG[0]` |`31:0` | (r)/(w) | custom CFS interface register 0
|
98 |
|
|
| `0xfffffe04` | `NEORV32_CFS.REG[1]` |`31:0` | (r)/(w) | custom CFS interface register 1
|
99 |
|
|
| ... | ... |`31:0` | (r)/(w) | ...
|
100 |
|
|
| `0xfffffe78` | `NEORV32_CFS.REG[30]` |`31:0` | (r)/(w) | custom CFS interface register 30
|
101 |
|
|
| `0xfffffe7c` | `NEORV32_CFS.REG[31]` |`31:0` | (r)/(w) | custom CFS interface register 31
|
102 |
60 |
zero_gravi |
|=======================
|