From patchwork Tue Oct 9 18:33:52 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tony Luck X-Patchwork-Id: 10633131 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 17BD016B1 for ; Tue, 9 Oct 2018 18:35:21 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 10D492891C for ; Tue, 9 Oct 2018 18:35:21 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 0F555295C0; Tue, 9 Oct 2018 18:35:21 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id BDCDC2891C for ; Tue, 9 Oct 2018 18:35:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726496AbeJJBxh (ORCPT ); Tue, 9 Oct 2018 21:53:37 -0400 Received: from mga18.intel.com ([134.134.136.126]:64070 "EHLO mga18.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726468AbeJJBxh (ORCPT ); Tue, 9 Oct 2018 21:53:37 -0400 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 09 Oct 2018 11:35:19 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,361,1534834800"; d="scan'208";a="97900981" Received: from agluck-desk.sc.intel.com ([10.3.52.160]) by orsmga001.jf.intel.com with ESMTP; 09 Oct 2018 11:33:58 -0700 From: Tony Luck To: "Rafael J. Wysocki" Cc: Tony Luck , Borislav Petkov , Qiuxu Zhuo , Aristeu Rozanski , Mauro Carvalho Chehab , linux-edac@vger.kernel.org, linux-acpi@vger.kernel.org Subject: [PATCH 0/3] ACPI ADXL and associated EDAC driver change Date: Tue, 9 Oct 2018 11:33:52 -0700 Message-Id: <20181009183355.20597-1-tony.luck@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20181009182932.GA20408@agluck-desk> References: <20181009182932.GA20408@agluck-desk> Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Part 1: Add code to ACPI to make the DSM calls and export interface functions Part 2: Some EDAC cleanup (used to be part 3 of the earlier 5 part series) Part 3: Update skx_edac.c to use (if we have some NVDIMMs present) Qiuxu Zhuo (2): EDAC, skx_edac: Clean up debugfs EDAC, skx_edac: Add address translation for non-volatile DIMMs Tony Luck (1): ACPI / adxl: Address translation interface using ACPI DSM drivers/acpi/Kconfig | 10 ++ drivers/acpi/Makefile | 3 + drivers/acpi/acpi_adxl.c | 199 +++++++++++++++++++++++++++++++ drivers/edac/Kconfig | 1 + drivers/edac/skx_edac.c | 246 +++++++++++++++++++++++++++++++-------- include/linux/adxl.h | 25 ++++ 6 files changed, 435 insertions(+), 49 deletions(-) create mode 100644 drivers/acpi/acpi_adxl.c create mode 100644 include/linux/adxl.h