a2bc3cd23a5bc0756aab0fd448df5a546b6eaf4b
[platform/kernel/u-boot.git] / include / configs / usbarmory.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * USB armory MkI board configuration settings
4  * http://inversepath.com/usbarmory
5  *
6  * Copyright (C) 2015, Inverse Path
7  * Andrej Rosano <andrej@inversepath.com>
8  */
9
10 #ifndef __CONFIG_H
11 #define __CONFIG_H
12
13 #include <asm/arch/imx-regs.h>
14
15 /* U-Boot environment */
16
17 /* U-Boot general configurations */
18
19 /* UART */
20 #define CONFIG_MXC_UART_BASE    UART1_BASE
21
22 /* SD/MMC */
23 #define CFG_SYS_FSL_ESDHC_ADDR  0
24
25 /* USB */
26 #define CONFIG_MXC_USB_PORT     1
27 #define CONFIG_MXC_USB_PORTSC   (PORT_PTS_UTMI | PORT_PTS_PTW)
28 #define CONFIG_MXC_USB_FLAGS    0
29
30 /* Linux boot */
31 #define CONFIG_HOSTNAME         "usbarmory"
32
33 #define BOOT_TARGET_DEVICES(func) func(MMC, mmc, 0)
34
35 #include <config_distro_bootcmd.h>
36
37 #define MEM_LAYOUT_ENV_SETTINGS                 \
38         "kernel_addr_r=0x70800000\0"            \
39         "fdt_addr_r=0x71000000\0"               \
40         "scriptaddr=0x70800000\0"               \
41         "pxefile_addr_r=0x70800000\0"           \
42         "ramdisk_addr_r=0x73000000\0"
43
44 #define CONFIG_EXTRA_ENV_SETTINGS                               \
45         MEM_LAYOUT_ENV_SETTINGS                                 \
46         "bootargs_default=root=/dev/mmcblk0p1 rootwait rw\0"    \
47         "fdtfile=imx53-usbarmory.dtb\0"                         \
48         "console=ttymxc0,115200\0"                              \
49         BOOTENV
50
51 #ifndef CONFIG_CMDLINE
52 #define USBARMORY_FIT_PATH      "/boot/usbarmory.itb"
53 #define USBARMORY_FIT_ADDR      "0x70800000"
54 #endif
55
56 /* Physical Memory Map */
57 #define PHYS_SDRAM                      CSD0_BASE_ADDR
58 #define PHYS_SDRAM_SIZE                 (gd->ram_size)
59
60 #define CFG_SYS_SDRAM_BASE              PHYS_SDRAM
61 #define CFG_SYS_INIT_RAM_ADDR   IRAM_BASE_ADDR
62 #define CFG_SYS_INIT_RAM_SIZE   IRAM_SIZE
63
64 #endif                          /* __CONFIG_H */