]> Git Repo - J-u-boot.git/blame - include/configs/s5p_goni.h
Convert CONFIG_USE_ONENAND_BOARD_INIT to Kconfig
[J-u-boot.git] / include / configs / s5p_goni.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
c474a8eb
MK
2/*
3 * Copyright (C) 2009 Samsung Electronics
4 * Minkyu Kang <[email protected]>
5 * Kyungmin Park <[email protected]>
6 *
7 * Configuation settings for the SAMSUNG Universal (s5pc100) board.
c474a8eb
MK
8 */
9
10#ifndef __CONFIG_H
11#define __CONFIG_H
12
a45ddf7a 13#include <linux/sizes.h>
c474a8eb
MK
14#include <asm/arch/cpu.h> /* get chip and board defs */
15
c474a8eb
MK
16/* DRAM Base */
17#define CONFIG_SYS_SDRAM_BASE 0x30000000
18
35bea619 19/* Text Base */
35bea619 20
87f314e9 21/* MMC */
311757be 22#define SDHCI_MAX_HOSTS 4
87f314e9 23
2d281b32 24/* USB Composite download gadget - g_dnl */
0fabb6af
ŁM
25#define DFU_DEFAULT_POLL_TIMEOUT 300
26
2d281b32 27/* USB Samsung's IDs */
e6c0bc06
SP
28
29#define CONFIG_G_DNL_THOR_VENDOR_NUM 0x04E8
0fabb6af 30#define CONFIG_G_DNL_THOR_PRODUCT_NUM 0x685D
124c5998
ŁM
31#define CONFIG_G_DNL_UMS_VENDOR_NUM 0x0525
32#define CONFIG_G_DNL_UMS_PRODUCT_NUM 0xA4A5
c474a8eb
MK
33
34/* Actual modem binary size is 16MiB. Add 2MiB for bad block handling */
c474a8eb 35
2d281b32
MZ
36/* partitions definitions */
37#define PARTS_CSA "csa-mmc"
38#define PARTS_BOOTLOADER "u-boot"
39#define PARTS_BOOT "boot"
40#define PARTS_ROOT "platform"
41#define PARTS_DATA "data"
42#define PARTS_CSC "csc"
43#define PARTS_UMS "ums"
44
45#define CONFIG_DFU_ALT \
46 "u-boot raw 0x80 0x400;" \
47 "uImage ext4 0 2;" \
48 "exynos3-goni.dtb ext4 0 2;" \
49 ""PARTS_ROOT" part 0 5\0"
50
51#define PARTS_DEFAULT \
52 "uuid_disk=${uuid_gpt_disk};" \
53 "name="PARTS_CSA",size=8MiB,uuid=${uuid_gpt_"PARTS_CSA"};" \
54 "name="PARTS_BOOTLOADER",size=60MiB," \
55 "uuid=${uuid_gpt_"PARTS_BOOTLOADER"};" \
56 "name="PARTS_BOOT",size=100MiB,uuid=${uuid_gpt_"PARTS_BOOT"};" \
57 "name="PARTS_ROOT",size=1GiB,uuid=${uuid_gpt_"PARTS_ROOT"};" \
58 "name="PARTS_DATA",size=3GiB,uuid=${uuid_gpt_"PARTS_DATA"};" \
59 "name="PARTS_CSC",size=150MiB,uuid=${uuid_gpt_"PARTS_CSC"};" \
60 "name="PARTS_UMS",size=-,uuid=${uuid_gpt_"PARTS_UMS"}\0" \
c474a8eb 61
428eb2e2 62#define COMMON_BOOT "${console} ${meminfo} ${mtdparts}"
c474a8eb 63
2ac9a35b 64#define CONFIG_MISC_COMMON
2ac9a35b 65
c474a8eb 66#define CONFIG_EXTRA_ENV_SETTINGS \
428eb2e2
TR
67 "updateb=" \
68 "onenand erase 0x0 0x100000;" \
69 "onenand write 0x32008000 0x0 0x100000\0" \
c474a8eb
MK
70 "updatek=" \
71 "onenand erase 0xc00000 0x600000;" \
72 "onenand write 0x31008000 0xc00000 0x600000\0" \
73 "updateu=" \
74 "onenand erase 0x01560000 0x1eaa0000;" \
75 "onenand write 0x32000000 0x1260000 0x8C0000\0" \
76 "bootk=" \
a45ddf7a 77 "run loaduimage;" \
c474a8eb
MK
78 "bootm 0x30007FC0\0" \
79 "flashboot=" \
80 "set bootargs root=/dev/mtdblock${bootblock} " \
a45ddf7a 81 "rootfstype=${rootfstype} ${opts} " \
428eb2e2 82 "${lcdinfo} " COMMON_BOOT "; run bootk\0" \
c474a8eb
MK
83 "ubifsboot=" \
84 "set bootargs root=ubi0!rootfs rootfstype=ubifs " \
a45ddf7a 85 "${opts} ${lcdinfo} " \
428eb2e2 86 COMMON_BOOT "; run bootk\0" \
c474a8eb
MK
87 "tftpboot=" \
88 "set bootargs root=ubi0!rootfs rootfstype=ubifs " \
428eb2e2 89 "${opts} ${lcdinfo} " COMMON_BOOT \
a45ddf7a 90 "; tftp 0x30007FC0 uImage; bootm 0x30007FC0\0" \
c474a8eb 91 "ramboot=" \
428eb2e2
TR
92 "set bootargs root=/dev/ram0 rw rootfstype=ext4" \
93 " ${console} ${meminfo} " \
a45ddf7a 94 "initrd=0x33000000,8M ramdisk=8192\0" \
c474a8eb 95 "mmcboot=" \
a45ddf7a
MZ
96 "set bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
97 "rootfstype=${rootfstype} ${opts} ${lcdinfo} " \
428eb2e2 98 COMMON_BOOT "; run bootk\0" \
c474a8eb
MK
99 "boottrace=setenv opts initcall_debug; run bootcmd\0" \
100 "bootchart=set opts init=/sbin/bootchartd; run bootcmd\0" \
101 "verify=n\0" \
a45ddf7a 102 "rootfstype=ext4\0" \
9c04265f 103 "console=console=ttySAC2,115200n8\0" \
c474a8eb 104 "meminfo=mem=80M mem=256M@0x40000000 mem=128M@0x50000000\0" \
2d281b32 105 "loaduimage=ext4load mmc ${mmcdev}:${mmcbootpart} 0x30007FC0 uImage\0" \
a45ddf7a
MZ
106 "mmcdev=0\0" \
107 "mmcbootpart=2\0" \
108 "mmcrootpart=5\0" \
2d281b32 109 "partitions=" PARTS_DEFAULT \
c474a8eb
MK
110 "bootblock=9\0" \
111 "ubiblock=8\0" \
112 "ubi=enabled\0" \
2d281b32
MZ
113 "opts=always_resume=1\0" \
114 "dfu_alt_info=" CONFIG_DFU_ALT "\0"
c474a8eb 115
c474a8eb 116/* Goni has 3 banks of DRAM, but swap the bank */
c474a8eb
MK
117#define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE /* OneDRAM Bank #0 */
118#define PHYS_SDRAM_1_SIZE (80 << 20) /* 80 MB in Bank #0 */
119#define PHYS_SDRAM_2 0x40000000 /* mDDR DMC1 Bank #1 */
120#define PHYS_SDRAM_2_SIZE (256 << 20) /* 256 MB in Bank #1 */
121#define PHYS_SDRAM_3 0x50000000 /* mDDR DMC2 Bank #2 */
122#define PHYS_SDRAM_3_SIZE (128 << 20) /* 128 MB in Bank #2 */
123
c474a8eb
MK
124#define CONFIG_SYS_MONITOR_LEN (256 << 10) /* 256 KiB */
125
126/* FLASH and environment organization */
34ecd694 127#define CONFIG_MMC_DEFAULT_DEV 0
c474a8eb 128
c474a8eb
MK
129#define CONFIG_SYS_ONENAND_BASE 0xB0000000
130
e30824f4 131#define CONFIG_USB_GADGET_DWC2_OTG_PHY
85776b02 132
c474a8eb 133#endif /* __CONFIG_H */
This page took 0.962259 seconds and 4 git commands to generate.