Convert CONFIG_MISC_INIT_R to Kconfig
[platform/kernel/u-boot.git] / include / configs / am3517_crane.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * am3517_crane.h - Default configuration for AM3517 CraneBoard.
4  *
5  * Author: Srinath.R <srinath@mistralsolutions.com>
6  *
7  * Based on include/configs/am3517evm.h
8  *
9  * Copyright (C) 2011 Mistral Solutions pvt Ltd
10  */
11
12 #ifndef __CONFIG_H
13 #define __CONFIG_H
14
15 /*
16  * High Level Configuration Options
17  */
18
19 #include <asm/arch/cpu.h>               /* get chip and board defs */
20 #include <asm/arch/omap.h>
21
22 /* Clock Defines */
23 #define V_OSCK                  26000000        /* Clock output from T2 */
24 #define V_SCLK                  (V_OSCK >> 1)
25
26 #define CONFIG_CMDLINE_TAG              1       /* enable passing of ATAGs */
27 #define CONFIG_SETUP_MEMORY_TAGS        1
28 #define CONFIG_INITRD_TAG               1
29 #define CONFIG_REVISION_TAG             1
30
31 /*
32  * Size of malloc() pool
33  */
34 #define CONFIG_ENV_SIZE                 (128 << 10)     /* 128 KiB sector */
35 #define CONFIG_SYS_MALLOC_LEN           (CONFIG_ENV_SIZE + (128 << 10))
36                                                 /* initial data */
37 /*
38  * DDR related
39  */
40 #define CONFIG_SYS_CS0_SIZE             (256 * 1024 * 1024)
41
42 /*
43  * Hardware drivers
44  */
45
46 /*
47  * NS16550 Configuration
48  */
49 #define V_NS16550_CLK                   48000000        /* 48MHz (APLL96/2) */
50
51 #define CONFIG_SYS_NS16550_SERIAL
52 #define CONFIG_SYS_NS16550_REG_SIZE     (-4)
53 #define CONFIG_SYS_NS16550_CLK          V_NS16550_CLK
54
55 /*
56  * select serial console configuration
57  */
58 #define CONFIG_SYS_NS16550_COM3         OMAP34XX_UART3
59 #define CONFIG_SERIAL3                  3       /* UART3 on CRANEBOARD */
60
61 /* allow to overwrite serial and ethaddr */
62 #define CONFIG_ENV_OVERWRITE
63 #define CONFIG_SYS_BAUDRATE_TABLE       {4800, 9600, 19200, 38400, 57600,\
64                                         115200}
65
66 /*
67  * USB configuration
68  * Enable CONFIG_USB_MUSB_HCD for Host functionalities MSC, keyboard
69  * Enable CONFIG_USB_MUSB_UDC for Device functionalities.
70  */
71
72 #ifdef CONFIG_USB_AM35X
73
74 #ifdef CONFIG_USB_MUSB_HCD
75
76 #ifdef CONFIG_USB_KEYBOARD
77 #define CONFIG_PREBOOT "usb start"
78 #endif /* CONFIG_USB_KEYBOARD */
79
80 #endif /* CONFIG_USB_MUSB_HCD */
81
82 #ifdef CONFIG_USB_MUSB_UDC
83 /* USB device configuration */
84 #define CONFIG_USB_DEVICE               1
85 #define CONFIG_USB_TTY                  1
86 /* Change these to suit your needs */
87 #define CONFIG_USBD_VENDORID            0x0451
88 #define CONFIG_USBD_PRODUCTID           0x5678
89 #define CONFIG_USBD_MANUFACTURER        "Texas Instruments"
90 #define CONFIG_USBD_PRODUCT_NAME        "AM3517CRANE"
91 #endif /* CONFIG_USB_MUSB_UDC */
92
93 #endif /* CONFIG_USB_AM35X */
94
95 #define CONFIG_SYS_I2C
96
97 /*
98  * Board NAND Info.
99  */
100 #define CONFIG_SYS_NAND_BASE            NAND_BASE       /* physical address */
101                                                         /* to access */
102                                                         /* nand at CS0 */
103
104 #define CONFIG_SYS_MAX_NAND_DEVICE      1               /* Max number of */
105                                                         /* NAND devices */
106
107 #define CONFIG_JFFS2_NAND
108 /* nand device jffs2 lives on */
109 #define CONFIG_JFFS2_DEV                "nand0"
110 /* start of jffs2 partition */
111 #define CONFIG_JFFS2_PART_OFFSET        0x680000
112 #define CONFIG_JFFS2_PART_SIZE          0xf980000       /* sz of jffs2 part */
113
114 /* Environment information */
115
116 #define CONFIG_BOOTFILE         "uImage"
117
118 #define CONFIG_EXTRA_ENV_SETTINGS \
119         "loadaddr=0x82000000\0" \
120         "console=ttyS2,115200n8\0" \
121         "mmcdev=0\0" \
122         "mmcargs=setenv bootargs console=${console} " \
123                 "root=/dev/mmcblk0p2 rw " \
124                 "rootfstype=ext3 rootwait\0" \
125         "nandargs=setenv bootargs console=${console} " \
126                 "root=/dev/mtdblock4 rw " \
127                 "rootfstype=jffs2\0" \
128         "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
129         "bootscript=echo Running bootscript from mmc ...; " \
130                 "source ${loadaddr}\0" \
131         "loaduimage=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \
132         "mmcboot=echo Booting from mmc ...; " \
133                 "run mmcargs; " \
134                 "bootm ${loadaddr}\0" \
135         "nandboot=echo Booting from nand ...; " \
136                 "run nandargs; " \
137                 "nand read ${loadaddr} 280000 400000; " \
138                 "bootm ${loadaddr}\0" \
139
140 #define CONFIG_BOOTCOMMAND \
141         "mmc dev ${mmcdev}; if mmc rescan; then " \
142                 "if run loadbootscript; then " \
143                         "run bootscript; " \
144                 "else " \
145                         "if run loaduimage; then " \
146                                 "run mmcboot; " \
147                         "else run nandboot; " \
148                         "fi; " \
149                 "fi; " \
150         "else run nandboot; fi"
151
152 /*
153  * Miscellaneous configurable options
154  */
155 #define CONFIG_SYS_CBSIZE               512     /* Console I/O Buffer Size */
156 #define CONFIG_SYS_MAXARGS              32      /* max number of command */
157                                                 /* args */
158 /* memtest works on */
159 #define CONFIG_SYS_MEMTEST_START        (OMAP34XX_SDRC_CS0)
160 #define CONFIG_SYS_MEMTEST_END          (OMAP34XX_SDRC_CS0 + \
161                                         0x01F00000) /* 31MB */
162
163 #define CONFIG_SYS_LOAD_ADDR            (OMAP34XX_SDRC_CS0) /* default load */
164                                                                 /* address */
165
166 /*
167  * AM3517 has 12 GP timers, they can be driven by the system clock
168  * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
169  * This rate is divided by a local divisor.
170  */
171 #define CONFIG_SYS_TIMERBASE            OMAP34XX_GPT2
172 #define CONFIG_SYS_PTV                  2       /* Divisor: 2^(PTV+1) => 8 */
173
174 /*-----------------------------------------------------------------------
175  * Physical Memory Map
176  */
177 #define PHYS_SDRAM_1            OMAP34XX_SDRC_CS0
178 #define PHYS_SDRAM_2            OMAP34XX_SDRC_CS1
179
180 /*-----------------------------------------------------------------------
181  * FLASH and environment organization
182  */
183
184 /* **** PISMO SUPPORT *** */
185 #define CONFIG_SYS_MAX_FLASH_SECT       520     /* max number of sectors */
186                                                 /* on one chip */
187 #define CONFIG_SYS_MAX_FLASH_BANKS      2       /* max number of flash banks */
188 #define CONFIG_SYS_MONITOR_LEN          (256 << 10)     /* Reserve 2 sectors */
189
190 #define CONFIG_SYS_FLASH_BASE           NAND_BASE
191
192 /* Monitor at start of flash */
193 #define CONFIG_SYS_MONITOR_BASE         CONFIG_SYS_FLASH_BASE
194
195 #define CONFIG_SYS_ENV_SECT_SIZE        (128 << 10)     /* 128 KiB sector */
196 #define CONFIG_ENV_OFFSET               0x260000
197 #define CONFIG_ENV_ADDR                 0x260000
198
199 /*-----------------------------------------------------------------------
200  * CFI FLASH driver setup
201  */
202 /* timeout values are in ticks */
203 #define CONFIG_SYS_FLASH_ERASE_TOUT     (100 * CONFIG_SYS_HZ)
204 #define CONFIG_SYS_FLASH_WRITE_TOUT     (100 * CONFIG_SYS_HZ)
205
206 /* Flash banks JFFS2 should use */
207 #define CONFIG_SYS_MAX_MTD_BANKS        (CONFIG_SYS_MAX_FLASH_BANKS + \
208                                         CONFIG_SYS_MAX_NAND_DEVICE)
209 #define CONFIG_SYS_JFFS2_MEM_NAND
210 /* use flash_info[2] */
211 #define CONFIG_SYS_JFFS2_FIRST_BANK     CONFIG_SYS_MAX_FLASH_BANKS
212 #define CONFIG_SYS_JFFS2_NUM_BANKS      1
213
214 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM_1
215 #define CONFIG_SYS_INIT_RAM_ADDR        0x4020f800
216 #define CONFIG_SYS_INIT_RAM_SIZE        0x800
217 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_INIT_RAM_ADDR + \
218                                          CONFIG_SYS_INIT_RAM_SIZE - \
219                                          GENERATED_GBL_DATA_SIZE)
220
221 /* Defines for SPL */
222 #define CONFIG_SPL_TEXT_BASE            0x40200800
223 #define CONFIG_SPL_MAX_SIZE             (SRAM_SCRATCH_SPACE_ADDR - \
224                                          CONFIG_SPL_TEXT_BASE)
225
226 #define CONFIG_SPL_BSS_START_ADDR       0x80000000
227 #define CONFIG_SPL_BSS_MAX_SIZE         0x80000         /* 512 KB */
228
229 #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION      1
230 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img"
231
232 #define CONFIG_SPL_NAND_BASE
233 #define CONFIG_SPL_NAND_DRIVERS
234 #define CONFIG_SPL_NAND_ECC
235
236 /* NAND boot config */
237 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
238 #define CONFIG_SYS_NAND_PAGE_COUNT      64
239 #define CONFIG_SYS_NAND_PAGE_SIZE       2048
240 #define CONFIG_SYS_NAND_OOBSIZE         64
241 #define CONFIG_SYS_NAND_BLOCK_SIZE      (128*1024)
242 #define CONFIG_SYS_NAND_BAD_BLOCK_POS   NAND_LARGE_BADBLOCK_POS
243 #define CONFIG_SYS_NAND_ECCPOS          {2, 3, 4, 5, 6, 7, 8, 9,\
244                                                 10, 11, 12, 13}
245 #define CONFIG_SYS_NAND_ECCSIZE         512
246 #define CONFIG_SYS_NAND_ECCBYTES        3
247 #define CONFIG_NAND_OMAP_ECCSCHEME      OMAP_ECC_HAM1_CODE_HW
248 #define CONFIG_SYS_NAND_U_BOOT_START    CONFIG_SYS_TEXT_BASE
249 #define CONFIG_SYS_NAND_U_BOOT_OFFS     0x80000
250
251 /*
252  * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM
253  * 64 bytes before this address should be set aside for u-boot.img's
254  * header. That is 0x800FFFC0--0x80100000 should not be used for any
255  * other needs.
256  */
257 #define CONFIG_SYS_SPL_MALLOC_START     0x80208000
258 #define CONFIG_SYS_SPL_MALLOC_SIZE      0x100000
259
260 #endif /* __CONFIG_H */