2 * (C) Copyright 2010-2012
3 * NVIDIA Corporation <www.nvidia.com>
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 #ifndef __TEGRA2_COMMON_POST_H
25 #define __TEGRA2_COMMON_POST_H
27 #ifdef CONFIG_BOOTCOMMAND
29 #define BOOTCMDS_COMMON ""
33 #ifdef CONFIG_CMD_EXT2
34 #define BOOT_FSTYPE_EXT2 "ext2 "
36 #define BOOT_FSTYPE_EXT2 ""
40 #define BOOT_FSTYPE_FAT "fat"
42 #define BOOT_FSTYPE_FAT ""
46 #define BOOTCMDS_MMC \
48 "setenv devtype mmc; " \
49 "if mmc dev ${devnum}; then " \
52 "bootcmd_mmc0=setenv devnum 0; run mmc_boot;\0" \
53 "bootcmd_mmc1=setenv devnum 1; run mmc_boot;\0"
54 #define BOOT_TARGETS_MMC "mmc1 mmc0"
56 #define BOOTCMDS_MMC ""
57 #define BOOT_TARGETS_MMC ""
61 #define BOOTCMD_INIT_USB "run usb_init; "
62 #define BOOTCMDS_USB \
64 "if ${usb_need_init}; then " \
65 "set usb_need_init false; " \
70 "setenv devtype usb; " \
72 "if usb dev ${devnum}; then " \
76 "bootcmd_usb0=setenv devnum 0; run usb_boot;\0"
77 #define BOOT_TARGETS_USB "usb0"
79 #define BOOTCMD_INIT_USB ""
80 #define BOOTCMDS_USB ""
81 #define BOOT_TARGETS_USB ""
84 #ifdef CONFIG_CMD_DHCP
85 #define BOOTCMDS_DHCP \
88 "if dhcp ${scriptaddr} boot.scr.uimg; then "\
89 "source ${scriptaddr}; " \
91 #define BOOT_TARGETS_DHCP "dhcp"
93 #define BOOTCMDS_DHCP ""
94 #define BOOT_TARGETS_DHCP ""
97 #define BOOTCMDS_COMMON \
98 "scriptaddr=0x400000\0" \
103 "if ${fs}load ${devtype} ${devnum}:${rootpart} " \
104 "${scriptaddr} ${prefix}${script}; then " \
105 "echo ${script} found! Executing ...;" \
106 "source ${scriptaddr};" \
110 "echo Scanning ${devtype} ${devnum}...; " \
111 "for fs in ${boot_fstypes}; do " \
112 "for prefix in ${boot_prefixes}; do " \
113 "for script in ${boot_scripts}; do " \
114 "run script_boot; " \
120 BOOT_TARGETS_MMC " " \
121 BOOT_TARGETS_USB " " \
122 BOOT_TARGETS_DHCP " " \
126 BOOT_FSTYPE_EXT2 " " \
127 BOOT_FSTYPE_FAT " " \
130 "boot_prefixes=/ /boot/\0" \
132 "boot_scripts=boot.scr.uimg boot.scr\0" \
138 #define CONFIG_BOOTCOMMAND \
139 "for target in ${boot_targets}; do run bootcmd_${target}; done"
143 #define CONFIG_EXTRA_ENV_SETTINGS \
144 TEGRA2_DEVICE_SETTINGS \
145 "fdt_load=0x01000000\0" \
146 "fdt_high=01100000\0" \
149 #endif /* __TEGRA2_COMMON_POST_H */