Hyungwon Hwang | 6207604 | 2014-12-12 14:45:45 +0900 | [diff] [blame] | 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" |
Simon Glass | bf637ea | 2015-08-03 08:19:29 -0600 | [diff] [blame] | 12 | #include <configs/exynos5-common.h> |
Hyungwon Hwang | 6207604 | 2014-12-12 14:45:45 +0900 | [diff] [blame] | 13 | |
Simon Glass | bf637ea | 2015-08-03 08:19:29 -0600 | [diff] [blame] | 14 | #undef CONFIG_ENV_IS_IN_SPI_FLASH |
Hyungwon Hwang | 6207604 | 2014-12-12 14:45:45 +0900 | [diff] [blame] | 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 | |
Przemyslaw Marczak | 973ae1e | 2015-02-17 14:50:26 +0100 | [diff] [blame] | 26 | #define CONFIG_NR_DRAM_BANKS 8 |
Hyungwon Hwang | 6207604 | 2014-12-12 14:45:45 +0900 | [diff] [blame] | 27 | #define SDRAM_BANK_SIZE (256UL << 20UL) /* 256 MB */ |
Przemyslaw Marczak | 973ae1e | 2015-02-17 14:50:26 +0100 | [diff] [blame] | 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 |
Hyungwon Hwang | 6207604 | 2014-12-12 14:45:45 +0900 | [diff] [blame] | 31 | |
| 32 | #define CONFIG_ENV_IS_IN_MMC |
| 33 | |
| 34 | #undef CONFIG_ENV_SIZE |
| 35 | #undef CONFIG_ENV_OFFSET |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 36 | #define CONFIG_ENV_SIZE (SZ_1K * 16) |
| 37 | #define CONFIG_ENV_OFFSET (SZ_1K * 3136) /* ~3 MiB offset */ |
Hyungwon Hwang | 6207604 | 2014-12-12 14:45:45 +0900 | [diff] [blame] | 38 | |
| 39 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR - 0x1000000) |
| 40 | |
| 41 | #define CONFIG_DEFAULT_CONSOLE "console=ttySAC2,115200n8\0" |
| 42 | |
Sjoerd Simons | ce88a25 | 2014-12-05 21:26:10 +0100 | [diff] [blame] | 43 | /* USB */ |
| 44 | #define CONFIG_USB_EHCI |
| 45 | #define CONFIG_USB_EHCI_EXYNOS |
| 46 | |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 47 | /* DFU */ |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 48 | #define CONFIG_SYS_DFU_DATA_BUF_SIZE SZ_32M |
| 49 | #define DFU_DEFAULT_POLL_TIMEOUT 300 |
Lukasz Majewski | 7124a8c | 2016-01-28 17:14:52 +0100 | [diff] [blame] | 50 | #define DFU_MANIFEST_POLL_TIMEOUT 25000 |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 51 | |
| 52 | /* THOR */ |
| 53 | #define CONFIG_G_DNL_THOR_VENDOR_NUM CONFIG_G_DNL_VENDOR_NUM |
| 54 | #define CONFIG_G_DNL_THOR_PRODUCT_NUM 0x685D |
Paul Kocialkowski | 01acd6a | 2015-06-12 19:56:58 +0200 | [diff] [blame] | 55 | #define CONFIG_USB_FUNCTION_THOR |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 56 | #define CONFIG_CMD_THOR_DOWNLOAD |
| 57 | |
| 58 | /* UMS */ |
| 59 | #define CONFIG_G_DNL_UMS_VENDOR_NUM 0x0525 |
| 60 | #define CONFIG_G_DNL_UMS_PRODUCT_NUM 0xA4A5 |
Paul Kocialkowski | 01acd6a | 2015-06-12 19:56:58 +0200 | [diff] [blame] | 61 | #define CONFIG_USB_FUNCTION_MASS_STORAGE |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 62 | |
Hyungwon Hwang | 6207604 | 2014-12-12 14:45:45 +0900 | [diff] [blame] | 63 | /* FIXME: MUST BE REMOVED AFTER TMU IS TURNED ON */ |
| 64 | #undef CONFIG_EXYNOS_TMU |
| 65 | #undef CONFIG_TMU_CMD_DTT |
| 66 | |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 67 | #define CONFIG_DFU_ALT_SYSTEM \ |
| 68 | "uImage fat 0 1;" \ |
| 69 | "zImage fat 0 1;" \ |
| 70 | "Image.itb fat 0 1;" \ |
| 71 | "uInitrd fat 0 1;" \ |
| 72 | "boot.scr fat 0 1;" \ |
| 73 | "boot.cmd fat 0 1;" \ |
| 74 | "exynos5422-odroidxu3.dtb fat 0 1;" \ |
Przemyslaw Marczak | 1611c8c | 2015-10-27 13:08:05 +0100 | [diff] [blame] | 75 | "exynos5422-odroidxu3-lite.dtb fat 0 1;" \ |
| 76 | "exynos5422-odroidxu4.dtb fat 0 1;" \ |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 77 | "boot part 0 1;" \ |
| 78 | "root part 0 2\0" |
| 79 | |
| 80 | #define CONFIG_DFU_ALT_BOOT_EMMC \ |
| 81 | "u-boot raw 0x3e 0x800 mmcpart 1;" \ |
| 82 | "bl1 raw 0x0 0x1e mmcpart 1;" \ |
| 83 | "bl2 raw 0x1e 0x1d mmcpart 1;" \ |
| 84 | "tzsw raw 0x83e 0x200 mmcpart 1;" \ |
| 85 | "params.bin raw 0x1880 0x20\0" |
| 86 | |
| 87 | #define CONFIG_DFU_ALT_BOOT_SD \ |
| 88 | "u-boot raw 0x3f 0x800;" \ |
| 89 | "bl1 raw 0x1 0x1e;" \ |
| 90 | "bl2 raw 0x1f 0x1d;" \ |
| 91 | "tzsw raw 0x83f 0x200;" \ |
| 92 | "params.bin raw 0x1880 0x20\0" |
| 93 | |
| 94 | /* Enable: board/samsung/common/misc.c to use set_dfu_alt_info() */ |
| 95 | #define CONFIG_MISC_COMMON |
Przemyslaw Marczak | 1611c8c | 2015-10-27 13:08:05 +0100 | [diff] [blame] | 96 | #define CONFIG_MISC_INIT_R |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 97 | #define CONFIG_SET_DFU_ALT_INFO |
| 98 | #define CONFIG_SET_DFU_ALT_BUF_LEN (SZ_1K) |
| 99 | |
Przemyslaw Marczak | 1611c8c | 2015-10-27 13:08:05 +0100 | [diff] [blame] | 100 | /* Set soc_rev, soc_id, board_rev, boardname, fdtfile */ |
| 101 | #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG |
| 102 | #define CONFIG_ODROID_REV_AIN 9 |
| 103 | #define CONFIG_REVISION_TAG |
| 104 | #define CONFIG_BOARD_TYPES |
| 105 | |
| 106 | #undef CONFIG_SYS_BOARD |
| 107 | #define CONFIG_SYS_BOARD "odroid" |
| 108 | |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 109 | /* Define new extra env settings, including DFU settings */ |
| 110 | #undef CONFIG_EXTRA_ENV_SETTINGS |
| 111 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 112 | EXYNOS_DEVICE_SETTINGS \ |
| 113 | EXYNOS_FDTFILE_SETTING \ |
| 114 | MEM_LAYOUT_ENV_SETTINGS \ |
| 115 | BOOTENV \ |
| 116 | "bootdelay=0\0" \ |
| 117 | "rootfstype=ext4\0" \ |
| 118 | "console=" CONFIG_DEFAULT_CONSOLE \ |
| 119 | "fdtfile=exynos5422-odroidxu3.dtb\0" \ |
| 120 | "boardname=odroidxu3\0" \ |
| 121 | "mmcbootdev=0\0" \ |
| 122 | "mmcrootdev=0\0" \ |
| 123 | "mmcbootpart=1\0" \ |
| 124 | "mmcrootpart=2\0" \ |
| 125 | "dfu_alt_system="CONFIG_DFU_ALT_SYSTEM \ |
| 126 | "dfu_alt_info=Autoset by THOR/DFU command run.\0" |
| 127 | |
Hyungwon Hwang | 6207604 | 2014-12-12 14:45:45 +0900 | [diff] [blame] | 128 | #endif /* __CONFIG_H */ |