mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
c45568cc4e
This converts the following to Kconfig: CONFIG_SYS_BOOTM_LEN As part of this, rework error handling in boot/bootm.c so that we pass the buffer size to handle_decomp_error as CONFIG_SYS_BOOTM_LEN will not be available to host tools but we do know the size that we passed to malloc(). Cc: Soeren Moch <smoch@web.de> Signed-off-by: Tom Rini <trini@konsulko.com>
51 lines
1.2 KiB
C
51 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
|
|
*/
|
|
|
|
#ifndef __CONFIG_H
|
|
#define __CONFIG_H
|
|
|
|
#include <linux/sizes.h>
|
|
|
|
#define CONFIG_SYS_SDRAM_BASE 0x80000000
|
|
|
|
#define CONFIG_STANDALONE_LOAD_ADDR 0x80200000
|
|
|
|
#define RISCV_MMODE_TIMERBASE 0x2000000
|
|
#define RISCV_MMODE_TIMER_FREQ 1000000
|
|
|
|
#define RISCV_SMODE_TIMER_FREQ 1000000
|
|
|
|
/* Environment options */
|
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
func(QEMU, qemu, na) \
|
|
func(VIRTIO, virtio, 0) \
|
|
func(SCSI, scsi, 0) \
|
|
func(DHCP, dhcp, na)
|
|
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
#define BOOTENV_DEV_QEMU(devtypeu, devtypel, instance) \
|
|
"bootcmd_qemu=" \
|
|
"if env exists kernel_start; then " \
|
|
"bootm ${kernel_start} - ${fdtcontroladdr};" \
|
|
"fi;\0"
|
|
|
|
#define BOOTENV_DEV_NAME_QEMU(devtypeu, devtypel, instance) \
|
|
"qemu "
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
"fdt_high=0xffffffffffffffff\0" \
|
|
"initrd_high=0xffffffffffffffff\0" \
|
|
"kernel_addr_r=0x84000000\0" \
|
|
"kernel_comp_addr_r=0x88000000\0" \
|
|
"kernel_comp_size=0x4000000\0" \
|
|
"fdt_addr_r=0x8c000000\0" \
|
|
"scriptaddr=0x8c100000\0" \
|
|
"pxefile_addr_r=0x8c200000\0" \
|
|
"ramdisk_addr_r=0x8c300000\0" \
|
|
BOOTENV
|
|
|
|
#endif /* __CONFIG_H */
|