public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Leo Liang <ycliang@andestech.com>
To: Shengyu Qu <wiagn233@outlook.com>
Cc: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>,
	Rick Chen <rick@andestech.com>,
	Yanhong Wang <yanhong.wang@starfivetech.com>,
	<u-boot@lists.denx.de>, <mps@arvanta.net>
Subject: Re: [PATCH 1/1] riscv: set fdtfile on VisionFive 2
Date: Mon, 25 Sep 2023 19:43:36 +0800	[thread overview]
Message-ID: <ZRFyaEahYVJ_zZP7@swlinux02> (raw)
In-Reply-To: <TY3P286MB2611E76FC176D2A629BFF01698FFA@TY3P286MB2611.JPNP286.PROD.OUTLOOK.COM>

On Fri, Sep 22, 2023 at 09:54:23PM +0800, Shengyu Qu wrote:
> Hello Leo,
> 
> This patch seems only landed in next branch, not master. It is seriously
> 
> needed to make visionfive 2 working properly. Could you merge it to
> 
> master branch?
> 
> Best regards,
> 
> Shengyu
> 

Hi Shengyu, 

Got it!
Will do ASAP!

Best regards,
Leo

> > Multiple revisions of the StarFive VisionFive 2 board exist. They can be
> > identified by reading their EEPROM.
> > 
> > Linux uses two differently named device-tree files. To load the correct
> > device-tree we need to set $fdtfile to the device-tree file name that
> > matches the board revision.
> > 
> > Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
> > Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
> > Tested-by: Milan P. Stanić <mps@arvanta.net>
> > ---
> >   arch/riscv/Kconfig                            |  1 +
> >   .../visionfive2/starfive_visionfive2.c        | 43 ++++++++++++++++++-
> >   2 files changed, 42 insertions(+), 2 deletions(-)
> > 
> > diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig
> > index 6771d8d919..1c62c2345b 100644
> > --- a/arch/riscv/Kconfig
> > +++ b/arch/riscv/Kconfig
> > @@ -26,6 +26,7 @@ config TARGET_SIFIVE_UNMATCHED
> >   config TARGET_STARFIVE_VISIONFIVE2
> >   	bool "Support StarFive VisionFive2 Board"
> > +	select BOARD_LATE_INIT
> >   config TARGET_TH1520_LPI4A
> >   	bool "Support Sipeed's TH1520 Lichee PI 4A Board"
> > diff --git a/board/starfive/visionfive2/starfive_visionfive2.c b/board/starfive/visionfive2/starfive_visionfive2.c
> > index d609262b67..05d8d2d657 100644
> > --- a/board/starfive/visionfive2/starfive_visionfive2.c
> > +++ b/board/starfive/visionfive2/starfive_visionfive2.c
> > @@ -5,14 +5,20 @@
> >    */
> >   #include <common.h>
> > -#include <asm/io.h>
> > -#include <asm/sections.h>
> >   #include <cpu_func.h>
> >   #include <dm.h>
> > +#include <env.h>
> > +#include <asm/arch/eeprom.h>
> > +#include <asm/io.h>
> > +#include <asm/sections.h>
> >   #include <linux/bitops.h>
> >   #define JH7110_L2_PREFETCHER_BASE_ADDR		0x2030000
> >   #define JH7110_L2_PREFETCHER_HART_OFFSET	0x2000
> > +#define FDTFILE_VISIONFIVE2_1_2A \
> > +	"starfive/jh7110-starfive-visionfive-2-v1.2a.dtb"
> > +#define FDTFILE_VISIONFIVE2_1_3B \
> > +	"starfive/jh7110-starfive-visionfive-2-v1.3b.dtb"
> >   /* enable U74-mc hart1~hart4 prefetcher */
> >   static void enable_prefetcher(void)
> > @@ -33,6 +39,31 @@ static void enable_prefetcher(void)
> >   	}
> >   }
> > +/**
> > + * set_fdtfile() - set the $fdtfile variable based on the board revision
> > + */
> > +static void set_fdtfile(void)
> > +{
> > +	u8 version;
> > +	const char *fdtfile;
> > +
> > +	version = get_pcb_revision_from_eeprom();
> > +	switch (version) {
> > +	case 'a':
> > +	case 'A':
> > +		fdtfile = FDTFILE_VISIONFIVE2_1_2A;
> > +	        break;
> > +
> > +	case 'b':
> > +	case 'B':
> > +	default:
> > +		fdtfile = FDTFILE_VISIONFIVE2_1_3B;
> > +	        break;
> > +	};
> > +
> > +	env_set("fdtfile", fdtfile);
> > +}
> > +
> >   int board_init(void)
> >   {
> >   	enable_caches();
> > @@ -41,6 +72,14 @@ int board_init(void)
> >   	return 0;
> >   }
> > +int board_late_init(void)
> > +{
> > +	if (CONFIG_IS_ENABLED(ID_EEPROM))
> > +		set_fdtfile();
> > +
> > +	return 0;
> > +}
> > +
> >   void *board_fdt_blob_setup(int *err)
> >   {
> >   	*err = 0;

      reply	other threads:[~2023-09-25 11:46 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-07 11:21 [PATCH 1/1] riscv: set fdtfile on VisionFive 2 Heinrich Schuchardt
2023-09-13 11:25 ` Leo Liang
2023-09-21 20:29 ` Milan P. Stanić
2023-09-22 13:54 ` Shengyu Qu
2023-09-25 11:43   ` Leo Liang [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ZRFyaEahYVJ_zZP7@swlinux02 \
    --to=ycliang@andestech.com \
    --cc=heinrich.schuchardt@canonical.com \
    --cc=mps@arvanta.net \
    --cc=rick@andestech.com \
    --cc=u-boot@lists.denx.de \
    --cc=wiagn233@outlook.com \
    --cc=yanhong.wang@starfivetech.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox