trats2.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2013 Samsung Electronics
  4. * Sanghee Kim <sh0130.kim@samsung.com>
  5. * Piotr Wilczek <p.wilczek@samsung.com>
  6. *
  7. * Configuation settings for the SAMSUNG TRATS2 (EXYNOS4412) board.
  8. */
  9. #ifndef __CONFIG_TRATS2_H
  10. #define __CONFIG_TRATS2_H
  11. #include <configs/exynos4-common.h>
  12. #define CONFIG_TIZEN /* TIZEN lib */
  13. #define CONFIG_SYS_L2CACHE_OFF
  14. #ifndef CONFIG_SYS_L2CACHE_OFF
  15. #define CONFIG_SYS_L2_PL310
  16. #define CONFIG_SYS_PL310_BASE 0x10502000
  17. #endif
  18. /* TRATS2 has 4 banks of DRAM */
  19. #define CONFIG_SYS_SDRAM_BASE 0x40000000
  20. #define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE
  21. #define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */
  22. /* memtest works on */
  23. #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x3E00000)
  24. /* select serial console configuration */
  25. /* Console configuration */
  26. #define CONFIG_BOOTCOMMAND "run autoboot"
  27. #define CONFIG_DEFAULT_CONSOLE "console=ttySAC2,115200n8\0"
  28. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR \
  29. - GENERATED_GBL_DATA_SIZE)
  30. #define CONFIG_SYS_MEM_TOP_HIDE (1 << 20) /* ram console */
  31. #define CONFIG_SYS_MONITOR_BASE 0x00000000
  32. #define CONFIG_SYS_MMC_ENV_DEV CONFIG_MMC_DEFAULT_DEV
  33. #define CONFIG_ENV_OVERWRITE
  34. /* Tizen - partitions definitions */
  35. #define PARTS_CSA "csa-mmc"
  36. #define PARTS_BOOT "boot"
  37. #define PARTS_QBOOT "qboot"
  38. #define PARTS_CSC "csc"
  39. #define PARTS_ROOT "platform"
  40. #define PARTS_DATA "data"
  41. #define PARTS_UMS "ums"
  42. #define PARTS_DEFAULT \
  43. "uuid_disk=${uuid_gpt_disk};" \
  44. "name="PARTS_CSA",start=5MiB,size=8MiB,uuid=${uuid_gpt_"PARTS_CSA"};" \
  45. "name="PARTS_BOOT",size=60MiB,uuid=${uuid_gpt_"PARTS_BOOT"};" \
  46. "name="PARTS_QBOOT",size=100MiB,uuid=${uuid_gpt_"PARTS_QBOOT"};" \
  47. "name="PARTS_CSC",size=150MiB,uuid=${uuid_gpt_"PARTS_CSC"};" \
  48. "name="PARTS_ROOT",size=1536MiB,uuid=${uuid_gpt_"PARTS_ROOT"};" \
  49. "name="PARTS_DATA",size=3000MiB,uuid=${uuid_gpt_"PARTS_DATA"};" \
  50. "name="PARTS_UMS",size=-,uuid=${uuid_gpt_"PARTS_UMS"}\0" \
  51. #define CONFIG_DFU_ALT \
  52. "u-boot raw 0x80 0x800;" \
  53. "/uImage ext4 0 2;" \
  54. "/modem.bin ext4 0 2;" \
  55. "/exynos4412-trats2.dtb ext4 0 2;" \
  56. ""PARTS_CSA" part 0 1;" \
  57. ""PARTS_BOOT" part 0 2;" \
  58. ""PARTS_QBOOT" part 0 3;" \
  59. ""PARTS_CSC" part 0 4;" \
  60. ""PARTS_ROOT" part 0 5;" \
  61. ""PARTS_DATA" part 0 6;" \
  62. ""PARTS_UMS" part 0 7;" \
  63. "params.bin raw 0x38 0x8;" \
  64. "/Image.itb ext4 0 2\0"
  65. #define CONFIG_EXTRA_ENV_SETTINGS \
  66. "bootk=" \
  67. "run loaduimage;" \
  68. "if run loaddtb; then " \
  69. "bootm 0x40007FC0 - ${fdtaddr};" \
  70. "fi;" \
  71. "bootm 0x40007FC0;\0" \
  72. "updatebackup=" \
  73. "mmc dev 0 2; mmc write 0x51000000 0 0x800;" \
  74. " mmc dev 0 0\0" \
  75. "updatebootb=" \
  76. "mmc read 0x51000000 0x80 0x800; run updatebackup\0" \
  77. "mmcboot=" \
  78. "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
  79. "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \
  80. "run bootk\0" \
  81. "bootchart=set opts init=/sbin/bootchartd; run bootcmd\0" \
  82. "boottrace=setenv opts initcall_debug; run bootcmd\0" \
  83. "verify=n\0" \
  84. "rootfstype=ext4\0" \
  85. "console=" CONFIG_DEFAULT_CONSOLE \
  86. "kernelname=uImage\0" \
  87. "loaduimage=ext4load mmc ${mmcdev}:${mmcbootpart} 0x40007FC0 " \
  88. "${kernelname}\0" \
  89. "loaddtb=ext4load mmc ${mmcdev}:${mmcbootpart} ${fdtaddr} " \
  90. "${fdtfile}\0" \
  91. "mmcdev=" __stringify(CONFIG_MMC_DEFAULT_DEV) "\0" \
  92. "mmcbootpart=2\0" \
  93. "mmcrootpart=5\0" \
  94. "opts=always_resume=1\0" \
  95. "partitions=" PARTS_DEFAULT \
  96. "dfu_alt_info=" CONFIG_DFU_ALT \
  97. "uartpath=ap\0" \
  98. "usbpath=ap\0" \
  99. "consoleon=set console console=ttySAC2,115200n8; save; reset\0" \
  100. "consoleoff=set console console=ram; save; reset\0" \
  101. "spladdr=0x40000100\0" \
  102. "splsize=0x200\0" \
  103. "splfile=falcon.bin\0" \
  104. "spl_export=" \
  105. "setexpr spl_imgsize ${splsize} + 8 ;" \
  106. "setenv spl_imgsize 0x${spl_imgsize};" \
  107. "setexpr spl_imgaddr ${spladdr} - 8 ;" \
  108. "setexpr spl_addr_tmp ${spladdr} - 4 ;" \
  109. "mw.b ${spl_imgaddr} 0x00 ${spl_imgsize};run loaduimage;" \
  110. "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
  111. "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo};" \
  112. "spl export atags 0x40007FC0;" \
  113. "crc32 ${spladdr} ${splsize} ${spl_imgaddr};" \
  114. "mw.l ${spl_addr_tmp} ${splsize};" \
  115. "ext4write mmc ${mmcdev}:${mmcbootpart}" \
  116. " /${splfile} ${spl_imgaddr} ${spl_imgsize};" \
  117. "setenv spl_imgsize;" \
  118. "setenv spl_imgaddr;" \
  119. "setenv spl_addr_tmp;\0" \
  120. CONFIG_EXTRA_ENV_ITB \
  121. "fdtaddr=40800000\0" \
  122. /* GPT */
  123. /* Security subsystem - enable hw_rand() */
  124. #define CONFIG_EXYNOS_ACE_SHA
  125. /* Common misc for Samsung */
  126. #define CONFIG_MISC_COMMON
  127. /* Download menu - Samsung common */
  128. #define CONFIG_LCD_MENU
  129. /* Download menu - definitions for check keys */
  130. #ifndef __ASSEMBLY__
  131. #define KEY_PWR_PMIC_NAME "MAX77686_PMIC"
  132. #define KEY_PWR_STATUS_REG MAX77686_REG_PMIC_STATUS1
  133. #define KEY_PWR_STATUS_MASK (1 << 0)
  134. #define KEY_PWR_INTERRUPT_REG MAX77686_REG_PMIC_INT1
  135. #define KEY_PWR_INTERRUPT_MASK (1 << 1)
  136. #define KEY_VOL_UP_GPIO EXYNOS4X12_GPIO_X22
  137. #define KEY_VOL_DOWN_GPIO EXYNOS4X12_GPIO_X33
  138. #endif /* __ASSEMBLY__ */
  139. /* LCD console */
  140. #define LCD_BPP LCD_COLOR16
  141. /* LCD */
  142. #define CONFIG_BMP_16BPP
  143. #define CONFIG_FB_ADDR 0x52504000
  144. #define CONFIG_EXYNOS_MIPI_DSIM
  145. #define CONFIG_VIDEO_BMP_GZIP
  146. #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE ((500 * 160 * 4) + 54)
  147. #endif /* __CONFIG_H */