1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (C) 2014 Samsung Electronics 4 * Sanghee Kim <sh0130.kim@samsung.com> 5 * Piotr Wilczek <p.wilczek@samsung.com> 6 * Przemyslaw Marczak <p.marczak@samsung.com> 7 * 8 * Configuation settings for the Odroid-U3 (EXYNOS4412) board. 9 */ 10 11 #ifndef __CONFIG_ODROID_U3_H 12 #define __CONFIG_ODROID_U3_H 13 14 #include <configs/exynos4-common.h> 15 16 #define CONFIG_SYS_L2CACHE_OFF 17 #ifndef CONFIG_SYS_L2CACHE_OFF 18 #define CONFIG_SYS_L2_PL310 19 #define CONFIG_SYS_PL310_BASE 0x10502000 20 #endif 21 22 #define CONFIG_MACH_TYPE 4289 23 24 #define CONFIG_SYS_SDRAM_BASE 0x40000000 25 #define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */ 26 #define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE 27 /* Reserve the last 1 MiB for the secure firmware */ 28 #define CONFIG_SYS_MEM_TOP_HIDE (1UL << 20UL) 29 #define CONFIG_TZSW_RESERVED_DRAM_SIZE CONFIG_SYS_MEM_TOP_HIDE 30 31 /* memtest works on */ 32 #define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE 33 #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_SDRAM_BASE + 0x5E00000) 34 #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x3E00000) 35 36 #include <linux/sizes.h> 37 38 /* select serial console configuration */ 39 #define CONFIG_SERIAL1 40 41 /* Console configuration */ 42 43 #define CONFIG_BOOTCOMMAND "run distro_bootcmd ; run autoboot" 44 #define CONFIG_DEFAULT_CONSOLE "ttySAC1,115200n8" 45 46 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR \ 47 - GENERATED_GBL_DATA_SIZE) 48 49 #define CONFIG_SYS_MONITOR_BASE 0x00000000 50 51 #define CONFIG_SYS_MMC_ENV_DEV CONFIG_MMC_DEFAULT_DEV 52 #define CONFIG_ENV_SIZE SZ_16K 53 #define CONFIG_ENV_OFFSET (SZ_1K * 1280) /* 1.25 MiB offset */ 54 #define CONFIG_ENV_OVERWRITE 55 56 /* Partitions name */ 57 #define PARTS_BOOT "boot" 58 #define PARTS_ROOT "platform" 59 60 #define CONFIG_DFU_ALT \ 61 "uImage fat 0 1;" \ 62 "zImage fat 0 1;" \ 63 "Image.itb fat 0 1;" \ 64 "uInitrd fat 0 1;" \ 65 "exynos4412-odroidu3.dtb fat 0 1;" \ 66 "exynos4412-odroidx2.dtb fat 0 1;" \ 67 ""PARTS_BOOT" part 0 1;" \ 68 ""PARTS_ROOT" part 0 2\0" \ 69 70 #define CONFIG_SET_DFU_ALT_INFO 71 #define CONFIG_SET_DFU_ALT_BUF_LEN (SZ_1K) 72 73 #define CONFIG_DFU_ALT_BOOT_EMMC \ 74 "u-boot raw 0x3e 0x800 mmcpart 1;" \ 75 "bl1 raw 0x0 0x1e mmcpart 1;" \ 76 "bl2 raw 0x1e 0x1d mmcpart 1;" \ 77 "tzsw raw 0x83e 0x138 mmcpart 1\0" 78 79 #define CONFIG_DFU_ALT_BOOT_SD \ 80 "u-boot raw 0x3f 0x800;" \ 81 "bl1 raw 0x1 0x1e;" \ 82 "bl2 raw 0x1f 0x1d;" \ 83 "tzsw raw 0x83f 0x138\0" 84 85 #define BOOT_TARGET_DEVICES(func) \ 86 func(MMC, mmc, 1) \ 87 func(MMC, mmc, 0) 88 89 #include <config_distro_bootcmd.h> 90 91 /* 92 * Bootable media layout: 93 * dev: SD eMMC(part boot) 94 * BL1 1 0 95 * BL2 31 30 96 * UBOOT 63 62 97 * TZSW 2111 2110 98 * ENV 2560 2560(part user) 99 * 100 * MBR Primary partiions: 101 * Num Name Size Offset 102 * 1. BOOT: 100MiB 2MiB 103 * 2. ROOT: - 104 */ 105 #define CONFIG_EXTRA_ENV_SETTINGS \ 106 "loadbootscript=load mmc ${mmcbootdev}:${mmcbootpart} ${scriptaddr} " \ 107 "boot.scr\0" \ 108 "loadkernel=load mmc ${mmcbootdev}:${mmcbootpart} ${kernel_addr_r} " \ 109 "${kernelname}\0" \ 110 "loadinitrd=load mmc ${mmcbootdev}:${mmcbootpart} ${ramdisk_addr_r} " \ 111 "${initrdname}\0" \ 112 "loaddtb=load mmc ${mmcbootdev}:${mmcbootpart} ${fdt_addr_r} " \ 113 "${fdtfile}\0" \ 114 "check_ramdisk=" \ 115 "if run loadinitrd; then " \ 116 "setenv initrd_addr ${ramdisk_addr_r};" \ 117 "else " \ 118 "setenv initrd_addr -;" \ 119 "fi;\0" \ 120 "check_dtb=" \ 121 "if run loaddtb; then " \ 122 "setenv fdt_addr ${fdt_addr_r};" \ 123 "else " \ 124 "setenv fdt_addr;" \ 125 "fi;\0" \ 126 "kernel_args=" \ 127 "setenv bootargs root=/dev/mmcblk${mmcrootdev}p${mmcrootpart}" \ 128 " rootwait ${console} ${opts}\0" \ 129 "boot_script=" \ 130 "run loadbootscript;" \ 131 "source ${scriptaddr}\0" \ 132 "boot_fit=" \ 133 "setenv kernelname Image.itb;" \ 134 "run loadkernel;" \ 135 "run kernel_args;" \ 136 "bootm ${kernel_addr_r}#${boardname}\0" \ 137 "boot_uimg=" \ 138 "setenv kernelname uImage;" \ 139 "run check_dtb;" \ 140 "run check_ramdisk;" \ 141 "run loadkernel;" \ 142 "run kernel_args;" \ 143 "bootm ${kernel_addr_r} ${initrd_addr} ${fdt_addr};\0" \ 144 "boot_zimg=" \ 145 "setenv kernelname zImage;" \ 146 "run check_dtb;" \ 147 "run check_ramdisk;" \ 148 "run loadkernel;" \ 149 "run kernel_args;" \ 150 "bootz ${kernel_addr_r} ${initrd_addr} ${fdt_addr};\0" \ 151 "autoboot=" \ 152 "if test -e mmc 0 boot.scr; then; " \ 153 "run boot_script; " \ 154 "elif test -e mmc 0 Image.itb; then; " \ 155 "run boot_fit;" \ 156 "elif test -e mmc 0 zImage; then; " \ 157 "run boot_zimg;" \ 158 "elif test -e mmc 0 uImage; then; " \ 159 "run boot_uimg;" \ 160 "fi;\0" \ 161 "console=" CONFIG_DEFAULT_CONSOLE "\0" \ 162 "mmcbootdev=0\0" \ 163 "mmcbootpart=1\0" \ 164 "mmcrootdev=0\0" \ 165 "mmcrootpart=2\0" \ 166 "dfu_alt_system="CONFIG_DFU_ALT \ 167 "dfu_alt_info=Please reset the board\0" \ 168 "consoleon=set console console=ttySAC1,115200n8; save; reset\0" \ 169 "consoleoff=set console console=ram; save; reset\0" \ 170 "initrdname=uInitrd\0" \ 171 "ramdisk_addr_r=0x42000000\0" \ 172 "scriptaddr=0x42000000\0" \ 173 "fdt_addr_r=0x40800000\0" \ 174 "kernel_addr_r=0x41000000\0" \ 175 BOOTENV 176 177 /* GPT */ 178 179 /* Security subsystem - enable hw_rand() */ 180 #define CONFIG_EXYNOS_ACE_SHA 181 182 /* USB */ 183 #define CONFIG_USB_EHCI_EXYNOS 184 185 /* 186 * Supported Odroid boards: X3, U3 187 * TODO: Add Odroid X support 188 */ 189 #define CONFIG_MISC_COMMON 190 #define CONFIG_BOARD_TYPES 191 192 #undef CONFIG_REVISION_TAG 193 194 #endif /* __CONFIG_H */ 195