blob: a4ba7dbcc56ba668965915b33d62b61f809c2a74 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Dirk Behmebab104e2009-01-28 21:40:16 +01002/*
3 * (C) Copyright 2006-2008
4 * Texas Instruments.
5 * Richard Woodruff <r-woodruff2@ti.com>
6 * Syed Mohammed Khasim <x0khasim@ti.com>
7 * Nishanth Menon <nm@ti.com>
8 *
9 * Configuration settings for the TI OMAP3430 Zoom MDK board.
Dirk Behmebab104e2009-01-28 21:40:16 +010010 */
11
12#ifndef __CONFIG_H
13#define __CONFIG_H
Dirk Behmebab104e2009-01-28 21:40:16 +010014
Dirk Behmebab104e2009-01-28 21:40:16 +010015#include <asm/arch/cpu.h> /* get chip and board defs */
Nishanth Menonfa96c962015-03-09 17:12:04 -050016#include <asm/arch/omap.h>
Nishanth Menon91039282014-04-08 09:50:58 -050017#include <configs/ti_omap3_common.h>
18
19/* Remove SPL boot option - we do not support that on LDP yet */
Nishanth Menon91039282014-04-08 09:50:58 -050020
21/* Generic NAND definition conflicts with debug_base */
22#undef CONFIG_SYS_NAND_BASE
Dirk Behmebab104e2009-01-28 21:40:16 +010023
Dirk Behmebab104e2009-01-28 21:40:16 +010024#define CONFIG_REVISION_TAG 1
25
Dirk Behmebab104e2009-01-28 21:40:16 +010026/*
27 * Hardware drivers
28 */
Dirk Behmebab104e2009-01-28 21:40:16 +010029
Tom Rixdd679ff2009-10-31 12:37:42 -050030/* USB device configuration */
31#define CONFIG_USB_DEVICE 1
32#define CONFIG_USB_TTY 1
Tom Rixdd679ff2009-10-31 12:37:42 -050033/* Change these to suit your needs */
34#define CONFIG_USBD_VENDORID 0x0451
35#define CONFIG_USBD_PRODUCTID 0x5678
36#define CONFIG_USBD_MANUFACTURER "Texas Instruments"
37#define CONFIG_USBD_PRODUCT_NAME "Zoom1"
38
Nishanth Menon91039282014-04-08 09:50:58 -050039#if defined(CONFIG_CMD_NAND)
pekon gupta7909b6d2014-07-18 17:59:42 +053040/* NAND: SPL falcon mode configs */
41#ifdef CONFIG_SPL_OS_BOOT
pekon gupta7909b6d2014-07-18 17:59:42 +053042#define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000
pekon gupta7909b6d2014-07-18 17:59:42 +053043#endif
Nishanth Menon91039282014-04-08 09:50:58 -050044#endif
Dirk Behmebab104e2009-01-28 21:40:16 +010045
Dirk Behmebab104e2009-01-28 21:40:16 +010046/*
Tom Rix330a90a2009-06-28 12:52:29 -050047 * TWL4030
48 */
Tom Rix330a90a2009-06-28 12:52:29 -050049
50/*
Dirk Behmebab104e2009-01-28 21:40:16 +010051 * Board NAND Info.
52 */
Dirk Behmebab104e2009-01-28 21:40:16 +010053#define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */
54 /* to access nand at */
55 /* CS0 */
Dirk Behmebab104e2009-01-28 21:40:16 +010056
57/* Environment information */
Dirk Behmebab104e2009-01-28 21:40:16 +010058
59#define CONFIG_EXTRA_ENV_SETTINGS \
60 "loadaddr=0x82000000\0" \
Nishanth Menon84218b52014-04-08 09:50:56 -050061 "fdtaddr=0x80f80000\0" \
Nishanth Menon34f5e0a2014-04-08 09:50:55 -050062 "bootfile=uImage\0" \
Nishanth Menon84218b52014-04-08 09:50:56 -050063 "fdtfile=omap3-ldp.dtb\0" \
Nishanth Menon34f5e0a2014-04-08 09:50:55 -050064 "bootdir=/\0" \
65 "bootpart=0:1\0" \
Tom Rixdd679ff2009-10-31 12:37:42 -050066 "usbtty=cdc_acm\0" \
Nishanth Menon46c11122014-04-08 09:50:57 -050067 "console=ttyO2,115200n8\0" \
Tom Rinifba34162011-09-03 21:50:35 -040068 "mmcdev=0\0" \
Dirk Behmebab104e2009-01-28 21:40:16 +010069 "videomode=1024x768@60,vxres=1024,vyres=768\0" \
70 "videospec=omapfb:vram:2M,vram:4M\0" \
71 "mmcargs=setenv bootargs console=${console} " \
72 "video=${videospec},mode:${videomode} " \
73 "root=/dev/mmcblk0p2 rw " \
74 "rootfstype=ext3 rootwait\0" \
75 "nandargs=setenv bootargs console=${console} " \
76 "video=${videospec},mode:${videomode} " \
77 "root=/dev/mtdblock4 rw " \
78 "rootfstype=jffs2\0" \
Tom Rinifba34162011-09-03 21:50:35 -040079 "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
Dirk Behmebab104e2009-01-28 21:40:16 +010080 "bootscript=echo Running bootscript from mmc ...; " \
Wolfgang Denk85c25df2009-04-01 23:34:12 +020081 "source ${loadaddr}\0" \
Nishanth Menon34f5e0a2014-04-08 09:50:55 -050082 "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
Nishanth Menon84218b52014-04-08 09:50:56 -050083 "loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
84 "loadzimage=setenv bootfile zImage; if run loadimage; then run loadfdt;fi\0"\
Dirk Behmebab104e2009-01-28 21:40:16 +010085 "mmcboot=echo Booting from mmc ...; " \
86 "run mmcargs; " \
87 "bootm ${loadaddr}\0" \
Nishanth Menon84218b52014-04-08 09:50:56 -050088 "mmczboot=echo Booting from mmc ...; " \
89 "run mmcargs; " \
90 "bootz ${loadaddr} - ${fdtaddr}\0" \
Dirk Behmebab104e2009-01-28 21:40:16 +010091 "nandboot=echo Booting from nand ...; " \
92 "run nandargs; " \
93 "nand read ${loadaddr} 280000 400000; " \
94 "bootm ${loadaddr}\0" \
95
96#define CONFIG_BOOTCOMMAND \
Andrew Bradforde1c7c8a2012-10-01 05:06:52 +000097 "mmc dev ${mmcdev}; if mmc rescan; then " \
Dirk Behmebab104e2009-01-28 21:40:16 +010098 "if run loadbootscript; then " \
99 "run bootscript; " \
100 "else " \
Nishanth Menon34f5e0a2014-04-08 09:50:55 -0500101 "if run loadimage; then " \
Dirk Behmebab104e2009-01-28 21:40:16 +0100102 "run mmcboot; " \
Nishanth Menon84218b52014-04-08 09:50:56 -0500103 "else if run loadzimage; then " \
104 "run mmczboot; " \
Dirk Behmebab104e2009-01-28 21:40:16 +0100105 "else run nandboot; " \
Nishanth Menon84218b52014-04-08 09:50:56 -0500106 "fi; fi;" \
Dirk Behmebab104e2009-01-28 21:40:16 +0100107 "fi; " \
108 "else run nandboot; fi"
109
Dirk Behmebab104e2009-01-28 21:40:16 +0100110/*
111 * Miscellaneous configurable options
112 */
Nishanth Menon91039282014-04-08 09:50:58 -0500113#define CONFIG_SYS_MEMTEST_START (PHYS_SDRAM_1) /* memtest */
114#define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_2 + \
Dirk Behmebab104e2009-01-28 21:40:16 +0100115 0x01F00000) /* 31MB */
116
Dirk Behmebab104e2009-01-28 21:40:16 +0100117/*-----------------------------------------------------------------------
118 * FLASH and environment organization
119 */
120
121/* **** PISMO SUPPORT *** */
Luca Ceresoli9783a2c2011-04-20 11:02:05 -0400122#if defined(CONFIG_CMD_NAND)
pekon gupta0a9ec452014-07-18 17:59:41 +0530123#define CONFIG_SYS_FLASH_BASE NAND_BASE
Luca Ceresoli9783a2c2011-04-20 11:02:05 -0400124#endif
Dirk Behmebab104e2009-01-28 21:40:16 +0100125
126/* Monitor at start of flash */
127#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
128#define CONFIG_SYS_ONENAND_BASE ONENAND_MAP
129
Dirk Behmebab104e2009-01-28 21:40:16 +0100130#define ONENAND_ENV_OFFSET 0x260000 /* environment starts here */
Dirk Behmebab104e2009-01-28 21:40:16 +0100131
Luca Ceresoli9783a2c2011-04-20 11:02:05 -0400132#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
Dirk Behmebab104e2009-01-28 21:40:16 +0100133
Dirk Behmebab104e2009-01-28 21:40:16 +0100134#endif /* __CONFIG_H */