blob: 0a02ecdc149767b98fa69fbbf2bd618750f43d31 [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
Sandeep Paulraj6a87b3f2009-09-09 11:50:40 -040026#define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
Dirk Behmebab104e2009-01-28 21:40:16 +010027
28/*
29 * Hardware drivers
30 */
Dirk Behmebab104e2009-01-28 21:40:16 +010031
Tom Rixdd679ff2009-10-31 12:37:42 -050032/* USB device configuration */
33#define CONFIG_USB_DEVICE 1
34#define CONFIG_USB_TTY 1
Tom Rixdd679ff2009-10-31 12:37:42 -050035/* Change these to suit your needs */
36#define CONFIG_USBD_VENDORID 0x0451
37#define CONFIG_USBD_PRODUCTID 0x5678
38#define CONFIG_USBD_MANUFACTURER "Texas Instruments"
39#define CONFIG_USBD_PRODUCT_NAME "Zoom1"
40
Nishanth Menon91039282014-04-08 09:50:58 -050041#if defined(CONFIG_CMD_NAND)
pekon gupta7909b6d2014-07-18 17:59:42 +053042/* NAND: SPL falcon mode configs */
43#ifdef CONFIG_SPL_OS_BOOT
pekon gupta7909b6d2014-07-18 17:59:42 +053044#define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000
pekon gupta7909b6d2014-07-18 17:59:42 +053045#endif
Nishanth Menon91039282014-04-08 09:50:58 -050046#endif
Dirk Behmebab104e2009-01-28 21:40:16 +010047
Dirk Behmebab104e2009-01-28 21:40:16 +010048/*
Tom Rix330a90a2009-06-28 12:52:29 -050049 * TWL4030
50 */
Tom Rix330a90a2009-06-28 12:52:29 -050051
52/*
Dirk Behmebab104e2009-01-28 21:40:16 +010053 * Board NAND Info.
54 */
Dirk Behmebab104e2009-01-28 21:40:16 +010055#define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */
56 /* to access nand at */
57 /* CS0 */
Dirk Behmebab104e2009-01-28 21:40:16 +010058
59/* Environment information */
Dirk Behmebab104e2009-01-28 21:40:16 +010060
61#define CONFIG_EXTRA_ENV_SETTINGS \
62 "loadaddr=0x82000000\0" \
Nishanth Menon84218b52014-04-08 09:50:56 -050063 "fdtaddr=0x80f80000\0" \
Nishanth Menon34f5e0a2014-04-08 09:50:55 -050064 "bootfile=uImage\0" \
Nishanth Menon84218b52014-04-08 09:50:56 -050065 "fdtfile=omap3-ldp.dtb\0" \
Nishanth Menon34f5e0a2014-04-08 09:50:55 -050066 "bootdir=/\0" \
67 "bootpart=0:1\0" \
Tom Rixdd679ff2009-10-31 12:37:42 -050068 "usbtty=cdc_acm\0" \
Nishanth Menon46c11122014-04-08 09:50:57 -050069 "console=ttyO2,115200n8\0" \
Tom Rinifba34162011-09-03 21:50:35 -040070 "mmcdev=0\0" \
Dirk Behmebab104e2009-01-28 21:40:16 +010071 "videomode=1024x768@60,vxres=1024,vyres=768\0" \
72 "videospec=omapfb:vram:2M,vram:4M\0" \
73 "mmcargs=setenv bootargs console=${console} " \
74 "video=${videospec},mode:${videomode} " \
75 "root=/dev/mmcblk0p2 rw " \
76 "rootfstype=ext3 rootwait\0" \
77 "nandargs=setenv bootargs console=${console} " \
78 "video=${videospec},mode:${videomode} " \
79 "root=/dev/mtdblock4 rw " \
80 "rootfstype=jffs2\0" \
Tom Rinifba34162011-09-03 21:50:35 -040081 "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
Dirk Behmebab104e2009-01-28 21:40:16 +010082 "bootscript=echo Running bootscript from mmc ...; " \
Wolfgang Denk85c25df2009-04-01 23:34:12 +020083 "source ${loadaddr}\0" \
Nishanth Menon34f5e0a2014-04-08 09:50:55 -050084 "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
Nishanth Menon84218b52014-04-08 09:50:56 -050085 "loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
86 "loadzimage=setenv bootfile zImage; if run loadimage; then run loadfdt;fi\0"\
Dirk Behmebab104e2009-01-28 21:40:16 +010087 "mmcboot=echo Booting from mmc ...; " \
88 "run mmcargs; " \
89 "bootm ${loadaddr}\0" \
Nishanth Menon84218b52014-04-08 09:50:56 -050090 "mmczboot=echo Booting from mmc ...; " \
91 "run mmcargs; " \
92 "bootz ${loadaddr} - ${fdtaddr}\0" \
Dirk Behmebab104e2009-01-28 21:40:16 +010093 "nandboot=echo Booting from nand ...; " \
94 "run nandargs; " \
95 "nand read ${loadaddr} 280000 400000; " \
96 "bootm ${loadaddr}\0" \
97
98#define CONFIG_BOOTCOMMAND \
Andrew Bradforde1c7c8a2012-10-01 05:06:52 +000099 "mmc dev ${mmcdev}; if mmc rescan; then " \
Dirk Behmebab104e2009-01-28 21:40:16 +0100100 "if run loadbootscript; then " \
101 "run bootscript; " \
102 "else " \
Nishanth Menon34f5e0a2014-04-08 09:50:55 -0500103 "if run loadimage; then " \
Dirk Behmebab104e2009-01-28 21:40:16 +0100104 "run mmcboot; " \
Nishanth Menon84218b52014-04-08 09:50:56 -0500105 "else if run loadzimage; then " \
106 "run mmczboot; " \
Dirk Behmebab104e2009-01-28 21:40:16 +0100107 "else run nandboot; " \
Nishanth Menon84218b52014-04-08 09:50:56 -0500108 "fi; fi;" \
Dirk Behmebab104e2009-01-28 21:40:16 +0100109 "fi; " \
110 "else run nandboot; fi"
111
Dirk Behmebab104e2009-01-28 21:40:16 +0100112/*
113 * Miscellaneous configurable options
114 */
Nishanth Menon91039282014-04-08 09:50:58 -0500115#define CONFIG_SYS_MEMTEST_START (PHYS_SDRAM_1) /* memtest */
116#define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_2 + \
Dirk Behmebab104e2009-01-28 21:40:16 +0100117 0x01F00000) /* 31MB */
118
Dirk Behmebab104e2009-01-28 21:40:16 +0100119/*-----------------------------------------------------------------------
120 * FLASH and environment organization
121 */
122
123/* **** PISMO SUPPORT *** */
Luca Ceresoli9783a2c2011-04-20 11:02:05 -0400124#if defined(CONFIG_CMD_NAND)
pekon gupta0a9ec452014-07-18 17:59:41 +0530125#define CONFIG_SYS_FLASH_BASE NAND_BASE
Luca Ceresoli9783a2c2011-04-20 11:02:05 -0400126#endif
Dirk Behmebab104e2009-01-28 21:40:16 +0100127
128/* Monitor at start of flash */
129#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
130#define CONFIG_SYS_ONENAND_BASE ONENAND_MAP
131
Dirk Behmebab104e2009-01-28 21:40:16 +0100132#define ONENAND_ENV_OFFSET 0x260000 /* environment starts here */
Dirk Behmebab104e2009-01-28 21:40:16 +0100133
Luca Ceresoli9783a2c2011-04-20 11:02:05 -0400134#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
Adam Ford6b1c1652017-09-04 21:08:02 -0500135#define CONFIG_ENV_OFFSET 0x260000
136#define CONFIG_ENV_ADDR 0x260000
Dirk Behmebab104e2009-01-28 21:40:16 +0100137
Dirk Behmebab104e2009-01-28 21:40:16 +0100138#endif /* __CONFIG_H */