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 | #define CONFIG_IDENT_STRING " for ODROID-XU3" |
| 16 | |
| 17 | #define CONFIG_BOARD_COMMON |
| 18 | |
| 19 | #define CONFIG_SYS_SDRAM_BASE 0x40000000 |
| 20 | #define CONFIG_SYS_TEXT_BASE 0x43E00000 |
| 21 | |
| 22 | /* select serial console configuration */ |
| 23 | #define CONFIG_SERIAL2 /* use SERIAL 2 */ |
| 24 | |
| 25 | #define TZPC_BASE_OFFSET 0x10000 |
| 26 | |
| 27 | #define CONFIG_CMD_MMC |
| 28 | |
Przemyslaw Marczak | 973ae1e | 2015-02-17 14:50:26 +0100 | [diff] [blame] | 29 | #define CONFIG_NR_DRAM_BANKS 8 |
Hyungwon Hwang | 6207604 | 2014-12-12 14:45:45 +0900 | [diff] [blame] | 30 | #define SDRAM_BANK_SIZE (256UL << 20UL) /* 256 MB */ |
Przemyslaw Marczak | 973ae1e | 2015-02-17 14:50:26 +0100 | [diff] [blame] | 31 | /* Reserve the last 22 MiB for the secure firmware */ |
| 32 | #define CONFIG_SYS_MEM_TOP_HIDE (22UL << 20UL) |
| 33 | #define CONFIG_TZSW_RESERVED_DRAM_SIZE CONFIG_SYS_MEM_TOP_HIDE |
Hyungwon Hwang | 6207604 | 2014-12-12 14:45:45 +0900 | [diff] [blame] | 34 | |
| 35 | #define CONFIG_ENV_IS_IN_MMC |
| 36 | |
| 37 | #undef CONFIG_ENV_SIZE |
| 38 | #undef CONFIG_ENV_OFFSET |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 39 | #define CONFIG_ENV_SIZE (SZ_1K * 16) |
| 40 | #define CONFIG_ENV_OFFSET (SZ_1K * 3136) /* ~3 MiB offset */ |
Hyungwon Hwang | 6207604 | 2014-12-12 14:45:45 +0900 | [diff] [blame] | 41 | |
| 42 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR - 0x1000000) |
| 43 | |
| 44 | #define CONFIG_DEFAULT_CONSOLE "console=ttySAC2,115200n8\0" |
| 45 | |
Sjoerd Simons | ce88a25 | 2014-12-05 21:26:10 +0100 | [diff] [blame] | 46 | /* USB */ |
| 47 | #define CONFIG_USB_EHCI |
| 48 | #define CONFIG_USB_EHCI_EXYNOS |
| 49 | |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 50 | /* DWC3 */ |
| 51 | #define CONFIG_USB_DWC3 |
| 52 | #define CONFIG_USB_DWC3_GADGET |
| 53 | #define CONFIG_USB_DWC3_PHY_SAMSUNG |
| 54 | |
| 55 | /* USB gadget */ |
| 56 | #define CONFIG_USB_GADGET |
| 57 | #define CONFIG_USB_GADGET_DUALSPEED |
| 58 | #define CONFIG_USB_GADGET_VBUS_DRAW 2 |
| 59 | |
| 60 | /* Downloader */ |
| 61 | #define CONFIG_G_DNL_VENDOR_NUM 0x04E8 |
| 62 | #define CONFIG_G_DNL_PRODUCT_NUM 0x6601 |
| 63 | #define CONFIG_G_DNL_MANUFACTURER "Samsung" |
Paul Kocialkowski | 01acd6a | 2015-06-12 19:56:58 +0200 | [diff] [blame] | 64 | #define CONFIG_USB_GADGET_DOWNLOAD |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 65 | |
| 66 | /* DFU */ |
Paul Kocialkowski | 01acd6a | 2015-06-12 19:56:58 +0200 | [diff] [blame] | 67 | #define CONFIG_USB_FUNCTION_DFU |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 68 | #define CONFIG_DFU_MMC |
| 69 | #define CONFIG_CMD_DFU |
| 70 | #define CONFIG_SYS_DFU_DATA_BUF_SIZE SZ_32M |
| 71 | #define DFU_DEFAULT_POLL_TIMEOUT 300 |
| 72 | |
| 73 | /* THOR */ |
| 74 | #define CONFIG_G_DNL_THOR_VENDOR_NUM CONFIG_G_DNL_VENDOR_NUM |
| 75 | #define CONFIG_G_DNL_THOR_PRODUCT_NUM 0x685D |
Paul Kocialkowski | 01acd6a | 2015-06-12 19:56:58 +0200 | [diff] [blame] | 76 | #define CONFIG_USB_FUNCTION_THOR |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 77 | #define CONFIG_CMD_THOR_DOWNLOAD |
| 78 | |
| 79 | /* UMS */ |
| 80 | #define CONFIG_G_DNL_UMS_VENDOR_NUM 0x0525 |
| 81 | #define CONFIG_G_DNL_UMS_PRODUCT_NUM 0xA4A5 |
Paul Kocialkowski | 01acd6a | 2015-06-12 19:56:58 +0200 | [diff] [blame] | 82 | #define CONFIG_USB_FUNCTION_MASS_STORAGE |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 83 | #define CONFIG_CMD_USB_MASS_STORAGE |
| 84 | |
Hyungwon Hwang | 6207604 | 2014-12-12 14:45:45 +0900 | [diff] [blame] | 85 | /* FIXME: MUST BE REMOVED AFTER TMU IS TURNED ON */ |
| 86 | #undef CONFIG_EXYNOS_TMU |
| 87 | #undef CONFIG_TMU_CMD_DTT |
| 88 | |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 89 | #define CONFIG_DFU_ALT_SYSTEM \ |
| 90 | "uImage fat 0 1;" \ |
| 91 | "zImage fat 0 1;" \ |
| 92 | "Image.itb fat 0 1;" \ |
| 93 | "uInitrd fat 0 1;" \ |
| 94 | "boot.scr fat 0 1;" \ |
| 95 | "boot.cmd fat 0 1;" \ |
| 96 | "exynos5422-odroidxu3.dtb fat 0 1;" \ |
Przemyslaw Marczak | 1611c8c | 2015-10-27 13:08:05 +0100 | [diff] [blame] | 97 | "exynos5422-odroidxu3-lite.dtb fat 0 1;" \ |
| 98 | "exynos5422-odroidxu4.dtb fat 0 1;" \ |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 99 | "boot part 0 1;" \ |
| 100 | "root part 0 2\0" |
| 101 | |
| 102 | #define CONFIG_DFU_ALT_BOOT_EMMC \ |
| 103 | "u-boot raw 0x3e 0x800 mmcpart 1;" \ |
| 104 | "bl1 raw 0x0 0x1e mmcpart 1;" \ |
| 105 | "bl2 raw 0x1e 0x1d mmcpart 1;" \ |
| 106 | "tzsw raw 0x83e 0x200 mmcpart 1;" \ |
| 107 | "params.bin raw 0x1880 0x20\0" |
| 108 | |
| 109 | #define CONFIG_DFU_ALT_BOOT_SD \ |
| 110 | "u-boot raw 0x3f 0x800;" \ |
| 111 | "bl1 raw 0x1 0x1e;" \ |
| 112 | "bl2 raw 0x1f 0x1d;" \ |
| 113 | "tzsw raw 0x83f 0x200;" \ |
| 114 | "params.bin raw 0x1880 0x20\0" |
| 115 | |
| 116 | /* Enable: board/samsung/common/misc.c to use set_dfu_alt_info() */ |
| 117 | #define CONFIG_MISC_COMMON |
Przemyslaw Marczak | 1611c8c | 2015-10-27 13:08:05 +0100 | [diff] [blame] | 118 | #define CONFIG_MISC_INIT_R |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 119 | #define CONFIG_SET_DFU_ALT_INFO |
| 120 | #define CONFIG_SET_DFU_ALT_BUF_LEN (SZ_1K) |
| 121 | |
Przemyslaw Marczak | 1611c8c | 2015-10-27 13:08:05 +0100 | [diff] [blame] | 122 | /* Set soc_rev, soc_id, board_rev, boardname, fdtfile */ |
| 123 | #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG |
| 124 | #define CONFIG_ODROID_REV_AIN 9 |
| 125 | #define CONFIG_REVISION_TAG |
| 126 | #define CONFIG_BOARD_TYPES |
| 127 | |
| 128 | #undef CONFIG_SYS_BOARD |
| 129 | #define CONFIG_SYS_BOARD "odroid" |
| 130 | |
Przemyslaw Marczak | 2d4a9b2 | 2015-05-22 18:14:27 +0200 | [diff] [blame] | 131 | /* Define new extra env settings, including DFU settings */ |
| 132 | #undef CONFIG_EXTRA_ENV_SETTINGS |
| 133 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 134 | EXYNOS_DEVICE_SETTINGS \ |
| 135 | EXYNOS_FDTFILE_SETTING \ |
| 136 | MEM_LAYOUT_ENV_SETTINGS \ |
| 137 | BOOTENV \ |
| 138 | "bootdelay=0\0" \ |
| 139 | "rootfstype=ext4\0" \ |
| 140 | "console=" CONFIG_DEFAULT_CONSOLE \ |
| 141 | "fdtfile=exynos5422-odroidxu3.dtb\0" \ |
| 142 | "boardname=odroidxu3\0" \ |
| 143 | "mmcbootdev=0\0" \ |
| 144 | "mmcrootdev=0\0" \ |
| 145 | "mmcbootpart=1\0" \ |
| 146 | "mmcrootpart=2\0" \ |
| 147 | "dfu_alt_system="CONFIG_DFU_ALT_SYSTEM \ |
| 148 | "dfu_alt_info=Autoset by THOR/DFU command run.\0" |
| 149 | |
Hyungwon Hwang | 6207604 | 2014-12-12 14:45:45 +0900 | [diff] [blame] | 150 | #endif /* __CONFIG_H */ |