From: Maxime Ripard <maxime.ripard@free-electrons.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [linux-sunxi] Re: [PATCH v1 8/9] sunxi: non-FEL SPL boot support for sun7i
Date: Tue, 18 Mar 2014 09:22:50 +0100 [thread overview]
Message-ID: <20140318082250.GR27873@lukather> (raw)
In-Reply-To: <20140317193319.GA16360@bill-the-cat>
On Mon, Mar 17, 2014 at 03:33:19PM -0400, Tom Rini wrote:
> On Sun, Mar 16, 2014 at 03:19:40PM +0000, Ian Campbell wrote:
> > On Fri, 2014-03-14 at 15:03 -0400, Tom Rini wrote:
> > > On 03/14/2014 02:50 PM, Hans de Goede wrote:
> > > > Hi,
> > > >
> > > > On 03/14/2014 03:17 PM, Tom Rini wrote:
> > > >> On Fri, Mar 14, 2014 at 10:33:50AM +0000, Ian Campbell wrote:
> > > >>
> > > >>> Based linux-sunxi#sunxi commit d854c4de2f57 "arm: Handle .gnu.hash section in
> > > >>> ldscripts" vs v2014.01.
> > > >> [snip]
> > > >>> +/* Flat Device Tree (FDT/DT) support */
> > > >>> +#define CONFIG_OF_LIBFDT
> > > >>> +#define CONFIG_SYS_BOOTMAPSZ (16 << 20)
> > > >>
> > > >> This seems pretty small. This is to keep things from being relocated
> > > >> into highmem right?
> > > >
> > > > Hmm, this reminds me that we currently need to do a "env set fdt_high ffffffff"
> > > > in our boot scripts to get ftd to work at all. Would be nice to fix this for
> > > > upstream. I'm afraid I'm clueless as to why we (sunxi) need it, but we do.
> > >
> > > You want to be setting bootm_low (even for bootz, it's about the
> > > underlying boot mechanics that bootz and bootelf and ... hook into) to
> > > the amount of lowmem the kernel will have. We do this because we do
> > > want to make sure that the device tree isn't overwritten by the kernel
> > > BSS or similar. Everyone with more DDR than kernel lowmem needs to be
> > > doing something along these lines.
> >
> > So, I'm confused about what to do here ;-)
>
> And I've not made things clearer with a mis-recollection of things. I
> don't know why I keep saying "bootm_low" when I mean "bootm_size" like
> I've done in later patches (and thankfully, when poking people on G+).
>
> There's three ways to say "Please ensure that the FDT and if passed initrd
> do not relocate above a certain location".
> 1) In the environment, set bootm_size to kernel lowmem. This means that
> boot_start_lmb restricts the pool used by both fdt and initrd to that
> value at the top.
> 2) In the environment, set fdt_high (and if using initrd, initrd_high)
> to the top of lowmem. This means that we'll make sure they don't get
> relocated above that value.
> 3) In the environment set initrd_high to top of lowmem and set
> bootm_mapsize to lowmem.
>
> In all of the above, lowmem can be replaced with any valid size that's
> also smaller than lowmem, such as 256MB. Another option, in the
> environment, is to set initrd_high and fdt_high to 0xffffffff and then
> relocation is disabled. I would _not_ recommend this in the general
> case as one of the points of relocation is to ensure we don't get
> overwritten by the kernel BSS.
IIRC, we added it not to make sure that it was in lowmem, but because
we had issues with large enough kernels (multi_v7_defconfig + embedded
initramfs) that would overwrite the relocated DTB whenever it was
decompressing itself.
--
Maxime Ripard, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140318/bfc1e468/attachment.pgp>
next prev parent reply other threads:[~2014-03-18 8:22 UTC|newest]
Thread overview: 65+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-14 10:33 [U-Boot] [PATCH v1 0/9] sunxi: initial upstreamining effort Ian Campbell
2014-03-14 10:33 ` [U-Boot] [PATCH v1 1/9] sunxi: initial sun7i clocks and timer support Ian Campbell
2014-03-14 14:16 ` Tom Rini
2014-03-14 10:33 ` [U-Boot] [PATCH v1 2/9] sunxi: initial sun7i pinmux and gpio support Ian Campbell
2014-03-14 14:17 ` Tom Rini
2014-03-14 10:33 ` [U-Boot] [PATCH v1 3/9] sunxi: initial sun7i dram setup support Ian Campbell
2014-03-14 14:17 ` Tom Rini
2014-03-14 16:28 ` [U-Boot] [linux-sunxi] " Henrik Nordström
2014-03-14 17:24 ` Luke Kenneth Casson Leighton
2014-03-17 13:16 ` [U-Boot] " Stefan
2014-03-17 14:56 ` [U-Boot] [linux-sunxi] " Ian Campbell
2014-03-14 17:23 ` [U-Boot] " Alex G.
2014-03-14 18:59 ` Tom Rini
2014-03-14 10:33 ` [U-Boot] [PATCH v1 4/9] sunxi: initial generic sun7i cpu, board and start of day support Ian Campbell
2014-03-14 14:17 ` Tom Rini
2014-03-15 15:57 ` Alex G.
2014-03-14 10:33 ` [U-Boot] [PATCH v1 5/9] sunxi: generic sun7i build infrastructure Ian Campbell
2014-03-14 14:17 ` Tom Rini
2014-03-16 13:25 ` Ian Campbell
2014-03-17 15:04 ` Tom Rini
2014-03-17 15:24 ` Ian Campbell
2014-03-14 10:33 ` [U-Boot] [PATCH v1 6/9] sunxi: add support for Cubietruck booting in FEL mode Ian Campbell
2014-03-14 14:17 ` Tom Rini
2014-03-14 10:33 ` [U-Boot] [PATCH v1 7/9] sunxi: mmc support Ian Campbell
2014-03-14 14:17 ` Tom Rini
2014-03-14 15:36 ` Pantelis Antoniou
2014-03-16 20:38 ` Ian Campbell
2014-03-17 2:13 ` [U-Boot] [linux-sunxi] " Chen-Yu Tsai
2014-03-14 10:33 ` [U-Boot] [PATCH v1 8/9] sunxi: non-FEL SPL boot support for sun7i Ian Campbell
2014-03-14 14:17 ` Tom Rini
2014-03-14 18:50 ` Hans de Goede
2014-03-14 19:03 ` Tom Rini
2014-03-16 15:19 ` Ian Campbell
2014-03-16 16:45 ` Ian Campbell
2014-03-17 15:20 ` Tom Rini
2014-03-17 15:29 ` Ian Campbell
2014-03-17 15:36 ` Tom Rini
2014-03-17 19:33 ` Tom Rini
2014-03-18 8:22 ` Maxime Ripard [this message]
2014-03-21 14:58 ` [U-Boot] [linux-sunxi] " Tom Rini
2014-03-20 19:57 ` [U-Boot] " Ian Campbell
2014-03-14 10:33 ` [U-Boot] [PATCH v1 9/9] sunxi: add gmac Ethernet support Ian Campbell
2014-03-14 11:11 ` [U-Boot] [linux-sunxi] " Chen-Yu Tsai
2014-03-14 11:28 ` Ian Campbell
2014-03-14 14:22 ` Tom Rini
2014-03-16 15:09 ` Ian Campbell
2014-03-17 15:06 ` Tom Rini
2014-03-14 14:17 ` [U-Boot] " Tom Rini
2014-03-14 12:55 ` [U-Boot] [PATCH v1 0/9] sunxi: initial upstreamining effort Tom Rini
2014-03-14 13:59 ` Ian Campbell
2014-03-14 14:19 ` Tom Rini
2014-03-14 15:01 ` Albert ARIBAUD
2014-03-14 19:07 ` Hans de Goede
2014-03-14 19:11 ` Hans de Goede
2014-03-14 13:02 ` Albert ARIBAUD
2014-03-14 13:13 ` Maxime Ripard
2014-03-14 14:03 ` Ian Campbell
2014-03-14 14:16 ` Tom Rini
2014-03-14 15:04 ` Ian Campbell
2014-03-14 15:13 ` Tom Rini
2014-03-14 20:17 ` Dennis Gilmore
2014-03-15 16:02 ` Hans de Goede
2014-03-16 7:49 ` Ian Campbell
2014-03-14 14:31 ` Marek Vasut
2014-03-14 15:21 ` Henrik Nordström
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140318082250.GR27873@lukather \
--to=maxime.ripard@free-electrons.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox