mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-09 19:58:55 +00:00
e6a8c6f5c0
Add pe2201 platform code and the device tree of pe2201 platform board. The initial support comprises the UART and PCIe. Signed-off-by: TracyMg_Li <TracyMg_Li@outlook.com> Changes since v1: fix space corrupt. Changes since v2: switch to bootstd and text environment. Changes since v3: add environment variables.
25 lines
730 B
Bash
25 lines
730 B
Bash
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2023, Phytium Technology Co., Ltd.
|
|
*/
|
|
|
|
/* Initial environment variables */
|
|
|
|
image=Image
|
|
scriptaddr=0x90100000
|
|
script_offset_f=0xc00000
|
|
script_size_f=0x2000
|
|
kernel_addr_r=0x90200000
|
|
fdt_addr_r=0x90000000
|
|
boot_fit=no
|
|
fdtfile=phytium-pe2201.dtb
|
|
ft_fdt_name=boot/dtb/pe2201.dtb
|
|
fdtoverlay_addr_r=0x95100000
|
|
kernel_comp_addr_r=0x96000000
|
|
kernel_comp_size=0x2000000
|
|
pxefile_addr_r=0x9A000000
|
|
ramdisk_addr_r=0x95000000
|
|
load_kernel=ext4load scsi 0:2 $kernel_addr_r boot/uImage-2004
|
|
load_initrd=ext4load scsi 0:2 $ramdisk_addr_r initrd.img-4.19.0.pe2201
|
|
load_fdt=ext4load scsi 0:2 $fdt_addr_r $ft_fdt_name
|
|
distro_bootcmd=run load_kernel; run load_initrd; run load_fdt; run boot_os
|