Merge tag 'ti-v2021.07-rc1' of https://source.denx.de/u-boot/custodians/u-boot-ti
[platform/kernel/u-boot.git] / include / configs / pcm058.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) Stefano Babic <sbabic@denx.de>
4  */
5
6 #ifndef __PCM058_CONFIG_H
7 #define __PCM058_CONFIG_H
8
9 #ifdef CONFIG_SPL
10 #include "imx6_spl.h"
11 #endif
12
13 #include "mx6_common.h"
14
15 #define PHYS_SDRAM_SIZE         (1u * 1024 * 1024 * 1024)
16
17 /* Size of malloc() pool */
18 #define CONFIG_SYS_MALLOC_LEN           (8 * SZ_1M)
19
20 /* Enable NAND support */
21 #define CONFIG_SYS_MAX_NAND_DEVICE      1
22 #define CONFIG_SYS_NAND_ONFI_DETECTION
23
24 /* Physical Memory Map */
25 #define PHYS_SDRAM                     MMDC0_ARB_BASE_ADDR
26
27 #define CONFIG_SYS_SDRAM_BASE          PHYS_SDRAM
28 #define CONFIG_SYS_INIT_RAM_ADDR       IRAM_BASE_ADDR
29 #define CONFIG_SYS_INIT_RAM_SIZE       IRAM_SIZE
30
31 #define CONFIG_SYS_INIT_SP_OFFSET \
32         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
33 #define CONFIG_SYS_INIT_SP_ADDR \
34         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
35
36 /* Environment organization */
37 #define ENV_MMC \
38         "mmcdev=0\0" \
39         "mmcpart=2\0" \
40         "fitpart=1\0" \
41         "mmcrootfstype=ext4\0" \
42         "fitname=fitImage\0" \
43         "mmcloadfit=load mmc ${mmcdev}:${fitpart} ${loadaddr} ${fitname}\0" \
44         "mmcargs=setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcpart} " \
45                 "rootfstype=${mmcrootfstype} ${optargs}\0" \
46         "mmcboot=run mmcloadfit;run mmcargs;bootm ${loadaddr}\0"
47
48 #define ENV_NAND \
49         "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
50         "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
51         "nandroot=ubi0:root ubi.mtd=rootfs\0" \
52         "nandrootfstype=ubifs\0" \
53         "nandargs=setenv bootargs root=${nandroot} " \
54                 "rootfstype=${nandrootfstype} ${mtdparts} ${optargs}\0" \
55         "nandloadfit=ubi part rootfs;ubi readvol ${loadaddr} fit\0" \
56         "nandboot=run nandloadfit;run nandargs;bootm ${loadaddr}\0"
57
58 #define CONFIG_EXTRA_ENV_SETTINGS \
59         "bootm_size=0x30000000\0" \
60         "optargs=rw rootwait\0" \
61         ENV_MMC \
62         ENV_NAND
63
64 #define CONFIG_BOOTCOMMAND "run mmcboot;run nandboot"
65 #endif