mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-18 01:03:05 +00:00
36bc171a68
Include ti_armv7_common.env and ti/mmc.env, which includes' K3 common environment variables used across different K3 boards. This patch depends on https://lore.kernel.org/all/20230315052745.110502-1-n-francis@ti.com/ Signed-off-by: Nikhil M Jain <n-jain1@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
38 lines
986 B
Bash
38 lines
986 B
Bash
#include <environment/ti/ti_armv7_common.env>
|
|
#include <environment/ti/mmc.env>
|
|
|
|
default_device_tree=k3-am625-sk.dtb
|
|
findfdt=
|
|
setenv name_fdt ${default_device_tree};
|
|
setenv fdtfile ${name_fdt}
|
|
name_kern=Image
|
|
console=ttyS2,115200n8
|
|
args_all=setenv optargs ${optargs} earlycon=ns16550a,mmio32,0x02800000
|
|
${mtdparts}
|
|
run_kern=booti ${loadaddr} ${rd_spec} ${fdtaddr}
|
|
|
|
boot=mmc
|
|
mmcdev=1
|
|
bootpart=1:2
|
|
bootdir=/boot
|
|
rd_spec=-
|
|
init_mmc=run args_all args_mmc
|
|
get_fdt_mmc=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt}
|
|
get_overlay_mmc=
|
|
fdt address ${fdtaddr};
|
|
fdt resize 0x100000;
|
|
for overlay in $name_overlays;
|
|
do;
|
|
load mmc ${bootpart} ${dtboaddr} ${bootdir}/${overlay} &&
|
|
fdt apply ${dtboaddr};
|
|
done;
|
|
get_kern_mmc=load mmc ${bootpart} ${loadaddr}
|
|
${bootdir}/${name_kern}
|
|
get_fit_mmc=load mmc ${bootpart} ${addr_fit}
|
|
${bootdir}/${name_fit}
|
|
partitions=name=rootfs,start=0,size=-,uuid=${uuid_gpt_rootfs}
|
|
|
|
splashfile=ti.gz
|
|
splashimage=0x82000000
|
|
splashpos=m,m
|
|
splashsource=mmc
|