From mboxrd@z Thu Jan 1 00:00:00 1970 From: Linus Walleij Subject: Re: [PATCH v2 1/7] ARM: mm: Introduce archdata.dma_pfn_offset Date: Wed, 5 Mar 2014 12:45:01 +0800 Message-ID: References: <1393535872-20915-1-git-send-email-santosh.shilimkar@ti.com> <1393535872-20915-2-git-send-email-santosh.shilimkar@ti.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: In-Reply-To: <1393535872-20915-2-git-send-email-santosh.shilimkar-l0cyMroinI0@public.gmane.org> Sender: devicetree-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Santosh Shilimkar Cc: Arnd Bergmann , "linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org" , "devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org" , Magnus Damm , Grant Likely , Rob Herring , Grygorii Strashko , Russell King , Olof Johansson List-Id: devicetree@vger.kernel.org On Fri, Feb 28, 2014 at 5:17 AM, Santosh Shilimkar wrote: > From: Grygorii Strashko > > In most of cases DMA addresses can be performed using offset value of > Bus address space relatively to physical address space as following: > > PFN->DMA: > __pfn_to_phys(pfn + [-]dma_pfn_offset) > > DMA->PFN: > __phys_to_pfn(dma_addr) + [-]dma_pfn_offset > > This patch introduces new field dma_pfn_offset in ARM dev_archdata > structure which has to be filed per-device at arch init time > (simplest way is to use Platform bus notifier to handle > BUS_NOTIFY_ADD_DEVICE event) and updates DMA address translation > routines in order to accommodate bus offset value by default. > > Cc: Russell King > Cc: Arnd Bergmann > Cc: Olof Johansson > Signed-off-by: Grygorii Strashko > Signed-off-by: Santosh Shilimkar This looks like exactly what I need to proceed to multiplatform on Integrator. Acked-by: Linus Walleij Yours, Linus Walleij -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html From mboxrd@z Thu Jan 1 00:00:00 1970 From: linus.walleij@linaro.org (Linus Walleij) Date: Wed, 5 Mar 2014 12:45:01 +0800 Subject: [PATCH v2 1/7] ARM: mm: Introduce archdata.dma_pfn_offset In-Reply-To: <1393535872-20915-2-git-send-email-santosh.shilimkar@ti.com> References: <1393535872-20915-1-git-send-email-santosh.shilimkar@ti.com> <1393535872-20915-2-git-send-email-santosh.shilimkar@ti.com> Message-ID: To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Fri, Feb 28, 2014 at 5:17 AM, Santosh Shilimkar wrote: > From: Grygorii Strashko > > In most of cases DMA addresses can be performed using offset value of > Bus address space relatively to physical address space as following: > > PFN->DMA: > __pfn_to_phys(pfn + [-]dma_pfn_offset) > > DMA->PFN: > __phys_to_pfn(dma_addr) + [-]dma_pfn_offset > > This patch introduces new field dma_pfn_offset in ARM dev_archdata > structure which has to be filed per-device at arch init time > (simplest way is to use Platform bus notifier to handle > BUS_NOTIFY_ADD_DEVICE event) and updates DMA address translation > routines in order to accommodate bus offset value by default. > > Cc: Russell King > Cc: Arnd Bergmann > Cc: Olof Johansson > Signed-off-by: Grygorii Strashko > Signed-off-by: Santosh Shilimkar This looks like exactly what I need to proceed to multiplatform on Integrator. Acked-by: Linus Walleij Yours, Linus Walleij