blob: 110e3db9ddb6adec744c39b4e56736dab29e826d [file] [log] [blame]
Dirk Behme7379f452009-01-28 21:40:16 +01001/*
2 * (C) Copyright 2006-2008
3 * Texas Instruments.
4 * Richard Woodruff <r-woodruff2@ti.com>
5 * Syed Mohammed Khasim <x0khasim@ti.com>
6 * Nishanth Menon <nm@ti.com>
7 *
8 * Configuration settings for the TI OMAP3430 Zoom MDK board.
9 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +020010 * SPDX-License-Identifier: GPL-2.0+
Dirk Behme7379f452009-01-28 21:40:16 +010011 */
12
13#ifndef __CONFIG_H
14#define __CONFIG_H
Dirk Behme7379f452009-01-28 21:40:16 +010015
16/*
17 * High Level Configuration Options
18 */
Dirk Behme7379f452009-01-28 21:40:16 +010019#define CONFIG_OMAP 1 /* in a TI OMAP core */
20#define CONFIG_OMAP34XX 1 /* which is a 34XX */
Dirk Behme7379f452009-01-28 21:40:16 +010021#define CONFIG_OMAP3_ZOOM1 1 /* working with Zoom MDK Rev1 */
Lokesh Vutla806d2792013-07-30 11:36:30 +053022#define CONFIG_OMAP_COMMON
Nishanth Menonae3248a2014-04-08 09:50:51 -050023#define CONFIG_SYS_GENERIC_BOARD
Dirk Behme7379f452009-01-28 21:40:16 +010024
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -040025#define CONFIG_SDRC /* The chip has SDRC controller */
26
Dirk Behme7379f452009-01-28 21:40:16 +010027#include <asm/arch/cpu.h> /* get chip and board defs */
28#include <asm/arch/omap3.h>
29
Sanjeev Premi6a6b62e2009-04-27 21:27:27 +053030/*
31 * Display CPU and Board information
32 */
33#define CONFIG_DISPLAY_CPUINFO 1
34#define CONFIG_DISPLAY_BOARDINFO 1
35
Dirk Behme7379f452009-01-28 21:40:16 +010036/* Clock Defines */
37#define V_OSCK 26000000 /* Clock output from T2 */
38#define V_SCLK (V_OSCK >> 1)
39
Dirk Behme7379f452009-01-28 21:40:16 +010040#define CONFIG_MISC_INIT_R
41
42#define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
43#define CONFIG_SETUP_MEMORY_TAGS 1
44#define CONFIG_INITRD_TAG 1
45#define CONFIG_REVISION_TAG 1
46
Grant Likely2fa8ca92011-03-28 09:59:07 +000047#define CONFIG_OF_LIBFDT 1
48
Dirk Behme7379f452009-01-28 21:40:16 +010049/*
50 * Size of malloc() pool
51 */
Sandeep Paulraj9c44ddc2009-09-09 11:50:40 -040052#define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
Dirk Behme7379f452009-01-28 21:40:16 +010053 /* Sector */
Sandeep Paulraj9c44ddc2009-09-09 11:50:40 -040054#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (128 << 10))
Dirk Behme7379f452009-01-28 21:40:16 +010055
56/*
57 * Hardware drivers
58 */
59
60/*
61 * NS16550 Configuration
62 */
63#define V_NS16550_CLK 48000000 /* 48MHz (APLL96/2) */
64
65#define CONFIG_SYS_NS16550
66#define CONFIG_SYS_NS16550_SERIAL
67#define CONFIG_SYS_NS16550_REG_SIZE (-4)
68#define CONFIG_SYS_NS16550_CLK V_NS16550_CLK
69
70/*
71 * select serial console configuration
72 */
73#define CONFIG_CONS_INDEX 3
74#define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3
75#define CONFIG_SERIAL3 3 /* UART3 */
76
77/* allow to overwrite serial and ethaddr */
78#define CONFIG_ENV_OVERWRITE
79#define CONFIG_BAUDRATE 115200
80#define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
81 115200}
Tom Rinid6906cb2011-09-03 21:50:35 -040082#define CONFIG_GENERIC_MMC 1
Dirk Behme7379f452009-01-28 21:40:16 +010083#define CONFIG_MMC 1
Tom Rinid6906cb2011-09-03 21:50:35 -040084#define CONFIG_OMAP_HSMMC 1
Dirk Behme7379f452009-01-28 21:40:16 +010085#define CONFIG_DOS_PARTITION 1
86
Tom Rix05be5a62009-10-31 12:37:42 -050087/* USB */
88#define CONFIG_MUSB_UDC 1
89#define CONFIG_USB_OMAP3 1
90#define CONFIG_TWL4030_USB 1
91
92/* USB device configuration */
93#define CONFIG_USB_DEVICE 1
94#define CONFIG_USB_TTY 1
95#define CONFIG_SYS_CONSOLE_IS_IN_ENV 1
96/* Change these to suit your needs */
97#define CONFIG_USBD_VENDORID 0x0451
98#define CONFIG_USBD_PRODUCTID 0x5678
99#define CONFIG_USBD_MANUFACTURER "Texas Instruments"
100#define CONFIG_USBD_PRODUCT_NAME "Zoom1"
101
Dirk Behme7379f452009-01-28 21:40:16 +0100102/* commands to include */
103#include <config_cmd_default.h>
104
105#define CONFIG_CMD_EXT2 /* EXT2 Support */
106#define CONFIG_CMD_FAT /* FAT support */
Nishanth Menon4e8183b2014-04-08 09:50:55 -0500107#define CONFIG_CMD_FS_GENERIC /* Generic FS support */
108#define CONFIG_CMD_MTDPARTS /* Enable MTD parts commands */
109#define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
110#define MTDIDS_DEFAULT "nand0=nand"
111#define MTDPARTS_DEFAULT "mtdparts=nand:512k(x-loader),"\
112 "1920k(u-boot),128k(u-boot-env),"\
113 "4m(kernel),-(fs)"
Dirk Behme7379f452009-01-28 21:40:16 +0100114
115#define CONFIG_CMD_I2C /* I2C serial bus support */
116#define CONFIG_CMD_MMC /* MMC support */
117#define CONFIG_CMD_NAND /* NAND support */
Nishanth Menone7deec12009-02-02 18:20:12 -0600118#define CONFIG_CMD_NAND_LOCK_UNLOCK /* Enable lock/unlock support */
Dirk Behme7379f452009-01-28 21:40:16 +0100119
120#undef CONFIG_CMD_FLASH /* flinfo, erase, protect */
121#undef CONFIG_CMD_FPGA /* FPGA configuration Support */
122#undef CONFIG_CMD_IMI /* iminfo */
123#undef CONFIG_CMD_IMLS /* List all found images */
Nishanth Menon9d70e772014-04-08 09:50:53 -0500124#define CONFIG_CMD_NET /* bootp, tftpboot, rarpboot */
Nishanth Menond71dd042014-04-08 09:50:54 -0500125#define CONFIG_CMD_NFS /* NFS support */
126#define CONFIG_CMD_PING
127#define CONFIG_CMD_DHCP
Dirk Behme7379f452009-01-28 21:40:16 +0100128
129#define CONFIG_SYS_NO_FLASH
Heiko Schocher6789e842013-10-22 11:03:18 +0200130#define CONFIG_SYS_I2C
131#define CONFIG_SYS_OMAP24_I2C_SPEED 100000
132#define CONFIG_SYS_OMAP24_I2C_SLAVE 1
133#define CONFIG_SYS_I2C_OMAP34XX
Dirk Behme7379f452009-01-28 21:40:16 +0100134
135/*
Tom Rixcd782632009-06-28 12:52:29 -0500136 * TWL4030
137 */
138#define CONFIG_TWL4030_POWER 1
Tom Rix2c155132009-06-28 12:52:30 -0500139#define CONFIG_TWL4030_LED 1
Tom Rixcd782632009-06-28 12:52:29 -0500140
141/*
Dirk Behme7379f452009-01-28 21:40:16 +0100142 * Board NAND Info.
143 */
144#define CONFIG_NAND_OMAP_GPMC
145#define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */
146 /* to access nand */
147#define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */
148 /* to access nand at */
149 /* CS0 */
Dirk Behme7379f452009-01-28 21:40:16 +0100150#define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of NAND */
151 /* devices */
Dirk Behme7379f452009-01-28 21:40:16 +0100152
153/* Environment information */
154#define CONFIG_BOOTDELAY 10
155
156#define CONFIG_EXTRA_ENV_SETTINGS \
157 "loadaddr=0x82000000\0" \
Nishanth Menon4e8183b2014-04-08 09:50:55 -0500158 "bootfile=uImage\0" \
159 "bootdir=/\0" \
160 "bootpart=0:1\0" \
Tom Rix05be5a62009-10-31 12:37:42 -0500161 "usbtty=cdc_acm\0" \
Dirk Behme7379f452009-01-28 21:40:16 +0100162 "console=ttyS2,115200n8\0" \
Tom Rinid6906cb2011-09-03 21:50:35 -0400163 "mmcdev=0\0" \
Dirk Behme7379f452009-01-28 21:40:16 +0100164 "videomode=1024x768@60,vxres=1024,vyres=768\0" \
165 "videospec=omapfb:vram:2M,vram:4M\0" \
166 "mmcargs=setenv bootargs console=${console} " \
167 "video=${videospec},mode:${videomode} " \
168 "root=/dev/mmcblk0p2 rw " \
169 "rootfstype=ext3 rootwait\0" \
170 "nandargs=setenv bootargs console=${console} " \
171 "video=${videospec},mode:${videomode} " \
172 "root=/dev/mtdblock4 rw " \
173 "rootfstype=jffs2\0" \
Tom Rinid6906cb2011-09-03 21:50:35 -0400174 "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
Dirk Behme7379f452009-01-28 21:40:16 +0100175 "bootscript=echo Running bootscript from mmc ...; " \
Wolfgang Denk74de7ae2009-04-01 23:34:12 +0200176 "source ${loadaddr}\0" \
Nishanth Menon4e8183b2014-04-08 09:50:55 -0500177 "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
Dirk Behme7379f452009-01-28 21:40:16 +0100178 "mmcboot=echo Booting from mmc ...; " \
179 "run mmcargs; " \
180 "bootm ${loadaddr}\0" \
181 "nandboot=echo Booting from nand ...; " \
182 "run nandargs; " \
183 "nand read ${loadaddr} 280000 400000; " \
184 "bootm ${loadaddr}\0" \
185
186#define CONFIG_BOOTCOMMAND \
Andrew Bradford66968112012-10-01 05:06:52 +0000187 "mmc dev ${mmcdev}; if mmc rescan; then " \
Dirk Behme7379f452009-01-28 21:40:16 +0100188 "if run loadbootscript; then " \
189 "run bootscript; " \
190 "else " \
Nishanth Menon4e8183b2014-04-08 09:50:55 -0500191 "if run loadimage; then " \
Dirk Behme7379f452009-01-28 21:40:16 +0100192 "run mmcboot; " \
193 "else run nandboot; " \
194 "fi; " \
195 "fi; " \
196 "else run nandboot; fi"
197
198#define CONFIG_AUTO_COMPLETE 1
199/*
200 * Miscellaneous configurable options
201 */
Dirk Behme7379f452009-01-28 21:40:16 +0100202#define CONFIG_SYS_LONGHELP /* undef to save memory */
203#define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
Robert P. J. Day1270ec12009-12-12 12:10:33 -0500204#define CONFIG_SYS_PROMPT "OMAP3 Zoom1 # "
Vaibhav Hiremathf62b1252011-09-03 21:24:19 -0400205#define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
Dirk Behme7379f452009-01-28 21:40:16 +0100206/* Print Buffer Size */
207#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
208 sizeof(CONFIG_SYS_PROMPT) + 16)
209#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
210/* Boot Argument Buffer Size */
211#define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE)
212
213#define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0) /* memtest */
214 /* works on */
215#define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \
216 0x01F00000) /* 31MB */
217
Dirk Behme7379f452009-01-28 21:40:16 +0100218#define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0) /* default */
219 /* load address */
220
Dirk Behme25435c62010-11-30 11:10:45 -0500221#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
222#define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800
223#define CONFIG_SYS_INIT_RAM_SIZE 0x800
224#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
225 CONFIG_SYS_INIT_RAM_SIZE - \
226 GENERATED_GBL_DATA_SIZE)
Dirk Behme7379f452009-01-28 21:40:16 +0100227/*
Manikandan Pillaid3a513c2009-04-21 17:29:05 +0200228 * OMAP3 has 12 GP timers, they can be driven by the system clock
229 * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
230 * This rate is divided by a local divisor.
Dirk Behme7379f452009-01-28 21:40:16 +0100231 */
Manikandan Pillaid3a513c2009-04-21 17:29:05 +0200232#define CONFIG_SYS_TIMERBASE OMAP34XX_GPT2
233#define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */
Dirk Behme7379f452009-01-28 21:40:16 +0100234
235/*-----------------------------------------------------------------------
Dirk Behme7379f452009-01-28 21:40:16 +0100236 * Physical Memory Map
237 */
238#define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
239#define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0
Dirk Behme7379f452009-01-28 21:40:16 +0100240#define PHYS_SDRAM_2 OMAP34XX_SDRC_CS1
241
Dirk Behme7379f452009-01-28 21:40:16 +0100242/*-----------------------------------------------------------------------
243 * FLASH and environment organization
244 */
245
246/* **** PISMO SUPPORT *** */
247
248/* Configure the PISMO */
249#define PISMO1_NAND_SIZE GPMC_SIZE_128M
250#define PISMO1_ONEN_SIZE GPMC_SIZE_128M
251
Sandeep Paulraj9c44ddc2009-09-09 11:50:40 -0400252#define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 2 sectors */
Dirk Behme7379f452009-01-28 21:40:16 +0100253
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -0400254#if defined(CONFIG_CMD_NAND)
255#define CONFIG_SYS_FLASH_BASE PISMO1_NAND_BASE
256#endif
Dirk Behme7379f452009-01-28 21:40:16 +0100257
258/* Monitor at start of flash */
259#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
260#define CONFIG_SYS_ONENAND_BASE ONENAND_MAP
261
262#define CONFIG_ENV_IS_IN_NAND 1
263#define ONENAND_ENV_OFFSET 0x260000 /* environment starts here */
264#define SMNAND_ENV_OFFSET 0x260000 /* environment starts here */
265
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -0400266#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
267#define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET
Dirk Behme7379f452009-01-28 21:40:16 +0100268#define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET
269
Aneesh V8e408522011-11-21 23:38:59 +0000270#define CONFIG_SYS_CACHELINE_SIZE 64
271
Nishanth Menon9d70e772014-04-08 09:50:53 -0500272#ifdef CONFIG_CMD_NET
273/* Ethernet (LAN9211 from SMSC9118 family) */
274#define CONFIG_SMC911X
275#define CONFIG_SMC911X_32_BIT
276#define CONFIG_SMC911X_BASE DEBUG_BASE
277
278#endif
279
Dirk Behme7379f452009-01-28 21:40:16 +0100280#endif /* __CONFIG_H */