blob: 2fa44e65fc16c6694bb4fd728b7a414ebab73053 [file] [log] [blame]
Stefan Bosche7001ed2020-07-10 19:07:38 +02001/* SPDX-License-Identifier: GPL-2.0+
2 *
3 * Copyright (C) Guangzhou FriendlyARM Computer Tech. Co., Ltd.
4 * (http://www.friendlyarm.com)
5 *
6 * (C) Copyright 2016 Nexell
7 * Hyejung Kwon <cjscld15@nexell.co.kr>
8 *
9 * Copyright (C) 2019 Stefan Bosch <stefan_b@posteo.net>
10 */
11
12#ifndef __CONFIG_H__
13#define __CONFIG_H__
14
15#include <linux/sizes.h>
16#include <asm/arch/nexell.h>
17
18/*-----------------------------------------------------------------------
19 * System memory Configuration
20 */
Tom Rinibb4dd962022-11-16 13:10:37 -050021#define CFG_SYS_SDRAM_BASE 0x71000000
Stefan Bosche7001ed2020-07-10 19:07:38 +020022
23/*
Tom Rini8d86fe32022-07-23 13:05:07 -040024 * "(0x40000000 - CONFIG_SYS_RESERVE_MEM_SIZE)" has been used in
Stefan Bosche7001ed2020-07-10 19:07:38 +020025 * u-boot nanopi2-v2016.01.
26 * This is not working anymore because boot_fdt_add_mem_rsv_regions() in
27 * common/image-fdt.c has been extended:
28 * Also reserved-memory sections are marked as unusable.
29 *
30 * In friendlyArm Ubuntu 16.04 source arch/arm/boot/dts/s5p4418.dtsi:
31 * reserved-memory {
32 * #address-cells = <1>;
33 * #size-cells = <1>;
34 * ranges;
35 *
36 * secure_memory@b0000000 {
37 * reg = <0xB0000000 0x1000000>;
38 * nop-map;
39 * };
40 * };
41 *
42 * arch_lmb_reserve() of arch/arm/lib/bootm.c:
43 * "Allocate space for command line and board info - ... below the current
44 * stack pointer."
45 * --> Memory allocated would overlap with "secure_memory@b0000000"
46 * --> lmb_add_region(rgn, base==0xb0000000, size==0x1000000) fails,
47 * boot output:
48 * ...
49 * Kernel image @ 0x71080000 [ 0x000000 - 0x60e628 ]
50 * ## Flattened Device Tree blob at 7a000000
51 * Booting using the fdt blob at 0x7a000000
52 * ERROR: reserving fdt memory region failed (addr=b0000000 size=1000000)
53 * Using Device Tree in place at 7a000000, end 7a00fbf0
54 *
55 * Starting kernel ...
56 * ...
57 */
Tom Rinibb4dd962022-11-16 13:10:37 -050058#define CFG_SYS_SDRAM_SIZE (0xb0000000 - CFG_SYS_SDRAM_BASE)
Stefan Bosche7001ed2020-07-10 19:07:38 +020059
Stefan Bosche7001ed2020-07-10 19:07:38 +020060#define BMP_LOAD_ADDR 0x78000000
61
62/* kernel load address */
Stefan Bosche7001ed2020-07-10 19:07:38 +020063#define INITRD_START 0x79000000
64#define KERNEL_DTB_ADDR 0x7A000000
65
66/*-----------------------------------------------------------------------
67 * High Level System Configuration
68 */
Stefan Bosche7001ed2020-07-10 19:07:38 +020069/* decrementer freq: 1ms ticks */
Stefan Bosche7001ed2020-07-10 19:07:38 +020070
71/*-----------------------------------------------------------------------
72 * System initialize options (board_init_f)
73 */
74/* board_init_f->init_sequence, call arch_cpu_init */
Stefan Bosche7001ed2020-07-10 19:07:38 +020075
Stefan Bosche7001ed2020-07-10 19:07:38 +020076/*-----------------------------------------------------------------------
Stefan Bosche7001ed2020-07-10 19:07:38 +020077 * serial console configuration
78 */
Tom Rini5c896ae2022-12-04 10:13:30 -050079#define CFG_PL011_CLOCK 50000000
Tom Rini9fe2b312022-12-04 10:13:31 -050080#define CFG_PL01x_PORTS {(void *)PHY_BASEADDR_UART0, \
Stefan Bosche7001ed2020-07-10 19:07:38 +020081 (void *)PHY_BASEADDR_UART1, \
82 (void *)PHY_BASEADDR_UART2, \
83 (void *)PHY_BASEADDR_UART3}
Stefan Bosche7001ed2020-07-10 19:07:38 +020084
85/*-----------------------------------------------------------------------
Stefan Bosche7001ed2020-07-10 19:07:38 +020086 * BACKLIGHT
87 */
88#ifndef CONFIG_S5P4418_ONEWIRE
89#ifdef CONFIG_PWM_NX
90/* fallback to pwm */
91#define BACKLIGHT_CH 0
92#define BACKLIGHT_DIV 0
93#define BACKLIGHT_INV 0
94#define BACKLIGHT_DUTY 50
95#define BACKLIGHT_HZ 1000
96#endif
97#endif
98
99/*-----------------------------------------------------------------------
Stefan Bosche7001ed2020-07-10 19:07:38 +0200100 * VIDEO
101 */
102
Stefan Bosche7001ed2020-07-10 19:07:38 +0200103#ifdef CONFIG_VIDEO_LOGO
Stefan Bosche7001ed2020-07-10 19:07:38 +0200104#ifdef CONFIG_SPLASH_SCREEN
Stefan Bosche7001ed2020-07-10 19:07:38 +0200105#define SPLASH_FILE logo.bmp
106#endif
107
108#endif
109
110/*-----------------------------------------------------------------------
111 * ENV
112 */
113#define BLOADER_MMC \
114 "ext4load mmc ${rootdev}:${bootpart} "
115
116#ifdef CONFIG_OF_BOARD_SETUP
117#define EXTRA_ENV_DTB_RESERVE \
118 "dtb_reserve=" \
119 "if test -n \"$dtb_addr\"; then fdt addr $dtb_addr; fi\0"
120#else
121#define EXTRA_ENV_DTB_RESERVE \
122 "dtb_reserve=" \
123 "if test -n \"$fb_addr\"; then " \
124 "fdt addr $dtb_addr;" \
125 "fdt resize;" \
126 "fdt mk /reserved-memory display_reserved;" \
127 "fdt set /reserved-memory/display_reserved " \
128 "reg <$fb_addr 0x800000>;" \
129 "fi;\0"
130#endif
131
132#ifdef CONFIG_SPLASH_SCREEN
133#define EXTRA_ENV_BOOT_LOGO \
134 "splashimage=" __stringify(BMP_LOAD_ADDR)"\0" \
135 "splashfile=" __stringify(SPLASH_FILE)"\0" \
136 "splashpos=m,m\0" \
137 "fb_addr=\0" \
138 EXTRA_ENV_DTB_RESERVE
139#else
140 #define EXTRA_ENV_BOOT_LOGO EXTRA_ENV_DTB_RESERVE
141#endif
142
Tom Rinic9edebe2022-12-04 10:03:50 -0500143#define CFG_EXTRA_ENV_SETTINGS \
Stefan Bosche7001ed2020-07-10 19:07:38 +0200144 "fdt_high=0xffffffff\0" \
145 "initrd_high=0xffffffff\0" \
146 "rootdev=" __stringify(CONFIG_ROOT_DEV) "\0" \
147 "rootpart=" __stringify(CONFIG_ROOT_PART) "\0" \
148 "bootpart=" __stringify(CONFIG_BOOT_PART) "\0" \
149 "kernel=zImage\0" \
150 "loadaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
151 "dtb_name=s5p4418-nanopi2-rev01.dtb\0" \
152 "dtb_addr=" __stringify(KERNEL_DTB_ADDR) "\0" \
153 "initrd_name=ramdisk.img\0" \
154 "initrd_addr=" __stringify(INITRD_START) "\0" \
155 "initrd_size=0x600000\0" \
156 "load_dtb=" \
157 BLOADER_MMC "${dtb_addr} ${dtb_name}; " \
158 "run dtb_reserve\0" \
159 "load_kernel=" \
160 BLOADER_MMC "${loadaddr} ${kernel}\0" \
161 "load_initrd=" \
162 BLOADER_MMC "${initrd_addr} ${initrd_name}; " \
163 "setenv initrd_size 0x${filesize}\0" \
164 "mmcboot=" \
165 "run load_kernel; run load_initrd; run load_dtb; " \
166 "bootz ${loadaddr} ${initrd_addr}:${initrd_size} " \
167 "${dtb_addr}\0" \
168 "bootcmd=run mmcboot\0" \
169 EXTRA_ENV_BOOT_LOGO
170
171#endif /* __CONFIG_H__ */