From patchwork Mon Mar 28 12:39:17 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 64523 Delivered-To: patch@linaro.org Received: by 10.112.199.169 with SMTP id jl9csp1422102lbc; Mon, 28 Mar 2016 05:38:37 -0700 (PDT) X-Received: by 10.28.17.198 with SMTP id 189mr10413292wmr.47.1459168717854; Mon, 28 Mar 2016 05:38:37 -0700 (PDT) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id s67si10588022wmb.93.2016.03.28.05.38.37; Mon, 28 Mar 2016 05:38:37 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) client-ip=85.214.87.163; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) smtp.mailfrom=u-boot-bounces@lists.denx.de Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4A9E3A75F6; Mon, 28 Mar 2016 14:38:36 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rjD4caWiVE2X; Mon, 28 Mar 2016 14:38:35 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 5156FA74E9; Mon, 28 Mar 2016 14:38:35 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 18B76A74E9 for ; Mon, 28 Mar 2016 14:38:33 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8mR4YLIvFZQL for ; Mon, 28 Mar 2016 14:38:32 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from conuserg011-v.nifty.com (conuserg011.nifty.com [202.248.44.37]) by theia.denx.de (Postfix) with ESMTPS id 5548EA74B4 for ; Mon, 28 Mar 2016 14:38:28 +0200 (CEST) Received: from beagle.diag.org (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg011-v.nifty.com with ESMTP id u2SCcLYp005510; Mon, 28 Mar 2016 21:38:21 +0900 X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Mon, 28 Mar 2016 21:39:17 +0900 Message-Id: <1459168757-28142-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 Subject: [U-Boot] [PATCH] ARM: dts: uniphier: add clock-frequency for LD11/LD20 DTSI X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Since no clock driver is implemented for peripherals in U-Boot yet, this property is needed for the serial driver to set up the divisor register. Signed-off-by: Masahiro Yamada --- arch/arm/dts/uniphier-ph1-ld11.dtsi | 4 ++++ arch/arm/dts/uniphier-ph1-ld20.dtsi | 4 ++++ 2 files changed, 8 insertions(+) -- 1.9.1 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot diff --git a/arch/arm/dts/uniphier-ph1-ld11.dtsi b/arch/arm/dts/uniphier-ph1-ld11.dtsi index 069cdf2..7d498ce 100644 --- a/arch/arm/dts/uniphier-ph1-ld11.dtsi +++ b/arch/arm/dts/uniphier-ph1-ld11.dtsi @@ -69,6 +69,7 @@ pinctrl-names = "default"; pinctrl-0 = <&pinctrl_uart0>; clocks = <&uart_clk>; + clock-frequency = <58820000>; }; serial1: serial@54006900 { @@ -79,6 +80,7 @@ pinctrl-names = "default"; pinctrl-0 = <&pinctrl_uart1>; clocks = <&uart_clk>; + clock-frequency = <58820000>; }; serial2: serial@54006a00 { @@ -89,6 +91,7 @@ pinctrl-names = "default"; pinctrl-0 = <&pinctrl_uart2>; clocks = <&uart_clk>; + clock-frequency = <58820000>; }; serial3: serial@54006b00 { @@ -99,6 +102,7 @@ pinctrl-names = "default"; pinctrl-0 = <&pinctrl_uart3>; clocks = <&uart_clk>; + clock-frequency = <58820000>; }; i2c0: i2c@58780000 { diff --git a/arch/arm/dts/uniphier-ph1-ld20.dtsi b/arch/arm/dts/uniphier-ph1-ld20.dtsi index 1bb45be..fc1c6bf 100644 --- a/arch/arm/dts/uniphier-ph1-ld20.dtsi +++ b/arch/arm/dts/uniphier-ph1-ld20.dtsi @@ -105,6 +105,7 @@ pinctrl-names = "default"; pinctrl-0 = <&pinctrl_uart0>; clocks = <&uart_clk>; + clock-frequency = <58820000>; }; serial1: serial@54006900 { @@ -115,6 +116,7 @@ pinctrl-names = "default"; pinctrl-0 = <&pinctrl_uart1>; clocks = <&uart_clk>; + clock-frequency = <58820000>; }; serial2: serial@54006a00 { @@ -125,6 +127,7 @@ pinctrl-names = "default"; pinctrl-0 = <&pinctrl_uart2>; clocks = <&uart_clk>; + clock-frequency = <58820000>; }; serial3: serial@54006b00 { @@ -135,6 +138,7 @@ pinctrl-names = "default"; pinctrl-0 = <&pinctrl_uart3>; clocks = <&uart_clk>; + clock-frequency = <58820000>; }; i2c0: i2c@58780000 {