From patchwork Fri Jan 15 21:37:04 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jon Derrick X-Patchwork-Id: 8044591 X-Patchwork-Delegate: bhelgaas@google.com Return-Path: X-Original-To: patchwork-linux-pci@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 9026A9F1C0 for ; Fri, 15 Jan 2016 21:34:44 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id C033D20222 for ; Fri, 15 Jan 2016 21:34:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C73E020256 for ; Fri, 15 Jan 2016 21:34:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752397AbcAOVel (ORCPT ); Fri, 15 Jan 2016 16:34:41 -0500 Received: from mga01.intel.com ([192.55.52.88]:43956 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750907AbcAOVel (ORCPT ); Fri, 15 Jan 2016 16:34:41 -0500 Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga101.fm.intel.com with ESMTP; 15 Jan 2016 13:34:41 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,301,1449561600"; d="scan'208";a="894102640" Received: from unknown (HELO localhost.lm.intel.com) ([10.232.112.38]) by fmsmga002.fm.intel.com with ESMTP; 15 Jan 2016 13:34:40 -0800 From: Jon Derrick To: helgaas@kernel.org Cc: Jon Derrick , linux-kernel@vger.kernel.org, linux-pci@vger.kernel.org, tglx@linutronix.de, dan.j.williams@intel.com, bryan.e.veal@intel.com, keith.busch@intel.com, bhelgaas@google.com Subject: [PATCH] x86/Kconfig: Move VMD to Processor Types and Features Date: Fri, 15 Jan 2016 14:37:04 -0700 Message-Id: <1452893824-11326-1-git-send-email-jonathan.derrick@intel.com> X-Mailer: git-send-email 2.1.4 Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP VMD is an Intel-specific, x86 device and should be listed under the Processor Types and Features menu. Signed-off-by: Jon Derrick --- Applies to https://git.kernel.org/cgit/linux/kernel/git/helgaas/pci.git/log/?h=pci/host-vmd arch/x86/Kconfig | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 3e6aca8..6083255 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -2137,6 +2137,19 @@ config MODIFY_LDT_SYSCALL source "kernel/livepatch/Kconfig" +config VMD + depends on PCI_MSI + tristate "Volume Management Device Driver" + default N + ---help--- + Adds support for the Intel Volume Management Device (VMD). VMD is a + secondary PCI host bridge that allows PCI Express root ports, + and devices attached to them, to be removed from the default + PCI domain and placed within the VMD domain. This provides + more bus resources than are otherwise possible with a + single domain. If you know your system provides one of these and + has devices attached to it, say Y; if you are not sure, say N. + endmenu config ARCH_ENABLE_MEMORY_HOTPLUG @@ -2665,19 +2678,6 @@ config PMC_ATOM def_bool y depends on PCI -config VMD - depends on PCI_MSI - tristate "Volume Management Device Driver" - default N - ---help--- - Adds support for the Intel Volume Management Device (VMD). VMD is a - secondary PCI host bridge that allows PCI Express root ports, - and devices attached to them, to be removed from the default - PCI domain and placed within the VMD domain. This provides - more bus resources than are otherwise possible with a - single domain. If you know your system provides one of these and - has devices attached to it, say Y; if you are not sure, say N. - source "net/Kconfig" source "drivers/Kconfig"