mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
72d81360aa
- In most of the codebase, we reference CONFIG_SYS_LOAD_ADDR and not CONFIG_LOADADDR. - Generally, CONFIG_SYS_LOADADDR is set to CONFIG_LOADADDR and then as noted, we use CONFIG_SYS_LOADADDR. Signed-off-by: Tom Rini <trini@konsulko.com>
19 lines
474 B
C
19 lines
474 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2016 Marek Vasut <marex@denx.de>
|
|
*/
|
|
#ifndef __CONFIG_TERASIC_DE1_SOC_H__
|
|
#define __CONFIG_TERASIC_DE1_SOC_H__
|
|
|
|
#include <asm/arch/base_addr_ac5.h>
|
|
|
|
/* Memory configurations */
|
|
#define PHYS_SDRAM_1_SIZE 0x40000000 /* 1GiB */
|
|
|
|
/* Booting Linux */
|
|
#define CONFIG_SYS_LOAD_ADDR 0x01000000
|
|
|
|
/* The rest of the configuration is shared */
|
|
#include <configs/socfpga_common.h>
|
|
|
|
#endif /* __CONFIG_TERASIC_DE1_SOC_H__ */
|