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