From patchwork Sat Dec 8 20:56:56 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Reichl X-Patchwork-Id: 10719773 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id EAA6B14E2 for ; Sat, 8 Dec 2018 20:58:10 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id CE2A72B072 for ; Sat, 8 Dec 2018 20:58:10 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id BF7462B0F8; Sat, 8 Dec 2018 20:58:10 +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=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI 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 095B52B072 for ; Sat, 8 Dec 2018 20:58:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726196AbeLHU6J (ORCPT ); Sat, 8 Dec 2018 15:58:09 -0500 Received: from wp126.webpack.hosteurope.de ([80.237.132.133]:34874 "EHLO wp126.webpack.hosteurope.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726194AbeLHU6J (ORCPT ); Sat, 8 Dec 2018 15:58:09 -0500 Received: from [2003:a:659:3f00:21a:4dff:fe85:1148] (helo=hermes.fivetechno.de); authenticated by wp126.webpack.hosteurope.de running ExIM with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) id 1gVjfm-0007rx-Ec; Sat, 08 Dec 2018 21:58:02 +0100 X-Virus-Scanned: by amavisd-new 2.8.1 using newest ClamAV at linuxbbg.five-lan.de Received: from odroid-x2.fritz.box (p5B125870.dip0.t-ipconnect.de [91.18.88.112]) (authenticated bits=0) by hermes.fivetechno.de (8.15.2/8.14.5/SuSE Linux 0.8) with ESMTPSA id wB8KvrNK009458 (version=TLSv1.2 cipher=DHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO); Sat, 8 Dec 2018 21:57:58 +0100 From: Markus Reichl To: krzk@kernel.org Cc: robh+dt@kernel.org, mark.rutland@arm.com, kgene@kernel.org, linux-samsung-soc@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Markus Reichl Subject: [PATCH] ARM: dts: exynos: Add all CPUs in cooling maps for odroid-X2. Date: Sat, 8 Dec 2018 21:56:56 +0100 Message-Id: <20181208205656.15430-1-m.reichl@fivetechno.de> X-Mailer: git-send-email 2.11.0 X-bounce-key: webpack.hosteurope.de;m.reichl@fivetechno.de;1544302688;b3bfb501; X-HE-SMSGID: 1gVjfm-0007rx-Ec Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Patch [1] ARM: dts: exynos: Add all CPUs in cooling maps did not update exynos4412-prime.dtsi. This is not a problem with odroid-U3 using own map (with fan) but with odroid-X2 relying only on exynos4412-prime.dtsi. [1] https://patchwork.kernel.org/patch/10685765/ Signed-off-by: Markus Reichl --- arch/arm/boot/dts/exynos4412-prime.dtsi | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/arch/arm/boot/dts/exynos4412-prime.dtsi b/arch/arm/boot/dts/exynos4412-prime.dtsi index 8e7a7fb98124..d83fbd4e434c 100644 --- a/arch/arm/boot/dts/exynos4412-prime.dtsi +++ b/arch/arm/boot/dts/exynos4412-prime.dtsi @@ -30,9 +30,11 @@ }; &cooling_map0 { - cooling-device = <&cpu0 9 9>; + cooling-device = <&cpu0 9 9>, <&cpu1 9 9>, + <&cpu2 9 9>, <&cpu3 9 9>; }; &cooling_map1 { - cooling-device = <&cpu0 15 15>; + cooling-device = <&cpu0 15 15>, <&cpu1 15 15>, + <&cpu2 15 15>, <&cpu3 15 15>; };