]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/rk3368_common.h
678f40d5bf678923c4136583f1969e49cd219dbc
[people/ms/u-boot.git] / include / configs / rk3368_common.h
1 /*
2 * Copyright (c) 2016 Andreas Färber
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7 #ifndef __CONFIG_RK3368_COMMON_H
8 #define __CONFIG_RK3368_COMMON_H
9
10 #define CONFIG_SYS_CACHELINE_SIZE 64
11
12 #include <asm/arch/hardware.h>
13 #include <linux/sizes.h>
14
15 #define CONFIG_SYS_SDRAM_BASE 0
16 #define SDRAM_MAX_SIZE 0xff000000
17 #define CONFIG_NR_DRAM_BANKS 1
18 #define CONFIG_SYS_MAXARGS 16
19 #define CONFIG_BAUDRATE 115200
20 #define CONFIG_SYS_MALLOC_LEN (32 << 20)
21 #define CONFIG_SYS_CBSIZE 1024
22 #define CONFIG_SKIP_LOWLEVEL_INIT
23
24 #define COUNTER_FREQUENCY 24000000
25
26 #define CONFIG_SPL_FRAMEWORK
27 #define CONFIG_SYS_NS16550_MEM32
28
29 #define CONFIG_SYS_TEXT_BASE 0x00200000
30 #define CONFIG_SYS_INIT_SP_ADDR 0x00300000
31 #define CONFIG_SYS_LOAD_ADDR 0x00280000
32
33 #define CONFIG_SPL_TEXT_BASE 0x00000000
34 #define CONFIG_SPL_MAX_SIZE 0x40000
35 #define CONFIG_SPL_BSS_START_ADDR 0x400000
36 #define CONFIG_SPL_BSS_MAX_SIZE 0x20000
37
38 #define CONFIG_TPL_LDSCRIPT \
39 "arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds"
40 #define CONFIG_TPL_TEXT_BASE 0xff8c1000
41 #define CONFIG_TPL_MAX_SIZE 0x7000
42 #define CONFIG_TPL_STACK 0xff8cffff
43
44 #define CONFIG_BOUNCE_BUFFER
45
46 #ifndef CONFIG_SPL_BUILD
47 #define ENV_MEM_LAYOUT_SETTINGS \
48 "scriptaddr=0x00500000\0" \
49 "pxefile_addr_r=0x00600000\0" \
50 "fdt_addr_r=0x5600000\0" \
51 "kernel_addr_r=0x280000\0" \
52 "ramdisk_addr_r=0x5bf0000\0"
53
54 #include <config_distro_defaults.h>
55
56 #define BOOT_TARGET_DEVICES(func)
57
58 #include <config_distro_bootcmd.h>
59
60 #define CONFIG_EXTRA_ENV_SETTINGS \
61 BOOTENV
62
63 #endif
64
65 #endif