From nobody Sun Apr 5 16:27:55 2026 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 E4A64ECAAD3 for ; Wed, 14 Sep 2022 12:11:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229976AbiINMLj (ORCPT ); Wed, 14 Sep 2022 08:11:39 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44384 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230136AbiINMLQ (ORCPT ); Wed, 14 Sep 2022 08:11:16 -0400 Received: from mx0b-001ae601.pphosted.com (mx0b-001ae601.pphosted.com [67.231.152.168]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 019BC80346 for ; Wed, 14 Sep 2022 05:11:12 -0700 (PDT) Received: from pps.filterd (m0077474.ppops.net [127.0.0.1]) by mx0b-001ae601.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 28EBt7vL003707; Wed, 14 Sep 2022 07:09:57 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cirrus.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=PODMain02222019; bh=Pgl4azxf90HlSnGT8l1UNSDlf+sSOeBJVYvFNp1rmXo=; b=CrakFzMWTVu6daxeDO6hikh9Q8wUtOXcRkxc+W2vp/MAG+ZUG/J07xaNNIjj2bxjY71G a17tICpo/PZqptoy7JaZ5Fy6aTCsDIHXm+X9HZ8Ouy0gFV6Gi3pbf8TIznm5GowNyhF/ QeI4FajuCdAlHlgZSllorkZDzkra2YcUo9aQQQ5Y4wk7C4e0X1MpRBgFJh9zN+KhlBnU VRbU8oU/sG9tpSAv8eUGVo0GXgGaryvFxaBw5V5sg9WWKDap1POPtN9wN9SJza6Jopd8 xh6sd/RDdXcHz+KML/bxm6tufCoMn/NkdCg5lTa0ur8CmjhQLgEwQq04wDl4Lgs2X1LK NQ== Received: from ediex01.ad.cirrus.com ([84.19.233.68]) by mx0b-001ae601.pphosted.com (PPS) with ESMTPS id 3jjxyr0xed-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Wed, 14 Sep 2022 07:09:57 -0500 Received: from ediex01.ad.cirrus.com (198.61.84.80) by ediex01.ad.cirrus.com (198.61.84.80) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1118.12; Wed, 14 Sep 2022 07:09:56 -0500 Received: from ediswmail.ad.cirrus.com (198.61.86.93) by ediex01.ad.cirrus.com (198.61.84.80) with Microsoft SMTP Server id 15.2.1118.12 via Frontend Transport; Wed, 14 Sep 2022 07:09:56 -0500 Received: from edi-sw-dsktp-006.ad.cirrus.com (edi-sw-dsktp-006.ad.cirrus.com [198.90.251.95]) by ediswmail.ad.cirrus.com (Postfix) with ESMTP id 2035F46C; Wed, 14 Sep 2022 12:09:56 +0000 (UTC) From: Richard Fitzgerald To: , , , CC: , , , Simon Trimmer , Richard Fitzgerald Subject: [PATCH v3 1/5] soundwire: cadence: fix updating slave status when a bus has multiple peripherals Date: Wed, 14 Sep 2022 13:09:45 +0100 Message-ID: <20220914120949.747951-2-rf@opensource.cirrus.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220914120949.747951-1-rf@opensource.cirrus.com> References: <20220914120949.747951-1-rf@opensource.cirrus.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Proofpoint-ORIG-GUID: I-TPL-29xc13rcFgNZoqYxiC5XJBVQcT X-Proofpoint-GUID: I-TPL-29xc13rcFgNZoqYxiC5XJBVQcT X-Proofpoint-Spam-Reason: safe Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: Simon Trimmer The cadence IP explicitly reports slave status changes with bits for each possible change. The function cdns_update_slave_status() attempts to translate this into the current status of each of the slaves. However when there are multiple peripherals on a bus any slave that did not have a status change when the work function ran would not have it's status updated - the array is initialised to a value that equates to UNATTACHED and this can cause spurious reports that slaves had dropped off the bus. In the case where a slave has no status change or has multiple status changes the value from the last PING command is used. Signed-off-by: Simon Trimmer Signed-off-by: Richard Fitzgerald Reviewed-by: Pierre-Louis Bossart --- drivers/soundwire/cadence_master.c | 57 +++++++++++++----------------- 1 file changed, 25 insertions(+), 32 deletions(-) diff --git a/drivers/soundwire/cadence_master.c b/drivers/soundwire/cadence= _master.c index 4fbb19557f5e..245191d22ccd 100644 --- a/drivers/soundwire/cadence_master.c +++ b/drivers/soundwire/cadence_master.c @@ -782,6 +782,7 @@ static int cdns_update_slave_status(struct sdw_cdns *cd= ns, enum sdw_slave_status status[SDW_MAX_DEVICES + 1]; bool is_slave =3D false; u32 mask; + u32 val; int i, set_status; =20 memset(status, 0, sizeof(status)); @@ -789,41 +790,38 @@ static int cdns_update_slave_status(struct sdw_cdns *= cdns, for (i =3D 0; i <=3D SDW_MAX_DEVICES; i++) { mask =3D (slave_intstat >> (i * CDNS_MCP_SLAVE_STATUS_NUM)) & CDNS_MCP_SLAVE_STATUS_BITS; - if (!mask) - continue; =20 - is_slave =3D true; set_status =3D 0; =20 - if (mask & CDNS_MCP_SLAVE_INTSTAT_RESERVED) { - status[i] =3D SDW_SLAVE_RESERVED; - set_status++; - } - - if (mask & CDNS_MCP_SLAVE_INTSTAT_ATTACHED) { - status[i] =3D SDW_SLAVE_ATTACHED; - set_status++; - } + if (mask) { + is_slave =3D true; =20 - if (mask & CDNS_MCP_SLAVE_INTSTAT_ALERT) { - status[i] =3D SDW_SLAVE_ALERT; - set_status++; - } + if (mask & CDNS_MCP_SLAVE_INTSTAT_RESERVED) { + status[i] =3D SDW_SLAVE_RESERVED; + set_status++; + } =20 - if (mask & CDNS_MCP_SLAVE_INTSTAT_NPRESENT) { - status[i] =3D SDW_SLAVE_UNATTACHED; - set_status++; - } + if (mask & CDNS_MCP_SLAVE_INTSTAT_ATTACHED) { + status[i] =3D SDW_SLAVE_ATTACHED; + set_status++; + } =20 - /* first check if Slave reported multiple status */ - if (set_status > 1) { - u32 val; + if (mask & CDNS_MCP_SLAVE_INTSTAT_ALERT) { + status[i] =3D SDW_SLAVE_ALERT; + set_status++; + } =20 - dev_warn_ratelimited(cdns->dev, - "Slave %d reported multiple Status: %d\n", - i, mask); + if (mask & CDNS_MCP_SLAVE_INTSTAT_NPRESENT) { + status[i] =3D SDW_SLAVE_UNATTACHED; + set_status++; + } + } =20 - /* check latest status extracted from PING commands */ + /* + * check that there was a single reported Slave status and when + * there is not use the latest status extracted from PING commands + */ + if (set_status !=3D 1) { val =3D cdns_readl(cdns, CDNS_MCP_SLAVE_STAT); val >>=3D (i * 2); =20 @@ -842,11 +840,6 @@ static int cdns_update_slave_status(struct sdw_cdns *c= dns, status[i] =3D SDW_SLAVE_RESERVED; break; } - - dev_warn_ratelimited(cdns->dev, - "Slave %d status updated to %d\n", - i, status[i]); - } } =20 --=20 2.30.2