1 /* 2 * Copyright (C) 2013 Samsung Electronics 3 * Hyungwon Hwang <human.hwang@samsung.com> 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 */ 7 8 #ifndef __CONFIG_ODROID_XU3_H 9 #define __CONFIG_ODROID_XU3_H 10 11 #include "exynos5420-common.h" 12 #include <configs/exynos5-common.h> 13 14 #define CONFIG_BOARD_COMMON 15 16 #define CONFIG_SYS_SDRAM_BASE 0x40000000 17 #define CONFIG_SYS_TEXT_BASE 0x43E00000 18 19 /* select serial console configuration */ 20 #define CONFIG_SERIAL2 /* use SERIAL 2 */ 21 22 #define TZPC_BASE_OFFSET 0x10000 23 24 #define CONFIG_NR_DRAM_BANKS 8 25 #define SDRAM_BANK_SIZE (256UL << 20UL) /* 256 MB */ 26 /* Reserve the last 22 MiB for the secure firmware */ 27 #define CONFIG_SYS_MEM_TOP_HIDE (22UL << 20UL) 28 #define CONFIG_TZSW_RESERVED_DRAM_SIZE CONFIG_SYS_MEM_TOP_HIDE 29 30 #undef CONFIG_ENV_SIZE 31 #undef CONFIG_ENV_OFFSET 32 #define CONFIG_ENV_SIZE (SZ_1K * 16) 33 #define CONFIG_ENV_OFFSET (SZ_1K * 3136) /* ~3 MiB offset */ 34 35 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR - 0x1000000) 36 37 #define CONFIG_DEFAULT_CONSOLE "console=ttySAC2,115200n8\0" 38 39 /* USB */ 40 #define CONFIG_USB_EHCI_EXYNOS 41 42 /* DFU */ 43 #define CONFIG_SYS_DFU_DATA_BUF_SIZE SZ_32M 44 #define DFU_DEFAULT_POLL_TIMEOUT 300 45 #define DFU_MANIFEST_POLL_TIMEOUT 25000 46 47 /* THOR */ 48 #define CONFIG_G_DNL_THOR_VENDOR_NUM CONFIG_G_DNL_VENDOR_NUM 49 #define CONFIG_G_DNL_THOR_PRODUCT_NUM 0x685D 50 #define CONFIG_USB_FUNCTION_THOR 51 52 /* UMS */ 53 #define CONFIG_G_DNL_UMS_VENDOR_NUM 0x0525 54 #define CONFIG_G_DNL_UMS_PRODUCT_NUM 0xA4A5 55 #define CONFIG_USB_FUNCTION_MASS_STORAGE 56 57 /* FIXME: MUST BE REMOVED AFTER TMU IS TURNED ON */ 58 #undef CONFIG_EXYNOS_TMU 59 60 #define CONFIG_DFU_ALT_SYSTEM \ 61 "uImage fat 0 1;" \ 62 "zImage fat 0 1;" \ 63 "Image.itb fat 0 1;" \ 64 "uInitrd fat 0 1;" \ 65 "boot.scr fat 0 1;" \ 66 "boot.cmd fat 0 1;" \ 67 "exynos5422-odroidxu3.dtb fat 0 1;" \ 68 "exynos5422-odroidxu3-lite.dtb fat 0 1;" \ 69 "exynos5422-odroidxu4.dtb fat 0 1;" \ 70 "boot part 0 1;" \ 71 "root part 0 2\0" 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 0x200 mmcpart 1;" \ 78 "params.bin raw 0x1880 0x20\0" 79 80 #define CONFIG_DFU_ALT_BOOT_SD \ 81 "u-boot raw 0x3f 0x800;" \ 82 "bl1 raw 0x1 0x1e;" \ 83 "bl2 raw 0x1f 0x1d;" \ 84 "tzsw raw 0x83f 0x200;" \ 85 "params.bin raw 0x1880 0x20\0" 86 87 /* Enable: board/samsung/common/misc.c to use set_dfu_alt_info() */ 88 #define CONFIG_MISC_COMMON 89 #define CONFIG_MISC_INIT_R 90 #define CONFIG_SET_DFU_ALT_INFO 91 #define CONFIG_SET_DFU_ALT_BUF_LEN (SZ_1K) 92 93 /* Set soc_rev, soc_id, board_rev, boardname, fdtfile */ 94 #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG 95 #define CONFIG_ODROID_REV_AIN 9 96 #define CONFIG_REVISION_TAG 97 #define CONFIG_BOARD_TYPES 98 99 #undef CONFIG_SYS_BOARD 100 #define CONFIG_SYS_BOARD "odroid" 101 102 /* Define new extra env settings, including DFU settings */ 103 #undef CONFIG_EXTRA_ENV_SETTINGS 104 #define CONFIG_EXTRA_ENV_SETTINGS \ 105 EXYNOS_DEVICE_SETTINGS \ 106 EXYNOS_FDTFILE_SETTING \ 107 MEM_LAYOUT_ENV_SETTINGS \ 108 BOOTENV \ 109 "bootdelay=0\0" \ 110 "rootfstype=ext4\0" \ 111 "console=" CONFIG_DEFAULT_CONSOLE \ 112 "fdtfile=exynos5422-odroidxu3.dtb\0" \ 113 "boardname=odroidxu3\0" \ 114 "mmcbootdev=0\0" \ 115 "mmcrootdev=0\0" \ 116 "mmcbootpart=1\0" \ 117 "mmcrootpart=2\0" \ 118 "dfu_alt_system="CONFIG_DFU_ALT_SYSTEM \ 119 "dfu_alt_info=Autoset by THOR/DFU command run.\0" 120 121 #endif /* __CONFIG_H */ 122