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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E8859C433EF for ; Wed, 4 May 2022 02:14:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1344001AbiEDCSb (ORCPT ); Tue, 3 May 2022 22:18:31 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35806 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1343984AbiEDCS3 (ORCPT ); Tue, 3 May 2022 22:18:29 -0400 Received: from alexa-out-sd-01.qualcomm.com (alexa-out-sd-01.qualcomm.com [199.106.114.38]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 99DF32A72F; Tue, 3 May 2022 19:14:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=quicinc.com; i=@quicinc.com; q=dns/txt; s=qcdkim; t=1651630495; x=1683166495; h=message-id:date:mime-version:subject:to:cc:references: from:in-reply-to:content-transfer-encoding; bh=rMNGehIgiXmPL/7MJwr9CxJwJzaRTJNO1ROWw9C2U2I=; b=j+SuCXxwHeHbm1a4T4cgY9AIH09Okp28ye4afXU7iIemtIbkXtOKfJsE mHKGkCIIV03etbEgdIyFGnlBezYEu0+ox2wyqeedGOj3Cs9Kcmn5lq2o8 /EY1SGFE0S3WwsNi+a/j7Gzf9PfxhQRxPPaP94aN8+ljXoUvaPGdnHeNe g=; Received: from unknown (HELO ironmsg02-sd.qualcomm.com) ([10.53.140.142]) by alexa-out-sd-01.qualcomm.com with ESMTP; 03 May 2022 19:14:55 -0700 X-QCInternal: smtphost Received: from nasanex01c.na.qualcomm.com ([10.47.97.222]) by ironmsg02-sd.qualcomm.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 03 May 2022 19:14:55 -0700 Received: from nalasex01a.na.qualcomm.com (10.47.209.196) by nasanex01c.na.qualcomm.com (10.47.97.222) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.986.22; Tue, 3 May 2022 19:14:54 -0700 Received: from [10.50.60.188] (10.80.80.8) by nalasex01a.na.qualcomm.com (10.47.209.196) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.986.22; Tue, 3 May 2022 19:14:51 -0700 Message-ID: <13819b2d-26f0-14f4-9cb9-affb6b18f13d@quicinc.com> Date: Wed, 4 May 2022 07:44:47 +0530 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.6.1 Subject: Re: [PATCH] soc: qcom: socinfo: Add another ID for sc7180 Content-Language: en-US To: Douglas Anderson , Bjorn Andersson CC: , "Reviewed-by : Stephen Boyd" , Andy Gross , , References: <20220502173338.1.I26eca1856f99e6160d30de6d50ecab60e6226354@changeid> From: Sai Prakash Ranjan In-Reply-To: <20220502173338.1.I26eca1856f99e6160d30de6d50ecab60e6226354@changeid> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: [10.80.80.8] X-ClientProxiedBy: nasanex01b.na.qualcomm.com (10.46.141.250) To nalasex01a.na.qualcomm.com (10.47.209.196) Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org Hi, On 5/3/2022 6:03 AM, Douglas Anderson wrote: > It appears the some sc7180 devices, like the one in my > sc7180-trogdor-homestar, report an ID of 407 instead of 425. Add > another ID into the list. > > Signed-off-by: Douglas Anderson > --- > > drivers/soc/qcom/socinfo.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c > index cee579a267a6..2ef1dc2a1dd3 100644 > --- a/drivers/soc/qcom/socinfo.c > +++ b/drivers/soc/qcom/socinfo.c > @@ -318,6 +318,7 @@ static const struct soc_id soc_id[] = { > { 396, "IPQ8071A" }, > { 402, "IPQ6018" }, > { 403, "IPQ6028" }, > + { 407, "SC7180" }, > { 421, "IPQ6000" }, > { 422, "IPQ6010" }, > { 425, "SC7180" }, Hmm, this ID maps to SM6250 which is a mobile variant. Not sure we should use it for SC7180 which already has 425 ID assigned, perks of marketing :) Thanks, Sai