rockchip: use 'arch-rockchip' as header file path
[oweals/u-boot.git] / include / configs / rk3368_common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2016 Andreas Färber
4  */
5
6 #ifndef __CONFIG_RK3368_COMMON_H
7 #define __CONFIG_RK3368_COMMON_H
8
9 #include "rockchip-common.h"
10
11 #define CONFIG_SYS_CACHELINE_SIZE       64
12
13 #include <asm/arch-rockchip/hardware.h>
14 #include <linux/sizes.h>
15
16 #define CONFIG_SYS_SDRAM_BASE           0
17 #define SDRAM_MAX_SIZE                  0xff000000
18 #define CONFIG_BAUDRATE                 115200
19 #define CONFIG_SYS_MALLOC_LEN           (32 << 20)
20 #define CONFIG_SYS_CBSIZE               1024
21 #define CONFIG_SKIP_LOWLEVEL_INIT
22
23 #define COUNTER_FREQUENCY               24000000
24
25 #define CONFIG_SYS_NS16550_MEM32
26
27 #define CONFIG_SYS_INIT_SP_ADDR         0x00300000
28 #define CONFIG_SYS_LOAD_ADDR            0x00280000
29
30 #define CONFIG_SPL_MAX_SIZE             0x40000
31 #define CONFIG_SPL_BSS_START_ADDR       0x400000
32 #define CONFIG_SPL_BSS_MAX_SIZE         0x20000
33
34 #ifndef CONFIG_SPL_BUILD
35 #define ENV_MEM_LAYOUT_SETTINGS \
36         "scriptaddr=0x00500000\0" \
37         "pxefile_addr_r=0x00600000\0" \
38         "fdt_addr_r=0x5600000\0" \
39         "kernel_addr_r=0x280000\0" \
40         "ramdisk_addr_r=0x5bf0000\0"
41
42 #include <config_distro_bootcmd.h>
43
44 #define CONFIG_EXTRA_ENV_SETTINGS \
45         "fdtfile=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
46         ENV_MEM_LAYOUT_SETTINGS \
47         BOOTENV
48
49 #endif
50
51 #endif