Christophe Leroy | 1fc46f5 | 2022-10-14 12:54:50 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Copyright (C) 2022 CS Group |
| 4 | */ |
| 5 | |
| 6 | #ifndef __CONFIG_H |
| 7 | #define __CONFIG_H |
| 8 | |
| 9 | /* Definitions for initial stack pointer and data area (in DPRAM) */ |
| 10 | #define CFG_SYS_INIT_RAM_ADDR (CONFIG_SYS_IMMR + 0x2800) |
| 11 | #define CFG_SYS_INIT_RAM_SIZE (0x2e00 - 0x2800) |
| 12 | |
| 13 | /* RAM configuration (note that CFG_SYS_SDRAM_BASE must be zero) */ |
| 14 | #define CFG_SYS_SDRAM_BASE 0x00000000 |
| 15 | |
| 16 | /* FLASH Configuration */ |
| 17 | #define CFG_SYS_FLASH_BASE 0x40000000 |
| 18 | |
| 19 | /* |
| 20 | * For booting Linux, the board info and command line data |
| 21 | * have to be in the first 24 MB of memory, since this is |
| 22 | * the maximum mapped by the Linux kernel during initialization. |
| 23 | */ |
| 24 | #define CFG_SYS_BOOTMAPSZ (32 << 20) |
| 25 | |
| 26 | /* NAND configuration part */ |
| 27 | #define CFG_SYS_NAND_BASE 0xC0000000 |
| 28 | |
| 29 | #endif /* __CONFIG_H */ |