Received: by 10.223.176.46 with SMTP id f43csp2525242wra; Sun, 21 Jan 2018 22:15:19 -0800 (PST) X-Google-Smtp-Source: AH8x22522A0Sh6Y8POyMuoayM8mcWbG0sAvmVzKnMAAhOdRs+LNGxsNRCqk9yQmBtjI5qBUpwFvK X-Received: by 10.98.75.91 with SMTP id y88mr7445170pfa.178.1516601719344; Sun, 21 Jan 2018 22:15:19 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1516601719; cv=none; d=google.com; s=arc-20160816; b=e0cs5fw5/pqK8yXi8ihwOGi/iTBmVskQwTNfKZF4fWFTL7RkgkUaWjq1QRDySTabCf 2WgewEULtyqvIXYc8k6x1mQqBRl8PTPG1wu1Eh8eTN0YIjQdU3VLOK6OwW5XP6/CEPfu A16HSnREQmr+3zCtP2HzhmKzDpfkeOmLLNlhBC21hopXOgdENoJrhioGPewhTkwOTVIh HTYhMjcgd56W2lm3jI9k+5afSF8SPqWjLSWUhhSIvzopT/0NZo2LN1Kb1a2TeegooFjh Y6X8v1gwlbUKjIlDQ+viyZMB7091UiSPNnn7bWENqr/lKo55TlM/BFmeKR6rR4jeEaO4 LhIQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:date:subject:cc:to:from :arc-authentication-results; bh=zWz7mBZiWK9RpG5hWJnTboNJY/a9Hoi7xTF/1Y70jiY=; b=ARQwJ3gUucXSV/gXb+P9BloVhSDZTUfxzbALdefC86izijOVsT6xWIMsReqs5QGalS lshUgI5J7ZSptqiWrWm2SUJ/qtJeIUI6F1NL5ZuOf5tgeC8+GjzIBjxuGz9OsCnqMaYb pKBeZX8Y66dU8y4uCQV0g87/V6Zp2EX9/ShSptU8ivAo9F6wbcHi31jqVALJj9UnUwTc 2GX2XYknc/tLYGeOv9DMvZpFpry1oKW75OhHbhKOIPj4cRAuAXVLWa0aUT923hPcI+K2 ry6sXDll72n+hIhTUOYLm003hvEq1QMKk+kVUONJ4XerPKldlGXQOyq2MWedYqWZ9N4L n4iA== 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 9-v6si992354ple.367.2018.01.21.22.15.05; Sun, 21 Jan 2018 22:15:19 -0800 (PST) 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 S1751290AbeAVGOR (ORCPT + 99 others); Mon, 22 Jan 2018 01:14:17 -0500 Received: from thoth.sbs.de ([192.35.17.2]:57578 "EHLO thoth.sbs.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751117AbeAVGNN (ORCPT ); Mon, 22 Jan 2018 01:13:13 -0500 Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by thoth.sbs.de (8.15.2/8.15.2) with ESMTPS id w0M6CtO2008043 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Mon, 22 Jan 2018 07:12:55 +0100 Received: from md1f2u6c.ww002.siemens.net ([167.87.15.170]) by mail1.siemens.de (8.15.2/8.15.2) with ESMTP id w0M6Cq6h008276; Mon, 22 Jan 2018 07:12:52 +0100 From: Jan Kiszka To: Thomas Gleixner , Ingo Molnar , "H . Peter Anvin" , Bjorn Helgaas Cc: x86@kernel.org, Linux Kernel Mailing List , jailhouse-dev@googlegroups.com, linux-pci@vger.kernel.org, virtualization@lists.linux-foundation.org, Benedikt Spranger , Mark Rutland , Otavio Pontes , Rob Herring Subject: [PATCH 0/6] jailhouse: Enhance secondary Jailhouse guest support /wrt PCI Date: Mon, 22 Jan 2018 07:12:44 +0100 Message-Id: X-Mailer: git-send-email 2.13.6 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Basic x86 support [1] for running Linux as secondary Jailhouse [2] guest is currently pending in the tip tree. This builds on top and enhances the PCI support for x86 and also ARM guests (ARM[64] does not require platform patches and works already). Key elements of this series are: - detection of Jailhouse via device tree hypervisor node - function-level PCI scan if Jailhouse is detected - MMCONFIG support for x86 guests As most changes affect x86, I would suggest to route the series also via tip after the necessary acks are collected. Jan [1] https://lkml.org/lkml/2017/11/27/125 [2] http://jailhouse-project.org CC: Benedikt Spranger CC: Mark Rutland CC: Otavio Pontes CC: Rob Herring Jan Kiszka (5): jailhouse: Provide detection for non-x86 systems pci: Scan all functions when probing while running over Jailhouse x86: Consolidate PCI_MMCONFIG configs x86/jailhouse: Allow to use PCI_MMCONFIG without ACPI MAINTAINERS: Add entry for Jailhouse Otavio Pontes (1): x86/jailhouse: Enable PCI mmconfig access in inmates Documentation/devicetree/bindings/jailhouse.txt | 8 ++++++++ MAINTAINERS | 7 +++++++ arch/x86/Kconfig | 11 ++++++----- arch/x86/include/asm/jailhouse_para.h | 2 +- arch/x86/include/asm/pci_x86.h | 2 ++ arch/x86/kernel/Makefile | 2 +- arch/x86/kernel/cpu/amd.c | 2 +- arch/x86/kernel/jailhouse.c | 7 +++++++ arch/x86/pci/legacy.c | 4 +++- arch/x86/pci/mmconfig-shared.c | 4 ++-- drivers/pci/probe.c | 4 +++- include/linux/hypervisor.h | 17 +++++++++++++++-- 12 files changed, 56 insertions(+), 14 deletions(-) create mode 100644 Documentation/devicetree/bindings/jailhouse.txt -- 2.13.6