Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756565AbbFRQOf (ORCPT ); Thu, 18 Jun 2015 12:14:35 -0400 Received: from gloria.sntech.de ([95.129.55.99]:46706 "EHLO gloria.sntech.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756503AbbFRQOE (ORCPT ); Thu, 18 Jun 2015 12:14:04 -0400 From: Heiko Stuebner To: linux-mediatek@lists.infradead.org Cc: Eddie Huang , Matthias Brugger , devicetree@vger.kernel.org, James Liao , Sascha Hauer , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: Re: [PATCH] arm64: dts: mt8173: add clock_null Date: Thu, 18 Jun 2015 18:15:03 +0200 Message-ID: <2333431.ttvjElY3ps@phil> User-Agent: KMail/4.14.1 (Linux/3.19.0+; KDE/4.14.2; x86_64; ; ) In-Reply-To: <1434605351-64592-1-git-send-email-eddie.huang@mediatek.com> References: <1434605351-64592-1-git-send-email-eddie.huang@mediatek.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1879 Lines: 54 Am Donnerstag, 18. Juni 2015, 13:29:11 schrieb Eddie Huang: > Add clk_null, which represents clocks that can not / need not > controlled by software. > There are many clocks' parent set to clk_null. Devicetree is supposed to describe hardware, and ideally not what software does with it. If the clock simply cannot be controlled by software, it will still have a rate and I think it should probably be modelled - similarly we sometimes have fixed regulators that also are not software controllable. While it might be ok to define dummy clocks as a temporary stopgap, these should definitly be marked as such. This clk_null at least sounds like there is no plan to replace this with a real solution at some point. And of course a bit of context would be cool, to know which type of clocks this actually replaces. Heiko > Signed-off-by: James Liao > Signed-off-by: Eddie Huang > --- > Base on 4.1-rc1 > > Change-Id: I4db9b40d07e28f54f7bae9b676316cbd6a962124 > --- > arch/arm64/boot/dts/mediatek/mt8173.dtsi | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/arch/arm64/boot/dts/mediatek/mt8173.dtsi > b/arch/arm64/boot/dts/mediatek/mt8173.dtsi index 924fdb6..4798f44 100644 > --- a/arch/arm64/boot/dts/mediatek/mt8173.dtsi > +++ b/arch/arm64/boot/dts/mediatek/mt8173.dtsi > @@ -81,6 +81,12 @@ > cpu_on = <0x84000003>; > }; > > + clk_null: clk_null { > + compatible = "fixed-clock"; > + clock-frequency = <0>; > + #clock-cells = <0>; > + }; > + > uart_clk: dummy26m { > compatible = "fixed-clock"; > clock-frequency = <26000000>; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/