1
2
3
4
5
6
7
8
9
10#ifndef __CONFIG_TRATS2_H
11#define __CONFIG_TRATS2_H
12
13#include <configs/exynos4-common.h>
14
15#define CONFIG_TIZEN
16
17#define CONFIG_SYS_L2CACHE_OFF
18#ifndef CONFIG_SYS_L2CACHE_OFF
19#define CONFIG_SYS_L2_PL310
20#define CONFIG_SYS_PL310_BASE 0x10502000
21#endif
22
23
24#define CONFIG_SYS_SDRAM_BASE 0x40000000
25#define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE
26#define SDRAM_BANK_SIZE (256 << 20)
27
28#define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE
29#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_SDRAM_BASE + 0x5E00000)
30#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x3E00000)
31
32
33
34
35
36#define CONFIG_BOOTCOMMAND "run autoboot"
37#define CONFIG_DEFAULT_CONSOLE "console=ttySAC2,115200n8\0"
38
39#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR \
40 - GENERATED_GBL_DATA_SIZE)
41
42#define CONFIG_SYS_MEM_TOP_HIDE (1 << 20)
43
44#define CONFIG_SYS_MONITOR_BASE 0x00000000
45
46#define CONFIG_SYS_MMC_ENV_DEV CONFIG_MMC_DEFAULT_DEV
47
48#define CONFIG_ENV_OVERWRITE
49
50
51#define PARTS_CSA "csa-mmc"
52#define PARTS_BOOT "boot"
53#define PARTS_QBOOT "qboot"
54#define PARTS_CSC "csc"
55#define PARTS_ROOT "platform"
56#define PARTS_DATA "data"
57#define PARTS_UMS "ums"
58
59#define PARTS_DEFAULT \
60 "uuid_disk=${uuid_gpt_disk};" \
61 "name="PARTS_CSA",start=5MiB,size=8MiB,uuid=${uuid_gpt_"PARTS_CSA"};" \
62 "name="PARTS_BOOT",size=60MiB,uuid=${uuid_gpt_"PARTS_BOOT"};" \
63 "name="PARTS_QBOOT",size=100MiB,uuid=${uuid_gpt_"PARTS_QBOOT"};" \
64 "name="PARTS_CSC",size=150MiB,uuid=${uuid_gpt_"PARTS_CSC"};" \
65 "name="PARTS_ROOT",size=1536MiB,uuid=${uuid_gpt_"PARTS_ROOT"};" \
66 "name="PARTS_DATA",size=3000MiB,uuid=${uuid_gpt_"PARTS_DATA"};" \
67 "name="PARTS_UMS",size=-,uuid=${uuid_gpt_"PARTS_UMS"}\0" \
68
69#define CONFIG_DFU_ALT \
70 "u-boot raw 0x80 0x800;" \
71 "/uImage ext4 0 2;" \
72 "/modem.bin ext4 0 2;" \
73 "/exynos4412-trats2.dtb ext4 0 2;" \
74 ""PARTS_CSA" part 0 1;" \
75 ""PARTS_BOOT" part 0 2;" \
76 ""PARTS_QBOOT" part 0 3;" \
77 ""PARTS_CSC" part 0 4;" \
78 ""PARTS_ROOT" part 0 5;" \
79 ""PARTS_DATA" part 0 6;" \
80 ""PARTS_UMS" part 0 7;" \
81 "params.bin raw 0x38 0x8;" \
82 "/Image.itb ext4 0 2\0"
83
84#define CONFIG_EXTRA_ENV_SETTINGS \
85 "bootk=" \
86 "run loaduimage;" \
87 "if run loaddtb; then " \
88 "bootm 0x40007FC0 - ${fdtaddr};" \
89 "fi;" \
90 "bootm 0x40007FC0;\0" \
91 "updatebackup=" \
92 "mmc dev 0 2; mmc write 0x51000000 0 0x800;" \
93 " mmc dev 0 0\0" \
94 "updatebootb=" \
95 "mmc read 0x51000000 0x80 0x800; run updatebackup\0" \
96 "mmcboot=" \
97 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
98 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \
99 "run bootk\0" \
100 "bootchart=set opts init=/sbin/bootchartd; run bootcmd\0" \
101 "boottrace=setenv opts initcall_debug; run bootcmd\0" \
102 "verify=n\0" \
103 "rootfstype=ext4\0" \
104 "console=" CONFIG_DEFAULT_CONSOLE \
105 "kernelname=uImage\0" \
106 "loaduimage=ext4load mmc ${mmcdev}:${mmcbootpart} 0x40007FC0 " \
107 "${kernelname}\0" \
108 "loaddtb=ext4load mmc ${mmcdev}:${mmcbootpart} ${fdtaddr} " \
109 "${fdtfile}\0" \
110 "mmcdev=" __stringify(CONFIG_MMC_DEFAULT_DEV) "\0" \
111 "mmcbootpart=2\0" \
112 "mmcrootpart=5\0" \
113 "opts=always_resume=1\0" \
114 "partitions=" PARTS_DEFAULT \
115 "dfu_alt_info=" CONFIG_DFU_ALT \
116 "uartpath=ap\0" \
117 "usbpath=ap\0" \
118 "consoleon=set console console=ttySAC2,115200n8; save; reset\0" \
119 "consoleoff=set console console=ram; save; reset\0" \
120 "spladdr=0x40000100\0" \
121 "splsize=0x200\0" \
122 "splfile=falcon.bin\0" \
123 "spl_export=" \
124 "setexpr spl_imgsize ${splsize} + 8 ;" \
125 "setenv spl_imgsize 0x${spl_imgsize};" \
126 "setexpr spl_imgaddr ${spladdr} - 8 ;" \
127 "setexpr spl_addr_tmp ${spladdr} - 4 ;" \
128 "mw.b ${spl_imgaddr} 0x00 ${spl_imgsize};run loaduimage;" \
129 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
130 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo};" \
131 "spl export atags 0x40007FC0;" \
132 "crc32 ${spladdr} ${splsize} ${spl_imgaddr};" \
133 "mw.l ${spl_addr_tmp} ${splsize};" \
134 "ext4write mmc ${mmcdev}:${mmcbootpart}" \
135 " /${splfile} ${spl_imgaddr} ${spl_imgsize};" \
136 "setenv spl_imgsize;" \
137 "setenv spl_imgaddr;" \
138 "setenv spl_addr_tmp;\0" \
139 CONFIG_EXTRA_ENV_ITB \
140 "fdtaddr=40800000\0" \
141
142
143
144
145#define CONFIG_EXYNOS_ACE_SHA
146
147
148#define CONFIG_MISC_COMMON
149
150
151#define CONFIG_LCD_MENU
152
153
154#ifndef __ASSEMBLY__
155
156#define KEY_PWR_PMIC_NAME "MAX77686_PMIC"
157#define KEY_PWR_STATUS_REG MAX77686_REG_PMIC_STATUS1
158#define KEY_PWR_STATUS_MASK (1 << 0)
159#define KEY_PWR_INTERRUPT_REG MAX77686_REG_PMIC_INT1
160#define KEY_PWR_INTERRUPT_MASK (1 << 1)
161
162#define KEY_VOL_UP_GPIO EXYNOS4X12_GPIO_X22
163#define KEY_VOL_DOWN_GPIO EXYNOS4X12_GPIO_X33
164#endif
165
166
167#define LCD_BPP LCD_COLOR16
168
169
170#define CONFIG_BMP_16BPP
171#define CONFIG_FB_ADDR 0x52504000
172#define CONFIG_EXYNOS_MIPI_DSIM
173#define CONFIG_VIDEO_BMP_GZIP
174#define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE ((500 * 160 * 4) + 54)
175
176#endif
177