]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/omap3_zoom1.h
Merge git://git.denx.de/u-boot-mmc
[people/ms/u-boot.git] / include / configs / omap3_zoom1.h
CommitLineData
7379f45a
DB
1/*
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 *
3765b3e7 10 * SPDX-License-Identifier: GPL-2.0+
7379f45a
DB
11 */
12
13#ifndef __CONFIG_H
14#define __CONFIG_H
7379f45a 15
161d2d5e 16#define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
7379f45a 17#include <asm/arch/cpu.h> /* get chip and board defs */
987ec585 18#include <asm/arch/omap.h>
161d2d5e
NM
19#include <configs/ti_omap3_common.h>
20
21/* Remove SPL boot option - we do not support that on LDP yet */
161d2d5e
NM
22
23/* Generic NAND definition conflicts with debug_base */
24#undef CONFIG_SYS_NAND_BASE
7379f45a 25
7379f45a
DB
26#define CONFIG_MISC_INIT_R
27
7379f45a
DB
28#define CONFIG_REVISION_TAG 1
29
9c44ddcc 30#define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
7379f45a
DB
31
32/*
33 * Hardware drivers
34 */
35
05be5a60
TR
36/* USB device configuration */
37#define CONFIG_USB_DEVICE 1
38#define CONFIG_USB_TTY 1
05be5a60
TR
39/* Change these to suit your needs */
40#define CONFIG_USBD_VENDORID 0x0451
41#define CONFIG_USBD_PRODUCTID 0x5678
42#define CONFIG_USBD_MANUFACTURER "Texas Instruments"
43#define CONFIG_USBD_PRODUCT_NAME "Zoom1"
44
161d2d5e 45#if defined(CONFIG_CMD_NAND)
434f2cfc 46/* NAND: SPL falcon mode configs */
47#ifdef CONFIG_SPL_OS_BOOT
434f2cfc 48#define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000
434f2cfc 49#endif
161d2d5e 50#endif
7379f45a 51
cd782635
TR
52/*
53 * TWL4030
54 */
2c155130 55#define CONFIG_TWL4030_LED 1
cd782635 56
7379f45a
DB
57/*
58 * Board NAND Info.
59 */
7379f45a
DB
60#define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */
61 /* to access nand */
62#define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */
63 /* to access nand at */
64 /* CS0 */
7379f45a
DB
65
66/* Environment information */
7379f45a
DB
67
68#define CONFIG_EXTRA_ENV_SETTINGS \
69 "loadaddr=0x82000000\0" \
c2e7c7b2 70 "fdtaddr=0x80f80000\0" \
4e8183b7 71 "bootfile=uImage\0" \
c2e7c7b2 72 "fdtfile=omap3-ldp.dtb\0" \
4e8183b7
NM
73 "bootdir=/\0" \
74 "bootpart=0:1\0" \
05be5a60 75 "usbtty=cdc_acm\0" \
ea467c73 76 "console=ttyO2,115200n8\0" \
d6906cb8 77 "mmcdev=0\0" \
7379f45a
DB
78 "videomode=1024x768@60,vxres=1024,vyres=768\0" \
79 "videospec=omapfb:vram:2M,vram:4M\0" \
80 "mmcargs=setenv bootargs console=${console} " \
81 "video=${videospec},mode:${videomode} " \
82 "root=/dev/mmcblk0p2 rw " \
83 "rootfstype=ext3 rootwait\0" \
84 "nandargs=setenv bootargs console=${console} " \
85 "video=${videospec},mode:${videomode} " \
86 "root=/dev/mtdblock4 rw " \
87 "rootfstype=jffs2\0" \
d6906cb8 88 "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
7379f45a 89 "bootscript=echo Running bootscript from mmc ...; " \
74de7aef 90 "source ${loadaddr}\0" \
4e8183b7 91 "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
c2e7c7b2
NM
92 "loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
93 "loadzimage=setenv bootfile zImage; if run loadimage; then run loadfdt;fi\0"\
7379f45a
DB
94 "mmcboot=echo Booting from mmc ...; " \
95 "run mmcargs; " \
96 "bootm ${loadaddr}\0" \
c2e7c7b2
NM
97 "mmczboot=echo Booting from mmc ...; " \
98 "run mmcargs; " \
99 "bootz ${loadaddr} - ${fdtaddr}\0" \
7379f45a
DB
100 "nandboot=echo Booting from nand ...; " \
101 "run nandargs; " \
102 "nand read ${loadaddr} 280000 400000; " \
103 "bootm ${loadaddr}\0" \
104
105#define CONFIG_BOOTCOMMAND \
66968110 106 "mmc dev ${mmcdev}; if mmc rescan; then " \
7379f45a
DB
107 "if run loadbootscript; then " \
108 "run bootscript; " \
109 "else " \
4e8183b7 110 "if run loadimage; then " \
7379f45a 111 "run mmcboot; " \
c2e7c7b2
NM
112 "else if run loadzimage; then " \
113 "run mmczboot; " \
7379f45a 114 "else run nandboot; " \
c2e7c7b2 115 "fi; fi;" \
7379f45a
DB
116 "fi; " \
117 "else run nandboot; fi"
118
7379f45a
DB
119/*
120 * Miscellaneous configurable options
121 */
161d2d5e
NM
122#define CONFIG_SYS_MEMTEST_START (PHYS_SDRAM_1) /* memtest */
123#define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_2 + \
7379f45a
DB
124 0x01F00000) /* 31MB */
125
7379f45a
DB
126/*-----------------------------------------------------------------------
127 * FLASH and environment organization
128 */
129
130/* **** PISMO SUPPORT *** */
6cbec7b3 131#if defined(CONFIG_CMD_NAND)
222a3113 132#define CONFIG_SYS_FLASH_BASE NAND_BASE
6cbec7b3 133#endif
7379f45a
DB
134
135/* Monitor at start of flash */
136#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
137#define CONFIG_SYS_ONENAND_BASE ONENAND_MAP
138
7379f45a 139#define ONENAND_ENV_OFFSET 0x260000 /* environment starts here */
7379f45a 140
6cbec7b3 141#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
7672d9d5
AF
142#define CONFIG_ENV_OFFSET 0x260000
143#define CONFIG_ENV_ADDR 0x260000
7379f45a 144
7379f45a 145#endif /* __CONFIG_H */