Merge branch 'master' of git://git.denx.de/u-boot-spi
[oweals/u-boot.git] / include / configs / kp_imx53.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2018
4  * Lukasz Majewski, DENX Software Engineering, lukma@denx.de
5  */
6
7 #ifndef __CONFIG_H_
8 #define __CONFIG_H_
9
10 #include <asm/arch/imx-regs.h>
11 #include <linux/sizes.h>
12
13 #define CONFIG_SYS_FSL_CLK
14
15 /* Size of malloc() pool */
16 #define CONFIG_SYS_MALLOC_LEN           (32 * SZ_1M)
17
18 /* MMC Configs */
19 #define CONFIG_FSL_ESDHC
20 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
21 #define CONFIG_SYS_FSL_ESDHC_NUM        1
22
23 /* USB Configs */
24 #define CONFIG_USB_EHCI_MX5
25 #define CONFIG_MXC_USB_PORT     1
26 #define CONFIG_MXC_USB_PORTSC   (PORT_PTS_UTMI | PORT_PTS_PTW)
27 #define CONFIG_MXC_USB_FLAGS    0
28
29 #define CONFIG_SYS_I2C_MXC
30 #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50
31 #define CONFIG_SYS_EEPROM_BUS_NUM 1
32 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
33
34 /* allow to overwrite serial and ethaddr */
35 #define CONFIG_ENV_OVERWRITE
36
37 /* Command definition */
38 #define CONFIG_LOADADDR         0x72000000      /* loadaddr env var */
39
40 #define CONFIG_EXTRA_ENV_SETTINGS \
41         "console=ttymxc1,115200\0"      \
42         "fdt_addr=0x75000000\0"         \
43         "fdt_high=0xffffffff\0"         \
44         "scriptaddr=0x74000000\0"       \
45         "kernel_file=fitImage\0"\
46         "silent=1\0"\
47         "rdinit=/sbin/init\0" \
48         "addinitrd=setenv bootargs ${bootargs} rdinit=${rdinit} ${debug} \0" \
49         "upd_image=st.4k\0" \
50         "uboot_file=u-boot.imx\0" \
51         "updargs=setenv bootargs console=${console} ${smp}"\
52                "rdinit=${rdinit} ${debug} ${displayargs}\0" \
53         "loadusb=usb start; " \
54                "fatload usb 0 ${loadaddr} ${upd_image}\0" \
55         "up=if tftp ${loadaddr} ${uboot_file}; then " \
56                "setexpr blkc ${filesize} / 0x200; " \
57                "setexpr blkc ${blkc} + 1; " \
58                "mmc write ${loadaddr} 0x2 ${blkc}" \
59         "; fi\0"          \
60         "upwic=setenv wic_file kp-image-kp${boardsoc}${boardtype}.wic; "\
61                "if tftp ${loadaddr} ${wic_file}; then " \
62                "setexpr blkc ${filesize} / 0x200; " \
63                "setexpr blkc ${blkc} + 1; " \
64                "mmc write ${loadaddr} 0x0 ${blkc}" \
65         "; fi\0"          \
66         "usbupd=echo Booting update from usb ...; " \
67                "setenv bootargs; " \
68                "run updargs; " \
69                "run loadusb; " \
70                "bootm ${loadaddr}#${fit_config}\0" \
71         BOOTENV
72
73 #define CONFIG_BOOTCOMMAND              "run usbupd; run distro_bootcmd"
74
75 #define BOOT_TARGET_DEVICES(func) \
76         func(MMC, mmc, 0) \
77         func(DHCP, dhcp, na)
78
79 #include <config_distro_bootcmd.h>
80
81 #define CONFIG_ARP_TIMEOUT      200UL
82
83 /* Miscellaneous configurable options */
84 #define CONFIG_SYS_CBSIZE               512     /* Console I/O Buffer Size */
85 #define CONFIG_SYS_LOAD_ADDR            CONFIG_LOADADDR
86
87 /* Physical Memory Map */
88 #define PHYS_SDRAM_1                    CSD0_BASE_ADDR
89 #define PHYS_SDRAM_1_SIZE               (512 * SZ_1M)
90 #define PHYS_SDRAM_SIZE         (PHYS_SDRAM_1_SIZE)
91
92 #define CONFIG_SYS_SDRAM_BASE           (PHYS_SDRAM_1)
93 #define CONFIG_SYS_INIT_RAM_ADDR        (IRAM_BASE_ADDR)
94 #define CONFIG_SYS_INIT_RAM_SIZE        (IRAM_SIZE)
95
96 #define CONFIG_SYS_INIT_SP_OFFSET \
97         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
98 #define CONFIG_SYS_INIT_SP_ADDR \
99         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
100
101 /* environment organization */
102 #define CONFIG_ENV_OFFSET      (SZ_1M)
103 #define CONFIG_ENV_SIZE        (SZ_8K)
104 #define CONFIG_SYS_REDUNDAND_ENVIRONMENT
105 #define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
106 #define CONFIG_ENV_OFFSET_REDUND        (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
107 #define CONFIG_SYS_MMC_ENV_DEV 0
108
109 #endif                          /* __CONFIG_H_ */