From patchwork Fri Oct 25 09:29:29 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jijie Shao X-Patchwork-Id: 13850317 Received: from szxga07-in.huawei.com (szxga07-in.huawei.com [45.249.212.35]) (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 665CF1D26E7; Fri, 25 Oct 2024 09:36:23 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.249.212.35 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1729848987; cv=none; b=SKttT4wfFrFOPXpZ1hYIKxZz340QSnetB7mraHYlZD75jLqiSx69kZHGUmDU6tUY83ceiGSX3TDkX0CwQj4wAGW9dwY58ebXVBXvEnLR6jdewoYAsPjVwFis6UHkG71jw6U3jAaoCyv+59WLfAgnPGkarZf8wukSFp7B2+9zNSE= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1729848987; c=relaxed/simple; bh=NsYOqFpzdrIrWT6NiyUNfAQahqInYQXDY8E5PUrFv1U=; h=From:To:CC:Subject:Date:Message-ID:MIME-Version:Content-Type; b=OWPvSwMjskMt7ZFb1FnxvT+z7818mx1BFXwkEfM+5tv1hLIgfcuRq8+rzdDkCsgBzw0Nj4RCG6nAbLTy6H9bIiDZL9kdvLNVxcYb/7cIeMhg1q1GGx+23ZU0dXSCKtJ1IVtzwo1FWdU7eqALW+Qailu+3cvla4iw5Mn/K7+Hyn4= 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.35 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.162.112]) by szxga07-in.huawei.com (SkyGuard) with ESMTP id 4XZd0t2M3Hz1SD0l; Fri, 25 Oct 2024 17:34:54 +0800 (CST) Received: from kwepemm000007.china.huawei.com (unknown [7.193.23.189]) by mail.maildlp.com (Postfix) with ESMTPS id 8E815140361; Fri, 25 Oct 2024 17:36:20 +0800 (CST) Received: from localhost.localdomain (10.90.30.45) by kwepemm000007.china.huawei.com (7.193.23.189) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.1.2507.39; Fri, 25 Oct 2024 17:36:19 +0800 From: Jijie Shao To: , , , , , CC: , , , , , , , Subject: [PATCH V3 net 0/9] There are some bugfix for the HNS3 ethernet driver Date: Fri, 25 Oct 2024 17:29:29 +0800 Message-ID: <20241025092938.2912958-1-shaojijie@huawei.com> X-Mailer: git-send-email 2.30.0 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-ClientProxiedBy: dggems702-chm.china.huawei.com (10.3.19.179) To kwepemm000007.china.huawei.com (7.193.23.189) X-Patchwork-Delegate: kuba@kernel.org There are some bugfix for the HNS3 ethernet driver --- ChangeLog: v2 -> v3: - Rewrite the commit logs of net: hns3: add sync command to sync io-pgtable' to add more verbose explanation, suggested Paolo. - Add fixes tag for hardware issue, suggested Paolo and Simon Horman. v2: https://lore.kernel.org/all/20241018101059.1718375-1-shaojijie@huawei.com/ v1 -> v2: - Pass IRQF_NO_AUTOEN to request_irq(), suggested by Jakub. - Rewrite the commit logs of 'net: hns3: default enable tx bounce buffer when smmu enabled' and 'net: hns3: add sync command to sync io-pgtable'. v1: https://lore.kernel.org/all/20241011094521.3008298-1-shaojijie@huawei.com/ --- Hao Lan (4): net: hns3: fixed reset failure issues caused by the incorrect reset type net: hns3: fix missing features due to dev->features configuration too early net: hns3: Resolved the issue that the debugfs query result is inconsistent. net: hns3: fixed hclge_fetch_pf_reg accesses bar space out of bounds issue Jian Shen (3): net: hns3: add sync command to sync io-pgtable net: hns3: don't auto enable misc vector net: hns3: initialize reset_timer before hclgevf_misc_irq_init() Jie Wang (1): net: hns3: fix kernel crash when 1588 is sent on HIP08 devices Peiyang Wang (1): net: hns3: default enable tx bounce buffer when smmu enabled .../ethernet/hisilicon/hns3/hns3_debugfs.c | 4 +- .../net/ethernet/hisilicon/hns3/hns3_enet.c | 59 ++++++++++++++++++- .../net/ethernet/hisilicon/hns3/hns3_enet.h | 2 + .../ethernet/hisilicon/hns3/hns3_ethtool.c | 33 +++++++++++ .../hisilicon/hns3/hns3pf/hclge_main.c | 45 +++++++++++--- .../hisilicon/hns3/hns3pf/hclge_ptp.c | 3 + .../hisilicon/hns3/hns3pf/hclge_regs.c | 9 +-- .../hisilicon/hns3/hns3vf/hclgevf_main.c | 40 ++++++++++--- .../hisilicon/hns3/hns3vf/hclgevf_regs.c | 9 +-- 9 files changed, 178 insertions(+), 26 deletions(-)