All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arnaud Patard (Rtp) <arnaud.patard@rtp-net.org>
To: u-boot@lists.denx.de
Subject: [patch v4 4/9] Rockchip: video: vop: Reserve efi fb memory
Date: Fri, 05 Mar 2021 11:27:49 +0100	[thread overview]
Message-ID: <20210305103307.175518624@rtp-net.org> (raw)
In-Reply-To: 20210305102745.078091129@rtp-net.org

When booting with EFI and graphics, the memory used for framebuffer
has to be reserved, otherwise it may leads to kernel memory
overwrite.

Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
Tested-by: Peter Robinson <pbrobinson@gmail.com>
Index: u-boot/drivers/video/rockchip/rk_vop.c
===================================================================
--- u-boot.orig/drivers/video/rockchip/rk_vop.c
+++ u-boot/drivers/video/rockchip/rk_vop.c
@@ -21,6 +21,8 @@
 #include <asm/arch-rockchip/vop_rk3288.h>
 #include <dm/device-internal.h>
 #include <dm/uclass-internal.h>
+#include <efi.h>
+#include <efi_loader.h>
 #include <linux/bitops.h>
 #include <linux/err.h>
 #include <power/regulator.h>
@@ -395,6 +397,11 @@ int rk_vop_probe(struct udevice *dev)
 	if (!(gd->flags & GD_FLG_RELOC))
 		return 0;
 
+#if defined(CONFIG_EFI_LOADER)
+	debug("Adding to EFI map %d @ %lx\n", plat->size, plat->base);
+	efi_add_memory_map(plat->base, plat->size, EFI_RESERVED_MEMORY_TYPE);
+#endif
+
 	priv->regs = (struct rk3288_vop *)dev_read_addr(dev);
 
 	/*

  parent reply	other threads:[~2021-03-05 10:27 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-05 10:27 [patch v4 0/9] rk3399 (Pinebook pro) EDP support Arnaud Patard
2021-03-05 10:27 ` [patch v4 1/9] rockchip: video: vop: Use endpoint compatible string to find VOP mode Arnaud Patard
2021-03-05 10:27 ` [patch v4 2/9] rockchip: video: edp: Add rk3399 support Arnaud Patard
2021-03-05 10:27 ` [patch v4 3/9] Rockchip: video: edp: Change interrupt polarity configuration Arnaud Patard
2021-03-05 10:27 ` Arnaud Patard [this message]
2021-03-05 10:27 ` [patch v4 5/9] rockchip: Pinebook Pro: Enable edp Arnaud Patard
2021-03-05 10:27 ` [patch v4 6/9] rockchip: pwm: Fix default polarity Arnaud Patard
2021-03-05 10:27 ` [patch v4 7/9] rockchip: video: vop: Fix format of fbbase in debug string Arnaud Patard
2021-03-05 10:27 ` [patch v4 8/9] rockchip: video: edp: Add missing reset support Arnaud Patard
2021-03-05 10:27 ` [patch v4 9/9] rockchip: video: vop: Add " Arnaud Patard
2021-04-11 19:20 ` [patch v4 0/9] rk3399 (Pinebook pro) EDP support Anatolij Gustschin

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=20210305103307.175518624@rtp-net.org \
    --to=arnaud.patard@rtp-net.org \
    --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.