Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp2792827imu; Mon, 19 Nov 2018 06:14:21 -0800 (PST) X-Google-Smtp-Source: AFSGD/W8fRp8flX5X0iu4d2jOhVS8H0/DqZHUIlDbPYa54/Xse5Ayntr+foSMmxaRopOv3ZmveZM X-Received: by 2002:a63:902:: with SMTP id 2mr3362254pgj.219.1542636861259; Mon, 19 Nov 2018 06:14:21 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1542636861; cv=none; d=google.com; s=arc-20160816; b=R2KT0IIUbDLPvmVDMZmPaYzrzkQk62wdj3AiqQW0eUfrYxywOh5JpNK3mEjloUtPD0 X0bYnNzTu5fKF9BF91GyXhple1o6sK4zZO5yvRve/Ti9jn0Z6UiuwIBwr9ONua7wP1Ag xggGz7PIdL8R93itV4HPmsJVa2iVwveVl1Uw/ZLp/lSgY9sedpAubXuK95g+5NTnWOon EdBfeFHgERAMB07bdDUvliDhuXgH35vLHGGXIVb41Cd3aeRYGk5B17TxNbq0Dj1IuY9d dynbygg+SUAjScuUYDWH+3dNvorNiOFYJzW4GspM0rUdgaLau3Q2Xh2Mqbwbu0mU4lq8 Fe3Q== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:date:subject:cc:to:from; bh=WIPmpAHoTKzI092Vbutegjv8CAhJKIZY9AROjcgmaxM=; b=SYGhdsxj4DDpuZqVyTGSm96D1LA2IBjANyVeQ++ALiRWc8y/scWiD+s9wZf3O9nnh2 qbWh7JN4pEzHbL8MqUcNRgrJyaH9kGiIKZgiHJMXpsRG8Rl6gnWhLSbcs7zn+tmKftwg 8V1MO1FTJ2jvxbTJRgii+/uikH7hivC1ShL+NtaThHF44fKuzL06U73/lDjVjhwpgTgx XMITSV//rb9hy27ZLk1nCC1B+htMjCw3aQBhtOQOyUYxgxm7a6aURh/5dURAkVQJDXNm XPSVQs3OUyg+n2/DCn7+s0ZdODIx8c1lUF9VoMJ7r9+CDR4qo4mO2XROCvrB5TNRy1m9 sBRw== 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 d31-v6si43487753pla.27.2018.11.19.06.14.06; Mon, 19 Nov 2018 06:14:21 -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 S1729483AbeKTAgy (ORCPT + 99 others); Mon, 19 Nov 2018 19:36:54 -0500 Received: from relmlor1.renesas.com ([210.160.252.171]:45976 "EHLO relmlie5.idc.renesas.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1729331AbeKTAgy (ORCPT ); Mon, 19 Nov 2018 19:36:54 -0500 Received: from unknown (HELO relmlir5.idc.renesas.com) ([10.200.68.151]) by relmlie5.idc.renesas.com with ESMTP; 19 Nov 2018 23:13:07 +0900 Received: from vbox.ree.adwin.renesas.com (unknown [10.226.37.67]) by relmlir5.idc.renesas.com (Postfix) with ESMTP id 5B929401BF07; Mon, 19 Nov 2018 23:13:03 +0900 (JST) From: Phil Edworthy To: Stephen Boyd , Michael Turquette , Russell King Cc: linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org, linux-renesas-soc@vger.kernel.org, Phil Edworthy , Greg Ungerer , Andy Shevchenko , Geert Uytterhoeven , Ralf Baechle , Paul Burton , James Hogan , Jiaxun Yang , Huacai Chen , Guan Xuetao , =?UTF-8?q?Uwe=20Kleine-K=C3=B6nig?= , linux-m68k@lists.linux-m68k.org, linux-mips@linux-mips.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH] clk: Add (devm_)clk_get_optional() functions Date: Mon, 19 Nov 2018 14:12:59 +0000 Message-Id: <20181119141259.11992-1-phil.edworthy@renesas.com> X-Mailer: git-send-email 2.17.1 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This adds clk_get_optional() and devm_clk_get_optional() functions to get optional clocks. They behave the same as (devm_)clk_get except where there is no clock producer. In this case, instead of returning -ENOENT, the function returns NULL. This makes error checking simpler and allows clk_prepare_enable, etc to be called on the returned reference without additional checks. Signed-off-by: Phil Edworthy --- v7: - Instead of messing with the core functions, simply wrap them for the _optional() versions. By putting clk_get_optional() inline in the header file, we can get rid of the arch specific patches as well. v6: - Add doxygen style comment for devm_clk_get_optional() args v5: - No changes. v4: - No changes. v3: - No changes. --- drivers/clk/clk-devres.c | 11 +++++++++++ include/linux/clk.h | 27 +++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/drivers/clk/clk-devres.c b/drivers/clk/clk-devres.c index 12c87457eca1..f0033d937c39 100644 --- a/drivers/clk/clk-devres.c +++ b/drivers/clk/clk-devres.c @@ -34,6 +34,17 @@ struct clk *devm_clk_get(struct device *dev, const char *id) } EXPORT_SYMBOL(devm_clk_get); +struct clk *devm_clk_get_optional(struct device *dev, const char *id) +{ + struct clk *clk = devm_clk_get(dev, id); + + if (clk == ERR_PTR(-ENOENT)) + return NULL; + else + return clk; +} +EXPORT_SYMBOL(devm_clk_get_optional); + struct clk_bulk_devres { struct clk_bulk_data *clks; int num_clks; diff --git a/include/linux/clk.h b/include/linux/clk.h index a7773b5c0b9f..c7bbb0678057 100644 --- a/include/linux/clk.h +++ b/include/linux/clk.h @@ -383,6 +383,17 @@ int __must_check devm_clk_bulk_get_all(struct device *dev, */ struct clk *devm_clk_get(struct device *dev, const char *id); +/** + * devm_clk_get_optional - lookup and obtain a managed reference to an optional + * clock producer. + * @dev: device for clock "consumer" + * @id: clock consumer ID + * + * Behaves the same as devm_clk_get except where there is no clock producer. In + * this case, instead of returning -ENOENT, the function returns NULL. + */ +struct clk *devm_clk_get_optional(struct device *dev, const char *id); + /** * devm_get_clk_from_child - lookup and obtain a managed reference to a * clock producer from child node. @@ -718,6 +729,12 @@ static inline struct clk *devm_clk_get(struct device *dev, const char *id) return NULL; } +static inline struct clk *devm_clk_get_optional(struct device *dev, + const char *id) +{ + return NULL; +} + static inline int __must_check devm_clk_bulk_get(struct device *dev, int num_clks, struct clk_bulk_data *clks) { @@ -862,6 +879,16 @@ static inline void clk_bulk_disable_unprepare(int num_clks, clk_bulk_unprepare(num_clks, clks); } +static inline struct clk *clk_get_optional(struct device *dev, const char *id) +{ + struct clk *clk = clk_get(dev, id); + + if (clk == ERR_PTR(-ENOENT)) + return NULL; + else + return clk; +} + #if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK) struct clk *of_clk_get(struct device_node *np, int index); struct clk *of_clk_get_by_name(struct device_node *np, const char *name); -- 2.17.1