mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-02 12:32:06 +02:00
+ Fix VisionFive2 booting issue by providing the correct FDT.
This commit is contained in:
commit
964aae1644
@ -26,6 +26,7 @@ config TARGET_SIFIVE_UNMATCHED
|
|||||||
|
|
||||||
config TARGET_STARFIVE_VISIONFIVE2
|
config TARGET_STARFIVE_VISIONFIVE2
|
||||||
bool "Support StarFive VisionFive2 Board"
|
bool "Support StarFive VisionFive2 Board"
|
||||||
|
select BOARD_LATE_INIT
|
||||||
|
|
||||||
config TARGET_TH1520_LPI4A
|
config TARGET_TH1520_LPI4A
|
||||||
bool "Support Sipeed's TH1520 Lichee PI 4A Board"
|
bool "Support Sipeed's TH1520 Lichee PI 4A Board"
|
||||||
|
@ -5,16 +5,22 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <asm/io.h>
|
|
||||||
#include <asm/sections.h>
|
|
||||||
#include <cpu_func.h>
|
#include <cpu_func.h>
|
||||||
#include <dm.h>
|
#include <dm.h>
|
||||||
#include <fdt_support.h>
|
#include <fdt_support.h>
|
||||||
|
#include <env.h>
|
||||||
|
#include <asm/arch/eeprom.h>
|
||||||
|
#include <asm/io.h>
|
||||||
|
#include <asm/sections.h>
|
||||||
#include <linux/bitops.h>
|
#include <linux/bitops.h>
|
||||||
|
|
||||||
DECLARE_GLOBAL_DATA_PTR;
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
#define JH7110_L2_PREFETCHER_BASE_ADDR 0x2030000
|
#define JH7110_L2_PREFETCHER_BASE_ADDR 0x2030000
|
||||||
#define JH7110_L2_PREFETCHER_HART_OFFSET 0x2000
|
#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 */
|
/* enable U74-mc hart1~hart4 prefetcher */
|
||||||
static void enable_prefetcher(void)
|
static void enable_prefetcher(void)
|
||||||
@ -35,6 +41,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)
|
int board_init(void)
|
||||||
{
|
{
|
||||||
enable_caches();
|
enable_caches();
|
||||||
@ -43,6 +74,14 @@ int board_init(void)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int board_late_init(void)
|
||||||
|
{
|
||||||
|
if (CONFIG_IS_ENABLED(ID_EEPROM))
|
||||||
|
set_fdtfile();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
void *board_fdt_blob_setup(int *err)
|
void *board_fdt_blob_setup(int *err)
|
||||||
{
|
{
|
||||||
*err = 0;
|
*err = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user