Received: by 2002:a25:6193:0:0:0:0:0 with SMTP id v141csp796183ybb; Wed, 25 Mar 2020 09:45:04 -0700 (PDT) X-Google-Smtp-Source: ADFU+vvRHCdUajnPaipiJ6J1tIWtmfSVMTRuTpKw+neOLwJaMMLPyKITCdewK2yoakvQO2GiEovh X-Received: by 2002:aca:ecd7:: with SMTP id k206mr3096375oih.113.1585154703956; Wed, 25 Mar 2020 09:45:03 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1585154703; cv=none; d=google.com; s=arc-20160816; b=TtxTdCd96qqs4VwpPKXnOdciOdOYfjFdXR3rUj6NdIzFIsbS5OCqrTTbZb3xtyDSdr bTxHLiJ4xX7TeojFs1T3bAdQXgxyV0qww1F6cUx2j+8VHY8bBF8Xxh4qYLFk/Y8zXRHX seTAVdaNzUxjdeLTb0kKu2nlPW8Y8t+DY5Nwv19ZZ+XRKLSdNxnJYu9/UaYIQOQSCU80 EIuyKYxKj8NinOqPXC8c6szypPiyjWxmklKv28/gLZ9McEsLrit1VoYgyx9nQk+Yh7CJ 8lyybBicquGorQSduqz8UY6C2MEKL82v5yDtcy5rIL/fI4PpFuEEFKBN9RvZPPF8EMMB OdVw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=s+vwjOElApvLqg6MXEcqs7quF1gHz9k/Ci0JUvqW/zo=; b=e8nX6bp+u5a+UJv6/upahwL38vrrSC/ChkiX6oV69z2Sb0gZYaOuAzKRR4TUumfL9q bsFcFIjLWCOaqs3WYdKOXZ9EbD7xEQ6mNYoOKimFlzI9BitcH5m7SHjrs7RyI46HRteg oZg8G0eaLuYFkiSrvLxn69VSwp0xLqlg+kjZ+XHIFMIfzipX8RCsBdKctGD+5sUxNvmR oMXGT3rty63htXIaxIZXqRZajc+wl2EgkMAhMvZRYBkQW42oqIkgqulBPLr/JSMeIfUk FCjKSJ4kiCUjzuqJqqHj6iJl3cwhOU/xbO0HTGT3rC4kqwGKNqV9z59yFMSzM6nHhjBX g4rg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id l3si26244oie.6.2020.03.25.09.44.50; Wed, 25 Mar 2020 09:45:03 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727751AbgCYQnT (ORCPT + 99 others); Wed, 25 Mar 2020 12:43:19 -0400 Received: from szxga05-in.huawei.com ([45.249.212.191]:12193 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1727395AbgCYQnT (ORCPT ); Wed, 25 Mar 2020 12:43:19 -0400 Received: from DGGEMS404-HUB.china.huawei.com (unknown [172.30.72.59]) by Forcepoint Email with ESMTP id 9C66C732E45CF1BFCD29; Thu, 26 Mar 2020 00:43:13 +0800 (CST) Received: from DESKTOP-6T4S3DQ.china.huawei.com (10.47.86.66) by DGGEMS404-HUB.china.huawei.com (10.3.19.204) with Microsoft SMTP Server id 14.3.487.0; Thu, 26 Mar 2020 00:43:04 +0800 From: Shiju Jose To: , , , , , , , , , , , CC: , , , , Shiju Jose Subject: [PATCH v6 0/2] ACPI / APEI: Add support to notify the vendor specific HW errors Date: Wed, 25 Mar 2020 16:42:21 +0000 Message-ID: <20200325164223.650-1-shiju.jose@huawei.com> X-Mailer: git-send-email 2.26.0.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.86.66] 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: V6: 1. Fix few changes in the patch subject line suggested by Bjorn Helgaas. V5: 1. Fix comments from James Morse. 1.1 Changed the notification method to use the atomic_notifier_chain. 1.2 Add the error handled status for the user space. 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 | 35 ++- drivers/pci/controller/Kconfig | 8 + drivers/pci/controller/Makefile | 1 + drivers/pci/controller/pcie-hisi-error.c | 357 +++++++++++++++++++++++ drivers/ras/ras.c | 5 +- include/acpi/ghes.h | 28 ++ include/linux/ras.h | 6 +- include/ras/ras_event.h | 7 +- 8 files changed, 440 insertions(+), 7 deletions(-) create mode 100644 drivers/pci/controller/pcie-hisi-error.c -- 2.17.1