From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8B788C433ED for ; Fri, 16 Apr 2021 09:32:48 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 71BE06115B for ; Fri, 16 Apr 2021 09:32:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S241943AbhDPJdL (ORCPT ); Fri, 16 Apr 2021 05:33:11 -0400 Received: from foss.arm.com ([217.140.110.172]:37234 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S239848AbhDPJdK (ORCPT ); Fri, 16 Apr 2021 05:33:10 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id D4A0F106F; Fri, 16 Apr 2021 02:32:45 -0700 (PDT) Received: from e113632-lin (e113632-lin.cambridge.arm.com [10.1.194.46]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 4ACA53FA35; Fri, 16 Apr 2021 02:32:44 -0700 (PDT) From: Valentin Schneider To: Ruifeng Zhang , Dietmar Eggemann Cc: linux@armlinux.org.uk, sudeep.holla@arm.com, Greg KH , "Rafael J. Wysocki" , a.p.zijlstra@chello.nl, mingo@kernel.org, ruifeng.zhang1@unisoc.com, nianfu.bai@unisoc.com, linux-arm-kernel@lists.infradead.org, Linux Kernel Mailing List Subject: Re: [PATCH v2 0/1] arm: topology: parse the topology from the dt In-Reply-To: References: <20210414122326.5255-1-ruifeng.zhang0110@gmail.com> <8735vrmnc7.mognet@arm.com> Date: Fri, 16 Apr 2021 10:32:35 +0100 Message-ID: <87wnt2lglo.mognet@arm.com> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 16/04/21 15:47, Ruifeng Zhang wrote: > For more requirements, if all cores in one physical cluster, the > {aff2} of all cores are the same value. > i.e. the sc9863a, > core0: 0000000081000000 > core1: 0000000081000100 > core2: 0000000081000200 > core3: 0000000081000300 > core4: 0000000081000400 > core5: 0000000081000500 > core6: 0000000081000600 > core7: 0000000081000700 > > According to MPIDR all cores will parse to the one cluster, but it's > the big.LITTLE system, it's need two logic cluster for schedule or > cpufreq. > So I think it's better to add the logic of parse topology from DT. Ah, so it's a slightly different issue, but still one that requires a different means of specifying topology.