1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * USB armory MkI board configuration settings
4 * http://inversepath.com/usbarmory
6 * Copyright (C) 2015, Inverse Path
7 * Andrej Rosano <andrej@inversepath.com>
13 #define CONFIG_SYS_FSL_CLK
15 #include <asm/arch/imx-regs.h>
17 /* U-Boot environment */
19 /* U-Boot general configurations */
20 #define CONFIG_SYS_CBSIZE 512
23 #define CONFIG_MXC_UART_BASE UART1_BASE
26 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
27 #define CONFIG_SYS_FSL_ESDHC_NUM 1
30 #define CONFIG_MXC_USB_PORT 1
31 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
32 #define CONFIG_MXC_USB_FLAGS 0
35 #define CONFIG_FSL_IIM
38 #define CONFIG_HOSTNAME "usbarmory"
39 #define CONFIG_BOOTCOMMAND \
40 "run distro_bootcmd; " \
41 "setenv bootargs console=${console} ${bootargs_default}; " \
42 "ext2load mmc 0:1 ${kernel_addr_r} /boot/zImage; " \
43 "ext2load mmc 0:1 ${fdt_addr_r} /boot/${fdtfile}; " \
44 "bootz ${kernel_addr_r} - ${fdt_addr_r}"
46 #define BOOT_TARGET_DEVICES(func) func(MMC, mmc, 0)
48 #include <config_distro_bootcmd.h>
50 #define MEM_LAYOUT_ENV_SETTINGS \
51 "kernel_addr_r=0x70800000\0" \
52 "fdt_addr_r=0x71000000\0" \
53 "scriptaddr=0x70800000\0" \
54 "pxefile_addr_r=0x70800000\0" \
55 "ramdisk_addr_r=0x73000000\0"
57 #define CONFIG_EXTRA_ENV_SETTINGS \
58 MEM_LAYOUT_ENV_SETTINGS \
59 "bootargs_default=root=/dev/mmcblk0p1 rootwait rw\0" \
60 "fdtfile=imx53-usbarmory.dtb\0" \
61 "console=ttymxc0,115200\0" \
64 #ifndef CONFIG_CMDLINE
65 #define USBARMORY_FIT_PATH "/boot/usbarmory.itb"
66 #define USBARMORY_FIT_ADDR "0x70800000"
69 /* Physical Memory Map */
70 #define PHYS_SDRAM CSD0_BASE_ADDR
71 #define PHYS_SDRAM_SIZE (gd->ram_size)
73 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
74 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
75 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
77 #define CONFIG_SYS_INIT_SP_OFFSET \
78 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
79 #define CONFIG_SYS_INIT_SP_ADDR \
80 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
82 #endif /* __CONFIG_H */