Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932219AbdC2K2B (ORCPT ); Wed, 29 Mar 2017 06:28:01 -0400 Received: from mail-pg0-f46.google.com ([74.125.83.46]:34788 "EHLO mail-pg0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932162AbdC2K16 (ORCPT ); Wed, 29 Mar 2017 06:27:58 -0400 Date: Wed, 29 Mar 2017 18:27:40 +0800 From: Leo Yan To: Suzuki K Poulose Cc: Jonathan Corbet , Rob Herring , Mark Rutland , Wei Xu , Catalin Marinas , Will Deacon , Andy Gross , David Brown , Michael Turquette , Stephen Boyd , Mathieu Poirier , Guodong Xu , John Stultz , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-arm-msm@vger.kernel.org, linux-soc@vger.kernel.org, linux-clk@vger.kernel.org, mike.leach@linaro.org, sudeep.holla@arm.com Subject: Re: [PATCH v5 6/9] coresight: add support for CPU debug module Message-ID: <20170329102740.GA20804@leoy-linaro> References: <1490466197-29163-1-git-send-email-leo.yan@linaro.org> <1490466197-29163-7-git-send-email-leo.yan@linaro.org> <31be033f-514e-e48a-3ba2-a5c5cd477548@arm.com> <20170329030735.GA23889@leoy-linaro> <5584203e-cb19-a5d2-45b1-3e78d3482c55@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5584203e-cb19-a5d2-45b1-3e78d3482c55@arm.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2034 Lines: 49 On Wed, Mar 29, 2017 at 10:07:07AM +0100, Suzuki K Poulose wrote: [...] > >>>+ if (mode == EDDEVID_IMPL_NONE) { > >>>+ drvdata->edpcsr_present = false; > >>>+ drvdata->edcidsr_present = false; > >>>+ drvdata->edvidsr_present = false; > >>>+ } else if (mode == EDDEVID_IMPL_EDPCSR) { > >>>+ drvdata->edpcsr_present = true; > >>>+ drvdata->edcidsr_present = false; > >>>+ drvdata->edvidsr_present = false; > >>>+ } else if (mode == EDDEVID_IMPL_EDPCSR_EDCIDSR) { > >>>+ if (!IS_ENABLED(CONFIG_64BIT) && > >>>+ (pcsr_offset == EDDEVID1_PCSR_NO_OFFSET_DIS_AARCH32)) > >>>+ drvdata->edpcsr_present = false; > >>>+ else > >>>+ drvdata->edpcsr_present = true; > >> > >>Sorry, I forgot why we do this check only in this mode. Shouldn't this be > >>common to all modes (of course which implies PCSR is present) ? > > > >No. PCSROffset is defined differently in ARMv7 and ARMv8; So finally we > >simplize PCSROffset value : > >0000 - Sample offset applies based on the instruction state (indicated by PCSR[0]) > >0001 - No offset applies. > >0010 - No offset applies, but do not use in AArch32 mode! > > > >So we need handle the corner case is when CPU runs AArch32 mode and > >PCSRoffset = 'b0010. Other cases the pcsr should be present. > > I understand that reasoning. But my question is, why do we check for PCSROffset > only when mode == EDDEVID_IMPL_EDPCSR_EDCIDSR and not for say mode == EDDEVID_IMPL_EDPCSR or > any other mode where PCSR is present. Sorry I misunderstood your question. I made mistake when I analyzed the possbile combination for mode and PCSROffset so I thought it's the only case should handle: { EDDEVID_IMPL_EDPCSR_EDCIDSR, EDDEVID1_PCSR_NO_OFFSET_DIS_AARCH32 } Below three combinations are possible to exist; so you are right, I should move this out for the checking: { EDDEVID_IMPL_NONE, EDDEVID1_PCSR_NO_OFFSET_DIS_AARCH32 } { EDDEVID_IMPL_EDPCSR_EDCIDSR, EDDEVID1_PCSR_NO_OFFSET_DIS_AARCH32 } { EDDEVID_IMPL_FULL, EDDEVID1_PCSR_NO_OFFSET_DIS_AARCH32 } Thanks, Leo Yan