• Stars
    star
    375
  • Rank 114,096 (Top 3 %)
  • Language
    Python
  • License
    BSD 2-Clause "Sim...
  • Created over 5 years ago
  • Updated about 1 month ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

LiteX boards files
                              __   _ __      _  __    ___                   __
                             / /  (_) /____ | |/_/___/ _ )___  ___ ________/ /__
                            / /__/ / __/ -_)>  </___/ _  / _ \/ _ `/ __/ _  (_-<
                           /____/_/\__/\__/_/|_|   /____/\___/\_,_/_/  \_,_/___/

                                          LiteX boards files

                                 Copyright 2012-2023 / LiteX-Hub community

License

[> Intro

From the very tiny Fomu to large PCIe accelerator boards....

This repository contains the platforms/targets currently supported by LiteX:

  • The platform provides the definition of the board: IOs, constraints, clocks, components + methods to load and flash the bitstream to it.
  • The target provides a LiteX base design for the board that allows you to create a SoC (with or without a CPU) and integrate easily all the base components of your board: Ethernet, DRAM, PCIe, SPIFlash, SDCard, Leds, GPIOs, etc...

The targets can be used as a base to build more complex or custom SoCs. They are are for example directly reused by the Linux-on-LiteX-VexRiscv project that is just using a specific configuration (Linux-capable CPU, additional peripherals). Basing your design on provided targets allows to to reduce code duplication between very various projects.

First make sure to install LiteX correctly by following the installation guide and have a look at the LiteX's wiki for tutorials, examples of projects and more information to use/build FPGA designs with it.

Each target provides a default configuration with a CPU, ROM, SRAM, UART, DRAM (if available), Ethernet (if available), etc... that can be simply built and loaded to the FPGA with:

$ python3 -m litex_boards.targets.<board> --build --load

You can then open a terminal on the main UART of the board and interact with the LiteX BIOS:

Build/Compilation behavior:

  • python3 -m litex_boards.targets.board : Test LiteX/Migen syntax but does not generate anything.
  • Add --build to generate the SoC/Software headers and run the Software/Gateware compilation.
  • Add --no-compile to disable the Softwate/Gateware compilation.
  • Add --no-compile-software to disable the Software compilation.
  • Add --no-compile-gateware to disable the Gateware compilation.

But this is just the starting point to create your own hardware! You can then:

  • Change the CPU: add --cpu-type=lm32, microwatt, serv, rocket, etc...
  • Change the Bus standard: add --bus-standard=wishbone, axi-lite
  • Enable components: add --with-ethernet --with-etherbone --with-sdcard etc...
  • Load application code to the CPU over UART/Ethernet/SDCard, etc...
  • Create a bridge with your computer to easily access the main bus of your SoC.
  • Add a Logic Analyzer to your SoC to easily observe/debug your design.
  • Simulate your SoC and interact with it at decent speed with LiteX Sim/Verilator.
  • Integrate external cores/CPU to create your own design.
  • etc...

Please use python3 -m litex_boards.targets.<board> --help to see the pre-built various possibilities.

Hoping you will find this useful and enjoy it, please contribute back if you make improvements that could be useful to others or find issues!

A question or want to get in touch? Our IRC channel is #litex at irc.libera.chat

[> Supported boards

LiteX-Boards currently supports > 150 boards from very various FPGA Vendors (Xilinx, Intel, Lattice, Efinix, Gowin, etc...)! Some of these boards are fully open-hardware boards (Fomu, NeTV2, OrangeCrab, Butterstick, etc...) with FPGAs often supported by the open-source toolchains, some of them are repurposed off-the-shelf hardware (Colorlight 5A/I5/I9, SQRL Acorn CLE 215+, FK33, Siglent SDS1104X-E, Decklink Mini 4k, etc...) and we also of course support popular/regular FPGA dev boards :)

Most of the peripherals present are generally supported: DRAM, UART, Ethernet, SPI-Flash, SDCard, PCIe, SATA, etc... making LiteX-Boards' targets hopefully a good base infrastructure to create your own custom SoCs!

Note: All boards with >= 32MB of memory and enough logic can be considered as Linux Capable, have a look at LiteX-on-LiteX-Vexriscv project to try Linux on your FPGA board!

Some of the suported boards, see yours? Give LiteX-Boards a try!

[> Boards list

├── adi_adrv2crr_fmc
├── adi_plutosdr
├── alchitry_au
├── alchitry_mojo
├── aliexpress_xc7k420t
├── alinx_ax7010
├── alinx_axu2cga
├── antmicro_artix_dc_scm
├── antmicro_datacenter_ddr4_test_board
├── antmicro_lpddr4_test_board
├── antmicro_sdi_mipi_video_converter
├── arduino_mkrvidor4000
├── avalanche
├── avnet_aesku40
├── berkeleylab_marblemini
├── berkeleylab_marble
├── camlink_4k
├── colorlight_5a_75b
├── colorlight_5a_75e
├── colorlight_i5
├── decklink_intensity_pro_4k
├── decklink_mini_4k
├── decklink_quad_hdmi_recorder
├── digilent_arty
├── digilent_arty_s7
├── digilent_arty_z7
├── digilent_atlys
├── digilent_basys3
├── digilent_cmod_a7
├── digilent_genesys2
├── digilent_nexys4ddr
├── digilent_nexys4
├── digilent_nexys_video
├── digilent_pynq_z1
├── digilent_zedboard
├── digilent_zybo_z7
├── ebaz4205
├── efinix_t8f81_dev_kit
├── efinix_titanium_ti60_f225_dev_kit
├── efinix_trion_t120_bga576_dev_kit
├── efinix_trion_t20_bga256_dev_kit
├── efinix_trion_t20_mipi_dev_kit
├── efinix_xyloni_dev_kit
├── ego1
├── enclustra_mercury_kx2
├── enclustra_mercury_xu5
├── fairwaves_xtrx
├── fpc_iii
├── fpgawars_alhambra2
├── gadgetfactory_papilio_pro
├── gsd_butterstick
├── gsd_orangecrab
├── hackaday_hadbadge
├── icebreaker_bitsy
├── icebreaker
├── ice_v_wireless
├── isx_im1283
├── jungle_electronics_fireant
├── kosagi_fomu_evt
├── kosagi_fomu_hacker
├── kosagi_fomu_pvt
├── kosagi_netv2
├── krtkl_snickerdoodle
├── lambdaconcept_ecpix5
├── lambdaconcept_pcie_screamer_m2
├── lambdaconcept_pcie_screamer
├── lattice_crosslink_nx_evn
├── lattice_crosslink_nx_vip
├── lattice_ecp5_evn
├── lattice_ecp5_vip
├── lattice_ice40up5k_evn
├── lattice_machxo3
├── lattice_versa_ecp5
├── limesdr_mini_v2
├── linsn_rv901t
├── litex_acorn_baseboard
├── logicbone
├── machdyne_konfekt
├── machdyne_kopflos
├── machdyne_krote
├── machdyne_noir
├── machdyne_schoko
├── marblemini
├── marble
├── micronova_mercury2
├── mist
├── mnt_rkx7
├── muselab_icesugar_pro
├── muselab_icesugar
├── myminieye_runber
├── newae_cw305
├── numato_aller
├── numato_mimas_a7
├── numato_nereid
├── numato_tagus
├── ocp_tap_timecard
├── opalkelly_xem8320
├── pano_logic_g2
├── qmtech_10cl006
├── qmtech_5cefa2
├── qmtech_artix7_fbg484
├── qmtech_artix7_fgg676
├── qmtech_ep4ce15_starter_kit
├── qmtech_ep4cex5
├── qmtech_ep4cgx150
├── qmtech_wukong
├── qmtech_xc7a35t
├── quicklogic_quickfeather
├── qwertyembedded_beaglewire
├── radiona_ulx3s
├── radiona_ulx4m_ld_v2
├── rcs_arctic_tern_bmc_card
├── redpitaya
├── rz_easyfpga
├── saanlima_pipistrello
├── scarabhardware_minispartan6
├── seeedstudio_spartan_edge_accelerator
├── siglent_sds1104xe
├── sipeed_tang_nano_20k
├── sipeed_tang_nano_4k
├── sipeed_tang_nano_9k
├── sipeed_tang_nano
├── sipeed_tang_primer_20k
├── sipeed_tang_primer
├── sitlinv_a_e115fb
├── sitlinv_stlv7325
├── sitlinv_xc7k420t
├── sqrl_acorn
├── sqrl_fk33
├── sqrl_xcu1525
├── terasic_de0nano
├── terasic_de10lite
├── terasic_de10nano
├── terasic_de1soc
├── terasic_de2_115
├── terasic_deca
├── terasic_sockit
├── tinyfpga_bx
├── trellisboard
├── trenz_c10lprefkit
├── trenz_cyc1000
├── trenz_max1000
├── trenz_te0725
├── trenz_tec0117
├── tul_pynq_z2
├── xilinx_ac701
├── xilinx_alveo_u200
├── xilinx_alveo_u250
├── xilinx_alveo_u280
├── xilinx_kc705
├── xilinx_kcu105
├── xilinx_kv260
├── xilinx_sp605
├── xilinx_vc707
├── xilinx_vcu118
├── xilinx_zcu102
├── xilinx_zcu104
├── xilinx_zcu106
├── xilinx_zcu216
└── ztex213

More Repositories

1

linux-on-litex-vexriscv

Linux on LiteX-VexRiscv
Python
583
star
2

fpga_101

FPGA 101 lessons/labs
Python
358
star
3

linux-on-litex-rocket

Run 64-bit Linux on LiteX + RocketChip
74
star
4

litevideo

Small footprint and configurable video cores (Deprecated)
Python
70
star
5

litespi

Small footprint and configurable SPI core
Python
39
star
6

wishbone-utils

Utilities for working with a Wishbone bus in an embedded device
C
34
star
7

pythondata-cpu-rocket

Python module containing verilog files for rocket cpu (for use with LiteX).
Verilog
13
star
8

zephyr-on-litex-vexriscv

Python
12
star
9

litehyperbus

Small footprint and configurable HyperBus core
Python
9
star
10

litex-renode

Tools for using Renode.io from Antmicro with LiteX for simulation
Python
5
star
11

pythondata-cpu-blackparrot

Python module containing system_verilog files for blackparrot cpu (for use with LiteX).
SystemVerilog
5
star
12

lxbe-tool

LiteX Build Environment tool.
Python
4
star
13

pythondata-auto

Scripts which automate the creation of the `litex.data` Python modules from various git repositories.
Python
4
star
14

pythondata-cpu-serv

Python module containing verilog files for serv cpu (for use with LiteX).
Verilog
4
star
15

pythondata-misc-usb_ohci

Python module containing verilog files for the Spinal-HDL USB OHCI core (for use with LiteX).
Verilog
3
star
16

litex-buildenv-udev

udev rules for LiteX BuildEnv supported boards
Makefile
3
star
17

pythondata-cpu-microwatt

Python module containing vhdl files for microwatt cpu (for use with LiteX).
VHDL
3
star
18

pythondata-cpu-ibex

Python module containing system_verilog files for ibex cpu (for use with LiteX).
SystemVerilog
3
star
19

pythondata-misc-opentitan

Python module containing resources files for opentitan misc (for use with LiteX).
SystemVerilog
3
star
20

barebox

C
3
star
21

pythondata-cpu-vexriscv_smp

Python module containing verilog files for VexRiscv SMP CPU (for use with LiteX).
Verilog
3
star
22

pythondata-cpu-picorv32

Python module containing verilog files for picorv32 cpu (for use with LiteX).
Verilog
2
star
23

conda-build-prepare

Python
2
star
24

litex-on-profpga-systems

Experiment with LiteX on proFPGA systems
Verilog
2
star
25

litex-conda-packages

Conda build recipes for the toolchains needed by LiteX / MiSoC firmware
2
star
26

jpeg_encoder_gsoc2017_ishan-bansal

JPEG Encoder project as part of GSOC2017 / Student: Ishan Bansal
Python
2
star
27

pythondata-software-picolibc

Python module containing data files for picolibc software (for use with LiteX).
Python
2
star
28

ber_analyzer_gsoc2018_harsh_gugale

BER Analyzer project as part of GSOC2018 / Student: Harsh Gugale
Python
1
star
29

pythondata-misc-tapcfg

Python module containing data files for tapcfg misc (for use with LiteX).
C
1
star
30

pythondata-cpu-jcore

VHDL
1
star
31

pythondata-cpu-mor1kx

Python module containing verilog files for mor1kx cpu (for use with LiteX).
Verilog
1
star
32

pythondata-software-compiler_rt

Python module containing data files for compiler_rt software (for use with LiteX).
C
1
star
33

pythondata-cpu-marocchino

Python module containing verilog files for marocchino cpu (for use with LiteX).
Verilog
1
star
34

pythondata-cpu-cv32e40p

Python module containing system_verilog files for cv32e40p cpu (for use with LiteX).
SystemVerilog
1
star
35

pythondata-cpu-lm32

Python module containing verilog files for lm32 cpu (for use with LiteX).
Verilog
1
star
36

pythondata-cpu-cva5

Python module containing system_verilog files for cva5 cpu (for use with LiteX).
SystemVerilog
1
star
37

pythondata-cpu-cv32e41p

Python module containing system_verilog files for cv32e41p cpu (for use with LiteX).
SystemVerilog
1
star
38

pythondata-cpu-cv32e40s

Python module containing system_verilog files for cv32e40s cpu (for use with LiteX).
SystemVerilog
1
star