1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2015 Beckhoff Automation GmbH & Co. KG
4 * Patrick Bruenn <p.bruenn@beckhoff.com>
6 * Configuration settings for Beckhoff CX9020.
8 * Based on Freescale's Linux i.MX mx53loco.h file:
9 * Copyright (C) 2010-2011 Freescale Semiconductor.
15 #include <asm/arch/imx-regs.h>
17 #define CONFIG_MXC_UART_BASE UART2_BASE
20 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
21 #define CONFIG_SYS_FSL_ESDHC_NUM 2
23 /* bootz: zImage/initrd.img support */
27 #define CONFIG_MXC_USB_PORT 1
28 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
29 #define CONFIG_MXC_USB_FLAGS 0
31 /* Command definition */
33 #define BOOT_TARGET_DEVICES(func) \
39 #include <config_distro_bootcmd.h>
41 #define CONFIG_EXTRA_ENV_SETTINGS \
42 "fdt_addr_r=0x75000000\0" \
43 "pxefile_addr_r=0x73000000\0" \
44 "scriptaddr=0x74000000\0" \
45 "ramdisk_addr_r=0x80000000\0" \
46 "kernel_addr_r=0x72000000\0" \
47 "fdt_high=0xffffffff\0" \
48 "console=ttymxc1,115200\0" \
50 "stdout=serial,vidconsole\0" \
51 "stderr=serial,vidconsole\0" \
52 "fdtfile=imx53-cx9020.dtb\0" \
55 /* Miscellaneous configurable options */
57 /* Physical Memory Map */
58 #define PHYS_SDRAM_1 CSD0_BASE_ADDR
59 #define PHYS_SDRAM_1_SIZE (gd->bd->bi_dram[0].size)
60 #define PHYS_SDRAM_2 CSD1_BASE_ADDR
61 #define PHYS_SDRAM_2_SIZE (gd->bd->bi_dram[1].size)
62 #define PHYS_SDRAM_SIZE (gd->ram_size)
64 #define CONFIG_SYS_SDRAM_BASE (PHYS_SDRAM_1)
65 #define CONFIG_SYS_INIT_RAM_ADDR (IRAM_BASE_ADDR)
66 #define CONFIG_SYS_INIT_RAM_SIZE (IRAM_SIZE)
68 /* environment organization */
70 /* Framebuffer and LCD */
71 #define CONFIG_IMX_VIDEO_SKIP
73 #endif /* __CONFIG_H */