diff options
author | Stephen Warren <swarren@nvidia.com> | 2012-06-13 09:55:12 +0000 |
---|---|---|
committer | Albert ARIBAUD (U-Boot) <uboot@lilith.(none)> | 2012-07-09 22:44:34 +0200 |
commit | 63905f1616fc2f827e986d8e82a5a2b69f4a0e6a (patch) | |
tree | 83c3b71475aa2f9465028a8e97d0591eb8638c8e /include | |
parent | dd8ab953444798a5a34360f962bbbc42ba835af9 (diff) |
tegra: define fdt_load/fdt_high variables
These variables act like loadaddr, but for a device tree image. Defining
them in the environment allows boot scripts to be identical on Tegra20 and
Tegra30, which have different memory base addresses, and hence need
different values for these variables.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/tegra2-common-post.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/configs/tegra2-common-post.h b/include/configs/tegra2-common-post.h index 80d9c3500d3..c21fc28dfe1 100644 --- a/include/configs/tegra2-common-post.h +++ b/include/configs/tegra2-common-post.h @@ -142,6 +142,8 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ TEGRA2_DEVICE_SETTINGS \ + "fdt_load=0x01000000\0" \ + "fdt_high=01100000\0" \ BOOTCMDS_COMMON #endif /* __TEGRA2_COMMON_POST_H */ |