]> git.dujemihanovic.xyz Git - u-boot.git/commit
riscv: Add support for AMD/Xilinx MicroBlaze V
authorMichal Simek <michal.simek@amd.com>
Mon, 6 Nov 2023 11:56:47 +0000 (12:56 +0100)
committerLeo Yu-Chi Liang <ycliang@andestech.com>
Mon, 18 Dec 2023 03:08:49 +0000 (11:08 +0800)
commit7576ab2facae92f4062f88c4f643e2548e112437
tree6573bae7bf45cdb75e9e98954330ba7b0d534b2b
parent0d14f04d5d2c943ecd3f9c8ced26dfd5815da698
riscv: Add support for AMD/Xilinx MicroBlaze V

MicroBlaze V is new AMD/Xilinx soft-core 32bit RISC-V processor IP.
It is hardware compatible with classic MicroBlaze processor.

The patch contains initial wiring and configuration for initial HW design
with memory, cpu, interrupt controller, timers and uartlite console
(interrupt controller is listed but U-Boot is not using it).

Provided DT is just describing one configuration and should be taken only
as example.

Signed-off-by: Michal Simek <michal.simek@amd.com>
Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
Reviewed-by: Padmarao Begari <padmarao.begari@microchip.com>
12 files changed:
arch/riscv/Kconfig
arch/riscv/dts/Makefile
arch/riscv/dts/xilinx-mbv32.dts [new file with mode: 0644]
board/xilinx/Kconfig
board/xilinx/common/board.c
board/xilinx/mbv/Kconfig [new file with mode: 0644]
board/xilinx/mbv/MAINTAINERS [new file with mode: 0644]
board/xilinx/mbv/Makefile [new file with mode: 0644]
board/xilinx/mbv/board.c [new file with mode: 0644]
configs/xilinx_mbv32_defconfig [new file with mode: 0644]
configs/xilinx_mbv32_smode_defconfig [new file with mode: 0644]
include/configs/xilinx_mbv.h [new file with mode: 0644]