454dac4ad6bce7154ecbda9036043df27168d18b
[platform/kernel/u-boot.git] / include / configs / capricorn-common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2017-2018 NXP
4  * Copyright 2019 Siemens AG
5  */
6
7 #ifndef __IMX8X_CAPRICORN_H
8 #define __IMX8X_CAPRICORN_H
9
10 #include <linux/sizes.h>
11 #include <asm/arch/imx-regs.h>
12
13 #include "siemens-env-common.h"
14
15 /* SPL config */
16 #ifdef CONFIG_SPL_BUILD
17
18 #define CONFIG_SYS_MONITOR_LEN          (1024 * 1024)
19
20 #define CONFIG_SPL_STACK                0x013E000
21 #define CONFIG_SPL_BSS_START_ADDR       0x00128000
22 #define CONFIG_SYS_SPL_MALLOC_START     0x00120000
23 #define CONFIG_SYS_SPL_MALLOC_SIZE      0x3000  /* 12 KB */
24 #define CONFIG_MALLOC_F_ADDR            0x00120000
25
26 #define CONFIG_SPL_RAW_IMAGE_ARM_TRUSTED_FIRMWARE
27 #define CONFIG_SPL_ABORT_ON_RAW_IMAGE
28
29 #endif /* CONFIG_SPL_BUILD */
30
31 #define CONFIG_FACTORYSET
32
33 /* ENET1 connects to base board and MUX with ESAI */
34 #define CONFIG_FEC_ENET_DEV             1
35 #define CONFIG_FEC_MXC_PHYADDR          0x0
36
37 /* I2C Configuration */
38 #ifndef CONFIG_SPL_BUILD
39 /* EEPROM */
40 #define  EEPROM_I2C_BUS         0 /* I2C0 */
41 #define  EEPROM_I2C_ADDR        0x50
42 /* PCA9552 */
43 #define  PCA9552_1_I2C_BUS      1 /* I2C1 */
44 #define  PCA9552_1_I2C_ADDR     0x60
45 #endif /* !CONFIG_SPL_BUILD */
46
47 /* AHAB */
48 #ifdef CONFIG_AHAB_BOOT
49 #define AHAB_ENV "sec_boot=yes\0"
50 #else
51 #define AHAB_ENV "sec_boot=no\0"
52 #endif
53
54 #define MFG_ENV_SETTINGS_DEFAULT \
55         "mfgtool_args=setenv bootargs console=${console},${baudrate} " \
56                 "rdinit=/linuxrc " \
57                 "clk_ignore_unused "\
58                 "\0" \
59         "kboot=booti\0"\
60         "bootcmd_mfg=run mfgtool_args;" \
61         "if iminfo ${initrd_addr}; then " \
62         "if test ${tee} = yes; then " \
63                 "bootm ${tee_addr} ${initrd_addr} ${fdt_addr}; " \
64         "else " \
65                 "booti ${loadaddr} ${initrd_addr} ${fdt_addr}; " \
66         "fi; " \
67         "else " \
68             "echo \"Run fastboot ...\"; fastboot 0; "  \
69         "fi;\0"
70
71 /* Boot M4 */
72 #define M4_BOOT_ENV \
73         "m4_0_image=m4_0.bin\0" \
74         "loadm4image_0=fatload mmc ${mmcdev}:${mmcpart} " \
75                         "${loadaddr} ${m4_0_image}\0" \
76         "m4boot_0=run loadm4image_0; dcache flush; bootaux ${loadaddr} 0\0" \
77
78 #define CONFIG_MFG_ENV_SETTINGS \
79         MFG_ENV_SETTINGS_DEFAULT \
80         "initrd_addr=0x83100000\0" \
81         "initrd_high=0xffffffffffffffff\0" \
82         "emmc_dev=0\0"
83
84 /* Initial environment variables */
85 #define CONFIG_EXTRA_ENV_SETTINGS \
86         CONFIG_MFG_ENV_SETTINGS \
87         M4_BOOT_ENV \
88         AHAB_ENV \
89         ENV_COMMON \
90         "script=boot.scr\0" \
91         "image=Image\0" \
92         "panel=NULL\0" \
93         "console=ttyLP2\0" \
94         "fdt_addr=0x83000000\0" \
95         "fdt_high=0xffffffffffffffff\0" \
96         "cntr_addr=0x88000000\0" \
97         "cntr_file=os_cntr_signed.bin\0" \
98         "initrd_addr=0x83800000\0" \
99         "initrd_high=0xffffffffffffffff\0" \
100         "netdev=eth0\0" \
101         "nfsopts=vers=3,udp,rsize=4096,wsize=4096,nolock rw\0" \
102         "hostname=capricorn\0" \
103         ENV_EMMC \
104         ENV_NET
105
106 /* Default location for tftp and bootm */
107
108 /* On CCP board, USDHC1 is for eMMC */
109
110 #define CONFIG_SYS_SDRAM_BASE           0x80000000
111 #define PHYS_SDRAM_1                    0x80000000
112 #define PHYS_SDRAM_2                    0x880000000
113 /* DDR3 board total DDR is 1 GB */
114 #define PHYS_SDRAM_1_SIZE               0x40000000      /* 1 GB */
115 #define PHYS_SDRAM_2_SIZE               0x00000000      /* 0 GB */
116
117 #define BOOTAUX_RESERVED_MEM_BASE       0x88000000
118 #define BOOTAUX_RESERVED_MEM_SIZE       SZ_128M /* Reserve from second 128MB */
119
120 #endif /* __IMX8X_CAPRICORN_H */