]> Git Repo - J-u-boot.git/blob - include/configs/am3517_evm.h
Merge patch series "Add fdt-fixups for AM62P variants"
[J-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 <[email protected]>
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 #if defined(CONFIG_MTD_RAW_NAND)
19 #define CFG_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 CFG_SYS_NAND_ECCSIZE            512
27 #define CFG_SYS_NAND_ECCBYTES   13
28 #define CFG_SYS_NAND_U_BOOT_START       CONFIG_TEXT_BASE
29 /* NAND block size is 128 KiB.  Synchronize these values with
30  * corresponding Device Tree entries in Linux:
31  *  MLO(SPL)             4 * NAND_BLOCK_SIZE = 512 KiB  @ 0x000000
32  *  U-Boot              15 * NAND_BLOCK_SIZE = 1920 KiB @ 0x080000
33  *  U-Boot environment   2 * NAND_BLOCK_SIZE = 256 KiB  @ 0x260000
34  *  Kernel              64 * NAND_BLOCK_SIZE = 8 MiB    @ 0x2A0000
35  *  DTB                  4 * NAND_BLOCK_SIZE = 512 KiB  @ 0xAA0000
36  *  RootFS              Remaining Flash Space           @ 0xB20000
37  */
38
39 #define CFG_SYS_FLASH_BASE              NAND_BASE
40 #endif /* CONFIG_MTD_RAW_NAND */
41
42 #endif /* __CONFIG_H */
This page took 0.027956 seconds and 4 git commands to generate.