1 /* SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) Guangzhou FriendlyARM Computer Tech. Co., Ltd.
4 * (http://www.friendlyarm.com)
6 * (C) Copyright 2016 Nexell
15 #include <linux/sizes.h>
16 #include <asm/arch/nexell.h>
18 /*-----------------------------------------------------------------------
19 * System memory Configuration
21 #define CONFIG_SYS_INIT_SP_ADDR CONFIG_SYS_TEXT_BASE
22 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
23 #define CONFIG_SYS_MEM_SIZE 0x40000000
24 #define CONFIG_SYS_SDRAM_BASE 0x71000000
27 * "(CONFIG_SYS_MEM_SIZE - CONFIG_SYS_RESERVE_MEM_SIZE)" has been used in
28 * u-boot nanopi2-v2016.01.
29 * This is not working anymore because boot_fdt_add_mem_rsv_regions() in
30 * common/image-fdt.c has been extended:
31 * Also reserved-memory sections are marked as unusable.
33 * In friendlyArm Ubuntu 16.04 source arch/arm/boot/dts/s5p4418.dtsi:
35 * #address-cells = <1>;
39 * secure_memory@b0000000 {
40 * reg = <0xB0000000 0x1000000>;
45 * arch_lmb_reserve() of arch/arm/lib/bootm.c:
46 * "Allocate space for command line and board info - ... below the current
48 * --> Memory allocated would overlap with "secure_memory@b0000000"
49 * --> lmb_add_region(rgn, base==0xb0000000, size==0x1000000) fails,
52 * Kernel image @ 0x71080000 [ 0x000000 - 0x60e628 ]
53 * ## Flattened Device Tree blob at 7a000000
54 * Booting using the fdt blob at 0x7a000000
55 * ERROR: reserving fdt memory region failed (addr=b0000000 size=1000000)
56 * Using Device Tree in place at 7a000000, end 7a00fbf0
61 #define CONFIG_SYS_SDRAM_SIZE (0xb0000000 - CONFIG_SYS_SDRAM_BASE)
63 #define BMP_LOAD_ADDR 0x78000000
65 /* kernel load address */
66 #define INITRD_START 0x79000000
67 #define KERNEL_DTB_ADDR 0x7A000000
69 /*-----------------------------------------------------------------------
70 * High Level System Configuration
72 /* Not used: not need IRQ/FIQ stuff */
74 /* decrementer freq: 1ms ticks */
76 /*-----------------------------------------------------------------------
77 * System initialize options (board_init_f)
79 /* board_init_f->init_sequence, call arch_cpu_init */
81 /*-----------------------------------------------------------------------
82 * Miscellaneous configurable options
84 #ifdef CONFIG_SYS_PROMPT
85 #undef CONFIG_SYS_PROMPT
86 /* Monitor Command Prompt */
87 #define CONFIG_SYS_PROMPT "nanopi2# "
90 /* Console I/O Buffer Size */
91 #define CONFIG_SYS_CBSIZE 1024
92 /* Print Buffer Size */
93 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
94 sizeof(CONFIG_SYS_PROMPT) + 16)
95 /* max number of command args */
96 #define CONFIG_SYS_MAXARGS 16
97 /* Boot Argument Buffer Size */
98 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
100 /*-----------------------------------------------------------------------
101 * Etc Command definition
103 #undef CONFIG_BOOTM_NETBSD
104 #undef CONFIG_BOOTM_RTEMS
106 /*-----------------------------------------------------------------------
107 * serial console configuration
109 #define CONFIG_PL011_CLOCK 50000000
110 #define CONFIG_PL01x_PORTS {(void *)PHY_BASEADDR_UART0, \
111 (void *)PHY_BASEADDR_UART1, \
112 (void *)PHY_BASEADDR_UART2, \
113 (void *)PHY_BASEADDR_UART3}
115 /*-----------------------------------------------------------------------
118 #define CONFIG_SYS_PLLFIN 24000000UL
120 /*-----------------------------------------------------------------------
123 #define CONFIG_TIMER_SYS_TICK_CH 0
125 /*-----------------------------------------------------------------------
128 #ifndef CONFIG_S5P4418_ONEWIRE
130 /* fallback to pwm */
131 #define BACKLIGHT_CH 0
132 #define BACKLIGHT_DIV 0
133 #define BACKLIGHT_INV 0
134 #define BACKLIGHT_DUTY 50
135 #define BACKLIGHT_HZ 1000
139 /*-----------------------------------------------------------------------
143 #define CONFIG_VIDEO_LOGO
145 #ifdef CONFIG_VIDEO_LOGO
146 #ifdef CONFIG_SPLASH_SCREEN
147 #define SPLASH_FILE logo.bmp
152 /*-----------------------------------------------------------------------
155 #define BLOADER_MMC \
156 "ext4load mmc ${rootdev}:${bootpart} "
158 #ifdef CONFIG_OF_BOARD_SETUP
159 #define EXTRA_ENV_DTB_RESERVE \
161 "if test -n \"$dtb_addr\"; then fdt addr $dtb_addr; fi\0"
163 #define EXTRA_ENV_DTB_RESERVE \
165 "if test -n \"$fb_addr\"; then " \
166 "fdt addr $dtb_addr;" \
168 "fdt mk /reserved-memory display_reserved;" \
169 "fdt set /reserved-memory/display_reserved " \
170 "reg <$fb_addr 0x800000>;" \
174 #ifdef CONFIG_SPLASH_SCREEN
175 #define EXTRA_ENV_BOOT_LOGO \
176 "splashimage=" __stringify(BMP_LOAD_ADDR)"\0" \
177 "splashfile=" __stringify(SPLASH_FILE)"\0" \
180 EXTRA_ENV_DTB_RESERVE
182 #define EXTRA_ENV_BOOT_LOGO EXTRA_ENV_DTB_RESERVE
185 #define CONFIG_EXTRA_ENV_SETTINGS \
186 "fdt_high=0xffffffff\0" \
187 "initrd_high=0xffffffff\0" \
188 "rootdev=" __stringify(CONFIG_ROOT_DEV) "\0" \
189 "rootpart=" __stringify(CONFIG_ROOT_PART) "\0" \
190 "bootpart=" __stringify(CONFIG_BOOT_PART) "\0" \
192 "loadaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
193 "dtb_name=s5p4418-nanopi2-rev01.dtb\0" \
194 "dtb_addr=" __stringify(KERNEL_DTB_ADDR) "\0" \
195 "initrd_name=ramdisk.img\0" \
196 "initrd_addr=" __stringify(INITRD_START) "\0" \
197 "initrd_size=0x600000\0" \
199 BLOADER_MMC "${dtb_addr} ${dtb_name}; " \
200 "run dtb_reserve\0" \
202 BLOADER_MMC "${loadaddr} ${kernel}\0" \
204 BLOADER_MMC "${initrd_addr} ${initrd_name}; " \
205 "setenv initrd_size 0x${filesize}\0" \
207 "run load_kernel; run load_initrd; run load_dtb; " \
208 "bootz ${loadaddr} ${initrd_addr}:${initrd_size} " \
210 "bootcmd=run mmcboot\0" \
213 #endif /* __CONFIG_H__ */