All of lore.kernel.org
 help / color / mirror / Atom feed
From: grant.likely@secretlab.ca (Grant Likely)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v7 4/4] ARM: init: add support for reserved memory defined by device tree
Date: Thu, 29 Aug 2013 23:49:12 +0100	[thread overview]
Message-ID: <20130829224912.7B2933E1222@localhost> (raw)
In-Reply-To: <1377527959-5080-5-git-send-email-m.szyprowski@samsung.com>

On Mon, 26 Aug 2013 16:39:19 +0200, Marek Szyprowski <m.szyprowski@samsung.com> wrote:
> Enable reserved memory initialization from device tree.
> 
> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
> Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
> Acked-by: Michal Nazarewicz <mina86@mina86.com>
> Acked-by: Tomasz Figa <t.figa@samsung.com>
> ---
>  arch/arm/mm/init.c |    3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/arch/arm/mm/init.c b/arch/arm/mm/init.c
> index 15225d8..6a2fe44 100644
> --- a/arch/arm/mm/init.c
> +++ b/arch/arm/mm/init.c
> @@ -17,6 +17,7 @@
>  #include <linux/nodemask.h>
>  #include <linux/initrd.h>
>  #include <linux/of_fdt.h>
> +#include <linux/of_reserved_mem.h>
>  #include <linux/highmem.h>
>  #include <linux/gfp.h>
>  #include <linux/memblock.h>
> @@ -377,6 +378,8 @@ void __init arm_memblock_init(struct meminfo *mi, struct machine_desc *mdesc)
>  	if (mdesc->reserve)
>  		mdesc->reserve();
>  
> +	early_init_dt_scan_reserved_mem();
> +

Don't forget ARM64.

g.

WARNING: multiple messages have this Message-ID (diff)
From: Grant Likely <grant.likely@secretlab.ca>
To: linux-arm-kernel@lists.infradead.org,
	linaro-mm-sig@lists.linaro.org, devicetree@vger.kernel.org
Cc: Mark Rutland <mark.rutland@arm.com>,
	Laura Abbott <lauraa@codeaurora.org>,
	Pawel Moll <pawel.moll@arm.com>, Arnd Bergmann <arnd@arndb.de>,
	Stephen Warren <swarren@wwwdotorg.org>,
	Tomasz Figa <t.figa@samsung.com>,
	Tomasz Figa <tomasz.figa@gmail.com>,
	Michal Nazarewicz <mina86@mina86.com>,
	Marc <marc.ceeeee@gmail.com>,
	Kyungmin Park <kyungmin.park@samsung.com>,
	Sylwester Nawrocki <s.nawrocki@samsung.com>,
	Kumar Gala <galak@codeaurora.org>,
	Olof Johansson <olof@lixom.net>,
	Ian Campbell <ian.campbell@citrix.com>,
	Nishanth Peethambaran <nishanth.p@gmail.com>,
	Sascha Hauer <s.hauer@pengutronix.de>,
	Marek Szyprowski <m.szyprowski@samsung.com>
Subject: Re: [PATCH v7 4/4] ARM: init: add support for reserved memory defined by device tree
Date: Thu, 29 Aug 2013 23:49:12 +0100	[thread overview]
Message-ID: <20130829224912.7B2933E1222@localhost> (raw)
In-Reply-To: <1377527959-5080-5-git-send-email-m.szyprowski@samsung.com>

On Mon, 26 Aug 2013 16:39:19 +0200, Marek Szyprowski <m.szyprowski@samsung.com> wrote:
> Enable reserved memory initialization from device tree.
> 
> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
> Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
> Acked-by: Michal Nazarewicz <mina86@mina86.com>
> Acked-by: Tomasz Figa <t.figa@samsung.com>
> ---
>  arch/arm/mm/init.c |    3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/arch/arm/mm/init.c b/arch/arm/mm/init.c
> index 15225d8..6a2fe44 100644
> --- a/arch/arm/mm/init.c
> +++ b/arch/arm/mm/init.c
> @@ -17,6 +17,7 @@
>  #include <linux/nodemask.h>
>  #include <linux/initrd.h>
>  #include <linux/of_fdt.h>
> +#include <linux/of_reserved_mem.h>
>  #include <linux/highmem.h>
>  #include <linux/gfp.h>
>  #include <linux/memblock.h>
> @@ -377,6 +378,8 @@ void __init arm_memblock_init(struct meminfo *mi, struct machine_desc *mdesc)
>  	if (mdesc->reserve)
>  		mdesc->reserve();
>  
> +	early_init_dt_scan_reserved_mem();
> +

Don't forget ARM64.

g.

  reply	other threads:[~2013-08-29 22:49 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-08-26 14:39 [PATCH v7 0/4] Device Tree support for CMA (Contiguous Memory Allocator) Marek Szyprowski
2013-08-26 14:39 ` Marek Szyprowski
2013-08-26 14:39 ` [PATCH v7 1/4] drivers: dma-contiguous: clean source code and prepare for device tree Marek Szyprowski
2013-08-26 14:39   ` Marek Szyprowski
2013-08-26 14:39 ` [PATCH v7 2/4] drivers: of: add function to scan fdt nodes given by path Marek Szyprowski
2013-08-26 14:39   ` Marek Szyprowski
2013-08-29 21:40   ` Grant Likely
2013-08-29 21:40     ` Grant Likely
2013-08-30 10:42     ` Marek Szyprowski
2013-08-30 10:42       ` Marek Szyprowski
2013-08-30 10:46       ` Grant Likely
2013-08-30 10:46         ` Grant Likely
2013-08-26 14:39 ` [PATCH v7 3/4] drivers: of: add initialization code for dma reserved memory Marek Szyprowski
2013-08-26 14:39   ` Marek Szyprowski
2013-08-29 22:46   ` Grant Likely
2013-08-29 22:46     ` Grant Likely
2013-08-30 12:39     ` Marek Szyprowski
2013-08-30 12:39       ` Marek Szyprowski
2013-08-30 20:26       ` Kumar Gala
2013-08-30 20:26         ` Kumar Gala
2013-09-09 16:01         ` Grant Likely
2013-09-09 16:01           ` Grant Likely
2013-09-10 19:53           ` Kumar Gala
2013-09-10 19:53             ` Kumar Gala
2013-09-15 12:48             ` Grant Likely
2013-09-15 12:48               ` Grant Likely
2013-09-12 18:22           ` Kumar Gala
2013-09-12 18:22             ` Kumar Gala
2013-09-15 12:50             ` Grant Likely
2013-09-15 12:50               ` Grant Likely
2013-09-16  7:12           ` Marek Szyprowski
2013-09-16  7:12             ` Marek Szyprowski
2013-09-16  7:25             ` Benjamin Herrenschmidt
2013-09-16  7:25               ` Benjamin Herrenschmidt
2013-09-16 13:43               ` Grant Likely
2013-09-16 13:43                 ` Grant Likely
2013-09-18  3:48                 ` Grant Likely
2013-09-18  3:48                   ` Grant Likely
2013-09-18 11:07                   ` Marek Szyprowski
2013-09-18 11:07                     ` Marek Szyprowski
2013-09-16  8:17             ` Marek Szyprowski
2013-09-16  8:17               ` Marek Szyprowski
2013-09-09 13:05       ` Grant Likely
2013-09-09 13:05         ` Grant Likely
2013-08-29 22:48   ` Grant Likely
2013-08-29 22:48     ` Grant Likely
2013-09-27 15:47   ` Kumar Gala
2013-09-27 15:47     ` Kumar Gala
2013-09-27 17:06   ` Matt Sealey
2013-09-27 17:06     ` Matt Sealey
2013-08-26 14:39 ` [PATCH v7 4/4] ARM: init: add support for reserved memory defined by device tree Marek Szyprowski
2013-08-26 14:39   ` Marek Szyprowski
2013-08-29 22:49   ` Grant Likely [this message]
2013-08-29 22:49     ` 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=20130829224912.7B2933E1222@localhost \
    --to=grant.likely@secretlab.ca \
    --cc=linux-arm-kernel@lists.infradead.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.