mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
0f3c8fe392
Move the environment to an easily editable text file in the boot partition Signed-off-by: Paweł Anikiel <pan@semihalf.com> Reviewed-by: Simon Glass <sjg@chromium.org>
37 lines
802 B
C
37 lines
802 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright 2022 Google LLC
|
|
*/
|
|
#ifndef __SOCFGPA_CHAMELEONV3_H__
|
|
#define __SOCFGPA_CHAMELEONV3_H__
|
|
|
|
#include <asm/arch/base_addr_a10.h>
|
|
|
|
/*
|
|
* U-Boot general configurations
|
|
*/
|
|
|
|
/* Memory configurations */
|
|
#define PHYS_SDRAM_1_SIZE 0x40000000
|
|
|
|
/*
|
|
* Serial / UART configurations
|
|
*/
|
|
#define CFG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600, 115200}
|
|
|
|
#define CFG_EXTRA_ENV_SETTINGS \
|
|
"distro_bootcmd=bridge enable; " \
|
|
"load mmc 0:1 ${loadaddr} u-boot.txt; " \
|
|
"env import -t ${loadaddr}; " \
|
|
"run bootcmd_txt\0"
|
|
|
|
/*
|
|
* L4 OSC1 Timer 0
|
|
*/
|
|
/* reload value when timer count to zero */
|
|
#define TIMER_LOAD_VAL 0xFFFFFFFF
|
|
|
|
/* The rest of the configuration is shared */
|
|
#include <configs/socfpga_common.h>
|
|
|
|
#endif /* __SOCFGPA_CHAMELEONV3_H__ */
|