mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-05 02:51:00 +00:00
3421a45fda
Add support "atmel,24c04" eeprom for StarFive VisionFive2 board. Signed-off-by: Yanhong Wang <yanhong.wang@starfivetech.com> Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
106 lines
1.1 KiB
Text
106 lines
1.1 KiB
Text
// SPDX-License-Identifier: GPL-2.0 OR MIT
|
|
/*
|
|
* Copyright (C) 2023 StarFive Technology Co., Ltd.
|
|
*/
|
|
|
|
#include "binman.dtsi"
|
|
#include "jh7110-u-boot.dtsi"
|
|
/ {
|
|
chosen {
|
|
bootph-pre-ram;
|
|
};
|
|
|
|
firmware {
|
|
spi0 = &qspi;
|
|
bootph-pre-ram;
|
|
};
|
|
|
|
config {
|
|
bootph-pre-ram;
|
|
u-boot,spl-payload-offset = <0x100000>;
|
|
};
|
|
|
|
memory@40000000 {
|
|
bootph-pre-ram;
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
bootph-pre-ram;
|
|
};
|
|
|
|
&mmc0 {
|
|
bootph-pre-ram;
|
|
};
|
|
|
|
&mmc1 {
|
|
bootph-pre-ram;
|
|
};
|
|
|
|
&qspi {
|
|
bootph-pre-ram;
|
|
|
|
nor-flash@0 {
|
|
bootph-pre-ram;
|
|
};
|
|
};
|
|
|
|
&sysgpio {
|
|
bootph-pre-ram;
|
|
};
|
|
|
|
&mmc0_pins {
|
|
bootph-pre-ram;
|
|
mmc0-pins-rest {
|
|
bootph-pre-ram;
|
|
};
|
|
};
|
|
|
|
&mmc1_pins {
|
|
bootph-pre-ram;
|
|
mmc1-pins0 {
|
|
bootph-pre-ram;
|
|
};
|
|
|
|
mmc1-pins1 {
|
|
bootph-pre-ram;
|
|
};
|
|
};
|
|
|
|
&i2c5_pins {
|
|
bootph-pre-ram;
|
|
i2c-pins {
|
|
bootph-pre-ram;
|
|
};
|
|
};
|
|
|
|
&i2c5 {
|
|
bootph-pre-ram;
|
|
eeprom@50 {
|
|
bootph-pre-ram;
|
|
};
|
|
};
|
|
|
|
&binman {
|
|
itb {
|
|
fit {
|
|
images {
|
|
fdt-1 {
|
|
description = "NAME";
|
|
load = <0x40400000>;
|
|
compression = "none";
|
|
|
|
uboot_fdt_blob: blob-ext {
|
|
filename = "u-boot.dtb";
|
|
};
|
|
};
|
|
};
|
|
|
|
configurations {
|
|
conf-1 {
|
|
fdt = "fdt-1";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|