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