blob: 229e1a323b6d6335f36d2c83d43283426745949e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Jorge Ramirez-Ortiz4b684a62018-01-10 11:33:50 +01002/*
3 * Board configuration file for Dragonboard 410C
4 *
5 * (C) Copyright 2017 Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>
Jorge Ramirez-Ortiz4b684a62018-01-10 11:33:50 +01006 */
7
8#ifndef __CONFIGS_DRAGONBOARD820C_H
9#define __CONFIGS_DRAGONBOARD820C_H
10
11#include <linux/sizes.h>
12#include <asm/arch/sysmap-apq8096.h>
13
Jorge Ramirez-Ortiz4b684a62018-01-10 11:33:50 +010014/* Physical Memory Map */
Jorge Ramirez-Ortiz4b684a62018-01-10 11:33:50 +010015
16#define PHYS_SDRAM_SIZE 0xC0000000
17#define PHYS_SDRAM_1 0x80000000
18#define PHYS_SDRAM_1_SIZE 0x60000000
19#define PHYS_SDRAM_2 0x100000000
20#define PHYS_SDRAM_2_SIZE 0x5ea4ffff
21
22#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
Jorge Ramirez-Ortiz4b684a62018-01-10 11:33:50 +010023#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x7fff0)
Jorge Ramirez-Ortiz4b684a62018-01-10 11:33:50 +010024#define CONFIG_SYS_BOOTM_LEN SZ_64M
Jorge Ramirez-Ortiz4b684a62018-01-10 11:33:50 +010025
26/* Generic Timer Definitions */
27#define COUNTER_FREQUENCY 19000000
28
Jorge Ramirez-Ortiz4b684a62018-01-10 11:33:50 +010029#ifndef CONFIG_SPL_BUILD
Jorge Ramirez-Ortiz4b684a62018-01-10 11:33:50 +010030#include <config_distro_bootcmd.h>
31#endif
32
33#define BOOT_TARGET_DEVICES(func) \
34 func(MMC, mmc, 0)
35
36#define CONFIG_EXTRA_ENV_SETTINGS \
37 "loadaddr=0x95000000\0" \
38 "fdt_high=0xffffffffffffffff\0" \
39 "initrd_high=0xffffffffffffffff\0" \
40 "linux_image=uImage\0" \
41 "kernel_addr_r=0x95000000\0"\
42 "fdtfile=qcom/apq8096-db820c.dtb\0" \
43 "fdt_addr_r=0x93000000\0"\
44 "ramdisk_addr_r=0x91000000\0"\
45 "scriptaddr=0x90000000\0"\
46 "pxefile_addr_r=0x90100000\0"\
47 BOOTENV
48
Jorge Ramirez-Ortiz4b684a62018-01-10 11:33:50 +010049/* Monitor Command Prompt */
50#define CONFIG_SYS_CBSIZE 512
51#define CONFIG_SYS_MAXARGS 64
52
53#endif