From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Liang Date: Thu, 25 Mar 2021 11:19:30 +0800 Subject: [PATCH v3 6/7] board: sifive: add HiFive Unmatched board support In-Reply-To: References: <20210319105638.24725-1-green.wan@sifive.com> <20210319105638.24725-7-green.wan@sifive.com> Message-ID: <20210325031930.GA9822@andestech.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 wrote: > > > Add dts, defconfig and board support for HiFive Unmatched. > > > > Signed-off-by: Green Wan > > Reviewed-by: Bin Meng > > --- > > 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 ...