From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754475Ab3LDABQ (ORCPT ); Tue, 3 Dec 2013 19:01:16 -0500 Received: from mga09.intel.com ([134.134.136.24]:58341 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753139Ab3LDABN (ORCPT ); Tue, 3 Dec 2013 19:01:13 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.93,821,1378882800"; d="scan'208";a="418891250" From: "David E. Box" To: mjg59@srcf.ucam.org, rjw@rjwysocki.net Cc: linux-kernel@vger.kernel.org, platform-driver-x86@vger.kernel.org, linux-acpi@vger.kernel.org, "David E. Box" Subject: [PATCHv2 0/2] New driver for Intel IOSF MBI access Date: Tue, 3 Dec 2013 15:59:36 -0800 Message-Id: <1386115178-7559-1-git-send-email-david.e.box@linux.intel.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1385100357-5459-1-git-send-email-david.e.box@linux.intel.com> References: <1385100357-5459-1-git-send-email-david.e.box@linux.intel.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: "David E. Box" David E. Box (2): New Driver for IOSF-SB MBI access on Intel SOCs ACPI/platform: Add ACPI ID for Intel MBI device v2: Made modular as reasons for built-in only no longer a concern. Moved to x86 platform driver, as suggested by Matthew Garrett Changed initialization sequence to do probe during init, thereby forcing an exit if the device does not exist. Module exit does not otherwise occur if module_platform_driver() is used and the device doesn't exist. drivers/acpi/acpi_platform.c | 3 +- drivers/platform/x86/Kconfig | 8 ++ drivers/platform/x86/Makefile | 2 + drivers/platform/x86/iosf_mbi.c | 188 +++++++++++++++++++++++++++++++++++++++ drivers/platform/x86/iosf_mbi.h | 89 ++++++++++++++++++ 5 files changed, 289 insertions(+), 1 deletion(-) create mode 100644 drivers/platform/x86/iosf_mbi.c create mode 100644 drivers/platform/x86/iosf_mbi.h -- 1.7.10.4