Merge tag 'xilinx-for-v2022.04-rc1' of https://source.denx.de/u-boot/custodians/u...
[platform/kernel/u-boot.git] / include / configs / mx53cx9020.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2015  Beckhoff Automation GmbH & Co. KG
4  * Patrick Bruenn <p.bruenn@beckhoff.com>
5  *
6  * Configuration settings for Beckhoff CX9020.
7  *
8  * Based on Freescale's Linux i.MX mx53loco.h file:
9  * Copyright (C) 2010-2011 Freescale Semiconductor.
10  */
11
12 #ifndef __CONFIG_H
13 #define __CONFIG_H
14
15 #include <asm/arch/imx-regs.h>
16
17 #define CONFIG_MXC_UART_BASE UART2_BASE
18
19 #define CONFIG_FPGA_COUNT 1
20
21 /* MMC Configs */
22 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
23 #define CONFIG_SYS_FSL_ESDHC_NUM        2
24
25 /* bootz: zImage/initrd.img support */
26
27
28 /* USB Configs */
29 #define CONFIG_MXC_USB_PORT     1
30 #define CONFIG_MXC_USB_PORTSC   (PORT_PTS_UTMI | PORT_PTS_PTW)
31 #define CONFIG_MXC_USB_FLAGS    0
32
33 /* Command definition */
34
35 #define BOOT_TARGET_DEVICES(func) \
36         func(MMC, mmc, 0) \
37         func(MMC, mmc, 1) \
38         func(USB, usb, 0) \
39         func(PXE, pxe, na)
40
41 #include <config_distro_bootcmd.h>
42
43 #define CONFIG_EXTRA_ENV_SETTINGS \
44         "fdt_addr_r=0x75000000\0" \
45         "pxefile_addr_r=0x73000000\0" \
46         "scriptaddr=0x74000000\0" \
47         "ramdisk_addr_r=0x80000000\0" \
48         "kernel_addr_r=0x72000000\0"  \
49         "fdt_high=0xffffffff\0" \
50         "console=ttymxc1,115200\0" \
51         "stdin=serial\0" \
52         "stdout=serial,vidconsole\0" \
53         "stderr=serial,vidconsole\0" \
54         "fdtfile=imx53-cx9020.dtb\0" \
55         BOOTENV
56
57 #define CONFIG_ARP_TIMEOUT      200UL
58
59 /* Miscellaneous configurable options */
60 #define CONFIG_SYS_CBSIZE               512     /* Console I/O Buffer Size */
61
62 /* Physical Memory Map */
63 #define PHYS_SDRAM_1                    CSD0_BASE_ADDR
64 #define PHYS_SDRAM_1_SIZE               (gd->bd->bi_dram[0].size)
65 #define PHYS_SDRAM_2                    CSD1_BASE_ADDR
66 #define PHYS_SDRAM_2_SIZE               (gd->bd->bi_dram[1].size)
67 #define PHYS_SDRAM_SIZE                 (gd->ram_size)
68
69 #define CONFIG_SYS_SDRAM_BASE           (PHYS_SDRAM_1)
70 #define CONFIG_SYS_INIT_RAM_ADDR        (IRAM_BASE_ADDR)
71 #define CONFIG_SYS_INIT_RAM_SIZE        (IRAM_SIZE)
72
73 #define CONFIG_SYS_INIT_SP_OFFSET \
74         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
75 #define CONFIG_SYS_INIT_SP_ADDR \
76         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
77
78 /* environment organization */
79
80 /* Framebuffer and LCD */
81 #define CONFIG_IMX_VIDEO_SKIP
82
83 #endif /* __CONFIG_H */