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

Subversion Repositories neorv32

[/] [neorv32/] [trunk/] [docs/] [datasheet/] [overview.adoc] - Blame information for rev 68

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 60 zero_gravi
:sectnums:
2
== Overview
3
 
4
The NEORV32footnote:[Pronounced "neo-R-V-thirty-two" or "neo-risc-five-thirty-two" in its long form.] is an open-source
5
RISC-V compatible processor system that is intended as *ready-to-go* auxiliary processor within a larger SoC
6
designs or as stand-alone custom / customizable microcontroller.
7
 
8
The system is highly configurable and provides optional common peripherals like embedded memories,
9
timers, serial interfaces, general purpose IO ports and an external bus interface to connect custom IP like
10
memories, NoCs and other peripherals. On-line and in-system debugging is supported by an OpenOCD/gdb
11
compatible on-chip debugger accessible via JTAG.
12
 
13 66 zero_gravi
Special focus is paid on **execution safety** to provide defined and predictable behavior at any time.
14
Therefore, the CPU ensures that all memory access are acknowledged and no invalid/malformed instructions
15
are executed. Whenever an unexpected situation occurs, the application code is informed via hardware exceptions.
16
 
17 60 zero_gravi
The software framework of the processor comes with application makefiles, software libraries for all CPU
18 65 zero_gravi
and processor features, a bootloader, a runtime environment and several example programs - including a port
19 60 zero_gravi
of the CoreMark MCU benchmark and the official RISC-V architecture test suite. RISC-V GCC is used as
20
default toolchain (https://github.com/stnolting/riscv-gcc-prebuilt[prebuilt toolchains are also provided]).
21
 
22
[TIP]
23 61 zero_gravi
Check out the processor's **https://stnolting.github.io/neorv32/ug[online User Guide]**
24
that provides hands-on tutorial to get you started.
25
 
26
[TIP]
27 60 zero_gravi
The project's change log is available in https://github.com/stnolting/neorv32/blob/master/CHANGELOG.md[CHANGELOG.md]
28
in the root directory of the NEORV32 repository. Please also check out the <<_legal>> section.
29
 
30
 
31 61 zero_gravi
**Structure**
32 60 zero_gravi
 
33 65 zero_gravi
[start=2]
34 64 zero_gravi
. <<_neorv32_processor_soc>>
35
. <<_neorv32_central_processing_unit_cpu>>
36 65 zero_gravi
. <<_software_framework>>
37 64 zero_gravi
. <<_on_chip_debugger_ocd>>
38 60 zero_gravi
 
39 61 zero_gravi
[TIP]
40
Links in this document are <<_overview,highlighted>>.
41 60 zero_gravi
 
42
 
43
 
44 61 zero_gravi
<<<
45
// ####################################################################################################################
46
:sectnums:
47
=== Rationale
48 60 zero_gravi
 
49 61 zero_gravi
**Why did you make this?**
50 60 zero_gravi
 
51 61 zero_gravi
I am fascinated by processor and CPU architecture design: it is the magic frontier where software meets hardware.
52
This project has started as something like a _journey_ into this magic realm to understand how things actually work
53
down on this very low level.
54 60 zero_gravi
 
55 61 zero_gravi
But there is more! When I started to dive into the emerging RISC-V ecosystem I felt overwhelmed by the complexity.
56
As a beginner it is hard to get an overview - especially when you want to setup a minimal platform to tinker with:
57
Which core to use? How to get the right toolchain? What features do I need? How does the booting work? How do I
58
create an actual executable? How to get that into the hardware? How to customize things? **_Where to start???_**
59 60 zero_gravi
 
60 61 zero_gravi
So this project aims to provides a _simple to understand_ and _easy to use_ yet _powerful_ and _flexible_ platform
61
that targets FPGA and RISC-V beginners as well as advanced users. Join me and us on this journey! 🙃
62 60 zero_gravi
 
63
 
64 61 zero_gravi
**Why a _soft_-core processor?**
65 60 zero_gravi
 
66 61 zero_gravi
As a matter of fact soft-core processors _cannot_ compete with discrete or FPGA hard-macro processors in terms
67
of performance, energy and size. But they do fill a niche in FPGA design space. For example, soft-core processors
68
allow to implement the _control flow part_ of certain applications (like communication protocol handling) using
69
software like plain C. This provides high flexibility as software can be easily changed, re-compiled and
70
re-uploaded again.
71 60 zero_gravi
 
72 61 zero_gravi
Furthermore, the concept of flexibility applies to all aspects of a soft-core processor. The user can add
73
_exactly_ the features that are required by the application: additional memories, custom interfaces, specialized
74
IP and even user-defined instructions.
75 60 zero_gravi
 
76
 
77 61 zero_gravi
**Why RISC-V?**
78
 
79
[quote, RISC-V International, https://riscv.org/about/]
80
____
81
RISC-V is a free and open ISA enabling a new era of processor innovation through open standard collaboration.
82
____
83
 
84
I love the idea of open-source. **Knowledge can help best if it is freely available.**
85
While open-source has already become quite popular in _software_, hardware projects still need to catch up.
86
Admittedly, there has been quite a development, but mainly in terms of _platforms_ and _applications_ (so
87
schematics, PCBs, etc.). Although processors and CPUs are the heart of almost every digital system, having a true
88
open-source silicon is still a rarity. RISC-V aims to change that. Even it is _just one approach_, it helps paving
89
the road for future development.
90
 
91
Furthermore, I welcome the community aspect of RISC-V. The ISA and everything beyond is developed with direct
92
contact to the community: this includes businesses and professionals but also hobbyist, amateurs and people
93
that are just curious. Everyone can join discussions and contribute to RISC-V in their very own way.
94
 
95
Finally, I really like the RISC-V ISA itself. It aims to be a clean, orthogonal and "intuitive" ISA that
96
resembles with the basic concepts of _RISC_: simple yet effective.
97
 
98
 
99
**Yet another RISC-V core? What makes it special?**
100
 
101
The NEORV32 is not based on another RISC-V core. It was build entirely from ground up (just following the official
102
ISA specs) having a different design goal in mind. The project does not intend to replace certain RISC-V cores or
103
just beat existing ones like https://github.com/SpinalHDL/VexRiscv[VexRISC] in terms of performance or
104
https://github.com/olofk/serv[SERV] in terms of size.
105
 
106
The project aims to provide _another option_ in the RISC-V / soft-core design space with a different performance
107
vs. size trade-off and a different focus: _embrace_ concepts like documentation, platform-independence / portability,
108
RISC-V compatibility, _customization_ and _ease of use_. See the <<_project_key_features>> below.
109
 
110 68 zero_gravi
Furthermore, the NEORV32 pays special focus on _execution safety_ using <<_full_virtualization>>. The CPU aims to
111
provide fall-backs for _everything that could go wrong_. This includes malformed instruction words, privilege escalations
112
and even memory accesses that are checked for address space holes and deterministic response times from memory-mapped
113
devices. Precise exceptions allow a defined and fully-synchronized state of the CPU at every time.
114 61 zero_gravi
 
115 68 zero_gravi
 
116
 
117 60 zero_gravi
// ####################################################################################################################
118
:sectnums:
119
=== Project Key Features
120
 
121 61 zero_gravi
* open-source and documented; including user guides to get started
122
* completely described in behavioral, platform-independent VHDL (yet platform-optimized modules are provided)
123
* fully synchronous design, no latches, no gated clocks
124
* small hardware footprint and high operating frequency for easy integration
125
* **NEORV32 CPU**: 32-bit `rv32i` RISC-V CPU
126
** RISC-V compatibility: passes the official architecture tests
127
** base architecture + privileged architecture (optional) + ISA extensions (optional)
128
** rich set of customization options (ISA extensions, design goal: performance / area (/ energy), ...)
129 62 zero_gravi
** aims to support <<_full_virtualization>> capabilities (CPU _and_ SoC) to increase execution safety
130 61 zero_gravi
** official https://github.com/riscv/riscv-isa-manual/blob/master/marchid.md[RISC-V open source architecture ID]
131
* **NEORV32 Processor (SoC)**: highly-configurable full-scale microcontroller-like processor system
132
** based on the NEORV32 CPU
133
** optional serial interfaces (UARTs, TWI, SPI)
134
** optional timers and counters (WDT, MTIME)
135
** optional general purpose IO and PWM and native NeoPixel (c) compatible smart LED interface
136
** optional embedded memories / caches for data, instructions and bootloader
137
** optional external memory interface (Wishbone / AXI4-Lite) and stream link interface (AXI4-Stream) for custom connectivity
138
** on-chip debugger compatible with OpenOCD and gdb
139 60 zero_gravi
* **Software framework**
140
** GCC-based toolchain - prebuilt toolchains available; application compilation based on GNU makefiles
141
** internal bootloader with serial user interface
142
** core libraries for high-level usage of the provided functions and peripherals
143
** runtime environment and several example programs
144
** doxygen-based documentation of the software framework; a deployed version is available at https://stnolting.github.io/neorv32/sw/files.html
145
** FreeRTOS port + demos available
146
 
147 61 zero_gravi
[TIP]
148
For more in-depth details regarding the feature provided by he hardware see the according sections:
149
<<_neorv32_central_processing_unit_cpu>> and <<_neorv32_processor_soc>>.
150 60 zero_gravi
 
151 61 zero_gravi
 
152 60 zero_gravi
<<<
153
// ####################################################################################################################
154
:sectnums:
155
=== Project Folder Structure
156
 
157
...................................
158 63 zero_gravi
neorv32                - Project home folder
159 62 zero_gravi
160 63 zero_gravi
├docs                  - Project documentation
161 66 zero_gravi
│├datasheet            - AsciiDoc sources for the NEORV32 data sheet
162 63 zero_gravi
│├figures              - Figures and logos
163
│├icons                - Misc. symbols
164
│├references           - Data sheets and RISC-V specs.
165 66 zero_gravi
│└userguide            - AsciiDoc sources for the NEORV32 user guide
166 62 zero_gravi
167 63 zero_gravi
├rtl                   - VHDL sources
168
│├core                 - Core sources of the CPU & SoC
169 64 zero_gravi
││└mem                 - SoC-internal memories (default architectures)
170 63 zero_gravi
│├processor_templates  - Pre-configured SoC wrappers
171
│├system_integration   - System wrappers for advanced connectivity
172
│└test_setups          - Minimal test setup "SoCs" used in the User Guide
173 62 zero_gravi
174 63 zero_gravi
├setups                - Example setups for various FPGAs, boards and toolchains
175 61 zero_gravi
│└...
176 62 zero_gravi
177 63 zero_gravi
├sim                   - Simulation files (see User Guide)
178 62 zero_gravi
179 63 zero_gravi
└sw                    - Software framework
180 66 zero_gravi
 ├bootloader           - Sources of the processor-internal bootloader
181
 ├common               - Linker script, crt0.S start-up code and central makefile
182 63 zero_gravi
 ├example              - Various example programs
183 60 zero_gravi
 │└...
184 62 zero_gravi
 ├isa-test
185 63 zero_gravi
 │├riscv-arch-test     - RISC-V spec. compatibility test framework (submodule)
186
 │└port-neorv32        - Port files for the official RISC-V architecture tests
187 66 zero_gravi
 ├ocd_firmware         - Source code for on-chip debugger's "park loop"
188 63 zero_gravi
 ├openocd              - OpenOCD on-chip debugger configuration files
189
 ├image_gen            - Helper program to generate NEORV32 executables
190
 └lib                  - Processor core library
191
  ├include             - Header files (*.h)
192
  └source              - Source files (*.c)
193 60 zero_gravi
...................................
194
 
195
 
196
 
197
<<<
198
// ####################################################################################################################
199
:sectnums:
200
=== VHDL File Hierarchy
201
 
202 68 zero_gravi
All necessary VHDL hardware description files are located in the project's `rtl/core` folder. The top entity
203 60 zero_gravi
of the entire processor including all the required configuration generics is **`neorv32_top.vhd`**.
204
 
205
[IMPORTANT]
206
All core VHDL files from the list below have to be assigned to a new design library named **`neorv32`**. Additional
207
files, like alternative top entities, can be assigned to any library.
208
 
209
...................................
210 61 zero_gravi
neorv32_top.vhd                  - NEORV32 Processor top entity
211
212
├neorv32_fifo.vhd                - General purpose FIFO component
213
├neorv32_package.vhd             - Processor/CPU main VHDL package file
214
215
├neorv32_cpu.vhd                 - NEORV32 CPU top entity
216
│├neorv32_cpu_alu.vhd            - Arithmetic/logic unit
217 63 zero_gravi
││├neorv32_cpu_cp_bitmanip.vhd   - Bit-manipulation co-processor (B ext.)
218 61 zero_gravi
││├neorv32_cpu_cp_fpu.vhd        - Floating-point co-processor (Zfinx ext.)
219
││├neorv32_cpu_cp_muldiv.vhd     - Mul/Div co-processor (M extension)
220
││└neorv32_cpu_cp_shifter.vhd    - Bit-shift co-processor
221
│├neorv32_cpu_bus.vhd            - Bus interface + physical memory protection
222
│├neorv32_cpu_control.vhd        - CPU control, exception/IRQ system and CSRs
223
││└neorv32_cpu_decompressor.vhd  - Compressed instructions decoder
224
│└neorv32_cpu_regfile.vhd        - Data register file
225
226
├neorv32_boot_rom.vhd            - Bootloader ROM
227
│└neorv32_bootloader_image.vhd   - Bootloader boot ROM memory image
228
├neorv32_busswitch.vhd           - Processor bus switch for CPU buses (I&D)
229
├neorv32_bus_keeper.vhd          - Processor-internal bus monitor
230
├neorv32_cfs.vhd                 - Custom functions subsystem
231
├neorv32_debug_dm.vhd            - on-chip debugger: debug module
232
├neorv32_debug_dtm.vhd           - on-chip debugger: debug transfer module
233 64 zero_gravi
├neorv32_dmem.entity.vhd         - Processor-internal data memory (entity-only!)
234 61 zero_gravi
├neorv32_gpio.vhd                - General purpose input/output port unit
235 67 zero_gravi
├neorv32_gptmr.vhd               - General purpose 32-bit timer
236 62 zero_gravi
├neorv32_icache.vhd              - Processor-internal instruction cache
237 64 zero_gravi
├neorv32_imem.entity.vhd         - Processor-internal instruction memory (entity-only!)
238 61 zero_gravi
│└neor32_application_image.vhd   - IMEM application initialization image
239
├neorv32_mtime.vhd               - Machine system timer
240
├neorv32_neoled.vhd              - NeoPixel (TM) compatible smart LED interface
241
├neorv32_pwm.vhd                 - Pulse-width modulation controller
242 67 zero_gravi
├neorv32_slink.vhd               - Stream link controller
243 61 zero_gravi
├neorv32_spi.vhd                 - Serial peripheral interface controller
244
├neorv32_sysinfo.vhd             - System configuration information memory
245
├neorv32_trng.vhd                - True random number generator
246
├neorv32_twi.vhd                 - Two wire serial interface controller
247
├neorv32_uart.vhd                - Universal async. receiver/transmitter
248
├neorv32_wdt.vhd                 - Watchdog timer
249
├neorv32_wishbone.vhd            - External (Wishbone) bus interface
250 67 zero_gravi
├neorv32_xirq.vhd                - External interrupt controller
251 64 zero_gravi
252 68 zero_gravi
├mem/neorv32_dmem.default.vhd    - _Default_ data memory (architecture-only)
253
└mem/neorv32_imem.default.vhd    - _Default_ instruction memory (architecture-only)
254 60 zero_gravi
...................................
255
 
256 64 zero_gravi
[NOTE]
257
The processor-internal instruction and data memories (IMEM and DMEM) are split into two design files each:
258
a plain entity definition (`neorv32_*mem.entity.vhd`) and the actual architecture definition
259 68 zero_gravi
(`mem/neorv32_*mem.default.vhd`). The `*.default.vhd` architecture definitions from `rtl/core/mem` provide a _generic_ and
260 64 zero_gravi
_platform independent_ memory design that (should) infers embedded memory blocks. You can replace/modify the architecture
261
source file in order to use platform-specific features (like advanced memory resources) or to improve technology mapping
262
and/or timing.
263 60 zero_gravi
 
264 64 zero_gravi
 
265 60 zero_gravi
<<<
266
// ####################################################################################################################
267
:sectnums:
268
=== FPGA Implementation Results
269
 
270 62 zero_gravi
This chapter shows _exemplary_ implementation results of the NEORV32 CPU and NEORV32 Processor.
271 60 zero_gravi
 
272
:sectnums:
273
==== CPU
274
 
275
[cols="<2,<8"]
276
[grid="topbot"]
277
|=======================
278 62 zero_gravi
| Hardware version: | `1.5.7.10`
279 60 zero_gravi
| Top entity:       | `rtl/core/neorv32_cpu.vhd`
280
|=======================
281
 
282
[cols="<5,>1,>1,>1,>1,>1"]
283
[options="header",grid="rows"]
284
|=======================
285 66 zero_gravi
| CPU                                               | LEs  | FFs  | MEM bits | DSPs | _f~max~_
286
| `rv32i`                                           |  806 |  359 |     1024 |    0 | 125 MHz
287
| `rv32i_Zicsr_Zicntr`                              | 1729 |  813 |     1024 |    0 | 124 MHz
288
| `rv32im_Zicsr_Zicntr`                             | 2269 | 1055 |     1024 |    0 | 124 MHz
289
| `rv32imc_Zicsr_Zicntr`                            | 2501 | 1070 |     1024 |    0 | 124 MHz
290
| `rv32imac_Zicsr_Zicntr`                           | 2511 | 1074 |     1024 |    0 | 124 MHz
291
| `rv32imacu_Zicsr_Zicntr`                          | 2521 | 1079 |     1024 |    0 | 124 MHz
292
| `rv32imacu_Zicsr_Zicntr_Zifencei`                 | 2522 | 1079 |     1024 |    0 | 122 MHz
293
| `rv32imacu_Zicsr_Zicntr_Zifencei_Zfinx`           | 3807 | 1731 |     1024 |    7 | 116 MHz
294
| `rv32imacu_Zicsr_Zicntr_Zifencei_Zfinx_DebugMode` | 3974 | 1815 |     1024 |    7 | 116 MHz
295 60 zero_gravi
|=======================
296
 
297 62 zero_gravi
[NOTE]
298
No HPM counters and no PMP regions were implemented for generating these results.
299 60 zero_gravi
 
300 62 zero_gravi
[TIP]
301
The CPU provides further options to reduce the area footprint (for example by constraining the CPU-internal
302
counter sizes) or to increase performance (for example by using a barrel-shifter; at cost of extra hardware).
303 63 zero_gravi
See section <<_processor_top_entity_generics>> for more information. Also, take a look at the User Guide section
304
https://stnolting.github.io/neorv32/ug/#_application_specific_processor_configuration[Application-Specific Processor Configuration].
305 62 zero_gravi
 
306
 
307 60 zero_gravi
:sectnums:
308
==== Processor Modules
309
 
310
[cols="<2,<8"]
311
[grid="topbot"]
312
|=======================
313 62 zero_gravi
| Hardware version: | `1.5.7.15`
314 60 zero_gravi
| Top entity:       | `rtl/core/neorv32_top.vhd`
315
|=======================
316
 
317
.Hardware utilization by the processor modules (mandatory core modules in **bold**)
318
[cols="<2,<8,>1,>1,>2,>1"]
319
[options="header",grid="rows"]
320
|=======================
321 62 zero_gravi
| Module        | Description                                           | LEs | FFs | MEM bits | DSPs
322
| Boot ROM      | Bootloader ROM (4kB)                                  |   2 |   1 |    32768 |    0
323
| **BUSKEEPER** | Processor-internal bus monitor                        |   9 |   6 |        0 |    0
324
| **BUSSWITCH** | Bus mux for CPU instr. and data interface             |  63 |   8 |        0 |    0
325 61 zero_gravi
| CFS           | Custom functions subsystemfootnote:[Resource utilization depends on actually implemented custom functionality.] | - | - | - | -
326 62 zero_gravi
| DMEM          | Processor-internal data memory (8kB)                  |  19 |   2 |    65536 |    0
327
| DM            | On-chip debugger - debug module                       | 493 | 240 |        0 |    0
328
| DTM           | On-chip debugger - debug transfer module (JTAG)       | 254 | 218 |        0 |    0
329
| GPIO          | General purpose input/output ports                    | 134 | 161 |        0 |    0
330
| iCACHE        | Instruction cache (1x4 blocks, 256 bytes per block)   | 2 21| 156 |     8192 |    0
331
| IMEM          | Processor-internal instruction memory (16kB)          |  13 |   2 |   131072 |    0
332
| MTIME         | Machine system timer                                  | 319 | 167 |        0 |    0
333
| NEOLED        | Smart LED Interface (NeoPixel/WS28128) [FIFO_depth=1] | 226 | 182 |        0 |    0
334
| SLINK         | Stream link interface (2xRX, 2xTX, FIFO_depth=1)      | 208 | 181 |        0 |    0
335
| PWM           | Pulse_width modulation controller (4 channels)        |  71 |  69 |        0 |    0
336
| SPI           | Serial peripheral interface                           | 148 | 127 |        0 |    0
337
| **SYSINFO**   | System configuration information memory               |  14 |  11 |        0 |    0
338
| TRNG          | True random number generator                          |  89 |  76 |        0 |    0
339
| TWI           | Two-wire interface                                    |  77 |  43 |        0 |    0
340
| UART0/1       | Universal asynchronous receiver/transmitter 0/1       | 183 | 132 |        0 |    0
341
| WDT           | Watchdog timer                                        |  53 |  43 |        0 |    0
342
| WISHBONE      | External memory interface                             | 114 | 110 |        0 |    0
343
| XIRQ          | External interrupt controller (32 channels)           | 241 | 201 |        0 |    0
344 67 zero_gravi
| GPTMR         | General Purpose Timer                                 | 153 | 107 |        0 |    0
345 60 zero_gravi
|=======================
346
 
347
 
348
<<<
349
:sectnums:
350
==== Exemplary Setups
351
 
352 61 zero_gravi
Check out the `setups` folder (@GitHub: https://github.com/stnolting/neorv32/tree/master/setups),
353
which provides several demo setups for various FPGA boards and toolchains.
354 60 zero_gravi
 
355
 
356
<<<
357
// ####################################################################################################################
358
:sectnums:
359
=== CPU Performance
360
 
361 62 zero_gravi
The performance of the NEORV32 was tested and evaluated using the https://www.eembc.org/coremark/[Core Mark CPU benchmark].
362
This benchmark focuses on testing the capabilities of the CPU core itself rather than the performance of the whole
363
system. The according sources can be found in the `sw/example/coremark` folder.
364 60 zero_gravi
 
365 63 zero_gravi
.Dhrystone
366
[TIP]
367
A _simple_ port of the Dhrystone benchmark is also available in `sw/example/dhrystone`.
368
 
369 60 zero_gravi
The resulting CoreMark score is defined as CoreMark iterations per second.
370
The execution time is determined via the RISC-V `[m]cycle[h]` CSRs. The relative CoreMark score is
371
defined as CoreMark score divided by the CPU's clock frequency in MHz.
372
 
373 62 zero_gravi
.Configuration
374 60 zero_gravi
[cols="<2,<8"]
375
[grid="topbot"]
376
|=======================
377 62 zero_gravi
| HW version:     | `1.5.7.10`
378
| Hardware:       | 32kB int. IMEM, 16kB int. DMEM, no caches, 100MHz clock
379
| CoreMark:       | 2000 iterations, MEM_METHOD is MEM_STACK
380
| Compiler:       | RISCV32-GCC 10.2.0
381
| Compiler flags: | default, see makefile
382 60 zero_gravi
|=======================
383
 
384
.CoreMark results
385 62 zero_gravi
[cols="<4,^1,^1,^1"]
386 60 zero_gravi
[options="header",grid="rows"]
387
|=======================
388 66 zero_gravi
| CPU                                             | CoreMark Score | CoreMarks/MHz | Average CPI
389
| _small_ (`rv32i_Zicsr`)                         |          33.89 | **0.3389**    | **4.04**
390
| _medium_ (`rv32imc_Zicsr`)                      |          62.50 | **0.6250**    | **5.34**
391
| _performance_ (`rv32imc_Zicsr` + perf. options) |          95.23 | **0.9523**    | **3.54**
392 60 zero_gravi
|=======================
393
 
394
[NOTE]
395 62 zero_gravi
The "_performance_" CPU configuration uses the <<_fast_mul_en>> and <<_fast_shift_en>> options.
396 60 zero_gravi
 
397 62 zero_gravi
[NOTE]
398 60 zero_gravi
The NEORV32 CPU is based on a multi-cycle architecture. Each instruction is executed in a sequence of
399 62 zero_gravi
several consecutive micro operations.
400 60 zero_gravi
 
401 62 zero_gravi
[NOTE]
402 60 zero_gravi
The average CPI (cycles per instruction) depends on the instruction mix of a specific applications and also on
403 62 zero_gravi
the available CPU extensions. The average CPI is computed by dividing the total number of required clock cycles
404
(only the timed core to avoid distortion due to IO wait cycles) by the number of executed instructions
405
(`[m]instret[h]` CSRs).
406 60 zero_gravi
 
407
[TIP]
408
More information regarding the execution time of each implemented instruction can be found in
409
chapter <<_instruction_timing>>.

powered by: WebSVN 2.1.0

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