Prepare v2023.10
[platform/kernel/u-boot.git] / include / configs / devkit3250.h
1 /*
2  * Embest/Timll DevKit3250 board configuration file
3  *
4  * Copyright (C) 2011 Vladimir Zapolskiy <vz@mleia.com>
5  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8
9 #ifndef __CONFIG_DEVKIT3250_H__
10 #define __CONFIG_DEVKIT3250_H__
11
12 /* SoC and board defines */
13 #include <linux/sizes.h>
14 #include <asm/arch/cpu.h>
15
16 /*
17  * Define DevKit3250 machine type by hand until it lands in mach-types
18  */
19 #define MACH_TYPE_DEVKIT3250            3697
20 #define CONFIG_MACH_TYPE                MACH_TYPE_DEVKIT3250
21
22 #define CONFIG_SYS_ICACHE_OFF
23 #define CONFIG_SYS_DCACHE_OFF
24 #define CONFIG_SKIP_LOWLEVEL_INIT
25 #define CONFIG_BOARD_EARLY_INIT_F
26
27 /*
28  * Memory configurations
29  */
30 #define CONFIG_NR_DRAM_BANKS            1
31 #define CONFIG_SYS_MALLOC_LEN           SZ_1M
32 #define CONFIG_SYS_SDRAM_BASE           EMC_DYCS0_BASE
33 #define CONFIG_SYS_SDRAM_SIZE           SZ_64M
34 #define CONFIG_SYS_TEXT_BASE            0x83FA0000
35 #define CONFIG_SYS_MEMTEST_START        (CONFIG_SYS_SDRAM_BASE + SZ_32K)
36 #define CONFIG_SYS_MEMTEST_END          (CONFIG_SYS_TEXT_BASE - SZ_1M)
37
38 #define CONFIG_SYS_LOAD_ADDR            (CONFIG_SYS_SDRAM_BASE + SZ_32K)
39
40 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_SDRAM_BASE + SZ_4K \
41                                          - GENERATED_GBL_DATA_SIZE)
42
43 /*
44  * Serial Driver
45  */
46 #define CONFIG_SYS_LPC32XX_UART         2   /* UART2 */
47 #define CONFIG_BAUDRATE                 115200
48
49 /*
50  * NOR Flash
51  */
52 #define CONFIG_CMD_FLASH
53 #define CONFIG_SYS_MAX_FLASH_BANKS      1
54 #define CONFIG_SYS_MAX_FLASH_SECT       71
55 #define CONFIG_SYS_FLASH_BASE           EMC_CS0_BASE
56 #define CONFIG_SYS_FLASH_SIZE           SZ_4M
57 #define CONFIG_SYS_FLASH_CFI
58
59 /*
60  * U-Boot General Configurations
61  */
62 #define CONFIG_SYS_LONGHELP
63 #define CONFIG_SYS_CBSIZE               1024
64 #define CONFIG_SYS_PBSIZE               \
65         (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
66 #define CONFIG_SYS_MAXARGS              16
67 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE
68
69 #define CONFIG_AUTO_COMPLETE
70 #define CONFIG_CMDLINE_EDITING
71 #define CONFIG_VERSION_VARIABLE
72 #define CONFIG_DISPLAY_CPUINFO
73 #define CONFIG_DOS_PARTITION
74
75 #define CONFIG_ENV_IS_NOWHERE
76 #define CONFIG_ENV_SIZE                 SZ_128K
77
78 /*
79  * U-Boot Commands
80  */
81 #include <config_cmd_default.h>
82 #define CONFIG_CMD_CACHE
83
84 /*
85  * Boot Linux
86  */
87 #define CONFIG_CMDLINE_TAG
88 #define CONFIG_SETUP_MEMORY_TAGS
89 #define CONFIG_ZERO_BOOTDELAY_CHECK
90 #define CONFIG_BOOTDELAY                3
91
92 #define CONFIG_BOOTFILE                 "uImage"
93 #define CONFIG_BOOTARGS                 "console=ttyS2,115200n8"
94 #define CONFIG_LOADADDR                 0x80008000
95
96 /*
97  * Include SoC specific configuration
98  */
99 #include <asm/arch/config.h>
100
101 #endif  /* __CONFIG_DEVKIT3250_H__*/