Received: by 2002:a25:8b91:0:0:0:0:0 with SMTP id j17csp1052284ybl; Sat, 18 Jan 2020 17:35:22 -0800 (PST) X-Google-Smtp-Source: APXvYqyejVu4Z1NjFY6MZGDHWa9xP8o/4EO/fWeD5tgmeQHA2I+UsacMy4Hq4X6FaKDhYbJsOuOA X-Received: by 2002:aca:f507:: with SMTP id t7mr8784417oih.156.1579397722229; Sat, 18 Jan 2020 17:35:22 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1579397722; cv=none; d=google.com; s=arc-20160816; b=Pd/aT9evUsrml6XX6ABUlu1a58lbz2iLcH3mAfU3+gmACroi61QsYueRpfFzcgh5vA QupU/M/eEy8l+gUPv8HHqi8t1cMhlBAjWti3XwYEyq3tDLHwD3Pw8ZjcFqqpMH+WXjrf uSqAruPcNM7PZWfz11tNLTL0zZM3r1/CB8WdQSqgYZ5qlVM2/XUI4QdbsYq+QBnjn6qR mSAYQxgyVzDmAGblkZFosqrIhNSs8yppsUf/vA3idWRcWj3XrSZADaRCQ1H9db+NKKXG y9Z0nvEXK3L4SQZT6W9qc/qDu2wr+nF6ZFFOQuDW8YmrggHd4thWXfvFKrx22Q0WN/ky at7Q== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=K6sWd+hGe+0dsu/Ad2Owjg/C5Rfj1DJYm5qmNRc8T2A=; b=TUvwJm7IPTVRvZUUv0Z1NQsGwM0e2JSRhiXh98l360a6ZrKLzmsIYQgfDgDzyNViEW 3nt2vorIhtUvcerGASE0Lnk50NaXaABMagWzgTkwsquihn5v5xY+KCwLsbDQHIXa6H0i ttHKp5bKCzApwoB3+7hJI8LqOk2Z9WLN8ykLDP8cT6lYVO8SJ3vCSiMNdy12ZPeMPYjG 8hSCR1cS3fRvIewAtyuA/zeEp8CBR2IMJPXPSc8gxKdc2uIl8EArQoTdoxNhXObQbt9q KN5+13HeU8LPcpX00sRbI93JhWEP2VtR4fTJW+a1MKVCxeyyRj8lBRuKJr7FuSmFpajg 973w== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id h5si14769978otn.280.2020.01.18.17.35.09; Sat, 18 Jan 2020 17:35:22 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727120AbgASBeR convert rfc822-to-8bit (ORCPT + 99 others); Sat, 18 Jan 2020 20:34:17 -0500 Received: from sci-ig2.spreadtrum.com ([222.66.158.135]:39633 "EHLO SHSQR01.spreadtrum.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1727070AbgASBeR (ORCPT ); Sat, 18 Jan 2020 20:34:17 -0500 Received: from ig2.spreadtrum.com (bjmbx01.spreadtrum.com [10.0.64.7]) by SHSQR01.spreadtrum.com with ESMTPS id 00J1XA13006696 (version=TLSv1 cipher=AES256-SHA bits=256 verify=NO); Sun, 19 Jan 2020 09:33:11 +0800 (CST) (envelope-from Orson.Zhai@unisoc.com) Received: from localhost (10.0.74.130) by BJMBX01.spreadtrum.com (10.0.64.7) with Microsoft SMTP Server (TLS) id 15.0.847.32; Sun, 19 Jan 2020 09:33:52 +0800 From: Orson Zhai To: Lee Jones , Arnd Bergmann CC: , , , Orson Zhai Subject: [PATCH v4] mfd: syscon: Add arguments support for syscon reference Date: Sun, 19 Jan 2020 09:33:39 +0800 Message-ID: <1579397619-28547-1-git-send-email-orson.zhai@unisoc.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" X-Originating-IP: [10.0.74.130] X-ClientProxiedBy: SHCAS03.spreadtrum.com (10.0.1.207) To BJMBX01.spreadtrum.com (10.0.64.7) Content-Transfer-Encoding: 8BIT X-MAIL: SHSQR01.spreadtrum.com 00J1XA13006696 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org There are a lot of similar global registers being used across multiple SoCs from Unisoc. But most of these registers are assigned with different offset for different SoCs. It is hard to handle all of them in an all-in-one kernel image. Add a helper function to get regmap with arguments where we could put some extra information such as the offset value. Signed-off-by: Orson Zhai Tested-by: Baolin Wang Reviewed-by: Arnd Bergmann Acked-by: Lee Jones --- V3 Change: Rebase on latest kernel v5.5-rc6 for Lee. V4 Change: Remove trailing spaces according to checkpatch. drivers/mfd/syscon.c | 29 +++++++++++++++++++++++++++++ include/linux/mfd/syscon.h | 14 ++++++++++++++ 2 files changed, 43 insertions(+) diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c index e22197c..2918b05 100644 --- a/drivers/mfd/syscon.c +++ b/drivers/mfd/syscon.c @@ -224,6 +224,35 @@ struct regmap *syscon_regmap_lookup_by_phandle(struct device_node *np, } EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_phandle); +struct regmap *syscon_regmap_lookup_by_phandle_args(struct device_node *np, + const char *property, + int arg_count, + unsigned int *out_args) +{ + struct device_node *syscon_np; + struct of_phandle_args args; + struct regmap *regmap; + unsigned int index; + int rc; + + rc = of_parse_phandle_with_fixed_args(np, property, arg_count, + 0, &args); + if (rc) + return ERR_PTR(rc); + + syscon_np = args.np; + if (!syscon_np) + return ERR_PTR(-ENODEV); + + regmap = syscon_node_to_regmap(syscon_np); + for (index = 0; index < arg_count; index++) + out_args[index] = args.args[index]; + of_node_put(syscon_np); + + return regmap; +} +EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_phandle_args); + static int syscon_probe(struct platform_device *pdev) { struct device *dev = &pdev->dev; diff --git a/include/linux/mfd/syscon.h b/include/linux/mfd/syscon.h index 112dc66..714cab1 100644 --- a/include/linux/mfd/syscon.h +++ b/include/linux/mfd/syscon.h @@ -23,6 +23,11 @@ extern struct regmap *syscon_regmap_lookup_by_compatible(const char *s); extern struct regmap *syscon_regmap_lookup_by_phandle( struct device_node *np, const char *property); +extern struct regmap *syscon_regmap_lookup_by_phandle_args( + struct device_node *np, + const char *property, + int arg_count, + unsigned int *out_args); #else static inline struct regmap *device_node_to_regmap(struct device_node *np) { @@ -45,6 +50,15 @@ static inline struct regmap *syscon_regmap_lookup_by_phandle( { return ERR_PTR(-ENOTSUPP); } + +static struct regmap *syscon_regmap_lookup_by_phandle_args( + struct device_node *np, + const char *property, + int arg_count, + unsigned int *out_args) +{ + return ERR_PTR(-ENOTSUPP); +} #endif #endif /* __LINUX_MFD_SYSCON_H__ */ -- 2.7.4 ________________________________ This email (including its attachments) is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Unauthorized use, dissemination, distribution or copying of this email or the information herein or taking any action in reliance on the contents of this email or the information herein, by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is strictly prohibited. If you are not the intended recipient, please do not read, copy, use or disclose any part of this e-mail to others. Please notify the sender immediately and permanently delete this e-mail and any attachments if you received it in error. Internet communications cannot be guaranteed to be timely, secure, error-free or virus-free. The sender does not accept liability for any errors or omissions. 本邮件及其附件具有保密性质,受法律保护不得泄露,仅发送给本邮件所指特定收件人。严禁非经授权使用、宣传、发布或复制本邮件或其内容。若非该特定收件人,请勿阅读、复制、 使用或披露本邮件的任何内容。若误收本邮件,请从系统中永久性删除本邮件及所有附件,并以回复邮件的方式即刻告知发件人。无法保证互联网通信及时、安全、无误或防毒。发件人对任何错漏均不承担责任。