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 X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 421D7C352A3 for ; Fri, 7 Feb 2020 10:32:21 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 19D7821741 for ; Fri, 7 Feb 2020 10:32:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727011AbgBGKcU (ORCPT ); Fri, 7 Feb 2020 05:32:20 -0500 Received: from szxga04-in.huawei.com ([45.249.212.190]:10167 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726867AbgBGKcT (ORCPT ); Fri, 7 Feb 2020 05:32:19 -0500 Received: from DGGEMS410-HUB.china.huawei.com (unknown [172.30.72.59]) by Forcepoint Email with ESMTP id AAFC14FD27FB1D769D9D; Fri, 7 Feb 2020 18:32:13 +0800 (CST) Received: from DESKTOP-6T4S3DQ.china.huawei.com (10.47.88.120) by DGGEMS410-HUB.china.huawei.com (10.3.19.210) with Microsoft SMTP Server id 14.3.439.0; Fri, 7 Feb 2020 18:32:04 +0800 From: Shiju Jose To: , , , , , , , , , , , CC: , , , , Shiju Jose Subject: [PATCH v4 0/2] ACPI: APEI: Add support to notify the vendor specific HW errors Date: Fri, 7 Feb 2020 10:31:41 +0000 Message-ID: <20200207103143.20104-1-shiju.jose@huawei.com> X-Mailer: git-send-email 2.19.2.windows.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII X-Originating-IP: [10.47.88.120] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Presently the vendor drivers are unable to do the recovery for the vendor specific recoverable HW errors, reported to the APEI driver in the vendor defined sections, because APEI driver does not support reporting the same to the vendor drivers. This patch set 1. add an interface to the APEI driver to enable the vendor drivers to register the event handling functions for the corresponding vendor specific HW errors and report the error to the vendor driver. 2. add driver to handle HiSilicon hip08 PCIe controller's errors which is an example application of the above APEI interface. Changes: V4: 1. Fix for the smatch warning in the PCIe error driver: warn: should '((((1))) << (9 + i))' be a 64 bit type? if (err->val_bits & BIT(HISI_PCIE_LOCAL_VALID_ERR_MISC + i)) ^^^ This should be BIT_ULL() because it goes up to 9 + 32. V3: 1. Fix the comments from Bjorn Helgaas. V2: 1. Changes in the HiSilicon PCIe controller's error handling driver for the comments from Bjorn Helgaas. 2. Changes in the APEI interface to support reporting the vendor error for module with multiple devices, but use the same section type. In the error handler will use socket id/sub module id etc to distinguish the device. V1: 1. Fix comments from James Morse. 2. add driver to handle HiSilicon hip08 PCIe controller's errors, which is an application of the above interface. Shiju Jose (1): ACPI: APEI: Add support to notify the vendor specific HW errors Yicong Yang (1): PCI: HIP: Add handling of HiSilicon HIP PCIe controller errors drivers/acpi/apei/ghes.c | 116 ++++++++++- drivers/pci/controller/Kconfig | 8 + drivers/pci/controller/Makefile | 1 + drivers/pci/controller/pcie-hisi-error.c | 334 +++++++++++++++++++++++++++++++ include/acpi/ghes.h | 56 ++++++ 5 files changed, 510 insertions(+), 5 deletions(-) create mode 100644 drivers/pci/controller/pcie-hisi-error.c -- 1.9.1