blob: 2ceefed93400e329423d6af0c90509bd6f35b2f7 [file] [log] [blame]
Alexey Brodkin2c3f9262018-05-28 15:27:43 +03001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (C) 2018 Synopsys, Inc. All rights reserved.
4 */
5
Alexey Brodkinadc9b092018-10-18 09:54:58 +03006#ifndef _CONFIG_EMSDP_H_
7#define _CONFIG_EMSDP_H_
Alexey Brodkin2c3f9262018-05-28 15:27:43 +03008
9#include <linux/sizes.h>
10
11#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
12
13#define CONFIG_SYS_SDRAM_BASE 0x10000000
Alexey Brodkinad74bb42018-11-27 09:20:44 +030014#define CONFIG_SYS_SDRAM_SIZE SZ_16M
Alexey Brodkin2c3f9262018-05-28 15:27:43 +030015
16#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + SZ_1M)
17
Alexey Brodkin2c3f9262018-05-28 15:27:43 +030018/*
19 * Environment
20 */
Alexey Brodkin2c3f9262018-05-28 15:27:43 +030021#define CONFIG_BOOTFILE "app.bin"
Alexey Brodkin2c3f9262018-05-28 15:27:43 +030022
23#define CONFIG_EXTRA_ENV_SETTINGS \
24 "upgrade_image=u-boot.bin\0" \
Alexey Brodkinadc9b092018-10-18 09:54:58 +030025 "upgrade=emsdp rom unlock && " \
Alexey Brodkin2c3f9262018-05-28 15:27:43 +030026 "fatload mmc 0 ${loadaddr} ${upgrade_image} && " \
27 "cp.b ${loadaddr} 0 ${filesize} && " \
28 "dcache flush && " \
Alexey Brodkinadc9b092018-10-18 09:54:58 +030029 "emsdp rom lock\0"
Alexey Brodkin2c3f9262018-05-28 15:27:43 +030030
Alexey Brodkinadc9b092018-10-18 09:54:58 +030031#endif /* _CONFIG_EMSDP_H_ */