blob: 36a52a93b576581b2676f8e2ae805488fb823dba [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_OMAP3_ZOOM1 1 /* working with Zoom MDK Rev1 */
Nishanth Menonae3248a2014-04-08 09:50:51 -050020#define CONFIG_SYS_GENERIC_BOARD
Dirk Behme7379f452009-01-28 21:40:16 +010021
Nishanth Menon161d2d52014-04-08 09:50:58 -050022#define CONFIG_NAND
23#define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
Dirk Behme7379f452009-01-28 21:40:16 +010024#include <asm/arch/cpu.h> /* get chip and board defs */
Nishanth Menon987ec582015-03-09 17:12:04 -050025#include <asm/arch/omap.h>
Nishanth Menon161d2d52014-04-08 09:50:58 -050026#include <configs/ti_omap3_common.h>
27
28/* Remove SPL boot option - we do not support that on LDP yet */
Nishanth Menon161d2d52014-04-08 09:50:58 -050029#undef CONFIG_SPL_FRAMEWORK
30#undef CONFIG_SPL_OS_BOOT
31
32/* Generic NAND definition conflicts with debug_base */
33#undef CONFIG_SYS_NAND_BASE
Dirk Behme7379f452009-01-28 21:40:16 +010034
Sanjeev Premi6a6b62e2009-04-27 21:27:27 +053035/*
36 * Display CPU and Board information
37 */
38#define CONFIG_DISPLAY_CPUINFO 1
39#define CONFIG_DISPLAY_BOARDINFO 1
40
Dirk Behme7379f452009-01-28 21:40:16 +010041#define CONFIG_MISC_INIT_R
42
Dirk Behme7379f452009-01-28 21:40:16 +010043#define CONFIG_REVISION_TAG 1
44
Sandeep Paulraj9c44ddc2009-09-09 11:50:40 -040045#define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
Dirk Behme7379f452009-01-28 21:40:16 +010046
47/*
48 * Hardware drivers
49 */
50
Tom Rix05be5a62009-10-31 12:37:42 -050051/* USB */
52#define CONFIG_MUSB_UDC 1
53#define CONFIG_USB_OMAP3 1
54#define CONFIG_TWL4030_USB 1
55
56/* USB device configuration */
57#define CONFIG_USB_DEVICE 1
58#define CONFIG_USB_TTY 1
59#define CONFIG_SYS_CONSOLE_IS_IN_ENV 1
60/* Change these to suit your needs */
61#define CONFIG_USBD_VENDORID 0x0451
62#define CONFIG_USBD_PRODUCTID 0x5678
63#define CONFIG_USBD_MANUFACTURER "Texas Instruments"
64#define CONFIG_USBD_PRODUCT_NAME "Zoom1"
65
Nishanth Menon4e8183b2014-04-08 09:50:55 -050066#define MTDIDS_DEFAULT "nand0=nand"
67#define MTDPARTS_DEFAULT "mtdparts=nand:512k(x-loader),"\
68 "1920k(u-boot),128k(u-boot-env),"\
69 "4m(kernel),-(fs)"
Dirk Behme7379f452009-01-28 21:40:16 +010070
Nishanth Menon161d2d52014-04-08 09:50:58 -050071#if defined(CONFIG_CMD_NAND)
pekon gupta434f2cf2014-07-18 17:59:42 +053072/* NAND: SPL falcon mode configs */
73#ifdef CONFIG_SPL_OS_BOOT
74#define CONFIG_CMD_SPL_NAND_OFS 0x240000
75#define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000
76#define CONFIG_CMD_SPL_WRITE_SIZE 0x2000
77#endif
Nishanth Menone7deec12009-02-02 18:20:12 -060078#define CONFIG_CMD_NAND_LOCK_UNLOCK /* Enable lock/unlock support */
Nishanth Menon161d2d52014-04-08 09:50:58 -050079#endif
Dirk Behme7379f452009-01-28 21:40:16 +010080
81#undef CONFIG_CMD_FLASH /* flinfo, erase, protect */
82#undef CONFIG_CMD_FPGA /* FPGA configuration Support */
83#undef CONFIG_CMD_IMI /* iminfo */
84#undef CONFIG_CMD_IMLS /* List all found images */
Nishanth Menond71dd042014-04-08 09:50:54 -050085#define CONFIG_CMD_NFS /* NFS support */
86#define CONFIG_CMD_PING
87#define CONFIG_CMD_DHCP
Dirk Behme7379f452009-01-28 21:40:16 +010088
Nishanth Menon161d2d52014-04-08 09:50:58 -050089#undef CONFIG_SYS_I2C_OMAP24XX
Heiko Schocher6789e842013-10-22 11:03:18 +020090#define CONFIG_SYS_I2C_OMAP34XX
Dirk Behme7379f452009-01-28 21:40:16 +010091
92/*
Tom Rixcd782632009-06-28 12:52:29 -050093 * TWL4030
94 */
Tom Rix2c155132009-06-28 12:52:30 -050095#define CONFIG_TWL4030_LED 1
Tom Rixcd782632009-06-28 12:52:29 -050096
97/*
Dirk Behme7379f452009-01-28 21:40:16 +010098 * Board NAND Info.
99 */
Dirk Behme7379f452009-01-28 21:40:16 +0100100#define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */
101 /* to access nand */
102#define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */
103 /* to access nand at */
104 /* CS0 */
pekon guptab80a6602014-05-06 00:46:19 +0530105#define CONFIG_SYS_NAND_BUSWIDTH_16BIT 16
Dirk Behme7379f452009-01-28 21:40:16 +0100106
107/* Environment information */
Dirk Behme7379f452009-01-28 21:40:16 +0100108
109#define CONFIG_EXTRA_ENV_SETTINGS \
110 "loadaddr=0x82000000\0" \
Nishanth Menonc2e7c7b2014-04-08 09:50:56 -0500111 "fdtaddr=0x80f80000\0" \
Nishanth Menon4e8183b2014-04-08 09:50:55 -0500112 "bootfile=uImage\0" \
Nishanth Menonc2e7c7b2014-04-08 09:50:56 -0500113 "fdtfile=omap3-ldp.dtb\0" \
Nishanth Menon4e8183b2014-04-08 09:50:55 -0500114 "bootdir=/\0" \
115 "bootpart=0:1\0" \
Tom Rix05be5a62009-10-31 12:37:42 -0500116 "usbtty=cdc_acm\0" \
Nishanth Menonea467c72014-04-08 09:50:57 -0500117 "console=ttyO2,115200n8\0" \
Tom Rinid6906cb2011-09-03 21:50:35 -0400118 "mmcdev=0\0" \
Dirk Behme7379f452009-01-28 21:40:16 +0100119 "videomode=1024x768@60,vxres=1024,vyres=768\0" \
120 "videospec=omapfb:vram:2M,vram:4M\0" \
121 "mmcargs=setenv bootargs console=${console} " \
122 "video=${videospec},mode:${videomode} " \
123 "root=/dev/mmcblk0p2 rw " \
124 "rootfstype=ext3 rootwait\0" \
125 "nandargs=setenv bootargs console=${console} " \
126 "video=${videospec},mode:${videomode} " \
127 "root=/dev/mtdblock4 rw " \
128 "rootfstype=jffs2\0" \
Tom Rinid6906cb2011-09-03 21:50:35 -0400129 "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
Dirk Behme7379f452009-01-28 21:40:16 +0100130 "bootscript=echo Running bootscript from mmc ...; " \
Wolfgang Denk74de7ae2009-04-01 23:34:12 +0200131 "source ${loadaddr}\0" \
Nishanth Menon4e8183b2014-04-08 09:50:55 -0500132 "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
Nishanth Menonc2e7c7b2014-04-08 09:50:56 -0500133 "loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
134 "loadzimage=setenv bootfile zImage; if run loadimage; then run loadfdt;fi\0"\
Dirk Behme7379f452009-01-28 21:40:16 +0100135 "mmcboot=echo Booting from mmc ...; " \
136 "run mmcargs; " \
137 "bootm ${loadaddr}\0" \
Nishanth Menonc2e7c7b2014-04-08 09:50:56 -0500138 "mmczboot=echo Booting from mmc ...; " \
139 "run mmcargs; " \
140 "bootz ${loadaddr} - ${fdtaddr}\0" \
Dirk Behme7379f452009-01-28 21:40:16 +0100141 "nandboot=echo Booting from nand ...; " \
142 "run nandargs; " \
143 "nand read ${loadaddr} 280000 400000; " \
144 "bootm ${loadaddr}\0" \
145
146#define CONFIG_BOOTCOMMAND \
Andrew Bradford66968112012-10-01 05:06:52 +0000147 "mmc dev ${mmcdev}; if mmc rescan; then " \
Dirk Behme7379f452009-01-28 21:40:16 +0100148 "if run loadbootscript; then " \
149 "run bootscript; " \
150 "else " \
Nishanth Menon4e8183b2014-04-08 09:50:55 -0500151 "if run loadimage; then " \
Dirk Behme7379f452009-01-28 21:40:16 +0100152 "run mmcboot; " \
Nishanth Menonc2e7c7b2014-04-08 09:50:56 -0500153 "else if run loadzimage; then " \
154 "run mmczboot; " \
Dirk Behme7379f452009-01-28 21:40:16 +0100155 "else run nandboot; " \
Nishanth Menonc2e7c7b2014-04-08 09:50:56 -0500156 "fi; fi;" \
Dirk Behme7379f452009-01-28 21:40:16 +0100157 "fi; " \
158 "else run nandboot; fi"
159
Dirk Behme7379f452009-01-28 21:40:16 +0100160/*
161 * Miscellaneous configurable options
162 */
Nishanth Menon161d2d52014-04-08 09:50:58 -0500163#define CONFIG_SYS_MEMTEST_START (PHYS_SDRAM_1) /* memtest */
164#define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_2 + \
Dirk Behme7379f452009-01-28 21:40:16 +0100165 0x01F00000) /* 31MB */
166
Dirk Behme7379f452009-01-28 21:40:16 +0100167/*-----------------------------------------------------------------------
168 * FLASH and environment organization
169 */
170
171/* **** PISMO SUPPORT *** */
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -0400172#if defined(CONFIG_CMD_NAND)
pekon gupta222a3112014-07-18 17:59:41 +0530173#define CONFIG_SYS_FLASH_BASE NAND_BASE
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -0400174#endif
Dirk Behme7379f452009-01-28 21:40:16 +0100175
176/* Monitor at start of flash */
177#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
178#define CONFIG_SYS_ONENAND_BASE ONENAND_MAP
179
180#define CONFIG_ENV_IS_IN_NAND 1
181#define ONENAND_ENV_OFFSET 0x260000 /* environment starts here */
182#define SMNAND_ENV_OFFSET 0x260000 /* environment starts here */
183
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -0400184#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
185#define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET
Dirk Behme7379f452009-01-28 21:40:16 +0100186#define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET
187
Aneesh V8e408522011-11-21 23:38:59 +0000188#define CONFIG_SYS_CACHELINE_SIZE 64
189
Nishanth Menon9d70e772014-04-08 09:50:53 -0500190#ifdef CONFIG_CMD_NET
191/* Ethernet (LAN9211 from SMSC9118 family) */
192#define CONFIG_SMC911X
193#define CONFIG_SMC911X_32_BIT
194#define CONFIG_SMC911X_BASE DEBUG_BASE
195
196#endif
197
Dirk Behme7379f452009-01-28 21:40:16 +0100198#endif /* __CONFIG_H */