xref: /rk3399_rockchip-uboot/include/configs/plutux.h (revision 3f82d89d3de76acf86279815a7752f7c04d043a2)
14026aca6SThierry Reding /*
24026aca6SThierry Reding  *  (C) Copyright 2010,2011
34026aca6SThierry Reding  *  NVIDIA Corporation <www.nvidia.com>
44026aca6SThierry Reding  *  (C) Copyright 2011
54026aca6SThierry Reding  *  Avionic Design GmbH <www.avionic-design.de>
64026aca6SThierry Reding  *
74026aca6SThierry Reding  * See file CREDITS for list of people who contributed to this
84026aca6SThierry Reding  * project.
94026aca6SThierry Reding  *
104026aca6SThierry Reding  * This program is free software; you can redistribute it and/or
114026aca6SThierry Reding  * modify it under the terms of the GNU General Public License as
124026aca6SThierry Reding  * published by the Free Software Foundation; either version 2 of
134026aca6SThierry Reding  * the License, or (at your option) any later version.
144026aca6SThierry Reding  *
154026aca6SThierry Reding  * This program is distributed in the hope that it will be useful,
164026aca6SThierry Reding  * but WITHOUT ANY WARRANTY; without even the implied warranty of
174026aca6SThierry Reding  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
184026aca6SThierry Reding  * GNU General Public License for more details.
194026aca6SThierry Reding  *
204026aca6SThierry Reding  * You should have received a copy of the GNU General Public License
214026aca6SThierry Reding  * along with this program; if not, write to the Free Software
224026aca6SThierry Reding  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
234026aca6SThierry Reding  * MA 02111-1307 USA
244026aca6SThierry Reding  */
254026aca6SThierry Reding 
264026aca6SThierry Reding #ifndef __CONFIG_H
274026aca6SThierry Reding #define __CONFIG_H
284026aca6SThierry Reding 
294026aca6SThierry Reding #include "tegra2-common.h"
304026aca6SThierry Reding 
314026aca6SThierry Reding /* High-level configuration options */
324026aca6SThierry Reding #define V_PROMPT			"Tegra2 (Plutux) # "
334026aca6SThierry Reding #define CONFIG_TEGRA2_BOARD_STRING	"Avionic Design Plutux"
344026aca6SThierry Reding #define CONFIG_SYS_BOARD_ODMDATA	0x2b2d8011
354026aca6SThierry Reding 
364026aca6SThierry Reding /* Board-specific serial config */
374026aca6SThierry Reding #define CONFIG_SERIAL_MULTI
384026aca6SThierry Reding #define CONFIG_TEGRA2_ENABLE_UARTD	/* UARTD: debug UART */
394026aca6SThierry Reding #define CONFIG_SYS_NS16550_COM1		NV_PA_APB_UARTD_BASE
404026aca6SThierry Reding 
414026aca6SThierry Reding #define CONFIG_BOARD_EARLY_INIT_F
424026aca6SThierry Reding 
43a783bdb8SSimon Glass #define CONFIG_ENV_IS_NOWHERE
44a783bdb8SSimon Glass 
454026aca6SThierry Reding /* SD/MMC */
464026aca6SThierry Reding #define CONFIG_MMC
474026aca6SThierry Reding #define CONFIG_GENERIC_MMC
48*3f82d89dSTom Warren #define CONFIG_TEGRA_MMC
494026aca6SThierry Reding #define CONFIG_CMD_MMC
504026aca6SThierry Reding 
514026aca6SThierry Reding #define CONFIG_DOS_PARTITION
524026aca6SThierry Reding #define CONFIG_EFI_PARTITION
534026aca6SThierry Reding #define CONFIG_CMD_EXT2
544026aca6SThierry Reding #define CONFIG_CMD_FAT
554026aca6SThierry Reding 
564026aca6SThierry Reding #define CONFIG_FIT
574026aca6SThierry Reding 
584026aca6SThierry Reding #define CONFIG_BOOTCOMMAND				\
594026aca6SThierry Reding 	"mmc rescan;"					\
604026aca6SThierry Reding 	"ext2load mmc 0 0x17000000 /boot/uImage;"	\
614026aca6SThierry Reding 	"bootm"
624026aca6SThierry Reding 
63bea2674cSStephen Warren #include "tegra2-common-post.h"
64bea2674cSStephen Warren 
654026aca6SThierry Reding #endif /* __CONFIG_H */
66