blob: 4dcd5de2bc9d570fbe7583aa7f2c210c3e2c3cdd [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
Dirk Behme7379f452009-01-28 21:40:16 +010034#define CONFIG_MISC_INIT_R
35
Dirk Behme7379f452009-01-28 21:40:16 +010036#define CONFIG_REVISION_TAG 1
37
Sandeep Paulraj9c44ddc2009-09-09 11:50:40 -040038#define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
Dirk Behme7379f452009-01-28 21:40:16 +010039
40/*
41 * Hardware drivers
42 */
43
Tom Rix05be5a62009-10-31 12:37:42 -050044/* USB */
Paul Kocialkowski95de1e22015-08-04 17:04:06 +020045#define CONFIG_USB_MUSB_UDC 1
Tom Rix05be5a62009-10-31 12:37:42 -050046#define CONFIG_USB_OMAP3 1
47#define CONFIG_TWL4030_USB 1
48
49/* USB device configuration */
50#define CONFIG_USB_DEVICE 1
51#define CONFIG_USB_TTY 1
52#define CONFIG_SYS_CONSOLE_IS_IN_ENV 1
53/* Change these to suit your needs */
54#define CONFIG_USBD_VENDORID 0x0451
55#define CONFIG_USBD_PRODUCTID 0x5678
56#define CONFIG_USBD_MANUFACTURER "Texas Instruments"
57#define CONFIG_USBD_PRODUCT_NAME "Zoom1"
58
Nishanth Menon4e8183b2014-04-08 09:50:55 -050059#define MTDIDS_DEFAULT "nand0=nand"
60#define MTDPARTS_DEFAULT "mtdparts=nand:512k(x-loader),"\
61 "1920k(u-boot),128k(u-boot-env),"\
62 "4m(kernel),-(fs)"
Dirk Behme7379f452009-01-28 21:40:16 +010063
Nishanth Menon161d2d52014-04-08 09:50:58 -050064#if defined(CONFIG_CMD_NAND)
pekon gupta434f2cf2014-07-18 17:59:42 +053065/* NAND: SPL falcon mode configs */
66#ifdef CONFIG_SPL_OS_BOOT
67#define CONFIG_CMD_SPL_NAND_OFS 0x240000
68#define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000
69#define CONFIG_CMD_SPL_WRITE_SIZE 0x2000
70#endif
Nishanth Menone7deec12009-02-02 18:20:12 -060071#define CONFIG_CMD_NAND_LOCK_UNLOCK /* Enable lock/unlock support */
Nishanth Menon161d2d52014-04-08 09:50:58 -050072#endif
Dirk Behme7379f452009-01-28 21:40:16 +010073
Nishanth Menon161d2d52014-04-08 09:50:58 -050074#undef CONFIG_SYS_I2C_OMAP24XX
Heiko Schocher6789e842013-10-22 11:03:18 +020075#define CONFIG_SYS_I2C_OMAP34XX
Dirk Behme7379f452009-01-28 21:40:16 +010076
77/*
Tom Rixcd782632009-06-28 12:52:29 -050078 * TWL4030
79 */
Tom Rix2c155132009-06-28 12:52:30 -050080#define CONFIG_TWL4030_LED 1
Tom Rixcd782632009-06-28 12:52:29 -050081
82/*
Dirk Behme7379f452009-01-28 21:40:16 +010083 * Board NAND Info.
84 */
Dirk Behme7379f452009-01-28 21:40:16 +010085#define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */
86 /* to access nand */
87#define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */
88 /* to access nand at */
89 /* CS0 */
Stefano Babic55f1b392015-07-26 15:18:15 +020090#define CONFIG_SYS_NAND_BUSWIDTH_16BIT
Dirk Behme7379f452009-01-28 21:40:16 +010091
92/* Environment information */
Dirk Behme7379f452009-01-28 21:40:16 +010093
94#define CONFIG_EXTRA_ENV_SETTINGS \
95 "loadaddr=0x82000000\0" \
Nishanth Menonc2e7c7b2014-04-08 09:50:56 -050096 "fdtaddr=0x80f80000\0" \
Nishanth Menon4e8183b2014-04-08 09:50:55 -050097 "bootfile=uImage\0" \
Nishanth Menonc2e7c7b2014-04-08 09:50:56 -050098 "fdtfile=omap3-ldp.dtb\0" \
Nishanth Menon4e8183b2014-04-08 09:50:55 -050099 "bootdir=/\0" \
100 "bootpart=0:1\0" \
Tom Rix05be5a62009-10-31 12:37:42 -0500101 "usbtty=cdc_acm\0" \
Nishanth Menonea467c72014-04-08 09:50:57 -0500102 "console=ttyO2,115200n8\0" \
Tom Rinid6906cb2011-09-03 21:50:35 -0400103 "mmcdev=0\0" \
Dirk Behme7379f452009-01-28 21:40:16 +0100104 "videomode=1024x768@60,vxres=1024,vyres=768\0" \
105 "videospec=omapfb:vram:2M,vram:4M\0" \
106 "mmcargs=setenv bootargs console=${console} " \
107 "video=${videospec},mode:${videomode} " \
108 "root=/dev/mmcblk0p2 rw " \
109 "rootfstype=ext3 rootwait\0" \
110 "nandargs=setenv bootargs console=${console} " \
111 "video=${videospec},mode:${videomode} " \
112 "root=/dev/mtdblock4 rw " \
113 "rootfstype=jffs2\0" \
Tom Rinid6906cb2011-09-03 21:50:35 -0400114 "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
Dirk Behme7379f452009-01-28 21:40:16 +0100115 "bootscript=echo Running bootscript from mmc ...; " \
Wolfgang Denk74de7ae2009-04-01 23:34:12 +0200116 "source ${loadaddr}\0" \
Nishanth Menon4e8183b2014-04-08 09:50:55 -0500117 "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
Nishanth Menonc2e7c7b2014-04-08 09:50:56 -0500118 "loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
119 "loadzimage=setenv bootfile zImage; if run loadimage; then run loadfdt;fi\0"\
Dirk Behme7379f452009-01-28 21:40:16 +0100120 "mmcboot=echo Booting from mmc ...; " \
121 "run mmcargs; " \
122 "bootm ${loadaddr}\0" \
Nishanth Menonc2e7c7b2014-04-08 09:50:56 -0500123 "mmczboot=echo Booting from mmc ...; " \
124 "run mmcargs; " \
125 "bootz ${loadaddr} - ${fdtaddr}\0" \
Dirk Behme7379f452009-01-28 21:40:16 +0100126 "nandboot=echo Booting from nand ...; " \
127 "run nandargs; " \
128 "nand read ${loadaddr} 280000 400000; " \
129 "bootm ${loadaddr}\0" \
130
131#define CONFIG_BOOTCOMMAND \
Andrew Bradford66968112012-10-01 05:06:52 +0000132 "mmc dev ${mmcdev}; if mmc rescan; then " \
Dirk Behme7379f452009-01-28 21:40:16 +0100133 "if run loadbootscript; then " \
134 "run bootscript; " \
135 "else " \
Nishanth Menon4e8183b2014-04-08 09:50:55 -0500136 "if run loadimage; then " \
Dirk Behme7379f452009-01-28 21:40:16 +0100137 "run mmcboot; " \
Nishanth Menonc2e7c7b2014-04-08 09:50:56 -0500138 "else if run loadzimage; then " \
139 "run mmczboot; " \
Dirk Behme7379f452009-01-28 21:40:16 +0100140 "else run nandboot; " \
Nishanth Menonc2e7c7b2014-04-08 09:50:56 -0500141 "fi; fi;" \
Dirk Behme7379f452009-01-28 21:40:16 +0100142 "fi; " \
143 "else run nandboot; fi"
144
Dirk Behme7379f452009-01-28 21:40:16 +0100145/*
146 * Miscellaneous configurable options
147 */
Nishanth Menon161d2d52014-04-08 09:50:58 -0500148#define CONFIG_SYS_MEMTEST_START (PHYS_SDRAM_1) /* memtest */
149#define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_2 + \
Dirk Behme7379f452009-01-28 21:40:16 +0100150 0x01F00000) /* 31MB */
151
Dirk Behme7379f452009-01-28 21:40:16 +0100152/*-----------------------------------------------------------------------
153 * FLASH and environment organization
154 */
155
156/* **** PISMO SUPPORT *** */
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -0400157#if defined(CONFIG_CMD_NAND)
pekon gupta222a3112014-07-18 17:59:41 +0530158#define CONFIG_SYS_FLASH_BASE NAND_BASE
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -0400159#endif
Dirk Behme7379f452009-01-28 21:40:16 +0100160
161/* Monitor at start of flash */
162#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
163#define CONFIG_SYS_ONENAND_BASE ONENAND_MAP
164
165#define CONFIG_ENV_IS_IN_NAND 1
166#define ONENAND_ENV_OFFSET 0x260000 /* environment starts here */
167#define SMNAND_ENV_OFFSET 0x260000 /* environment starts here */
168
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -0400169#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
170#define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET
Dirk Behme7379f452009-01-28 21:40:16 +0100171#define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET
172
Nishanth Menon9d70e772014-04-08 09:50:53 -0500173#ifdef CONFIG_CMD_NET
174/* Ethernet (LAN9211 from SMSC9118 family) */
175#define CONFIG_SMC911X
176#define CONFIG_SMC911X_32_BIT
177#define CONFIG_SMC911X_BASE DEBUG_BASE
178
179#endif
180
Dirk Behme7379f452009-01-28 21:40:16 +0100181#endif /* __CONFIG_H */