Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752616AbdCOJcf (ORCPT ); Wed, 15 Mar 2017 05:32:35 -0400 Received: from regular1.263xmail.com ([211.150.99.141]:51630 "EHLO regular1.263xmail.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751881AbdCOJca (ORCPT ); Wed, 15 Mar 2017 05:32:30 -0400 X-263anti-spam: KSV:0; X-MAIL-GRAY: 0 X-MAIL-DELIVERY: 1 X-KSVirus-check: 0 X-ABS-CHECKED: 4 X-RL-SENDER: jay.xu@rock-chips.com X-FST-TO: heiko@sntech.de X-SENDER-IP: 58.22.7.114 X-LOGIN-NAME: jay.xu@rock-chips.com X-UNIQUE-TAG: <23ec452a663da2a771e754969a4a9891> X-ATTACHMENT-NUM: 0 X-DNS-TYPE: 0 From: Jianqun Xu To: heiko@sntech.de Cc: broonie@kernel.org, huangtao@rock-chips.com, wxt@rock-chips.com, linux-rockchip@lists.infradead.org, linux-kernel@vger.kernel.org, Jianqun Xu Subject: [PATCH] arm64: dts: rockchip: rk3368 swap clust0 and clust1 Date: Wed, 15 Mar 2017 17:30:16 +0800 Message-Id: <1489570216-13899-1-git-send-email-jay.xu@rock-chips.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1556 Lines: 76 Before this patch, clust1 has little core0~3, clust0 has big core0~3 cpu_l | cpu0 | cpu_l | cpu1 | clust1 cpu_l | cpu2 | cpu_l | cpu3 | ---------------------- cpu_b | cpu4 | cpu_b | cpu5 | clust0 cpu_b | cpu6 | cpu_b | cpu7 | With this patch, clust0 will have little core0~3, clust1 will have big core0~3 cpu_l | cpu0 | cpu_l | cpu1 | clust0 cpu_l | cpu2 | cpu_l | cpu3 | ---------------------- cpu_b | cpu4 | cpu_b | cpu5 | clust1 cpu_b | cpu6 | cpu_b | cpu7 | It makes no other change, just keep same with other SoCs definations. Signed-off-by: Jianqun Xu --- arch/arm64/boot/dts/rockchip/rk3368.dtsi | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/arch/arm64/boot/dts/rockchip/rk3368.dtsi b/arch/arm64/boot/dts/rockchip/rk3368.dtsi index a635adc..7b9d1e6 100644 --- a/arch/arm64/boot/dts/rockchip/rk3368.dtsi +++ b/arch/arm64/boot/dts/rockchip/rk3368.dtsi @@ -79,31 +79,31 @@ cpu-map { cluster0 { core0 { - cpu = <&cpu_b0>; + cpu = <&cpu_l0>; }; core1 { - cpu = <&cpu_b1>; + cpu = <&cpu_l1>; }; core2 { - cpu = <&cpu_b2>; + cpu = <&cpu_l2>; }; core3 { - cpu = <&cpu_b3>; + cpu = <&cpu_l3>; }; }; cluster1 { core0 { - cpu = <&cpu_l0>; + cpu = <&cpu_b0>; }; core1 { - cpu = <&cpu_l1>; + cpu = <&cpu_b1>; }; core2 { - cpu = <&cpu_l2>; + cpu = <&cpu_b2>; }; core3 { - cpu = <&cpu_l3>; + cpu = <&cpu_b3>; }; }; }; -- 1.9.1