From: Aleksandr Bezzubikov <zuban32s@gmail.com>
To: qemu-devel@nongnu.org
Cc: mst@redhat.com, imammedo@redhat.com, pbonzini@redhat.com,
rth@twiddle.net, ehabkost@redhat.com, marcel@redhat.com,
kraxel@redhat.com, seabios@seabios.org,
Aleksandr Bezzubikov <zuban32s@gmail.com>
Subject: [Qemu-devel] [RFC PATCH v2 3/6] hw/pci: enable SHPC for PCIE-PCI bridge
Date: Sun, 23 Jul 2017 01:15:40 +0300 [thread overview]
Message-ID: <1500761743-1669-4-git-send-email-zuban32s@gmail.com> (raw)
In-Reply-To: <1500761743-1669-1-git-send-email-zuban32s@gmail.com>
Signed-off-by: Aleksandr Bezzubikov <zuban32s@gmail.com>
---
hw/pci-bridge/pcie_pci_bridge.c | 63 ++++++++++++++++++++++++++++++++++++++++-
1 file changed, 62 insertions(+), 1 deletion(-)
diff --git a/hw/pci-bridge/pcie_pci_bridge.c b/hw/pci-bridge/pcie_pci_bridge.c
index 0991a7b..38f665f 100644
--- a/hw/pci-bridge/pcie_pci_bridge.c
+++ b/hw/pci-bridge/pcie_pci_bridge.c
@@ -28,6 +28,7 @@
#include "hw/pci/pci_bus.h"
#include "hw/pci/pci_bridge.h"
#include "hw/pci/msi.h"
+#include "hw/pci/shpc.h"
#include "hw/pci/slotid_cap.h"
typedef struct PCIEPCIBridge {
@@ -35,6 +36,7 @@ typedef struct PCIEPCIBridge {
PCIBridge parent_obj;
uint32_t flags;
+ MemoryRegion bar;
/*< public >*/
} PCIEPCIBridge;
@@ -44,11 +46,22 @@ typedef struct PCIEPCIBridge {
static void pciepci_bridge_realize(PCIDevice *d, Error **errp)
{
+ PCIBridge *br = PCI_BRIDGE(d);
+ PCIEPCIBridge *bridge_dev = PCIE_PCI_BRIDGE_DEV(d);
int rc, pos;
Error *local_err = NULL;
pci_bridge_initfn(d, TYPE_PCI_BUS);
+ d->config[PCI_INTERRUPT_PIN] = 0x1;
+ memory_region_init(&bridge_dev->bar, OBJECT(d), "shpc-bar",
+ shpc_bar_size(d));
+ rc = shpc_init(d, &br->sec_bus, &bridge_dev->bar, 0, &local_err);
+ if (rc) {
+ error_propagate(errp, local_err);
+ goto error;
+ }
+
rc = pcie_cap_init(d, 0, PCI_EXP_TYPE_PCI_BRIDGE, 0, &local_err);
if (rc < 0) {
error_propagate(errp, local_err);
@@ -78,6 +91,9 @@ static void pciepci_bridge_realize(PCIDevice *d, Error **errp)
goto error;
}
+ pci_register_bar(d, 0, PCI_BASE_ADDRESS_SPACE_MEMORY |
+ PCI_BASE_ADDRESS_MEM_TYPE_64, &bridge_dev->bar);
+
return;
error:
@@ -86,7 +102,9 @@ static void pciepci_bridge_realize(PCIDevice *d, Error **errp)
static void pciepci_bridge_exit(PCIDevice *d)
{
+ PCIEPCIBridge *bridge_dev = PCIE_PCI_BRIDGE_DEV(d);
pcie_cap_exit(d);
+ shpc_cleanup(d, &bridge_dev->bar);
pci_bridge_exitfn(d);
}
@@ -95,6 +113,7 @@ static void pciepci_bridge_reset(DeviceState *qdev)
PCIDevice *d = PCI_DEVICE(qdev);
pci_bridge_reset(qdev);
msi_reset(d);
+ shpc_reset(d);
}
static void pcie_pci_bridge_write_config(PCIDevice *d,
@@ -102,8 +121,15 @@ static void pcie_pci_bridge_write_config(PCIDevice *d,
{
pci_bridge_write_config(d, address, val, len);
msi_write_config(d, address, val, len);
+ shpc_cap_write_config(d, address, val, len);
}
+static bool pci_device_shpc_present(void *opaque, int version_id)
+{
+ PCIDevice *dev = opaque;
+
+ return shpc_present(dev);
+}
static Property pcie_pci_bridge_dev_properties[] = {
DEFINE_PROP_END_OF_LIST(),
@@ -113,14 +139,43 @@ static const VMStateDescription pciepci_bridge_dev_vmstate = {
.name = TYPE_PCIE_PCI_BRIDGE_DEV,
.fields = (VMStateField[]) {
VMSTATE_PCI_DEVICE(parent_obj, PCIBridge),
+ SHPC_VMSTATE(shpc, PCIDevice, pci_device_shpc_present),
VMSTATE_END_OF_LIST()
}
};
+static void pcie_pci_bridge_hotplug_cb(HotplugHandler *hotplug_dev,
+ DeviceState *dev, Error **errp)
+{
+ PCIDevice *pci_hotplug_dev = PCI_DEVICE(hotplug_dev);
+
+ if (!shpc_present(pci_hotplug_dev)) {
+ error_setg(errp, "standard hotplug controller has been disabled for "
+ "this %s", TYPE_PCIE_PCI_BRIDGE_DEV);
+ return;
+ }
+ shpc_device_hotplug_cb(hotplug_dev, dev, errp);
+}
+
+static void pcie_pci_bridge_hot_unplug_request_cb(HotplugHandler *hotplug_dev,
+ DeviceState *dev,
+ Error **errp)
+{
+ PCIDevice *pci_hotplug_dev = PCI_DEVICE(hotplug_dev);
+
+ if (!shpc_present(pci_hotplug_dev)) {
+ error_setg(errp, "standard hotplug controller has been disabled for "
+ "this %s", TYPE_PCIE_PCI_BRIDGE_DEV);
+ return;
+ }
+ shpc_device_hot_unplug_request_cb(hotplug_dev, dev, errp);
+}
+
static void pciepci_bridge_class_init(ObjectClass *klass, void *data)
{
PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
DeviceClass *dc = DEVICE_CLASS(klass);
+ HotplugHandlerClass *hc = HOTPLUG_HANDLER_CLASS(klass);
k->is_express = 1;
k->is_bridge = 1;
@@ -134,13 +189,19 @@ static void pciepci_bridge_class_init(ObjectClass *klass, void *data)
dc->vmsd = &pciepci_bridge_dev_vmstate;
dc->reset = &pciepci_bridge_reset;
set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
+ hc->plug = pcie_pci_bridge_hotplug_cb;
+ hc->unplug_request = pcie_pci_bridge_hot_unplug_request_cb;
}
static const TypeInfo pciepci_bridge_info = {
.name = TYPE_PCIE_PCI_BRIDGE_DEV,
.parent = TYPE_PCI_BRIDGE,
.instance_size = sizeof(PCIEPCIBridge),
- .class_init = pciepci_bridge_class_init
+ .class_init = pciepci_bridge_class_init,
+ .interfaces = (InterfaceInfo[]) {
+ { TYPE_HOTPLUG_HANDLER },
+ { },
+ }
};
static void pciepci_register(void)
--
2.7.4
next prev parent reply other threads:[~2017-07-22 22:16 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-22 22:15 [Qemu-devel] [RFC PATCH v2 0/6] Generic PCIE-PCI Bridge Aleksandr Bezzubikov
2017-07-22 22:15 ` [Qemu-devel] [RFC PATCH v2 1/6] hw/pci: introduce pcie-pci-bridge device Aleksandr Bezzubikov
2017-07-22 22:15 ` [Qemu-devel] [RFC PATCH v2 2/6] hw/i386: allow SHPC for Q35 machine Aleksandr Bezzubikov
2017-07-23 15:59 ` Marcel Apfelbaum
2017-07-23 16:49 ` Alexander Bezzubikov
2017-07-22 22:15 ` Aleksandr Bezzubikov [this message]
2017-07-22 22:15 ` [Qemu-devel] [RFC PATCH v2 4/6] hw/pci: introduce bridge-only vendor-specific capability to provide some hints to firmware Aleksandr Bezzubikov
2017-07-23 15:57 ` Marcel Apfelbaum
2017-07-23 16:19 ` Alexander Bezzubikov
2017-07-23 16:24 ` Marcel Apfelbaum
2017-07-26 19:43 ` Michael S. Tsirkin
2017-07-26 21:54 ` Alexander Bezzubikov
2017-07-26 23:11 ` [Qemu-devel] [SeaBIOS] " Laszlo Ersek
2017-07-26 23:28 ` [Qemu-devel] " Michael S. Tsirkin
2017-07-27 9:39 ` Marcel Apfelbaum
2017-07-27 13:58 ` [Qemu-devel] [SeaBIOS] " Laszlo Ersek
2017-07-28 23:15 ` Michael S. Tsirkin
2017-07-31 18:16 ` Laszlo Ersek
2017-07-31 18:55 ` Michael S. Tsirkin
2017-07-31 19:04 ` Laszlo Ersek
2017-07-28 23:12 ` [Qemu-devel] " Michael S. Tsirkin
2017-07-31 10:06 ` Marcel Apfelbaum
2017-07-31 18:36 ` Michael S. Tsirkin
2017-07-22 22:15 ` [Qemu-devel] [RFC PATCH v2 5/6] hw/pci: add bus_reserve property to pcie-root-port Aleksandr Bezzubikov
2017-07-23 12:22 ` Michael S. Tsirkin
2017-07-23 14:13 ` Marcel Apfelbaum
2017-07-24 20:46 ` Michael S. Tsirkin
2017-07-24 21:41 ` Alexander Bezzubikov
2017-07-24 21:58 ` Michael S. Tsirkin
2017-07-25 11:49 ` Marcel Apfelbaum
2017-07-28 23:24 ` Michael S. Tsirkin
2017-07-25 13:43 ` Michael S. Tsirkin
2017-07-25 13:50 ` Alexander Bezzubikov
2017-07-25 13:53 ` Michael S. Tsirkin
2017-07-25 14:09 ` Alexander Bezzubikov
2017-07-25 16:10 ` Marcel Apfelbaum
2017-07-25 17:11 ` Alexander Bezzubikov
2017-07-26 4:24 ` Marcel Apfelbaum
2017-07-26 5:29 ` Gerd Hoffmann
2017-07-28 23:26 ` Michael S. Tsirkin
2017-07-22 22:15 ` [Qemu-devel] [RFC PATCH v2 6/6] hw/pci: add hint capabilty for additional bus reservation " Aleksandr Bezzubikov
2017-07-24 20:43 ` Michael S. Tsirkin
2017-07-24 21:43 ` Alexander Bezzubikov
2017-07-25 11:52 ` Marcel Apfelbaum
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1500761743-1669-4-git-send-email-zuban32s@gmail.com \
--to=zuban32s@gmail.com \
--cc=ehabkost@redhat.com \
--cc=imammedo@redhat.com \
--cc=kraxel@redhat.com \
--cc=marcel@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
--cc=seabios@seabios.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).