
Hi Green,
On Mon, Mar 22, 2021 at 03:11:08PM +0800, Green Wan wrote:
I found I didn't clean the folder before I ran the build test. The changes below for board/sifive/unmatched/Makefile was missing. Sorry about that.
-obj-y += hifive-unmatched-fu740.o +obj-y += unmatched.o
Green
On Fri, Mar 19, 2021 at 6:57 PM Green Wan green.wan@sifive.com wrote:
Add dts, defconfig and board support for HiFive Unmatched.
Signed-off-by: Green Wan green.wan@sifive.com Reviewed-by: Bin Meng bmeng.cn@gmail.com
arch/riscv/Kconfig | 4 + .../dts/fu740-hifive-unmatched-a00-ddr.dtsi | 1489 +++++++++++++++++ .../dts/hifive-unmatched-a00-u-boot.dtsi | 40 + arch/riscv/dts/hifive-unmatched-a00.dts | 259 +++ board/sifive/unmatched/Kconfig | 50 + board/sifive/unmatched/MAINTAINERS | 9 + board/sifive/unmatched/Makefile | 9 + board/sifive/unmatched/spl.c | 85 + board/sifive/unmatched/unmatched.c | 24 + common/spl/Kconfig | 4 +- configs/sifive_unmatched_defconfig | 53 + doc/board/sifive/unmatched.rst | 536 ++++++
I think there should be corresponding modifications in doc/board/sifive/index.rst or else the make process for htmldocs would fail.
Best regards, Leo
drivers/reset/Kconfig | 2 +- include/configs/sifive-unmatched.h | 85 + 14 files changed, 2646 insertions(+), 3 deletions(-) create mode 100644 arch/riscv/dts/fu740-hifive-unmatched-a00-ddr.dtsi create mode 100644 arch/riscv/dts/hifive-unmatched-a00-u-boot.dtsi create mode 100644 arch/riscv/dts/hifive-unmatched-a00.dts create mode 100644 board/sifive/unmatched/Kconfig create mode 100644 board/sifive/unmatched/MAINTAINERS create mode 100644 board/sifive/unmatched/Makefile create mode 100644 board/sifive/unmatched/spl.c create mode 100644 board/sifive/unmatched/unmatched.c create mode 100644 configs/sifive_unmatched_defconfig create mode 100644 doc/board/sifive/unmatched.rst create mode 100644 include/configs/sifive-unmatched.h
... omitted ...