From: Greg Ungerer <gerg@snapgear.com>
To: Nishanth Menon <nm@ti.com>
Cc: "linux-omap@vger.kernel.org" <linux-omap@vger.kernel.org>
Subject: Re: OMAP3: Linux Without a Boot Loader?
Date: Tue, 27 Apr 2010 13:53:41 +1000 [thread overview]
Message-ID: <4BD65FC5.7060205@snapgear.com> (raw)
In-Reply-To: <4BD61F7D.3060208@ti.com>
Hi Nishanth,
Nishanth Menon wrote:
> Hi,
> Before I start, a Disclaimer:
> This is more of a "can it be done" project, Don't do this to a
> production device and flame me.. at least not yet, IMHO ;)
>
> In ELC2010(SFO), Greg Ungerer showed how to do a boot of kernel without
> the need for a bootloader.
> http://elinux.org/ELC_2010_Presentations
> http://elinux.org/images/7/7b/LinuxWithoutABootLoader.pdf
>
> How does this help?
> a) Use kernel as a bootloader in itself:
> http://elinux.org/images/2/2f/ELC-2010-Damm-Kexec.pdf
> b) One more way to shift to using Device trees to describe connectivity
> and peripherals (Grant Likely's work)
> http://elinux.org/images/b/b6/ARM_Device_Tree_Status_Report.pdf
> c) Today some features are assumed(wrongly) to be already set in the
> bootloader (such as pin muxing etc..). as a community whose code is used
> in many products, we all know the variant bootloaders folks use (some
> properitary and some community). kernel assumptions are sometimes proven
> wrong when someone tries the kernel on thier own inhouse bootloader.
> d) Reduce dependency on numerous u-boot, x-loader versions.
> e) many bootloaders dont have advanced support such as filesystem, usb
> host etc.. kinda a pain when you have to do things twice - do it once in
> kernel, then again for a bootloader..
>
> Few more things I can think about, but I was interested in seeing if I
> could get it running on OMAP3..
>
> What was done:
> As a proof of concept for OMAP3 (SDP3630 with OMAP3630), I formatted a
> standard kernel build (bzImage) as I describe below and flashed it to
> nand partition 0 using mmc boot. Then switched to nand boot and I have
> kernel booting off the flash without x-loader.
>
> Configuration header allows any image to boot off a I/O device such as
> MMC/NAND device straight into SDRAM and proceed execution. ARM kernel
> has a few additional requirements that CH is unable to cater to,
> including disabling Caches/interrupts, setting up ATAGs, r0,r1,r2
> settings with mach-id etc..
>
> So I wrote a small code, which I called sty which setups the environment
> for the kernel piggy to start off on.. sty is something you'd put in the
> arch/arm/boot/head-xyz.S except I have kept it away from the kernel to
> allow for independent development given multiple boards out there..
>
> to describe the board, omap-uboot-utils has a configuration file in
> configs/ which describes the machine ID, bootargs, sdrc config, dpll
> settings etc.. things like sdrc_config, mach_id etc could potentially
> change for platforms, but is mostly a copy paste from existing file..
>
> The final image looks as follows:
> +---------------------+
> | Configuration |
> | Header |
> +---------------------+
> | "Sty" |
> +---------------------+
> | kernel piggy |
> | bzImage |
> +---------------------+
>
> Image creation steps:
> make bzImage, copy the arch/arm/boot/zImage to required location,
> ./tagger -c configs/sample-3630.cfg -f zImage
> ./gpsign -c configs/sample-3630.cfg -f zImage.tag
>
> I need to probably add some decent documentation around it, but please
> feel free to poke around - it is pretty simple code..
Nicely done :-)
Have you put up the "Sty" code anywhere for us to look at?
Regards
Greg
> Risks:
> * Nand flash is pretty notorious for generating bad blocks run time..
> since the image written is pretty big, flash blocks in that area could
> effectively kill you boot till u reflash again..
>
>
> Future work:
> [3] shows how to boot from an MMC card with u-boot (and no MLO). I
> expect this to work with kernel as well..
> * maybe more.. left to everyone's imagination ofcourse ;)
>
> References:
> -----------
> Arm booting requirements:
> http://www.arm.linux.org.uk/developer/booting.php (or you can use the
> google's cached version while Russel gets his network back)
>
> Logs:
> [1] Flashing Steps: http://pastebin.mozilla.org/718671
> [2] Power on in NAND boot log: http://pastebin.mozilla.org/718674
>
> Kernel used:
> git://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-omap-pm.git
> (pm branch)
> Commit: 5914a1c9bd8083c65dcdaccae2c458e254573afb
>
> Omap-uboot-utils used:
> git://github.com/nmenon/omap-u-boot-utils.git (wip-taggersty branch)
> Commit: 76a4328253fd53dbebea517f2339a7389d8242e1
> (the utlity tagger is mostly a collection of code snippets from
> u-boot.. so the licensing remains the same.. in case you are wondering..
> ;) )..
>
> MMC boot without x-loader:
> [3]
> http://omapedia.org/wiki/E-MMC_boot#You_can_boot_omap3630_without_x-loader
--
------------------------------------------------------------------------
Greg Ungerer -- Principal Engineer EMAIL: gerg@snapgear.com
SnapGear Group, McAfee PHONE: +61 7 3435 2888
8 Gardner Close FAX: +61 7 3217 5323
Milton, QLD, 4064, Australia WEB: http://www.SnapGear.com
next prev parent reply other threads:[~2010-04-27 3:53 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-04-26 23:19 OMAP3: Linux Without a Boot Loader? Nishanth Menon
2010-04-27 0:22 ` Juha Kuikka
2010-04-27 1:31 ` Nishanth Menon
2010-04-27 3:53 ` Greg Ungerer
2010-04-27 3:53 ` Greg Ungerer [this message]
2010-04-27 10:31 ` Nishanth Menon
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=4BD65FC5.7060205@snapgear.com \
--to=gerg@snapgear.com \
--cc=linux-omap@vger.kernel.org \
--cc=nm@ti.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.