mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Roy Franz <roy.franz@linaro.org>
To: linux-kernel@vger.kernel.org, linux-efi@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, matt.fleming@intel.com,
	linux@arm.linux.org.uk
Cc: leif.lindholm@linaro.org, grant.likely@linaro.org,
	dave.martin@arm.com, msalter@redhat.com, patches@linaro.org,
	Roy Franz <roy.franz@linaro.org>
Subject: [PATCH V6 1/8] efi-stub.txt updates for ARM
Date: Fri, 10 Jan 2014 08:30:10 -0800	[thread overview]
Message-ID: <1389371417-379-2-git-send-email-roy.franz@linaro.org> (raw)
In-Reply-To: <1389371417-379-1-git-send-email-roy.franz@linaro.org>

Update efi-stub.txt documentation to be more general
and not x86 specific.  Add ARM only "dtb=" command
line option description.

Signed-off-by: Roy Franz <roy.franz@linaro.org>
Acked-by: Grant Likely <grant.likely@linaro.org>
---
 Documentation/efi-stub.txt |   27 ++++++++++++++++++++-------
 1 file changed, 20 insertions(+), 7 deletions(-)

diff --git a/Documentation/efi-stub.txt b/Documentation/efi-stub.txt
index 44e6bb6..a55a0cd 100644
--- a/Documentation/efi-stub.txt
+++ b/Documentation/efi-stub.txt
@@ -1,13 +1,16 @@
 			  The EFI Boot Stub
 		     ---------------------------
 
-On the x86 platform, a bzImage can masquerade as a PE/COFF image,
-thereby convincing EFI firmware loaders to load it as an EFI
-executable. The code that modifies the bzImage header, along with the
-EFI-specific entry point that the firmware loader jumps to are
-collectively known as the "EFI boot stub", and live in
+On the x86 and ARM platforms, a kernel zImage/bzImage can masquerade
+as a PE/COFF image, thereby convincing EFI firmware loaders to load
+it as an EFI executable. The code that modifies the bzImage header,
+along with the EFI-specific entry point that the firmware loader
+jumps to are collectively known as the "EFI boot stub", and live in
 arch/x86/boot/header.S and arch/x86/boot/compressed/eboot.c,
-respectively.
+respectively. For ARM the EFI stub is implemented in
+arch/arm/boot/compressed/efi-header.S and
+arch/arm/boot/compressed/efi-stub.c. EFI stub code that is shared
+between architectures is in drivers/firmware/efi/efi-stub-helper.c.
 
 By using the EFI boot stub it's possible to boot a Linux kernel
 without the use of a conventional EFI boot loader, such as grub or
@@ -23,7 +26,9 @@ The bzImage located in arch/x86/boot/bzImage must be copied to the EFI
 System Partiion (ESP) and renamed with the extension ".efi". Without
 the extension the EFI firmware loader will refuse to execute it. It's
 not possible to execute bzImage.efi from the usual Linux file systems
-because EFI firmware doesn't have support for them.
+because EFI firmware doesn't have support for them. For ARM the
+arch/arm/boot/zImage should be copied to the system partition, and it
+may not need to be renamed.
 
 
 **** Passing kernel parameters from the EFI shell
@@ -63,3 +68,11 @@ Notice how bzImage.efi can be specified with a relative path. That's
 because the image we're executing is interpreted by the EFI shell,
 which understands relative paths, whereas the rest of the command line
 is passed to bzImage.efi.
+
+
+**** The "dtb=" option
+
+For the ARM architecture, we also need to be able to provide a device
+tree to the kernel. This is done with the "dtb=" command line option,
+and is processed in the same manner as the "initrd=" option that is
+described above.
-- 
1.7.10.4


  reply	other threads:[~2014-01-10 16:32 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-10 16:30 [PATCH V6 0/8] Add ARM EFI stub Roy Franz
2014-01-10 16:30 ` Roy Franz [this message]
2014-01-10 16:30 ` [PATCH V6 2/8] Add shared printk wrapper for consistent prefixing Roy Franz
2014-01-10 16:30 ` [PATCH V6 3/8] Add helper function to get and convert EFI command line Roy Franz
2014-01-13 15:04   ` Matt Fleming
2014-01-14 19:41     ` Roy Franz
2014-01-10 16:30 ` [PATCH V6 4/8] Add shared FDT related functions for ARM/ARM64 Roy Franz
2014-01-10 16:30 ` [PATCH V6 5/8] Add strstr to compressed string.c for ARM Roy Franz
2014-01-10 16:30 ` [PATCH V6 6/8] Add EFI stub " Roy Franz
2014-01-14  9:05   ` Ard Biesheuvel
2014-01-15  1:47     ` Roy Franz
2014-01-15  2:16       ` Roy Franz
2014-01-15  9:46         ` Ard Biesheuvel
2014-01-15 11:47         ` Leif Lindholm
2014-01-14 19:29   ` Rob Herring
2014-01-14 19:35     ` Roy Franz
2014-01-10 16:30 ` [PATCH V6 7/8] Disable stack protection for decompressor/stub Roy Franz
2014-01-10 16:30 ` [PATCH V6 8/8] Add config EFI_STUB for ARM to Kconfig Roy Franz
2014-01-13 15:07 ` [PATCH V6 0/8] Add ARM EFI stub Matt Fleming
2014-01-14 19:39   ` Roy Franz

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=1389371417-379-2-git-send-email-roy.franz@linaro.org \
    --to=roy.franz@linaro.org \
    --cc=dave.martin@arm.com \
    --cc=grant.likely@linaro.org \
    --cc=leif.lindholm@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-efi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=matt.fleming@intel.com \
    --cc=msalter@redhat.com \
    --cc=patches@linaro.org \
    /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

all inboxes | Powered by JetHome®