arm: samsung: Migrate a number of symbols to Kconfig
[platform/kernel/u-boot.git] / include / configs / smdkc100.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2009 Samsung Electronics
4  * Minkyu Kang <mk7.kang@samsung.com>
5  * HeungJun Kim <riverful.kim@samsung.com>
6  * Inki Dae <inki.dae@samsung.com>
7  *
8  * Configuation settings for the SAMSUNG SMDKC100 board.
9  */
10
11 #ifndef __CONFIG_H
12 #define __CONFIG_H
13
14 #include <asm/arch/cpu.h>               /* get chip and board defs */
15
16 /* input clock of PLL: SMDKC100 has 12MHz input clock */
17
18 /* DRAM Base */
19 #define CONFIG_SYS_SDRAM_BASE           0x30000000
20
21 /* Text Base */
22
23 /*
24  * select serial console configuration
25  */
26
27 /* PWM */
28 #define CONFIG_PWM                      1
29
30 #define COMMON_BOOT     "console=ttySAC0,115200n8" \
31                                 " mem=128M " \
32                                 " " CONFIG_MTDPARTS_DEFAULT
33
34 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
35         "updateb=" \
36                 "onenand erase 0x0 0x40000;" \
37                 "onenand write 0x32008000 0x0 0x40000\0" \
38         "updatek=" \
39                 "onenand erase 0x60000 0x300000;" \
40                 "onenand write 0x31008000 0x60000 0x300000\0" \
41         "updateu=" \
42                 "onenand erase block 147-4095;" \
43                 "onenand write 0x32000000 0x1260000 0x8C0000\0" \
44         "bootk=" \
45                 "onenand read 0x30007FC0 0x60000 0x300000;" \
46                 "bootm 0x30007FC0\0" \
47         "flashboot=" \
48                 "set bootargs root=/dev/mtdblock${bootblock} " \
49                 "rootfstype=${rootfstype} " \
50                 "ubi.mtd=${ubiblock} ${opts} " COMMON_BOOT ";" \
51                 "run bootk\0" \
52         "ubifsboot=" \
53                 "set bootargs root=ubi0!rootfs rootfstype=ubifs " \
54                 " ubi.mtd=${ubiblock} ${opts} " COMMON_BOOT "; " \
55                 "run bootk\0" \
56         "boottrace=setenv opts initcall_debug; run bootcmd\0" \
57         "android=" \
58                 "set bootargs root=ubi0!ramdisk ubi.mtd=${ubiblock} " \
59                 "rootfstype=ubifs init=/init.sh " COMMON_BOOT "; " \
60                 "run bootk\0" \
61         "nfsboot=" \
62                 "set bootargs root=/dev/nfs ubi.mtd=${ubiblock} " \
63                 "nfsroot=${nfsroot},nolock " \
64                 "ip=${ipaddr}:${serverip}:${gatewayip}:" \
65                 "${netmask}:nowplus:usb0:off " COMMON_BOOT "; " \
66                 "run bootk\0" \
67         "ramboot=" \
68                 "set bootargs root=/dev/ram0 rw rootfstype=ext2" \
69                 " console=ttySAC0,115200n8 mem=128M" \
70                 " initrd=0x33000000,8M ramdisk=8192\0" \
71         "rootfstype=cramfs\0" \
72         "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
73         "meminfo=mem=128M\0" \
74         "nfsroot=/nfsroot/arm\0" \
75         "bootblock=5\0" \
76         "ubiblock=4\0" \
77         "ubi=enabled"
78
79 /*
80  * Miscellaneous configurable options
81  */
82
83 /* SMDKC100 has 1 banks of DRAM, we use only one in U-Boot */
84 #define PHYS_SDRAM_1            CONFIG_SYS_SDRAM_BASE   /* SDRAM Bank #1 */
85 #define PHYS_SDRAM_1_SIZE       (128 << 20)     /* 0x8000000, 128 MB Bank #1 */
86
87 /*-----------------------------------------------------------------------
88  * FLASH and environment organization
89  */
90
91 #define CONFIG_SYS_MONITOR_LEN          (256 << 10)     /* 256 KiB */
92
93 #if !defined(CONFIG_NAND_SPL) && (CONFIG_SYS_TEXT_BASE >= 0xc0000000)
94 #define CONFIG_ENABLE_MMU
95 #endif
96
97 #ifdef CONFIG_ENABLE_MMU
98 #define CONFIG_SYS_MAPPED_RAM_BASE      0xc0000000
99 #else
100 #define CONFIG_SYS_MAPPED_RAM_BASE      CONFIG_SYS_SDRAM_BASE
101 #endif
102
103 /*-----------------------------------------------------------------------
104  * Boot configuration
105  */
106
107 #define CONFIG_USE_ONENAND_BOARD_INIT
108 #define CONFIG_SAMSUNG_ONENAND          1
109 #define CONFIG_SYS_ONENAND_BASE         0xE7100000
110
111 /*
112  * Ethernet Contoller driver
113  */
114 #ifdef CONFIG_CMD_NET
115 #define CONFIG_ENV_SROM_BANK   3       /* Select SROM Bank-3 for Ethernet*/
116 #endif /* CONFIG_CMD_NET */
117
118 #endif  /* __CONFIG_H */