]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
ARM: tegra: set initrd_high so boot scripts work
authorStephen Warren <swarren@nvidia.com>
Thu, 19 Jun 2014 16:52:59 +0000 (10:52 -0600)
committerTom Warren <twarren@nvidia.com>
Thu, 19 Jun 2014 17:47:20 +0000 (10:47 -0700)
commitfe7b7cd26683b29bed407bf5ab778e8d80201d73
treed685eac710483fce1aa0103bfb098462dab49b30
parent72638b02f4c380879b0f90b67bcb8d1081dd2eab
ARM: tegra: set initrd_high so boot scripts work

During bootm/z, U-Boot relocates the DTB and initrd to high memory so
they are out of the way of the kernel. On ARM at least, some parts of
high memory are "highmem" and can't be accessed at early boot. To solve
this, we need to restrict this relocation process to use lower parts of
RAM that area accessible.

For the DTB, an earlier patch of mine set CONFIG_SYS_BOOTMAPSZ. However,
since some platforms have different restrictions on DTB and initrd
location, that config option doesn't affect the initrd. We need to set
the initrd_high environment variable to control the initrd relocation.

Since we have carefully chosen the load addresses for the DTB and
initrd (see comments in include/configs/tegraNNN-common.h re: values in
MEM_LAYOUT_ENV_SETTINGS), we don't actually need any DTB or initrd
relocation at all. Skipping relocation removes some redundant work.
Hence, set both fdt_high and initrd_high to ffffffff which completely
disables relocation.

If the user does something unusual, such as using custom locations for
the DTB/initrd load address or wanting to use DTB/initrd relocation for
some reason, they can simply set these variables to custom values to
override these environment defaults.

With this change, cmd_sysboot works correctly for a filesystem created
by the Fedora installer.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
include/configs/tegra-common-post.h