All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexander Graf <agraf@suse.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 07/11] sandbox: Map host memory for efi_loader
Date: Thu, 14 Jun 2018 18:33:30 +0200	[thread overview]
Message-ID: <20180614163334.46827-8-agraf@suse.de> (raw)
In-Reply-To: <20180614163334.46827-1-agraf@suse.de>

With efi_loader we do not control payload applications, so we can not
teach them about the difference between virtual and physical addresses.

Instead, let's just always map host virtual addresses in the efi memory
map. That way we can be sure that all memory allocation functions always
return consumable pointers.

Signed-off-by: Alexander Graf <agraf@suse.de>
---
 arch/sandbox/cpu/cpu.c | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/arch/sandbox/cpu/cpu.c b/arch/sandbox/cpu/cpu.c
index cde0b055a6..b4f1e22cb2 100644
--- a/arch/sandbox/cpu/cpu.c
+++ b/arch/sandbox/cpu/cpu.c
@@ -5,6 +5,7 @@
 #define DEBUG
 #include <common.h>
 #include <dm.h>
+#include <efi_loader.h>
 #include <errno.h>
 #include <linux/libfdt.h>
 #include <os.h>
@@ -177,3 +178,18 @@ void longjmp(jmp_buf jmp, int ret)
 	while (1)
 		;
 }
+
+/*
+ * In sandbox, we don't have a 1:1 map, so we need to expose
+ * process addresses instead of U-Boot addresses
+ */
+void efi_add_known_memory(void)
+{
+	u64 ram_start = (uintptr_t)map_sysmem(0, gd->ram_size);
+	u64 ram_size = gd->ram_size;
+	u64 start = (ram_start + EFI_PAGE_MASK) & ~EFI_PAGE_MASK;
+	u64 pages = (ram_size + EFI_PAGE_MASK) >> EFI_PAGE_SHIFT;
+
+	efi_add_memory_map(start, pages, EFI_CONVENTIONAL_MEMORY,
+			   false);
+}
-- 
2.12.3

  parent reply	other threads:[~2018-06-14 16:33 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-14 16:33 [U-Boot] [PATCH 00/11] sandbox: efi_loader support Alexander Graf
2018-06-14 16:33 ` [U-Boot] [PATCH 01/11] efi: sandbox: Add distroboot support Alexander Graf
2018-06-14 16:33 ` [U-Boot] [PATCH 02/11] efi: sandbox: Add relocation constants Alexander Graf
2018-06-14 16:33 ` [U-Boot] [PATCH 03/11] efi_loader: Use compiler constants for image loader Alexander Graf
2018-06-14 16:33 ` [U-Boot] [PATCH 04/11] efi_loader: Use map_sysmem() in bootefi command Alexander Graf
2018-06-14 16:33 ` [U-Boot] [PATCH 05/11] efi.h: Do not use config options Alexander Graf
2018-06-14 16:33 ` [U-Boot] [PATCH 06/11] efi_loader: Allow SMBIOS tables in highmem Alexander Graf
2018-06-14 16:33 ` Alexander Graf [this message]
2018-06-14 16:33 ` [U-Boot] [PATCH 08/11] efi_loader: efi_allocate_pages is too restrictive Alexander Graf
2018-06-14 16:33 ` [U-Boot] [PATCH 09/11] efi_loader: Disable miniapps on sandbox Alexander Graf
2018-06-14 16:33 ` [U-Boot] [PATCH 10/11] efi_loader: Pass virtual address to fs_read() Alexander Graf
2018-06-14 16:55   ` Simon Glass
2018-06-14 16:33 ` [U-Boot] [PATCH 11/11] efi: sandbox: Enable EFI loader for sandbox Alexander Graf
2018-06-14 16:55 ` [U-Boot] [PATCH 00/11] sandbox: efi_loader support Simon Glass
2018-06-14 17:10   ` Alexander Graf

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=20180614163334.46827-8-agraf@suse.de \
    --to=agraf@suse.de \
    --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 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.