Convert CONFIG_SKIP_LOWLEVEL_INIT et al to Kconfig
[platform/kernel/u-boot.git] / include / configs / work_92105.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * WORK Microwave work_92105 board configuration file
4  *
5  * (C) Copyright 2014  DENX Software Engineering GmbH
6  * Written-by: Albert ARIBAUD <albert.aribaud@3adev.fr>
7  */
8
9 #ifndef __CONFIG_WORK_92105_H__
10 #define __CONFIG_WORK_92105_H__
11
12 /* SoC and board defines */
13 #include <linux/sizes.h>
14 #include <asm/arch/cpu.h>
15
16 /*
17  * Define work_92105 machine type by hand -- done only for compatibility
18  * with original board code
19  */
20 #define CONFIG_MACH_TYPE                736
21
22 /*
23  * Memory configurations
24  */
25 #define CONFIG_SYS_MALLOC_LEN           SZ_1M
26 #define CONFIG_SYS_SDRAM_BASE           EMC_DYCS0_BASE
27 #define CONFIG_SYS_SDRAM_SIZE           SZ_128M
28
29 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_SDRAM_BASE + SZ_512K \
30                                          - GENERATED_GBL_DATA_SIZE)
31
32 /*
33  * Ethernet Driver
34  */
35
36 #define CONFIG_LPC32XX_ETH
37 #define CONFIG_SYS_FAULT_ECHO_LINK_DOWN
38 /* FIXME: remove "Waiting for PHY auto negotiation to complete..." message */
39
40 #define CONFIG_RTC_DS1374
41
42 /*
43  * U-Boot General Configurations
44  */
45 #define CONFIG_SYS_CBSIZE               1024
46 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE
47
48 /*
49  * NAND chip timings for FIXME: which one?
50  */
51
52 #define CONFIG_LPC32XX_NAND_MLC_TCEA_DELAY  333333333
53 #define CONFIG_LPC32XX_NAND_MLC_BUSY_DELAY   10000000
54 #define CONFIG_LPC32XX_NAND_MLC_NAND_TA      18181818
55 #define CONFIG_LPC32XX_NAND_MLC_RD_HIGH      31250000
56 #define CONFIG_LPC32XX_NAND_MLC_RD_LOW       45454545
57 #define CONFIG_LPC32XX_NAND_MLC_WR_HIGH      40000000
58 #define CONFIG_LPC32XX_NAND_MLC_WR_LOW       83333333
59
60 /*
61  * NAND
62  */
63
64 /* driver configuration */
65 #define CONFIG_SYS_NAND_SELF_INIT
66 #define CONFIG_SYS_MAX_NAND_DEVICE 1
67 #define CONFIG_SYS_MAX_NAND_CHIPS 1
68 #define CONFIG_SYS_NAND_BASE MLC_NAND_BASE
69 #define CONFIG_NAND_LPC32XX_MLC
70
71 /*
72  * GPIO
73  */
74
75 #define CONFIG_LPC32XX_GPIO
76
77 /*
78  * Environment
79  */
80
81 /*
82  * Boot Linux
83  */
84 #define CONFIG_CMDLINE_TAG
85 #define CONFIG_SETUP_MEMORY_TAGS
86 #define CONFIG_INITRD_TAG
87
88 #define CONFIG_BOOTFILE                 "uImage"
89
90 /*
91  * SPL
92  */
93
94 /* SPL will be executed at offset 0 */
95 /* SPL will use SRAM as stack */
96 #define CONFIG_SPL_STACK     0x0000FFF8
97 /* Use the framework and generic lib */
98 /* SPL will use serial */
99 /* SPL will load U-Boot from NAND offset 0x40000 */
100 #define CONFIG_SYS_NAND_U_BOOT_OFFS  0x00040000
101 #define CONFIG_SPL_PAD_TO 0x20000
102 /* U-Boot will be 0x40000 bytes, loaded and run at CONFIG_SYS_TEXT_BASE */
103 #define CONFIG_SYS_MONITOR_LEN 0x40000 /* actually, MAX size */
104 #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
105 #define CONFIG_SYS_NAND_U_BOOT_DST   CONFIG_SYS_TEXT_BASE
106
107 /*
108  * Include SoC specific configuration
109  */
110 #include <asm/arch/config.h>
111
112 #endif  /* __CONFIG_WORK_92105_H__*/