The Voyager is a 9.6” x 9.6” Micro ATX form factor development board including Andes QiLai SoC. This patch series adds minimal device tree files for the QiLai SoC and the Voyager board [1].
[1] https://www.andestech.com/en/products-solutions/andeshape-platforms/qilai-chip/ Leo Yu-Chi Liang (6): riscv: board: Add Andes Voyager board Kconfig support riscv: dts: andes: Add Voyager device tree board: MAINTAINERS: Add Voyager board maintainer board: andestech: Add Voyager board support configs: andes: add Voyager board defconfig doc: board: voyager: Add documentation for Voyager arch/riscv/Kconfig | 4 + arch/riscv/dts/Makefile | 1 + arch/riscv/dts/qilai-voyager.dts | 227 ++++++++++++++++++++++++++++ arch/riscv/dts/voyager-u-boot.dtsi | 52 +++++++ board/andestech/voyager/Kconfig | 44 ++++++ board/andestech/voyager/MAINTAINERS | 7 + board/andestech/voyager/Makefile | 6 + board/andestech/voyager/voyager.c | 71 +++++++++ configs/voyager_spl_defconfig | 66 ++++++++ doc/board/andestech/voyager.rst | 81 ++++++++++ include/configs/voyager.h | 40 +++++ 11 files changed, 599 insertions(+) create mode 100644 arch/riscv/dts/qilai-voyager.dts create mode 100644 arch/riscv/dts/voyager-u-boot.dtsi create mode 100644 board/andestech/voyager/Kconfig create mode 100644 board/andestech/voyager/MAINTAINERS create mode 100644 board/andestech/voyager/Makefile create mode 100644 board/andestech/voyager/voyager.c create mode 100644 configs/voyager_spl_defconfig create mode 100644 doc/board/andestech/voyager.rst create mode 100644 include/configs/voyager.h -- 2.34.1