Convert CONFIG_SYS_BARGSIZE to Kconfig
[platform/kernel/u-boot.git] / include / configs / am3517_evm.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * am3517_evm.h - Default configuration for AM3517 EVM board.
4  *
5  * Author: Vaibhav Hiremath <hvaibhav@ti.com>
6  *
7  * Based on omap3_evm_config.h
8  *
9  * Copyright (C) 2010 Texas Instruments Incorporated
10  */
11
12 #ifndef __CONFIG_H
13 #define __CONFIG_H
14
15 #include <configs/ti_omap3_common.h>
16
17 /* Board NAND Info. */
18 #ifdef CONFIG_MTD_RAW_NAND
19 #define CONFIG_SYS_NAND_ECCPOS          { 2,  3,  4,  5,  6,  7,  8,  9, 10, \
20                                          11, 12, 13, 14, 16, 17, 18, 19, 20, \
21                                          21, 22, 23, 24, 25, 26, 27, 28, 30, \
22                                          31, 32, 33, 34, 35, 36, 37, 38, 39, \
23                                          40, 41, 42, 44, 45, 46, 47, 48, 49, \
24                                          50, 51, 52, 53, 54, 55, 56 }
25
26 #define CONFIG_SYS_NAND_ECCSIZE         512
27 #define CONFIG_SYS_NAND_ECCBYTES        13
28 #define CONFIG_SYS_NAND_MAX_OOBFREE     2
29 #define CONFIG_SYS_NAND_MAX_ECCPOS      56
30 #define CONFIG_SYS_NAND_U_BOOT_START    CONFIG_SYS_TEXT_BASE
31 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x2a0000
32 /* NAND block size is 128 KiB.  Synchronize these values with
33  * corresponding Device Tree entries in Linux:
34  *  MLO(SPL)             4 * NAND_BLOCK_SIZE = 512 KiB  @ 0x000000
35  *  U-Boot              15 * NAND_BLOCK_SIZE = 1920 KiB @ 0x080000
36  *  U-Boot environment   2 * NAND_BLOCK_SIZE = 256 KiB  @ 0x260000
37  *  Kernel              64 * NAND_BLOCK_SIZE = 8 MiB    @ 0x2A0000
38  *  DTB                  4 * NAND_BLOCK_SIZE = 512 KiB  @ 0xAA0000
39  *  RootFS              Remaining Flash Space           @ 0xB20000
40  */
41 #endif /* CONFIG_MTD_RAW_NAND */
42
43 /* Environment information */
44 #define CONFIG_EXTRA_ENV_SETTINGS \
45         "loadaddr=0x82000000\0" \
46         "console=ttyS2,115200n8\0" \
47         "fdtfile=am3517-evm.dtb\0" \
48         "fdtaddr=0x82C00000\0" \
49         "vram=16M\0" \
50         "bootenv=uEnv.txt\0" \
51         "cmdline=\0" \
52         "optargs=\0" \
53         "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
54         "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
55         "mmcdev=0\0" \
56         "mmcpart=1\0" \
57         "mmcroot=/dev/mmcblk0p2 rw\0" \
58         "mmcrootfstype=ext4 rootwait fixrtc\0" \
59         "mmcargs=setenv bootargs console=${console} " \
60                 "${mtdparts} " \
61                 "${optargs} " \
62                 "root=${mmcroot} " \
63                 "rootfstype=${mmcrootfstype} " \
64                 "${cmdline}\0" \
65         "nandargs=setenv bootargs console=${console} " \
66                 "${mtdparts} " \
67                 "${optargs} " \
68                 "root=ubi0:rootfs rw ubi.mtd=rootfs " \
69                 "rootfstype=ubifs rootwait " \
70                 "${cmdline}\0" \
71         "loadbootenv=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootenv}\0"\
72         "importbootenv=echo Importing environment from mmc ...; " \
73                 "env import -t ${loadaddr} ${filesize}\0" \
74         "bootscript=echo Running bootscript from mmc ...; " \
75                 "source ${loadaddr}\0" \
76         "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootfile}\0" \
77         "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdtaddr} ${fdtfile}\0" \
78         "mmcboot=echo Booting from mmc ...; " \
79                 "run mmcargs; " \
80                 "bootz ${loadaddr} - ${fdtaddr}\0" \
81         "nandboot=echo Booting from nand ...; " \
82                 "run nandargs; " \
83                 "nand read ${loadaddr} 2a0000 800000; " \
84                 "nand read ${fdtaddr} aa0000 80000; " \
85                 "bootm ${loadaddr} - ${fdtaddr}\0" \
86
87 /* Miscellaneous configurable options */
88
89 /* memtest works on */
90
91 /* Physical Memory Map */
92 #define CONFIG_SYS_CS0_SIZE             (256 * 1024 * 1024)
93
94 /* FLASH and environment organization */
95
96 /* **** PISMO SUPPORT *** */
97 #define CONFIG_SYS_MAX_FLASH_SECT       520     /* max number of sectors */
98                                                 /* on one chip */
99 #define CONFIG_SYS_MONITOR_LEN          (256 << 10)     /* Reserve 2 sectors */
100
101 #if defined(CONFIG_MTD_RAW_NAND)
102 #define CONFIG_SYS_FLASH_BASE           NAND_BASE
103 #endif
104
105 #define CONFIG_SYS_ENV_SECT_SIZE        (128 << 10)     /* 128 KiB */
106
107 /* Defines for SPL */
108
109 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME         "u-boot.img"
110
111 #endif /* __CONFIG_H */