From: Mark Salter <msalter-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
To: Leif Lindholm <leif.lindholm-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
patches-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
Catalin Marinas <catalin.marinas-5wv7dgnIgG8@public.gmane.org>,
Will Deacon <will.deacon-5wv7dgnIgG8@public.gmane.org>,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
matt.fleming-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org,
linux-efi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
roy.franz-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org
Subject: Re: [PATCH 3/3] arm64: add EFI runtime services
Date: Tue, 10 Dec 2013 12:58:02 -0500 [thread overview]
Message-ID: <1386698282.1979.44.camel@deneb.redhat.com> (raw)
In-Reply-To: <20131209135158.GH24997-GZEopFhza0F985/tl1ce8aaDwS/vmuI7@public.gmane.org>
On Mon, 2013-12-09 at 14:52 +0100, Leif Lindholm wrote:
> Apologies for late feedback.
>
> On Fri, Nov 29, 2013 at 05:05:12PM -0500, Mark Salter wrote:
> > diff --git a/arch/arm64/kernel/efi.c b/arch/arm64/kernel/efi.c
> > new file mode 100644
> > index 0000000..1bad8a7
> > --- /dev/null
> > +++ b/arch/arm64/kernel/efi.c
> > @@ -0,0 +1,507 @@
> > +/*
> > + * Extensible Firmware Interface
> > + *
> > + * Based on Extensible Firmware Interface Specification version 2.3.1
>
> Actually, for arm64, we're relying on UEFI 2.4 or later.
You're right.
>
> > + *
> > + * Copyright (C) 2013 Linaro Ltd.
>
> And I'd say you've easily done enough here to motivate adding Red Hat.
>
> > + *
> > + * Adapted for arm64 from arch/arm/kernel/efi.c code
> > + */
> > +
> > +#include <linux/efi.h>
> > +#include <linux/export.h>
> > +#include <linux/memblock.h>
> > +#include <linux/of.h>
> > +#include <linux/of_fdt.h>
> > +#include <linux/sched.h>
> > +#include <linux/slab.h>
> > +#include <linux/bootmem.h>
> > +
> > +#include <asm/cacheflush.h>
> > +#include <asm/efi.h>
> > +#include <asm/tlbflush.h>
> > +#include <asm/mmu_context.h>
> > +
> > +#define efi_early_remap(a, b) \
> > + ((__force void *)early_ioremap((a), (b)))
>
> Do we not want early_memremap() here, rather than early_ioremap()?
>
Yes.
WARNING: multiple messages have this Message-ID (diff)
From: msalter@redhat.com (Mark Salter)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 3/3] arm64: add EFI runtime services
Date: Tue, 10 Dec 2013 12:58:02 -0500 [thread overview]
Message-ID: <1386698282.1979.44.camel@deneb.redhat.com> (raw)
In-Reply-To: <20131209135158.GH24997@rocoto.smurfnet.nu>
On Mon, 2013-12-09 at 14:52 +0100, Leif Lindholm wrote:
> Apologies for late feedback.
>
> On Fri, Nov 29, 2013 at 05:05:12PM -0500, Mark Salter wrote:
> > diff --git a/arch/arm64/kernel/efi.c b/arch/arm64/kernel/efi.c
> > new file mode 100644
> > index 0000000..1bad8a7
> > --- /dev/null
> > +++ b/arch/arm64/kernel/efi.c
> > @@ -0,0 +1,507 @@
> > +/*
> > + * Extensible Firmware Interface
> > + *
> > + * Based on Extensible Firmware Interface Specification version 2.3.1
>
> Actually, for arm64, we're relying on UEFI 2.4 or later.
You're right.
>
> > + *
> > + * Copyright (C) 2013 Linaro Ltd.
>
> And I'd say you've easily done enough here to motivate adding Red Hat.
>
> > + *
> > + * Adapted for arm64 from arch/arm/kernel/efi.c code
> > + */
> > +
> > +#include <linux/efi.h>
> > +#include <linux/export.h>
> > +#include <linux/memblock.h>
> > +#include <linux/of.h>
> > +#include <linux/of_fdt.h>
> > +#include <linux/sched.h>
> > +#include <linux/slab.h>
> > +#include <linux/bootmem.h>
> > +
> > +#include <asm/cacheflush.h>
> > +#include <asm/efi.h>
> > +#include <asm/tlbflush.h>
> > +#include <asm/mmu_context.h>
> > +
> > +#define efi_early_remap(a, b) \
> > + ((__force void *)early_ioremap((a), (b)))
>
> Do we not want early_memremap() here, rather than early_ioremap()?
>
Yes.
WARNING: multiple messages have this Message-ID (diff)
From: Mark Salter <msalter@redhat.com>
To: Leif Lindholm <leif.lindholm@linaro.org>
Cc: linux-kernel@vger.kernel.org, patches@linaro.org,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will.deacon@arm.com>,
linux-arm-kernel@lists.infradead.org, matt.fleming@intel.com,
linux-efi@vger.kernel.org, roy.franz@linaro.org
Subject: Re: [PATCH 3/3] arm64: add EFI runtime services
Date: Tue, 10 Dec 2013 12:58:02 -0500 [thread overview]
Message-ID: <1386698282.1979.44.camel@deneb.redhat.com> (raw)
In-Reply-To: <20131209135158.GH24997@rocoto.smurfnet.nu>
On Mon, 2013-12-09 at 14:52 +0100, Leif Lindholm wrote:
> Apologies for late feedback.
>
> On Fri, Nov 29, 2013 at 05:05:12PM -0500, Mark Salter wrote:
> > diff --git a/arch/arm64/kernel/efi.c b/arch/arm64/kernel/efi.c
> > new file mode 100644
> > index 0000000..1bad8a7
> > --- /dev/null
> > +++ b/arch/arm64/kernel/efi.c
> > @@ -0,0 +1,507 @@
> > +/*
> > + * Extensible Firmware Interface
> > + *
> > + * Based on Extensible Firmware Interface Specification version 2.3.1
>
> Actually, for arm64, we're relying on UEFI 2.4 or later.
You're right.
>
> > + *
> > + * Copyright (C) 2013 Linaro Ltd.
>
> And I'd say you've easily done enough here to motivate adding Red Hat.
>
> > + *
> > + * Adapted for arm64 from arch/arm/kernel/efi.c code
> > + */
> > +
> > +#include <linux/efi.h>
> > +#include <linux/export.h>
> > +#include <linux/memblock.h>
> > +#include <linux/of.h>
> > +#include <linux/of_fdt.h>
> > +#include <linux/sched.h>
> > +#include <linux/slab.h>
> > +#include <linux/bootmem.h>
> > +
> > +#include <asm/cacheflush.h>
> > +#include <asm/efi.h>
> > +#include <asm/tlbflush.h>
> > +#include <asm/mmu_context.h>
> > +
> > +#define efi_early_remap(a, b) \
> > + ((__force void *)early_ioremap((a), (b)))
>
> Do we not want early_memremap() here, rather than early_ioremap()?
>
Yes.
next prev parent reply other threads:[~2013-12-10 17:58 UTC|newest]
Thread overview: 66+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-29 22:05 [PATCH 0/3] arm64: Add EFI stub and runtime services support Mark Salter
2013-11-29 22:05 ` Mark Salter
[not found] ` < 1385762712-17043-2-git-send-email-msalter@redhat.com>
2013-11-29 22:05 ` [PATCH 1/3] arm64: add EFI stub Mark Salter
2013-11-29 22:05 ` Mark Salter
2013-12-03 18:38 ` Will Deacon
2013-12-03 18:38 ` Will Deacon
2013-12-03 18:38 ` Will Deacon
2013-12-03 19:31 ` Roy Franz
2013-12-03 19:31 ` Roy Franz
[not found] ` <20131203183844.GA22668-MRww78TxoiP5vMa5CHWGZ34zcgK1vI+I0E9HWUfgJXw@public.gmane.org>
2013-12-03 19:31 ` Mark Salter
2013-12-03 19:31 ` Mark Salter
2013-12-03 19:31 ` Mark Salter
2013-12-05 14:18 ` Catalin Marinas
2013-12-05 14:18 ` Catalin Marinas
2013-12-05 14:18 ` Catalin Marinas
[not found] ` <20131205141853.GA974-rtzwXk+D4rEjOxct69p1ducL+3YJyIBv@public.gmane.org>
2013-12-05 14:43 ` Mark Salter
2013-12-05 14:43 ` Mark Salter
2013-12-05 14:43 ` Mark Salter
[not found] ` <1386254603.1861.120.camel-PDpCo7skNiwAicBL8TP8PQ@public.gmane.org>
2013-12-05 15:28 ` Catalin Marinas
2013-12-05 15:28 ` Catalin Marinas
2013-12-05 15:28 ` Catalin Marinas
[not found] ` < 20131205152806.GC974@darko.cambridge.arm.com>
[not found] ` <20131205152806.GC974-rtzwXk+D4rEjOxct69p1ducL+3YJyIBv@public.gmane.org>
2013-12-06 12:25 ` Grant Likely
2013-12-06 12:25 ` Grant Likely
2013-12-06 12:25 ` Grant Likely
2013-12-06 13:34 ` Mark Salter
2013-12-06 13:34 ` Mark Salter
2013-12-06 13:38 ` Leif Lindholm
2013-12-06 13:38 ` Leif Lindholm
2013-12-06 13:38 ` Leif Lindholm
2013-12-06 13:51 ` Mark Salter
2013-12-06 13:51 ` Mark Salter
2013-12-06 13:51 ` Mark Salter
2013-12-06 14:55 ` Mark Salter
2013-12-06 14:55 ` Mark Salter
2013-12-06 14:55 ` Mark Salter
2013-12-16 15:46 ` Catalin Marinas
2013-12-16 15:46 ` Catalin Marinas
2013-12-06 12:12 ` Grant Likely
2013-12-06 12:12 ` Grant Likely
2013-12-06 12:12 ` Grant Likely
[not found] ` <1385762712-17043-1-git-send-email-msalter-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2013-11-29 22:05 ` [PATCH 2/3] doc: arm64: add description of EFI stub support Mark Salter
2013-11-29 22:05 ` Mark Salter
2013-11-29 22:05 ` Mark Salter
2013-11-29 22:05 ` [PATCH 3/3] arm64: add EFI runtime services Mark Salter
2013-11-29 22:05 ` Mark Salter
[not found] ` <1385762712-17043-4-git-send-email-msalter-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2013-12-05 15:25 ` Catalin Marinas
2013-12-05 15:25 ` Catalin Marinas
2013-12-05 15:25 ` Catalin Marinas
[not found] ` <20131205152510.GB974-rtzwXk+D4rEjOxct69p1ducL+3YJyIBv@public.gmane.org>
2013-12-05 15:52 ` Mark Salter
2013-12-05 15:52 ` Mark Salter
2013-12-05 15:52 ` Mark Salter
[not found] ` <1386258761.1861.137.camel-PDpCo7skNiwAicBL8TP8PQ@public.gmane.org>
2013-12-05 15:59 ` Catalin Marinas
2013-12-05 15:59 ` Catalin Marinas
2013-12-05 15:59 ` Catalin Marinas
2013-12-06 14:34 ` Mark Salter
2013-12-06 14:34 ` Mark Salter
2013-12-06 14:34 ` Mark Salter
2013-12-09 13:52 ` Leif Lindholm
2013-12-09 13:52 ` Leif Lindholm
2013-12-09 13:52 ` Leif Lindholm
[not found] ` <20131209135158.GH24997-GZEopFhza0F985/tl1ce8aaDwS/vmuI7@public.gmane.org>
2013-12-10 17:58 ` Mark Salter [this message]
2013-12-10 17:58 ` Mark Salter
2013-12-10 17:58 ` Mark Salter
[not found] ` < 1385762712-17043-3-git-send-email-msalter@redhat.com>
[not found] ` <1385762712-17043-3-git-send-email-msalter-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2013-12-05 12:53 ` [PATCH 2/3] doc: arm64: add description of EFI stub support Grant Likely
2013-12-05 12:53 ` Grant Likely
2013-12-05 12:53 ` Grant Likely
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=1386698282.1979.44.camel@deneb.redhat.com \
--to=msalter-h+wxahxf7alqt0dzr+alfa@public.gmane.org \
--cc=catalin.marinas-5wv7dgnIgG8@public.gmane.org \
--cc=leif.lindholm-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-efi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=matt.fleming-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
--cc=patches-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=roy.franz-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=will.deacon-5wv7dgnIgG8@public.gmane.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 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.