From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from szxga06-in.huawei.com (szxga06-in.huawei.com [45.249.212.32]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A85FA1272DE; Wed, 27 Mar 2024 11:48:57 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.249.212.32 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711540139; cv=none; b=m4CmLO824xstZ/mJGuwfoysRBlkYrK7zqufAkUyKmLT5h1f6SRrG12YQRahZtnP24wsj1uitCwJnn1SWdu7dy1p+5YPP4rjSWG15IORnE/FGKa6gvDz5P4YDQk1bERAgFszAaDqSBsx4IO1MBfmLHVDHBsmEARrUPp4aJjouSYw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711540139; c=relaxed/simple; bh=hPGzLCxEpMRWhVYVG43m2kzi5MKUooBkHU93WwdocMs=; h=From:To:CC:Subject:Date:Message-ID:MIME-Version:Content-Type; b=jX01xCFS6XdtLhYxtvEPlo25OvLp230+5qlOYxAeh/z+AU0RPqhvrsJEQ5RWwtpmS/sUSRdUzji2EzbbSMhuW0HTOTJmiVb1E2fR9kvjv9KGI34t6qNaA3+FD8nIdA2ulDqUDGjKJJRoA1sOlpsRS3lZz7yy9jWZ8ChQerBKrE8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com; spf=pass smtp.mailfrom=huawei.com; arc=none smtp.client-ip=45.249.212.32 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=huawei.com Received: from mail.maildlp.com (unknown [172.19.163.17]) by szxga06-in.huawei.com (SkyGuard) with ESMTP id 4V4Q0J1Nlxz1wnZp; Wed, 27 Mar 2024 19:48:00 +0800 (CST) Received: from kwepemm600007.china.huawei.com (unknown [7.193.23.208]) by mail.maildlp.com (Postfix) with ESMTPS id 7EACD1A0172; Wed, 27 Mar 2024 19:48:49 +0800 (CST) Received: from localhost.localdomain (10.67.165.2) by kwepemm600007.china.huawei.com (7.193.23.208) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.1.2507.35; Wed, 27 Mar 2024 19:48:48 +0800 From: Jijie Shao To: , , , , , , , , CC: , , , , , Subject: [PATCH V6 net-next 0/4] Support some features for the HNS3 ethernet driver Date: Wed, 27 Mar 2024 19:43:26 +0800 Message-ID: <20240327114330.1826631-1-shaojijie@huawei.com> X-Mailer: git-send-email 2.30.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-ClientProxiedBy: dggems703-chm.china.huawei.com (10.3.19.180) To kwepemm600007.china.huawei.com (7.193.23.208) Currently, the hns3 driver does not have the trace of the command queue. As a result, it is difficult to locate the communication between the driver and firmware. Therefore, the trace function of the command queue is added in this patch set to facilitate the locating of communication problems between the driver and firmware. If a RAS occurs, the driver will automatically reset to attempt to recover the RAS. Therefore, to locate the cause of the RAS, it is necessary to save the values of some RAS-related registers before the reset. So we added a patch in this patch set to print these information. --- changeLog: v5 -> v6: - Delete the redundant operation of adding '\0' after scnprintf, suggested by Ratheesh Kannoth v5: https://lore.kernel.org/all/20240309100044.2351166-1-shaojijie@huawei.com/ v4 -> v5: - Delete a patch about dump pfc frame statistics in tx timeout log by dmesg, suggested by Jiri Pirko - Rewrite the log message of patch about command queue trace, suggested by Jiri Pirko - Add a new patch about querying scc version by devlink info v4: https://lore.kernel.org/all/20240105010119.2619873-1-shaojijie@huawei.com/ v3 -> v4: - Adjuste the patches sequence in this patch set, suggested by Simon Horman v3: https://lore.kernel.org/all/20231216070018.222798-1-shaojijie@huawei.com/ v2 -> v3: - Fix the incorrect use of byte order in patch "net: hns3: add command queue trace for hns3" suggested by Simon Horman - Add a new patch to move constants from hclge_debugfs.h to hclge_debugfs.c suggested by Simon Horman v2: https://lore.kernel.org/all/20231214141135.613485-1-shaojijie@huawei.com/ v1 -> v2: - Delete a patch for ethtool -S to dump page pool statistics, suggested by Jakub Kicinski - Delete two patches about CMIS transceiver modules because ethtool get_module_eeprom_by_page op is not implemented, suggested by Jakub Kicinski v1: https://lore.kernel.org/all/20231211020816.69434-1-shaojijie@huawei.com/ --- Hao Chen (1): net: hns3: add support to query scc version by devlink info Hao Lan (1): net: hns3: add command queue trace for hns3 Jijie Shao (1): net: hns3: move constants from hclge_debugfs.h to hclge_debugfs.c Peiyang Wang (1): net: hns3: dump more reg info based on ras mod drivers/net/ethernet/hisilicon/hns3/hnae3.h | 13 + .../hns3/hns3_common/hclge_comm_cmd.c | 19 + .../hns3/hns3_common/hclge_comm_cmd.h | 24 +- .../hisilicon/hns3/hns3pf/hclge_debugfs.c | 646 +++++++++++++++++- .../hisilicon/hns3/hns3pf/hclge_debugfs.h | 643 +---------------- .../hisilicon/hns3/hns3pf/hclge_devlink.c | 44 +- .../hisilicon/hns3/hns3pf/hclge_devlink.h | 2 + .../hisilicon/hns3/hns3pf/hclge_err.c | 433 +++++++++++- .../hisilicon/hns3/hns3pf/hclge_err.h | 36 + .../hisilicon/hns3/hns3pf/hclge_main.c | 63 ++ .../hisilicon/hns3/hns3pf/hclge_main.h | 1 + .../hisilicon/hns3/hns3pf/hclge_trace.h | 94 +++ .../hisilicon/hns3/hns3vf/hclgevf_main.c | 40 ++ .../hisilicon/hns3/hns3vf/hclgevf_trace.h | 50 ++ 14 files changed, 1456 insertions(+), 652 deletions(-) -- 2.30.0