blob: 3ce3814cbeec15fdff6e6fa86897550000d550f9 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Srinath915162d2011-04-18 17:40:35 -04002/*
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
Srinath915162d2011-04-18 17:40:35 -040010 */
11
12#ifndef __CONFIG_H
13#define __CONFIG_H
14
15/*
16 * High Level Configuration Options
17 */
Srinath915162d2011-04-18 17:40:35 -040018
19#include <asm/arch/cpu.h> /* get chip and board defs */
Nishanth Menon987ec582015-03-09 17:12:04 -050020#include <asm/arch/omap.h>
Srinath915162d2011-04-18 17:40:35 -040021
Srinath915162d2011-04-18 17:40:35 -040022/* Clock Defines */
23#define V_OSCK 26000000 /* Clock output from T2 */
24#define V_SCLK (V_OSCK >> 1)
25
Srinath915162d2011-04-18 17:40:35 -040026#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 */
Srinath915162d2011-04-18 17:40:35 -040040#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
Srinath915162d2011-04-18 17:40:35 -040051#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 */
Srinath915162d2011-04-18 17:40:35 -040058#define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3
Srinath915162d2011-04-18 17:40:35 -040059
60/* allow to overwrite serial and ethaddr */
61#define CONFIG_ENV_OVERWRITE
Srinath915162d2011-04-18 17:40:35 -040062#define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
63 115200}
Srinath915162d2011-04-18 17:40:35 -040064
65/*
66 * USB configuration
Paul Kocialkowski95de1e22015-08-04 17:04:06 +020067 * Enable CONFIG_USB_MUSB_HCD for Host functionalities MSC, keyboard
68 * Enable CONFIG_USB_MUSB_UDC for Device functionalities.
Srinath915162d2011-04-18 17:40:35 -040069 */
Srinath915162d2011-04-18 17:40:35 -040070
71#ifdef CONFIG_USB_AM35X
72
Paul Kocialkowski95de1e22015-08-04 17:04:06 +020073#ifdef CONFIG_USB_MUSB_HCD
Srinath915162d2011-04-18 17:40:35 -040074
Srinath915162d2011-04-18 17:40:35 -040075#ifdef CONFIG_USB_KEYBOARD
Srinath915162d2011-04-18 17:40:35 -040076#define CONFIG_PREBOOT "usb start"
77#endif /* CONFIG_USB_KEYBOARD */
78
Paul Kocialkowski95de1e22015-08-04 17:04:06 +020079#endif /* CONFIG_USB_MUSB_HCD */
Srinath915162d2011-04-18 17:40:35 -040080
Paul Kocialkowski95de1e22015-08-04 17:04:06 +020081#ifdef CONFIG_USB_MUSB_UDC
Srinath915162d2011-04-18 17:40:35 -040082/* USB device configuration */
83#define CONFIG_USB_DEVICE 1
84#define CONFIG_USB_TTY 1
Srinath915162d2011-04-18 17:40:35 -040085/* Change these to suit your needs */
86#define CONFIG_USBD_VENDORID 0x0451
87#define CONFIG_USBD_PRODUCTID 0x5678
88#define CONFIG_USBD_MANUFACTURER "Texas Instruments"
89#define CONFIG_USBD_PRODUCT_NAME "AM3517CRANE"
Paul Kocialkowski95de1e22015-08-04 17:04:06 +020090#endif /* CONFIG_USB_MUSB_UDC */
Srinath915162d2011-04-18 17:40:35 -040091
92#endif /* CONFIG_USB_AM35X */
93
Heiko Schocher6789e842013-10-22 11:03:18 +020094#define CONFIG_SYS_I2C
Srinath915162d2011-04-18 17:40:35 -040095
Srinath915162d2011-04-18 17:40:35 -040096/*
97 * Board NAND Info.
98 */
Srinath915162d2011-04-18 17:40:35 -040099#define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */
100 /* to access */
101 /* nand at CS0 */
102
103#define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of */
104 /* NAND devices */
Srinath915162d2011-04-18 17:40:35 -0400105
106#define CONFIG_JFFS2_NAND
107/* nand device jffs2 lives on */
108#define CONFIG_JFFS2_DEV "nand0"
109/* start of jffs2 partition */
110#define CONFIG_JFFS2_PART_OFFSET 0x680000
111#define CONFIG_JFFS2_PART_SIZE 0xf980000 /* sz of jffs2 part */
112
113/* Environment information */
Srinath915162d2011-04-18 17:40:35 -0400114
Joe Hershbergerb3f44c22011-10-13 13:03:48 +0000115#define CONFIG_BOOTFILE "uImage"
Srinath915162d2011-04-18 17:40:35 -0400116
117#define CONFIG_EXTRA_ENV_SETTINGS \
118 "loadaddr=0x82000000\0" \
119 "console=ttyS2,115200n8\0" \
Tom Rinia5a88212011-09-03 21:51:50 -0400120 "mmcdev=0\0" \
Srinath915162d2011-04-18 17:40:35 -0400121 "mmcargs=setenv bootargs console=${console} " \
122 "root=/dev/mmcblk0p2 rw " \
123 "rootfstype=ext3 rootwait\0" \
124 "nandargs=setenv bootargs console=${console} " \
125 "root=/dev/mtdblock4 rw " \
126 "rootfstype=jffs2\0" \
Tom Rinia5a88212011-09-03 21:51:50 -0400127 "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
Srinath915162d2011-04-18 17:40:35 -0400128 "bootscript=echo Running bootscript from mmc ...; " \
129 "source ${loadaddr}\0" \
Tom Rinia5a88212011-09-03 21:51:50 -0400130 "loaduimage=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \
Srinath915162d2011-04-18 17:40:35 -0400131 "mmcboot=echo Booting from mmc ...; " \
132 "run mmcargs; " \
133 "bootm ${loadaddr}\0" \
134 "nandboot=echo Booting from nand ...; " \
135 "run nandargs; " \
136 "nand read ${loadaddr} 280000 400000; " \
137 "bootm ${loadaddr}\0" \
138
139#define CONFIG_BOOTCOMMAND \
Andrew Bradford66968112012-10-01 05:06:52 +0000140 "mmc dev ${mmcdev}; if mmc rescan; then " \
Srinath915162d2011-04-18 17:40:35 -0400141 "if run loadbootscript; then " \
142 "run bootscript; " \
143 "else " \
144 "if run loaduimage; then " \
145 "run mmcboot; " \
146 "else run nandboot; " \
147 "fi; " \
148 "fi; " \
149 "else run nandboot; fi"
150
Srinath915162d2011-04-18 17:40:35 -0400151/*
152 * Miscellaneous configurable options
153 */
Srinath915162d2011-04-18 17:40:35 -0400154#define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
Srinath915162d2011-04-18 17:40:35 -0400155#define CONFIG_SYS_MAXARGS 32 /* max number of command */
156 /* args */
Srinath915162d2011-04-18 17:40:35 -0400157/* memtest works on */
158#define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0)
159#define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \
160 0x01F00000) /* 31MB */
161
162#define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0) /* default load */
163 /* address */
164
165/*
166 * AM3517 has 12 GP timers, they can be driven by the system clock
167 * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
168 * This rate is divided by a local divisor.
169 */
170#define CONFIG_SYS_TIMERBASE OMAP34XX_GPT2
171#define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */
Srinath915162d2011-04-18 17:40:35 -0400172
173/*-----------------------------------------------------------------------
Srinath915162d2011-04-18 17:40:35 -0400174 * Physical Memory Map
175 */
Srinath915162d2011-04-18 17:40:35 -0400176#define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0
Srinath915162d2011-04-18 17:40:35 -0400177#define PHYS_SDRAM_2 OMAP34XX_SDRC_CS1
178
Srinath915162d2011-04-18 17:40:35 -0400179/*-----------------------------------------------------------------------
180 * FLASH and environment organization
181 */
182
183/* **** PISMO SUPPORT *** */
Srinath915162d2011-04-18 17:40:35 -0400184#define CONFIG_SYS_MAX_FLASH_SECT 520 /* max number of sectors */
185 /* on one chip */
186#define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max number of flash banks */
187#define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 2 sectors */
188
pekon gupta222a3112014-07-18 17:59:41 +0530189#define CONFIG_SYS_FLASH_BASE NAND_BASE
Srinath915162d2011-04-18 17:40:35 -0400190
191/* Monitor at start of flash */
192#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
193
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -0400194#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB sector */
Adam Ford7672d9d2017-09-04 21:08:02 -0500195#define CONFIG_ENV_OFFSET 0x260000
196#define CONFIG_ENV_ADDR 0x260000
Srinath915162d2011-04-18 17:40:35 -0400197
198/*-----------------------------------------------------------------------
199 * CFI FLASH driver setup
200 */
201/* timeout values are in ticks */
202#define CONFIG_SYS_FLASH_ERASE_TOUT (100 * CONFIG_SYS_HZ)
203#define CONFIG_SYS_FLASH_WRITE_TOUT (100 * CONFIG_SYS_HZ)
204
205/* Flash banks JFFS2 should use */
206#define CONFIG_SYS_MAX_MTD_BANKS (CONFIG_SYS_MAX_FLASH_BANKS + \
207 CONFIG_SYS_MAX_NAND_DEVICE)
208#define CONFIG_SYS_JFFS2_MEM_NAND
209/* use flash_info[2] */
210#define CONFIG_SYS_JFFS2_FIRST_BANK CONFIG_SYS_MAX_FLASH_BANKS
211#define CONFIG_SYS_JFFS2_NUM_BANKS 1
212
Srinath915162d2011-04-18 17:40:35 -0400213#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
214#define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800
215#define CONFIG_SYS_INIT_RAM_SIZE 0x800
216#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
217 CONFIG_SYS_INIT_RAM_SIZE - \
218 GENERATED_GBL_DATA_SIZE)
Tom Rinid067cc42011-11-18 12:48:11 +0000219
220/* Defines for SPL */
Tom Rinid067cc42011-11-18 12:48:11 +0000221#define CONFIG_SPL_TEXT_BASE 0x40200800
Tom Rinifa2f81b2016-08-26 13:30:43 -0400222#define CONFIG_SPL_MAX_SIZE (SRAM_SCRATCH_SPACE_ADDR - \
223 CONFIG_SPL_TEXT_BASE)
Tom Rinid067cc42011-11-18 12:48:11 +0000224
225#define CONFIG_SPL_BSS_START_ADDR 0x80000000
226#define CONFIG_SPL_BSS_MAX_SIZE 0x80000 /* 512 KB */
227
Paul Kocialkowskie2ccdf82014-11-08 23:14:55 +0100228#define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1
Guillaume GARDET205b4f32014-10-15 17:53:11 +0200229#define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img"
Tom Rinid067cc42011-11-18 12:48:11 +0000230
Scott Wood6f2f01b2012-09-20 19:09:07 -0500231#define CONFIG_SPL_NAND_BASE
232#define CONFIG_SPL_NAND_DRIVERS
233#define CONFIG_SPL_NAND_ECC
Tom Rinid067cc42011-11-18 12:48:11 +0000234
235/* NAND boot config */
236#define CONFIG_SYS_NAND_5_ADDR_CYCLE
237#define CONFIG_SYS_NAND_PAGE_COUNT 64
238#define CONFIG_SYS_NAND_PAGE_SIZE 2048
239#define CONFIG_SYS_NAND_OOBSIZE 64
240#define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
241#define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
242#define CONFIG_SYS_NAND_ECCPOS {2, 3, 4, 5, 6, 7, 8, 9,\
243 10, 11, 12, 13}
244#define CONFIG_SYS_NAND_ECCSIZE 512
245#define CONFIG_SYS_NAND_ECCBYTES 3
pekon gupta3f719062013-11-18 19:03:01 +0530246#define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_HAM1_CODE_HW
Tom Rinid067cc42011-11-18 12:48:11 +0000247#define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
248#define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000
249
250/*
251 * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM
252 * 64 bytes before this address should be set aside for u-boot.img's
253 * header. That is 0x800FFFC0--0x80100000 should not be used for any
254 * other needs.
255 */
Tom Rinid067cc42011-11-18 12:48:11 +0000256#define CONFIG_SYS_SPL_MALLOC_START 0x80208000
257#define CONFIG_SYS_SPL_MALLOC_SIZE 0x100000
258
Srinath915162d2011-04-18 17:40:35 -0400259#endif /* __CONFIG_H */