From patchwork Wed Dec 17 18:02:23 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Murali Karicheri X-Patchwork-Id: 5508601 Return-Path: X-Original-To: patchwork-dmaengine@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 9DC69BEEA8 for ; Wed, 17 Dec 2014 18:02:56 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id C0A7A209EA for ; Wed, 17 Dec 2014 18:02:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id D95E2209E5 for ; Wed, 17 Dec 2014 18:02:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750954AbaLQSCy (ORCPT ); Wed, 17 Dec 2014 13:02:54 -0500 Received: from devils.ext.ti.com ([198.47.26.153]:50174 "EHLO devils.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750790AbaLQSCx (ORCPT ); Wed, 17 Dec 2014 13:02:53 -0500 Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by devils.ext.ti.com (8.13.7/8.13.7) with ESMTP id sBHI2OUU019458; Wed, 17 Dec 2014 12:02:24 -0600 Received: from DLEE70.ent.ti.com (dlee70.ent.ti.com [157.170.170.113]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id sBHI2OMl024165; Wed, 17 Dec 2014 12:02:24 -0600 Received: from dlep33.itg.ti.com (157.170.170.75) by DLEE70.ent.ti.com (157.170.170.113) with Microsoft SMTP Server id 14.3.174.1; Wed, 17 Dec 2014 12:02:23 -0600 Received: from localhost.localdomain (ileax41-snat.itg.ti.com [10.172.224.153]) by dlep33.itg.ti.com (8.14.3/8.13.8) with ESMTP id sBHI2Mws028069; Wed, 17 Dec 2014 12:02:23 -0600 From: Murali Karicheri To: , , , , , , , CC: Murali Karicheri Subject: [RFC PATCH 1/2] common: dma-mapping: introduce dma_get_parent_cfg() helper Date: Wed, 17 Dec 2014 13:02:23 -0500 Message-ID: <1418839344-14393-2-git-send-email-m-karicheri2@ti.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1418839344-14393-1-git-send-email-m-karicheri2@ti.com> References: <1418839344-14393-1-git-send-email-m-karicheri2@ti.com> MIME-Version: 1.0 Sender: dmaengine-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: dmaengine@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Now, in Kernel, parent device's DMA parameters has to be applied to the child as is - to enable DMA support for the device. Usually this is happened in places where parent device manually instantiates child device such as in drivers/pci/probe.c (pci_device_add() for example). Now DMA configuration is represented in device data structure not only by DMA mask and DMA params, it also includes dma_pfn_offset at least. Hence introduce common dma_get_parent_cfg() helper to apply dma configuration from parent to child, and use __weak to allow arch to override it if needed. Signed-off-by: Murali Karicheri --- drivers/base/dma-mapping.c | 18 ++++++++++++++++++ include/linux/dma-mapping.h | 3 +++ 2 files changed, 21 insertions(+) diff --git a/drivers/base/dma-mapping.c b/drivers/base/dma-mapping.c index 9e8bbdd..5322426 100644 --- a/drivers/base/dma-mapping.c +++ b/drivers/base/dma-mapping.c @@ -339,3 +339,21 @@ void dma_common_free_remap(void *cpu_addr, size_t size, unsigned long vm_flags) vunmap(cpu_addr); } #endif + +int __weak dma_get_parent_cfg(struct device *dev, struct device *parent) +{ + struct device *temp = parent; + + if (!temp) + temp = dev->parent; + + if (temp && is_device_dma_capable(temp)) { + dev->dma_mask = temp->dma_mask; + dev->coherent_dma_mask = temp->coherent_dma_mask; + dev->dma_parms = temp->dma_parms; + dev->dma_pfn_offset = temp->dma_pfn_offset; + return 0; + } + return -EINVAL; +} +EXPORT_SYMBOL(dma_get_parent_cfg); diff --git a/include/linux/dma-mapping.h b/include/linux/dma-mapping.h index d5d3881..eb080d6 100644 --- a/include/linux/dma-mapping.h +++ b/include/linux/dma-mapping.h @@ -127,6 +127,9 @@ static inline int dma_coerce_mask_and_coherent(struct device *dev, u64 mask) return dma_set_mask_and_coherent(dev, mask); } +extern int __weak dma_get_parent_cfg(struct device *dev, + struct device *parent); + extern u64 dma_get_required_mask(struct device *dev); #ifndef set_arch_dma_coherent_ops