blob: a59fd426c50b27eba056a7aab6ba93813e90752b [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 */
20
Nishanth Menon161d2d52014-04-08 09:50:58 -050021#define CONFIG_NAND
22#define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
Dirk Behme7379f452009-01-28 21:40:16 +010023#include <asm/arch/cpu.h> /* get chip and board defs */
Nishanth Menon987ec582015-03-09 17:12:04 -050024#include <asm/arch/omap.h>
Nishanth Menon161d2d52014-04-08 09:50:58 -050025#include <configs/ti_omap3_common.h>
26
27/* Remove SPL boot option - we do not support that on LDP yet */
Nishanth Menon161d2d52014-04-08 09:50:58 -050028#undef CONFIG_SPL_FRAMEWORK
29#undef CONFIG_SPL_OS_BOOT
30
31/* Generic NAND definition conflicts with debug_base */
32#undef CONFIG_SYS_NAND_BASE
Dirk Behme7379f452009-01-28 21:40:16 +010033
Sanjeev Premi6a6b62e2009-04-27 21:27:27 +053034/*
35 * Display CPU and Board information
36 */
37#define CONFIG_DISPLAY_CPUINFO 1
38#define CONFIG_DISPLAY_BOARDINFO 1
39
Dirk Behme7379f452009-01-28 21:40:16 +010040#define CONFIG_MISC_INIT_R
41
Dirk Behme7379f452009-01-28 21:40:16 +010042#define CONFIG_REVISION_TAG 1
43
Sandeep Paulraj9c44ddc2009-09-09 11:50:40 -040044#define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
Dirk Behme7379f452009-01-28 21:40:16 +010045
46/*
47 * Hardware drivers
48 */
49
Tom Rix05be5a62009-10-31 12:37:42 -050050/* USB */
Paul Kocialkowski95de1e22015-08-04 17:04:06 +020051#define CONFIG_USB_MUSB_UDC 1
Tom Rix05be5a62009-10-31 12:37:42 -050052#define CONFIG_USB_OMAP3 1
53#define CONFIG_TWL4030_USB 1
54
55/* USB device configuration */
56#define CONFIG_USB_DEVICE 1
57#define CONFIG_USB_TTY 1
58#define CONFIG_SYS_CONSOLE_IS_IN_ENV 1
59/* Change these to suit your needs */
60#define CONFIG_USBD_VENDORID 0x0451
61#define CONFIG_USBD_PRODUCTID 0x5678
62#define CONFIG_USBD_MANUFACTURER "Texas Instruments"
63#define CONFIG_USBD_PRODUCT_NAME "Zoom1"
64
Nishanth Menon4e8183b2014-04-08 09:50:55 -050065#define MTDIDS_DEFAULT "nand0=nand"
66#define MTDPARTS_DEFAULT "mtdparts=nand:512k(x-loader),"\
67 "1920k(u-boot),128k(u-boot-env),"\
68 "4m(kernel),-(fs)"
Dirk Behme7379f452009-01-28 21:40:16 +010069
Nishanth Menon161d2d52014-04-08 09:50:58 -050070#if defined(CONFIG_CMD_NAND)
pekon gupta434f2cf2014-07-18 17:59:42 +053071/* NAND: SPL falcon mode configs */
72#ifdef CONFIG_SPL_OS_BOOT
73#define CONFIG_CMD_SPL_NAND_OFS 0x240000
74#define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000
75#define CONFIG_CMD_SPL_WRITE_SIZE 0x2000
76#endif
Nishanth Menone7deec12009-02-02 18:20:12 -060077#define CONFIG_CMD_NAND_LOCK_UNLOCK /* Enable lock/unlock support */
Nishanth Menon161d2d52014-04-08 09:50:58 -050078#endif
Dirk Behme7379f452009-01-28 21:40:16 +010079
Nishanth Menond71dd042014-04-08 09:50:54 -050080#define CONFIG_CMD_PING
81#define CONFIG_CMD_DHCP
Dirk Behme7379f452009-01-28 21:40:16 +010082
Nishanth Menon161d2d52014-04-08 09:50:58 -050083#undef CONFIG_SYS_I2C_OMAP24XX
Heiko Schocher6789e842013-10-22 11:03:18 +020084#define CONFIG_SYS_I2C_OMAP34XX
Dirk Behme7379f452009-01-28 21:40:16 +010085
86/*
Tom Rixcd782632009-06-28 12:52:29 -050087 * TWL4030
88 */
Tom Rix2c155132009-06-28 12:52:30 -050089#define CONFIG_TWL4030_LED 1
Tom Rixcd782632009-06-28 12:52:29 -050090
91/*
Dirk Behme7379f452009-01-28 21:40:16 +010092 * Board NAND Info.
93 */
Dirk Behme7379f452009-01-28 21:40:16 +010094#define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */
95 /* to access nand */
96#define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */
97 /* to access nand at */
98 /* CS0 */
Stefano Babic55f1b392015-07-26 15:18:15 +020099#define CONFIG_SYS_NAND_BUSWIDTH_16BIT
Dirk Behme7379f452009-01-28 21:40:16 +0100100
101/* Environment information */
Dirk Behme7379f452009-01-28 21:40:16 +0100102
103#define CONFIG_EXTRA_ENV_SETTINGS \
104 "loadaddr=0x82000000\0" \
Nishanth Menonc2e7c7b2014-04-08 09:50:56 -0500105 "fdtaddr=0x80f80000\0" \
Nishanth Menon4e8183b2014-04-08 09:50:55 -0500106 "bootfile=uImage\0" \
Nishanth Menonc2e7c7b2014-04-08 09:50:56 -0500107 "fdtfile=omap3-ldp.dtb\0" \
Nishanth Menon4e8183b2014-04-08 09:50:55 -0500108 "bootdir=/\0" \
109 "bootpart=0:1\0" \
Tom Rix05be5a62009-10-31 12:37:42 -0500110 "usbtty=cdc_acm\0" \
Nishanth Menonea467c72014-04-08 09:50:57 -0500111 "console=ttyO2,115200n8\0" \
Tom Rinid6906cb2011-09-03 21:50:35 -0400112 "mmcdev=0\0" \
Dirk Behme7379f452009-01-28 21:40:16 +0100113 "videomode=1024x768@60,vxres=1024,vyres=768\0" \
114 "videospec=omapfb:vram:2M,vram:4M\0" \
115 "mmcargs=setenv bootargs console=${console} " \
116 "video=${videospec},mode:${videomode} " \
117 "root=/dev/mmcblk0p2 rw " \
118 "rootfstype=ext3 rootwait\0" \
119 "nandargs=setenv bootargs console=${console} " \
120 "video=${videospec},mode:${videomode} " \
121 "root=/dev/mtdblock4 rw " \
122 "rootfstype=jffs2\0" \
Tom Rinid6906cb2011-09-03 21:50:35 -0400123 "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
Dirk Behme7379f452009-01-28 21:40:16 +0100124 "bootscript=echo Running bootscript from mmc ...; " \
Wolfgang Denk74de7ae2009-04-01 23:34:12 +0200125 "source ${loadaddr}\0" \
Nishanth Menon4e8183b2014-04-08 09:50:55 -0500126 "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
Nishanth Menonc2e7c7b2014-04-08 09:50:56 -0500127 "loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
128 "loadzimage=setenv bootfile zImage; if run loadimage; then run loadfdt;fi\0"\
Dirk Behme7379f452009-01-28 21:40:16 +0100129 "mmcboot=echo Booting from mmc ...; " \
130 "run mmcargs; " \
131 "bootm ${loadaddr}\0" \
Nishanth Menonc2e7c7b2014-04-08 09:50:56 -0500132 "mmczboot=echo Booting from mmc ...; " \
133 "run mmcargs; " \
134 "bootz ${loadaddr} - ${fdtaddr}\0" \
Dirk Behme7379f452009-01-28 21:40:16 +0100135 "nandboot=echo Booting from nand ...; " \
136 "run nandargs; " \
137 "nand read ${loadaddr} 280000 400000; " \
138 "bootm ${loadaddr}\0" \
139
140#define CONFIG_BOOTCOMMAND \
Andrew Bradford66968112012-10-01 05:06:52 +0000141 "mmc dev ${mmcdev}; if mmc rescan; then " \
Dirk Behme7379f452009-01-28 21:40:16 +0100142 "if run loadbootscript; then " \
143 "run bootscript; " \
144 "else " \
Nishanth Menon4e8183b2014-04-08 09:50:55 -0500145 "if run loadimage; then " \
Dirk Behme7379f452009-01-28 21:40:16 +0100146 "run mmcboot; " \
Nishanth Menonc2e7c7b2014-04-08 09:50:56 -0500147 "else if run loadzimage; then " \
148 "run mmczboot; " \
Dirk Behme7379f452009-01-28 21:40:16 +0100149 "else run nandboot; " \
Nishanth Menonc2e7c7b2014-04-08 09:50:56 -0500150 "fi; fi;" \
Dirk Behme7379f452009-01-28 21:40:16 +0100151 "fi; " \
152 "else run nandboot; fi"
153
Dirk Behme7379f452009-01-28 21:40:16 +0100154/*
155 * Miscellaneous configurable options
156 */
Nishanth Menon161d2d52014-04-08 09:50:58 -0500157#define CONFIG_SYS_MEMTEST_START (PHYS_SDRAM_1) /* memtest */
158#define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_2 + \
Dirk Behme7379f452009-01-28 21:40:16 +0100159 0x01F00000) /* 31MB */
160
Dirk Behme7379f452009-01-28 21:40:16 +0100161/*-----------------------------------------------------------------------
162 * FLASH and environment organization
163 */
164
165/* **** PISMO SUPPORT *** */
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -0400166#if defined(CONFIG_CMD_NAND)
pekon gupta222a3112014-07-18 17:59:41 +0530167#define CONFIG_SYS_FLASH_BASE NAND_BASE
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -0400168#endif
Dirk Behme7379f452009-01-28 21:40:16 +0100169
170/* Monitor at start of flash */
171#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
172#define CONFIG_SYS_ONENAND_BASE ONENAND_MAP
173
174#define CONFIG_ENV_IS_IN_NAND 1
175#define ONENAND_ENV_OFFSET 0x260000 /* environment starts here */
176#define SMNAND_ENV_OFFSET 0x260000 /* environment starts here */
177
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -0400178#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
179#define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET
Dirk Behme7379f452009-01-28 21:40:16 +0100180#define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET
181
Aneesh V8e408522011-11-21 23:38:59 +0000182#define CONFIG_SYS_CACHELINE_SIZE 64
183
Nishanth Menon9d70e772014-04-08 09:50:53 -0500184#ifdef CONFIG_CMD_NET
185/* Ethernet (LAN9211 from SMSC9118 family) */
186#define CONFIG_SMC911X
187#define CONFIG_SMC911X_32_BIT
188#define CONFIG_SMC911X_BASE DEBUG_BASE
189
190#endif
191
Dirk Behme7379f452009-01-28 21:40:16 +0100192#endif /* __CONFIG_H */