1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2010 Samsung Electronics
4 * Minkyu Kang <mk7.kang@samsung.com>
6 * Configuation settings for the SAMSUNG Universal (EXYNOS4210) board.
9 #ifndef __CONFIG_UNIVERSAL_H
10 #define __CONFIG_UNIVERSAL_H
12 #include <configs/exynos4-common.h>
14 /* Keep L2 Cache Disabled */
16 /* Universal has 2 banks of DRAM */
17 #define CONFIG_SYS_SDRAM_BASE 0x40000000
18 #define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE
20 #define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */
22 /* Actual modem binary size is 16MiB. Add 2MiB for bad block handling */
24 #define NORMAL_MTDPARTS_DEFAULT CONFIG_MTDPARTS_DEFAULT
26 #define MBRPARTS_DEFAULT "20M(permanent)"\
32 #define CONFIG_EXTRA_ENV_SETTINGS \
34 "onenand erase 0x0 0x100000;" \
35 "onenand write 0x42008000 0x0 0x100000\0" \
37 "onenand erase 0xc00000 0x500000;" \
38 "onenand write 0x41008000 0xc00000 0x500000\0" \
40 "run loaduimage; bootm 0x40007FC0\0" \
42 "mmc dev 0 2; mmc write 0 0x42100000 0 0x200;" \
45 "mmc read 0 0x42100000 0x80 0x200; run updatebackup\0" \
48 "set bootargs root=ubi0!rootfs rootfstype=ubifs ${lpj} " \
49 "ubi.mtd=${ubiblock} ubi.mtd=4 ubi.mtd=7 " \
50 "rootflags=bulk_read,no_chk_data_crc ${mtdparts} ${opts} " \
51 "${lcdinfo} ${console} ${meminfo}; run bootk\0" \
53 "set bootargs root=ubi0!rootfs rootfstype=ubifs " \
54 "ubi.mtd=${ubiblock} ubi.mtd=4 ubi.mtd=7 " \
55 "rootflags=bulk_read,no_chk_data_crc ${mtdparts} ${opts} " \
56 "${lcdinfo} ${console} ${meminfo}" \
57 "; tftp 0x40007FC0 uImage; bootm 0x40007FC0\0" \
59 "set bootargs root=/dev/nfs rw " \
60 "nfsroot=${nfsroot},nolock,tcp " \
61 "ip=${ipaddr}:${serverip}:${gatewayip}:" \
62 "${netmask}:generic:usb0:off ${console} ${meminfo}" \
65 "set bootargs root=/dev/ram0 rw rootfstype=ext2 " \
66 "${console} ${meminfo} " \
67 "initrd=0x43000000,8M ramdisk=8192\0" \
69 "set bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
70 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \
71 "run loaduimage; bootm 0x40007FC0\0" \
72 "bootchart=set opts init=/sbin/bootchartd; run bootcmd\0" \
73 "boottrace=setenv opts initcall_debug; run bootcmd\0" \
74 "mmcoops=mmc read 0 0x40000000 0x40 8; md 0x40000000 0x400\0" \
77 "console=console=ttySAC1,115200n8\0" \
78 "mbrparts=" MBRPARTS_DEFAULT \
79 "meminfo=crashkernel=32M@0x50000000\0" \
80 "nfsroot=/nfsroot/arm\0" \
84 "loaduimage=fatload mmc ${mmcdev}:${mmcbootpart} 0x40007FC0 uImage\0" \
88 "opts=always_resume=1"
90 #define CONFIG_SYS_ONENAND_BASE 0x0C000000
93 void universal_spi_scl(int bit);
94 void universal_spi_sda(int bit);
95 int universal_spi_read(void);
98 /* Common misc for Samsung */
99 #define CONFIG_MISC_COMMON
101 /* Download menu - Samsung common */
102 #define CONFIG_LCD_MENU
104 /* Download menu - definitions for check keys */
107 #define KEY_PWR_PMIC_NAME "MAX8998_PMIC"
108 #define KEY_PWR_STATUS_REG MAX8998_REG_STATUS1
109 #define KEY_PWR_STATUS_MASK (1 << 7)
110 #define KEY_PWR_INTERRUPT_REG MAX8998_REG_IRQ1
111 #define KEY_PWR_INTERRUPT_MASK (1 << 7)
113 #define KEY_VOL_UP_GPIO EXYNOS4_GPIO_X20
114 #define KEY_VOL_DOWN_GPIO EXYNOS4_GPIO_X21
115 #endif /* __ASSEMBLY__ */
118 #define LCD_BPP LCD_COLOR16
123 #define CONFIG_LD9040
124 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE ((500 * 160 * 4) + 54)
126 #endif /* __CONFIG_H */