blob: e1cce58fa9331f7cd042ed84f8e01cfbe0861cf2 [file] [log] [blame]
Chia-Wei, Wang4a84cf02020-12-14 13:54:28 +08001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (c) Aspeed Technology Inc.
4 */
5
6#ifndef __CONFIG_H
7#define __CONFIG_H
8
9#include <configs/aspeed-common.h>
10
Tom Rini65cc0e22022-11-16 13:10:41 -050011#define CFG_SYS_UBOOT_BASE CONFIG_TEXT_BASE
Chia-Wei, Wang4a84cf02020-12-14 13:54:28 +080012
Chia-Wei Wang3aeb2392021-10-27 14:17:34 +080013/* Misc */
Chia-Wei Wange3cdc2c2021-10-27 14:17:35 +080014#define STR_HELPER(s) #s
15#define STR(s) STR_HELPER(s)
16
Tom Rini0613c362022-12-04 10:03:50 -050017#define CFG_EXTRA_ENV_SETTINGS \
Chia-Wei Wange3cdc2c2021-10-27 14:17:35 +080018 "loadaddr=" STR(CONFIG_SYS_LOAD_ADDR) "\0" \
19 "bootspi=fdt addr 20100000 && fdt header get fitsize totalsize && " \
20 "cp.b 20100000 ${loadaddr} ${fitsize} && bootm; " \
21 "echo Error loading kernel FIT image\0" \
Chia-Wei Wang3aeb2392021-10-27 14:17:34 +080022 ""
23
Chia-Wei, Wang4a84cf02020-12-14 13:54:28 +080024#endif /* __CONFIG_H */