soc/cores/cpu/vexriscv_smp integration
[litex.git] / CHANGES
1 [> 2020.XX, planned for July 2020
2 ---------------------------------
3
4 [> Issues resolved
5 ------------------
6 - Fix flush_cpu_icache on VexRiscv.
7 - Fix `.data` section placed in rom (#566)
8
9 [> Added Features
10 ------------------
11 - Properly integrate Minerva CPU.
12 - Add nMigen dependency.
13 - Pluggable CPUs.
14 - BIOS history, autocomplete.
15 - Improve boards's programmers.
16 - Add Microwatt CPU support (with GHDL-Yosys-plugin support for FOSS toolchains).
17 - Speedup Memtest using an LFSR.
18 - Add LedChaser on boards.
19 - Improve WishboneBridge.
20 - Improve Diamond constraints.
21 - Use InterconnectPointToPoint when 1 master,1 slave and no address translation.
22 - Add CV32E40P CPU support (ex RI5CY).
23 - JTAG UART with uart_name=jtag_uart (validated on Spartan6, 7-Series, Ultrascale(+)).
24 - Add Symbiflow experimental support on Arty.
25 - Add SDCard (SPI and SD modes) boot from FAT/exFAT filesystems with FatFs.
26 - Simplify boot with boot.json configuration file.
27 - Revert to a single crt0 (avoid ctr/xip variants).
28 - Add otional DMA bus for Cache Coherency on CPU(s) with DMA/Cache Coherency interface.
29 - Add AXI-Lite bus standard support.
30
31 [> API changes/Deprecation
32 --------------------------
33 - Add --build --load arguments to targets.
34 - Deprecate soc.interconnect.wishbone.UpConverter (will be rewritten if useful).
35 - Deprecate soc.interconnect.wishbone.CSRBank (Does not seem to be used by anyone).
36 - Move soc.interconnect.wishbone2csr.WB2CSR to soc.interconnect.wishbone.Wishbone2CSR.
37 - Move soc.interconnect.wishbonebridge.WishboneStreamingBridge to soc.cores.uart.Stream2Wishbone.
38 - Rename --gateware-toolchain target parameter to --toolchain.
39 - Integrate Zynq's PS7 as a regular CPU (zynq7000) and deprecate SoCZynq.
40
41 [> 2020.04, released April 28th, 2020
42 -------------------------------------
43
44 [> Description
45 --------------
46 First release of LiteX and the ecosystem of cores!
47
48 LiteX is a Migen/MiSoC based Core/SoC builder that provides the infrastructure to easily create
49 Cores/SoCs (with or without CPU).
50
51 The common components of a SoC are provided directly:
52 - Buses and Streams (Wishbone, AXI, Avalon-ST)
53 - Interconnect
54 - Common cores (RAM, ROM, Timer, UART, etc...)
55 - CPU wrappers/integration
56 - etc...
57 And SoC creation capabilities can be greatly extended with the ecosystem of LiteX cores (DRAM,
58 PCIe, Ethernet, SATA, etc...) that can be integrated/simulated/build easily with LiteX.
59
60 It also provides build backends for open-source and vendors toolchains.
61
62 [> Issues resolved
63 ------------------
64 - NA
65
66 [> Added Features
67 ------------------
68 - NA
69
70 [> API changes/Deprecation
71 --------------------------
72 - https://github.com/enjoy-digital/litex/pull/399: Converting LiteX to use Python modules.