5c54abc901953bbe138b4bb4de32be69844fac5a
[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 #if !defined(CONFIG_SPL_BUILD)
23 #define CONFIG_SKIP_LOWLEVEL_INIT
24 #endif
25
26 /*
27  * Memory configurations
28  */
29 #define CONFIG_SYS_MALLOC_LEN           SZ_1M
30 #define CONFIG_SYS_SDRAM_BASE           EMC_DYCS0_BASE
31 #define CONFIG_SYS_SDRAM_SIZE           SZ_128M
32
33 #define CONFIG_SYS_LOAD_ADDR            (CONFIG_SYS_SDRAM_BASE + SZ_32K)
34
35 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_SDRAM_BASE + SZ_512K \
36                                          - GENERATED_GBL_DATA_SIZE)
37
38 /*
39  * Ethernet Driver
40  */
41
42 #define CONFIG_LPC32XX_ETH
43 #define CONFIG_SYS_FAULT_ECHO_LINK_DOWN
44 /* FIXME: remove "Waiting for PHY auto negotiation to complete..." message */
45
46 /*
47  * I2C driver
48  */
49
50 #define CONFIG_SYS_I2C_LEGACY
51 #define CONFIG_SYS_I2C_SPEED 350000
52
53 /*
54  * I2C EEPROM
55  */
56
57 /*
58  * I2C RTC
59  */
60
61 #define CONFIG_RTC_DS1374
62
63 /*
64  * U-Boot General Configurations
65  */
66 #define CONFIG_SYS_CBSIZE               1024
67 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE
68
69 /*
70  * NAND chip timings for FIXME: which one?
71  */
72
73 #define CONFIG_LPC32XX_NAND_MLC_TCEA_DELAY  333333333
74 #define CONFIG_LPC32XX_NAND_MLC_BUSY_DELAY   10000000
75 #define CONFIG_LPC32XX_NAND_MLC_NAND_TA      18181818
76 #define CONFIG_LPC32XX_NAND_MLC_RD_HIGH      31250000
77 #define CONFIG_LPC32XX_NAND_MLC_RD_LOW       45454545
78 #define CONFIG_LPC32XX_NAND_MLC_WR_HIGH      40000000
79 #define CONFIG_LPC32XX_NAND_MLC_WR_LOW       83333333
80
81 /*
82  * NAND
83  */
84
85 /* driver configuration */
86 #define CONFIG_SYS_NAND_SELF_INIT
87 #define CONFIG_SYS_MAX_NAND_DEVICE 1
88 #define CONFIG_SYS_MAX_NAND_CHIPS 1
89 #define CONFIG_SYS_NAND_BASE MLC_NAND_BASE
90 #define CONFIG_NAND_LPC32XX_MLC
91
92 /*
93  * GPIO
94  */
95
96 #define CONFIG_LPC32XX_GPIO
97
98 /*
99  * Environment
100  */
101
102 /*
103  * Boot Linux
104  */
105 #define CONFIG_CMDLINE_TAG
106 #define CONFIG_SETUP_MEMORY_TAGS
107 #define CONFIG_INITRD_TAG
108
109 #define CONFIG_BOOTFILE                 "uImage"
110 #define CONFIG_LOADADDR                 0x80008000
111
112 /*
113  * SPL
114  */
115
116 /* SPL will be executed at offset 0 */
117 /* SPL will use SRAM as stack */
118 #define CONFIG_SPL_STACK     0x0000FFF8
119 /* Use the framework and generic lib */
120 /* SPL will use serial */
121 /* SPL will load U-Boot from NAND offset 0x40000 */
122 #define CONFIG_SYS_NAND_U_BOOT_OFFS  0x00040000
123 #define CONFIG_SPL_PAD_TO 0x20000
124 /* U-Boot will be 0x40000 bytes, loaded and run at CONFIG_SYS_TEXT_BASE */
125 #define CONFIG_SYS_MONITOR_LEN 0x40000 /* actually, MAX size */
126 #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
127 #define CONFIG_SYS_NAND_U_BOOT_DST   CONFIG_SYS_TEXT_BASE
128
129 /*
130  * Include SoC specific configuration
131  */
132 #include <asm/arch/config.h>
133
134 #endif  /* __CONFIG_WORK_92105_H__*/