From patchwork Fri Dec 1 02:52:54 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sinan Kaya X-Patchwork-Id: 10086037 X-Patchwork-Delegate: bhelgaas@google.com Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 7F2E260327 for ; Fri, 1 Dec 2017 02:53:17 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 66F0B2A2C5 for ; Fri, 1 Dec 2017 02:53:17 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 5B71F2A2C8; Fri, 1 Dec 2017 02:53:17 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id DBF5A2A2C5 for ; Fri, 1 Dec 2017 02:53:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752310AbdLACxO (ORCPT ); Thu, 30 Nov 2017 21:53:14 -0500 Received: from smtp.codeaurora.org ([198.145.29.96]:56272 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752297AbdLACxL (ORCPT ); Thu, 30 Nov 2017 21:53:11 -0500 Received: by smtp.codeaurora.org (Postfix, from userid 1000) id 1C4BB607C7; Fri, 1 Dec 2017 02:53:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1512096791; bh=5vW84OVHICyDv2/FLBsR+xDDizO9t8SdV1laBoi8Yo8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Uymjt2kheGAWB2aEqxrM/VklZytKg33NHV203EFr0mWSlwObFAambWnbu/zln4hJf ZSFmq+dIZzeANQal790ArKS3ekPMZ2FqciwK+odNloWhNee7oL3v9a1pPcP4ROrLoK SOIeVBJe5bXk0KcgHIX06Q01jKIdq3+PRPkswGHE= Received: from drakthul.qualcomm.com (global_nat1_iad_fw.qualcomm.com [129.46.232.65]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: okaya@smtp.codeaurora.org) by smtp.codeaurora.org (Postfix) with ESMTPSA id DA13B607C7; Fri, 1 Dec 2017 02:53:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1512096790; bh=5vW84OVHICyDv2/FLBsR+xDDizO9t8SdV1laBoi8Yo8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=kWkCUo6EGkFSTLTmQyYOtv8/4b0LGoB3YfaBUyI8xk3sFUmWUQPUXCYcreFxkimv1 G1A+RY5OF1JtkbSiI5LGS7f73seofzI7ZovGpO9OIepD8YiCpxZsF3i1jbNqp5008i Iy6+qdZUWpnMq4/RPOD/DjWsBdT5vbOTmfAeIvxI= DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org DA13B607C7 Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=okaya@codeaurora.org From: Sinan Kaya To: linux-pci@vger.kernel.org, timur@codeaurora.org Cc: linux-arm-msm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Sinan Kaya , Greg Kroah-Hartman , "Rafael J. Wysocki" , Mika Westerberg , Sakari Ailus , Dmitry Torokhov , Rob Herring , Kieran Bingham , linux-kernel@vger.kernel.org (open list) Subject: [PATCH V4 3/5] device property: Introduce a common API to fetch device match data Date: Thu, 30 Nov 2017 21:52:54 -0500 Message-Id: <1512096776-22883-4-git-send-email-okaya@codeaurora.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1512096776-22883-1-git-send-email-okaya@codeaurora.org> References: <1512096776-22883-1-git-send-email-okaya@codeaurora.org> Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP There is an OF/ACPI function to obtain the driver data. We want to hide OF/ACPI details from the device drivers and abstract following the device family of functions. Signed-off-by: Sinan Kaya --- drivers/base/property.c | 14 ++++++++++++++ include/linux/property.h | 2 ++ 2 files changed, 16 insertions(+) diff --git a/drivers/base/property.c b/drivers/base/property.c index 7ed99c1..6adec89 100644 --- a/drivers/base/property.c +++ b/drivers/base/property.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #include #include @@ -1335,3 +1336,16 @@ int fwnode_graph_parse_endpoint(const struct fwnode_handle *fwnode, return fwnode_call_int_op(fwnode, graph_parse_endpoint, endpoint); } EXPORT_SYMBOL(fwnode_graph_parse_endpoint); + +void *device_get_match_data(struct device *dev) +{ + void *ret; + + if (IS_ENABLED(CONFIG_OF) && dev->of_node) + ret = (void *)of_device_get_match_data(dev); + else + ret = acpi_get_match_data(dev); + + return ret; +} +EXPORT_SYMBOL_GPL(device_get_match_data); diff --git a/include/linux/property.h b/include/linux/property.h index 6bebee1..01fa55b 100644 --- a/include/linux/property.h +++ b/include/linux/property.h @@ -275,6 +275,8 @@ int device_add_properties(struct device *dev, enum dev_dma_attr device_get_dma_attr(struct device *dev); +void *device_get_match_data(struct device *dev); + int device_get_phy_mode(struct device *dev); void *device_get_mac_address(struct device *dev, char *addr, int alen);