Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752089AbaBEKP1 (ORCPT ); Wed, 5 Feb 2014 05:15:27 -0500 Received: from mail-we0-f176.google.com ([74.125.82.176]:58094 "EHLO mail-we0-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751356AbaBEKPX (ORCPT ); Wed, 5 Feb 2014 05:15:23 -0500 From: Grant Likely Subject: Re: [PATCH v2 4/5] ARM: init: add support for reserved memory defined by device tree To: Marek Szyprowski , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linaro-mm-sig@lists.linaro.org, devicetree@vger.kernel.org, linux-doc@vger.kernel.org Cc: Marek Szyprowski , Kyungmin Park , Benjamin Herrenschmidt , Arnd Bergmann , Michal Nazarewicz , Tomasz Figa , Sascha Hauer , Laura Abbott , Rob Herring , Olof Johansson , Pawel Moll , Mark Rutland , Stephen Warren , Ian Campbell , Tomasz Figa , Kumar Gala , Nishanth Peethambaran , Marc , Josh Cartwright In-Reply-To: <1391515773-6112-5-git-send-email-m.szyprowski@samsung.com> References: <1391515773-6112-1-git-send-email-m.szyprowski@samsung.com> < 1391515773-6112-5-git-send-email-m.szyprowski@samsung.com> Date: Wed, 05 Feb 2014 10:15:10 +0000 Message-Id: <20140205101510.59A95C40A89@trevor.secretlab.ca> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 04 Feb 2014 13:09:32 +0100, Marek Szyprowski wrote: > Enable reserved memory initialization from device tree. > > Cc: Benjamin Herrenschmidt > Cc: Laura Abbott > Signed-off-by: Marek Szyprowski > --- > 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 804d61566a53..ebafdb479410 100644 > --- a/arch/arm/mm/init.c > +++ b/arch/arm/mm/init.c > @@ -17,6 +17,7 @@ > #include > #include > #include > +#include > #include > #include > #include > @@ -323,6 +324,8 @@ void __init arm_memblock_init(struct meminfo *mi, > if (mdesc->reserve) > mdesc->reserve(); > > + early_init_dt_scan_reserved_mem(); > + The new binding is being made fundamental. If the reserved-memory node is present, then it needs to be honored, even if the kernel doesn't know how to use the regions. Therefore, This needs to be unconditional for all architectures. The hook should be called in early_init_dt_scan() (drivers/of/fdt.c) immediately after the early_init_dt_scan_memory() hook. > /* > * reserve memory for DMA contigouos allocations, > * must come from DMA area inside low memory > -- > 1.7.9.5 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/