* [Qemu-devel] [RFC v4 1/6] pci_expander_bridge: add type TYPE_PXB_PCIE_HOST @ 2018-08-09 6:33 Zihan Yang 2018-08-09 13:23 ` Eric Blake 2018-08-17 17:14 ` Marcel Apfelbaum 0 siblings, 2 replies; 8+ messages in thread From: Zihan Yang @ 2018-08-09 6:33 UTC (permalink / raw) To: qemu-devel; +Cc: Zihan Yang, Michael S. Tsirkin, Marcel Apfelbaum The inner host bridge created by pxb-pcie is TYPE_PXB_PCI_HOST by default, change it to a new type TYPE_PXB_PCIE_HOST to better utilize ECAM of PCIe Signed-off-by: Zihan Yang <whois.zihan.yang@gmail.com> --- hw/pci-bridge/pci_expander_bridge.c | 127 ++++++++++++++++++++++++++++++++++-- 1 file changed, 122 insertions(+), 5 deletions(-) diff --git a/hw/pci-bridge/pci_expander_bridge.c b/hw/pci-bridge/pci_expander_bridge.c index e62de42..6dd38de 100644 --- a/hw/pci-bridge/pci_expander_bridge.c +++ b/hw/pci-bridge/pci_expander_bridge.c @@ -15,10 +15,12 @@ #include "hw/pci/pci.h" #include "hw/pci/pci_bus.h" #include "hw/pci/pci_host.h" +#include "hw/pci/pcie_host.h" #include "hw/pci/pci_bridge.h" #include "qemu/range.h" #include "qemu/error-report.h" #include "sysemu/numa.h" +#include "qapi/visitor.h" #define TYPE_PXB_BUS "pxb-bus" #define PXB_BUS(obj) OBJECT_CHECK(PXBBus, (obj), TYPE_PXB_BUS) @@ -40,11 +42,20 @@ typedef struct PXBBus { #define TYPE_PXB_PCIE_DEVICE "pxb-pcie" #define PXB_PCIE_DEV(obj) OBJECT_CHECK(PXBDev, (obj), TYPE_PXB_PCIE_DEVICE) +#define PROP_PXB_PCIE_DEV "pxbdev" + +#define PROP_PXB_PCIE_DOMAIN_NR "domain_nr" +#define PROP_PXB_PCIE_MAX_BUS "max_bus" +#define PROP_PXB_BUS_NR "bus_nr" +#define PROP_PXB_NUMA_NODE "numa_node" + typedef struct PXBDev { /*< private >*/ PCIDevice parent_obj; /*< public >*/ + uint32_t domain_nr; /* PCI domain number, non-zero means separate domain */ + uint8_t max_bus; /* max bus number to use(including this one) */ uint8_t bus_nr; uint16_t numa_node; } PXBDev; @@ -58,6 +69,16 @@ static PXBDev *convert_to_pxb(PCIDevice *dev) static GList *pxb_dev_list; #define TYPE_PXB_HOST "pxb-host" +#define TYPE_PXB_PCIE_HOST "pxb-pcie-host" +#define PXB_PCIE_HOST_DEVICE(obj) \ + OBJECT_CHECK(PXBPCIEHost, (obj), TYPE_PXB_PCIE_HOST) + +typedef struct PXBPCIEHost { + PCIExpressHost parent_obj; + + /* pointers to PXBDev */ + PXBDev *pxbdev; +} PXBPCIEHost; static int pxb_bus_num(PCIBus *bus) { @@ -111,6 +132,35 @@ static const char *pxb_host_root_bus_path(PCIHostState *host_bridge, return bus->bus_path; } +/* Use a dedicated function for PCIe since pxb-host does + * not have a domain_nr field */ +static const char *pxb_pcie_host_root_bus_path(PCIHostState *host_bridge, + PCIBus *rootbus) +{ + if (!pci_bus_is_express(rootbus)) { + /* pxb-pcie-host cannot reside on a PCI bus */ + return NULL; + } + PXBBus *bus = PXB_PCIE_BUS(rootbus); + + /* get the pointer to PXBDev */ + Object *obj = object_property_get_link(OBJECT(host_bridge), + PROP_PXB_PCIE_DEV, NULL); + + snprintf(bus->bus_path, 8, "%04lx:%02x", + object_property_get_uint(obj, PROP_PXB_PCIE_DOMAIN_NR, NULL), + pxb_bus_num(rootbus)); + return bus->bus_path; +} + +static void pxb_pcie_host_get_mmcfg_size(Object *obj, Visitor *v, const char *name, + void *opaque, Error **errp) +{ + PCIExpressHost *e = PCIE_HOST_BRIDGE(obj); + + visit_type_uint64(v, name, &e->size, errp); +} + static char *pxb_host_ofw_unit_address(const SysBusDevice *dev) { const PCIHostState *pxb_host; @@ -142,6 +192,31 @@ static char *pxb_host_ofw_unit_address(const SysBusDevice *dev) return NULL; } +static void pxb_pcie_host_initfn(Object *obj) +{ + PXBPCIEHost *s = PXB_PCIE_HOST_DEVICE(obj); + PCIHostState *phb = PCI_HOST_BRIDGE(obj); + + memory_region_init_io(&phb->conf_mem, obj, &pci_host_conf_le_ops, phb, + "pci-conf-idx", 4); + memory_region_init_io(&phb->data_mem, obj, &pci_host_data_le_ops, phb, + "pci-conf-data", 4); + + object_property_add(obj, PCIE_HOST_MCFG_SIZE, "uint64", + pxb_pcie_host_get_mmcfg_size, + NULL, NULL, NULL, NULL); + + object_property_add_link(obj, PROP_PXB_PCIE_DEV, TYPE_PXB_PCIE_DEVICE, + (Object **)&s->pxbdev, + qdev_prop_allow_set_link_before_realize, 0, NULL); +} + +static Property pxb_pcie_host_props[] = { + DEFINE_PROP_UINT64(PCIE_HOST_MCFG_BASE, PXBPCIEHost, parent_obj.base_addr, + PCIE_BASE_ADDR_UNMAPPED), + DEFINE_PROP_END_OF_LIST(), +}; + static void pxb_host_class_init(ObjectClass *class, void *data) { DeviceClass *dc = DEVICE_CLASS(class); @@ -155,12 +230,34 @@ static void pxb_host_class_init(ObjectClass *class, void *data) hc->root_bus_path = pxb_host_root_bus_path; } +static void pxb_pcie_host_class_init(ObjectClass *class, void *data) +{ + DeviceClass *dc = DEVICE_CLASS(class); + SysBusDeviceClass *sbc = SYS_BUS_DEVICE_CLASS(class); + PCIHostBridgeClass *hc = PCI_HOST_BRIDGE_CLASS(class); + + dc->fw_name = "pcie"; + dc->props = pxb_pcie_host_props; + /* Reason: Internal part of the pxb/pxb-pcie device, not usable by itself */ + dc->user_creatable = false; + sbc->explicit_ofw_unit_address = pxb_host_ofw_unit_address; + hc->root_bus_path = pxb_pcie_host_root_bus_path; +} + static const TypeInfo pxb_host_info = { .name = TYPE_PXB_HOST, .parent = TYPE_PCI_HOST_BRIDGE, .class_init = pxb_host_class_init, }; +static const TypeInfo pxb_pcie_host_info = { + .name = TYPE_PXB_PCIE_HOST, + .parent = TYPE_PCIE_HOST_BRIDGE, + .instance_size = sizeof(PXBPCIEHost), + .instance_init = pxb_pcie_host_initfn, + .class_init = pxb_pcie_host_class_init, +}; + /* * Registers the PXB bus as a child of pci host root bus. */ @@ -205,7 +302,10 @@ static gint pxb_compare(gconstpointer a, gconstpointer b) { const PXBDev *pxb_a = a, *pxb_b = b; - return pxb_a->bus_nr < pxb_b->bus_nr ? -1 : + /* check domain_nr, then bus_nr */ + return pxb_a->domain_nr < pxb_b->domain_nr ? -1 : + pxb_a->domain_nr > pxb_b->domain_nr ? 1 : + pxb_a->bus_nr < pxb_b->bus_nr ? -1 : pxb_a->bus_nr > pxb_b->bus_nr ? 1 : 0; } @@ -228,10 +328,16 @@ static void pxb_dev_realize_common(PCIDevice *dev, bool pcie, Error **errp) dev_name = dev->qdev.id; } - ds = qdev_create(NULL, TYPE_PXB_HOST); if (pcie) { + g_assert (pxb->max_bus >= pxb->bus_nr); + ds = qdev_create(NULL, TYPE_PXB_PCIE_HOST); + + object_property_set_link(OBJECT(ds), OBJECT(pxb), + PROP_PXB_PCIE_DEV, NULL); + bus = pci_root_bus_new(ds, dev_name, NULL, NULL, 0, TYPE_PXB_PCIE_BUS); } else { + ds = qdev_create(NULL, TYPE_PXB_HOST); bus = pci_root_bus_new(ds, "pxb-internal", NULL, NULL, 0, TYPE_PXB_BUS); bds = qdev_create(BUS(bus), "pci-bridge"); bds->id = dev_name; @@ -289,8 +395,18 @@ static void pxb_dev_exitfn(PCIDevice *pci_dev) static Property pxb_dev_properties[] = { /* Note: 0 is not a legal PXB bus number. */ - DEFINE_PROP_UINT8("bus_nr", PXBDev, bus_nr, 0), - DEFINE_PROP_UINT16("numa_node", PXBDev, numa_node, NUMA_NODE_UNASSIGNED), + DEFINE_PROP_UINT8(PROP_PXB_BUS_NR, PXBDev, bus_nr, 0), + DEFINE_PROP_UINT16(PROP_PXB_NUMA_NODE, PXBDev, numa_node, NUMA_NODE_UNASSIGNED), + DEFINE_PROP_END_OF_LIST(), +}; + +static Property pxb_pcie_dev_properties[] = { + DEFINE_PROP_UINT8(PROP_PXB_BUS_NR, PXBDev, bus_nr, 0), + DEFINE_PROP_UINT16(PROP_PXB_NUMA_NODE, PXBDev, numa_node, NUMA_NODE_UNASSIGNED), + DEFINE_PROP_UINT32(PROP_PXB_PCIE_DOMAIN_NR, PXBDev, domain_nr, 0), + /* set a small default value, bus interval is [bus_nr, max_bus] */ + DEFINE_PROP_UINT8(PROP_PXB_PCIE_MAX_BUS, PXBDev, max_bus, 16), + DEFINE_PROP_END_OF_LIST(), }; @@ -344,7 +460,7 @@ static void pxb_pcie_dev_class_init(ObjectClass *klass, void *data) k->class_id = PCI_CLASS_BRIDGE_HOST; dc->desc = "PCI Express Expander Bridge"; - dc->props = pxb_dev_properties; + dc->props = pxb_pcie_dev_properties; dc->hotpluggable = false; set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories); } @@ -365,6 +481,7 @@ static void pxb_register_types(void) type_register_static(&pxb_bus_info); type_register_static(&pxb_pcie_bus_info); type_register_static(&pxb_host_info); + type_register_static(&pxb_pcie_host_info); type_register_static(&pxb_dev_info); type_register_static(&pxb_pcie_dev_info); } -- 2.7.4 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] [RFC v4 1/6] pci_expander_bridge: add type TYPE_PXB_PCIE_HOST 2018-08-09 6:33 [Qemu-devel] [RFC v4 1/6] pci_expander_bridge: add type TYPE_PXB_PCIE_HOST Zihan Yang @ 2018-08-09 13:23 ` Eric Blake 2018-08-09 16:39 ` Zihan Yang 2018-08-17 17:14 ` Marcel Apfelbaum 1 sibling, 1 reply; 8+ messages in thread From: Eric Blake @ 2018-08-09 13:23 UTC (permalink / raw) To: Zihan Yang, qemu-devel; +Cc: Michael S. Tsirkin On 08/09/2018 01:33 AM, Zihan Yang wrote: > The inner host bridge created by pxb-pcie is TYPE_PXB_PCI_HOST by default, > change it to a new type TYPE_PXB_PCIE_HOST to better utilize ECAM of PCIe meta-comment: Your messages came through unthreaded (seven separate threads), rather than properly marked 'References:' and 'In-reply-to:' to the 0/6 cover letter <1533796115-15837-1-git-send-email-whois.zihan.yang@gmail.com>, which makes it a bit harder to keep track of the conversation when viewing mails sorted by threads with most recent activity. -- Eric Blake, Principal Software Engineer Red Hat, Inc. +1-919-301-3266 Virtualization: qemu.org | libvirt.org ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] [RFC v4 1/6] pci_expander_bridge: add type TYPE_PXB_PCIE_HOST 2018-08-09 13:23 ` Eric Blake @ 2018-08-09 16:39 ` Zihan Yang 2018-08-09 16:48 ` Eric Blake 0 siblings, 1 reply; 8+ messages in thread From: Zihan Yang @ 2018-08-09 16:39 UTC (permalink / raw) To: eblake; +Cc: qemu-devel, Michael S. Tsirkin, Marcel Apfelbaum Eric Blake <eblake@redhat.com> 于2018年8月9日周四 下午9:23写道: > > On 08/09/2018 01:33 AM, Zihan Yang wrote: > > The inner host bridge created by pxb-pcie is TYPE_PXB_PCI_HOST by default, > > change it to a new type TYPE_PXB_PCIE_HOST to better utilize ECAM of PCIe > > meta-comment: > > Your messages came through unthreaded (seven separate threads), rather > than properly marked 'References:' and 'In-reply-to:' to the 0/6 cover > letter <1533796115-15837-1-git-send-email-whois.zihan.yang@gmail.com>, > which makes it a bit harder to keep track of the conversation when > viewing mails sorted by threads with most recent activity. My mistake, I manually added the cc of cover letter, which is not covered by cccmd, but I didn't add In-reply-to of remaining mails. I will directly add an "cc: " field in cover letter and send them all in later patches to avoid breaking them up. As for this patch set, should I resend them or save it to v5, which I will try working out this weekend? ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] [RFC v4 1/6] pci_expander_bridge: add type TYPE_PXB_PCIE_HOST 2018-08-09 16:39 ` Zihan Yang @ 2018-08-09 16:48 ` Eric Blake 0 siblings, 0 replies; 8+ messages in thread From: Eric Blake @ 2018-08-09 16:48 UTC (permalink / raw) To: Zihan Yang; +Cc: qemu-devel, Michael S. Tsirkin, Marcel Apfelbaum On 08/09/2018 11:39 AM, Zihan Yang wrote: > Eric Blake <eblake@redhat.com> 于2018年8月9日周四 下午9:23写道: >> >> On 08/09/2018 01:33 AM, Zihan Yang wrote: >>> The inner host bridge created by pxb-pcie is TYPE_PXB_PCI_HOST by default, >>> change it to a new type TYPE_PXB_PCIE_HOST to better utilize ECAM of PCIe >> >> meta-comment: >> >> Your messages came through unthreaded (seven separate threads), rather >> than properly marked 'References:' and 'In-reply-to:' to the 0/6 cover >> letter <1533796115-15837-1-git-send-email-whois.zihan.yang@gmail.com>, >> which makes it a bit harder to keep track of the conversation when >> viewing mails sorted by threads with most recent activity. > > My mistake, I manually added the cc of cover letter, which is not > covered by cccmd, > but I didn't add In-reply-to of remaining mails. I will directly add > an "cc: " field in cover > letter and send them all in later patches to avoid breaking them up. > > As for this patch set, should I resend them or save it to v5, which I > will try working out > this weekend? At this point, it's probably still worth waiting for any comments on v4, so that v5 can fix those issues. -- Eric Blake, Principal Software Engineer Red Hat, Inc. +1-919-301-3266 Virtualization: qemu.org | libvirt.org ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] [RFC v4 1/6] pci_expander_bridge: add type TYPE_PXB_PCIE_HOST 2018-08-09 6:33 [Qemu-devel] [RFC v4 1/6] pci_expander_bridge: add type TYPE_PXB_PCIE_HOST Zihan Yang 2018-08-09 13:23 ` Eric Blake @ 2018-08-17 17:14 ` Marcel Apfelbaum 2018-08-19 1:51 ` Zihan Yang 1 sibling, 1 reply; 8+ messages in thread From: Marcel Apfelbaum @ 2018-08-17 17:14 UTC (permalink / raw) To: Zihan Yang, qemu-devel; +Cc: Michael S. Tsirkin Hi Zihan, On 08/09/2018 09:33 AM, Zihan Yang wrote: > The inner host bridge created by pxb-pcie is TYPE_PXB_PCI_HOST by default, > change it to a new type TYPE_PXB_PCIE_HOST to better utilize ECAM of PCIe > > Signed-off-by: Zihan Yang <whois.zihan.yang@gmail.com> > --- > hw/pci-bridge/pci_expander_bridge.c | 127 ++++++++++++++++++++++++++++++++++-- > 1 file changed, 122 insertions(+), 5 deletions(-) > > diff --git a/hw/pci-bridge/pci_expander_bridge.c b/hw/pci-bridge/pci_expander_bridge.c > index e62de42..6dd38de 100644 > --- a/hw/pci-bridge/pci_expander_bridge.c > +++ b/hw/pci-bridge/pci_expander_bridge.c > @@ -15,10 +15,12 @@ > #include "hw/pci/pci.h" > #include "hw/pci/pci_bus.h" > #include "hw/pci/pci_host.h" > +#include "hw/pci/pcie_host.h" > #include "hw/pci/pci_bridge.h" > #include "qemu/range.h" > #include "qemu/error-report.h" > #include "sysemu/numa.h" > +#include "qapi/visitor.h" > > #define TYPE_PXB_BUS "pxb-bus" > #define PXB_BUS(obj) OBJECT_CHECK(PXBBus, (obj), TYPE_PXB_BUS) > @@ -40,11 +42,20 @@ typedef struct PXBBus { > #define TYPE_PXB_PCIE_DEVICE "pxb-pcie" > #define PXB_PCIE_DEV(obj) OBJECT_CHECK(PXBDev, (obj), TYPE_PXB_PCIE_DEVICE) > > +#define PROP_PXB_PCIE_DEV "pxbdev" > + > +#define PROP_PXB_PCIE_DOMAIN_NR "domain_nr" > +#define PROP_PXB_PCIE_MAX_BUS "max_bus" > +#define PROP_PXB_BUS_NR "bus_nr" > +#define PROP_PXB_NUMA_NODE "numa_node" > + > typedef struct PXBDev { > /*< private >*/ > PCIDevice parent_obj; > /*< public >*/ > > + uint32_t domain_nr; /* PCI domain number, non-zero means separate domain */ The commit message suggests this patch is only about re-factoring of the pxb host type, but you add here more fields. Please use two separate patches. > + uint8_t max_bus; /* max bus number to use(including this one) */ That's a great idea! Limiting the max_bus will save us a lot of resource space, we will not need 256 buses on pxbs probably. My concern is what happens with the current mode. Currently bus_nr is used to divide PCI domain 0 buses between pxbs. So if you have a pxb with bus_nr 100, and another with bus_nr 200, we divide them like this: main host bridge 0...99 pxb1 100 -199 pxb2 200-255 What will be the meaning of max_bus if we don't use the domain_nr parameter? Maybe it will mean that some bus numbers are not assigned at all, for example: pxb1: bus_nr 100, max_bus 150 pxb2: bus_nr 200, max_bus 210 It may work. > uint8_t bus_nr; > uint16_t numa_node; > } PXBDev; > @@ -58,6 +69,16 @@ static PXBDev *convert_to_pxb(PCIDevice *dev) > static GList *pxb_dev_list; > > #define TYPE_PXB_HOST "pxb-host" > +#define TYPE_PXB_PCIE_HOST "pxb-pcie-host" > +#define PXB_PCIE_HOST_DEVICE(obj) \ > + OBJECT_CHECK(PXBPCIEHost, (obj), TYPE_PXB_PCIE_HOST) > + > +typedef struct PXBPCIEHost { > + PCIExpressHost parent_obj; > + > + /* pointers to PXBDev */ > + PXBDev *pxbdev; > +} PXBPCIEHost; > > static int pxb_bus_num(PCIBus *bus) > { > @@ -111,6 +132,35 @@ static const char *pxb_host_root_bus_path(PCIHostState *host_bridge, > return bus->bus_path; > } > > +/* Use a dedicated function for PCIe since pxb-host does > + * not have a domain_nr field */ > +static const char *pxb_pcie_host_root_bus_path(PCIHostState *host_bridge, > + PCIBus *rootbus) > +{ > + if (!pci_bus_is_express(rootbus)) { > + /* pxb-pcie-host cannot reside on a PCI bus */ > + return NULL; > + } > + PXBBus *bus = PXB_PCIE_BUS(rootbus); > + > + /* get the pointer to PXBDev */ > + Object *obj = object_property_get_link(OBJECT(host_bridge), > + PROP_PXB_PCIE_DEV, NULL); I don't think you need a link here. I think rootbus->parent_dev returns the pxb device. (See the implementation of pxb_bus_num() ) > + > + snprintf(bus->bus_path, 8, "%04lx:%02x", > + object_property_get_uint(obj, PROP_PXB_PCIE_DOMAIN_NR, NULL), > + pxb_bus_num(rootbus)); > + return bus->bus_path; > +} > + > +static void pxb_pcie_host_get_mmcfg_size(Object *obj, Visitor *v, const char *name, > + void *opaque, Error **errp) > +{ > + PCIExpressHost *e = PCIE_HOST_BRIDGE(obj); > + > + visit_type_uint64(v, name, &e->size, errp); > +} > + > static char *pxb_host_ofw_unit_address(const SysBusDevice *dev) > { > const PCIHostState *pxb_host; > @@ -142,6 +192,31 @@ static char *pxb_host_ofw_unit_address(const SysBusDevice *dev) > return NULL; > } > > +static void pxb_pcie_host_initfn(Object *obj) > +{ > + PXBPCIEHost *s = PXB_PCIE_HOST_DEVICE(obj); > + PCIHostState *phb = PCI_HOST_BRIDGE(obj); > + > + memory_region_init_io(&phb->conf_mem, obj, &pci_host_conf_le_ops, phb, > + "pci-conf-idx", 4); > + memory_region_init_io(&phb->data_mem, obj, &pci_host_data_le_ops, phb, > + "pci-conf-data", 4); > + I don't understand the above. Do you want the pxb to respond to legacy PCI configuration cycles? I don't think it will be possible since it is accessible only through addresses 0xcf8 and 0xcfc which are already "taken" by the Q35 host brigde. More importantly, we don't need them, we want to configure the PXB using MCFG. > + object_property_add(obj, PCIE_HOST_MCFG_SIZE, "uint64", > + pxb_pcie_host_get_mmcfg_size, > + NULL, NULL, NULL, NULL); > + > + object_property_add_link(obj, PROP_PXB_PCIE_DEV, TYPE_PXB_PCIE_DEVICE, > + (Object **)&s->pxbdev, > + qdev_prop_allow_set_link_before_realize, 0, NULL); > +} > + > +static Property pxb_pcie_host_props[] = { > + DEFINE_PROP_UINT64(PCIE_HOST_MCFG_BASE, PXBPCIEHost, parent_obj.base_addr, > + PCIE_BASE_ADDR_UNMAPPED), > + DEFINE_PROP_END_OF_LIST(), > +}; > + That means you expect the management software to provide the address... the libvirt guys will not like it :). But for the moment let's go with it. > static void pxb_host_class_init(ObjectClass *class, void *data) > { > DeviceClass *dc = DEVICE_CLASS(class); > @@ -155,12 +230,34 @@ static void pxb_host_class_init(ObjectClass *class, void *data) > hc->root_bus_path = pxb_host_root_bus_path; > } > > +static void pxb_pcie_host_class_init(ObjectClass *class, void *data) > +{ > + DeviceClass *dc = DEVICE_CLASS(class); > + SysBusDeviceClass *sbc = SYS_BUS_DEVICE_CLASS(class); > + PCIHostBridgeClass *hc = PCI_HOST_BRIDGE_CLASS(class); > + > + dc->fw_name = "pcie"; > + dc->props = pxb_pcie_host_props; > + /* Reason: Internal part of the pxb/pxb-pcie device, not usable by itself */ > + dc->user_creatable = false; > + sbc->explicit_ofw_unit_address = pxb_host_ofw_unit_address; > + hc->root_bus_path = pxb_pcie_host_root_bus_path; > +} > + > static const TypeInfo pxb_host_info = { > .name = TYPE_PXB_HOST, > .parent = TYPE_PCI_HOST_BRIDGE, > .class_init = pxb_host_class_init, > }; > > +static const TypeInfo pxb_pcie_host_info = { > + .name = TYPE_PXB_PCIE_HOST, > + .parent = TYPE_PCIE_HOST_BRIDGE, > + .instance_size = sizeof(PXBPCIEHost), > + .instance_init = pxb_pcie_host_initfn, > + .class_init = pxb_pcie_host_class_init, > +}; > + > /* > * Registers the PXB bus as a child of pci host root bus. > */ > @@ -205,7 +302,10 @@ static gint pxb_compare(gconstpointer a, gconstpointer b) > { > const PXBDev *pxb_a = a, *pxb_b = b; > > - return pxb_a->bus_nr < pxb_b->bus_nr ? -1 : > + /* check domain_nr, then bus_nr */ > + return pxb_a->domain_nr < pxb_b->domain_nr ? -1 : > + pxb_a->domain_nr > pxb_b->domain_nr ? 1 : > + pxb_a->bus_nr < pxb_b->bus_nr ? -1 : > pxb_a->bus_nr > pxb_b->bus_nr ? 1 : > 0; > } > @@ -228,10 +328,16 @@ static void pxb_dev_realize_common(PCIDevice *dev, bool pcie, Error **errp) > dev_name = dev->qdev.id; > } > > - ds = qdev_create(NULL, TYPE_PXB_HOST); > if (pcie) { > + g_assert (pxb->max_bus >= pxb->bus_nr); > + ds = qdev_create(NULL, TYPE_PXB_PCIE_HOST); > + > + object_property_set_link(OBJECT(ds), OBJECT(pxb), > + PROP_PXB_PCIE_DEV, NULL); Please see the comment above, I don't think you need this "link". > + > bus = pci_root_bus_new(ds, dev_name, NULL, NULL, 0, TYPE_PXB_PCIE_BUS); > } else { > + ds = qdev_create(NULL, TYPE_PXB_HOST); > bus = pci_root_bus_new(ds, "pxb-internal", NULL, NULL, 0, TYPE_PXB_BUS); > bds = qdev_create(BUS(bus), "pci-bridge"); > bds->id = dev_name; > @@ -289,8 +395,18 @@ static void pxb_dev_exitfn(PCIDevice *pci_dev) > > static Property pxb_dev_properties[] = { > /* Note: 0 is not a legal PXB bus number. */ > - DEFINE_PROP_UINT8("bus_nr", PXBDev, bus_nr, 0), > - DEFINE_PROP_UINT16("numa_node", PXBDev, numa_node, NUMA_NODE_UNASSIGNED), > + DEFINE_PROP_UINT8(PROP_PXB_BUS_NR, PXBDev, bus_nr, 0), > + DEFINE_PROP_UINT16(PROP_PXB_NUMA_NODE, PXBDev, numa_node, NUMA_NODE_UNASSIGNED), > + DEFINE_PROP_END_OF_LIST(), > +}; > + > +static Property pxb_pcie_dev_properties[] = { > + DEFINE_PROP_UINT8(PROP_PXB_BUS_NR, PXBDev, bus_nr, 0), > + DEFINE_PROP_UINT16(PROP_PXB_NUMA_NODE, PXBDev, numa_node, NUMA_NODE_UNASSIGNED), > + DEFINE_PROP_UINT32(PROP_PXB_PCIE_DOMAIN_NR, PXBDev, domain_nr, 0), > + /* set a small default value, bus interval is [bus_nr, max_bus] */ > + DEFINE_PROP_UINT8(PROP_PXB_PCIE_MAX_BUS, PXBDev, max_bus, 16), > + You can unite the common PROPS using a macro, but is not a big deal. > DEFINE_PROP_END_OF_LIST(), > }; > > @@ -344,7 +460,7 @@ static void pxb_pcie_dev_class_init(ObjectClass *klass, void *data) > k->class_id = PCI_CLASS_BRIDGE_HOST; > > dc->desc = "PCI Express Expander Bridge"; > - dc->props = pxb_dev_properties; > + dc->props = pxb_pcie_dev_properties; > dc->hotpluggable = false; > set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories); > } > @@ -365,6 +481,7 @@ static void pxb_register_types(void) > type_register_static(&pxb_bus_info); > type_register_static(&pxb_pcie_bus_info); > type_register_static(&pxb_host_info); > + type_register_static(&pxb_pcie_host_info); > type_register_static(&pxb_dev_info); > type_register_static(&pxb_pcie_dev_info); > } Thanks, Marcel ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] [RFC v4 1/6] pci_expander_bridge: add type TYPE_PXB_PCIE_HOST 2018-08-17 17:14 ` Marcel Apfelbaum @ 2018-08-19 1:51 ` Zihan Yang 2018-08-25 20:08 ` Marcel Apfelbaum 0 siblings, 1 reply; 8+ messages in thread From: Zihan Yang @ 2018-08-19 1:51 UTC (permalink / raw) To: Marcel Apfelbaum; +Cc: qemu-devel, Michael S. Tsirkin Hi Marcel, Marcel Apfelbaum <marcel.apfelbaum@gmail.com> 于2018年8月18日周六 上午1:14写道: > > Hi Zihan, > > On 08/09/2018 09:33 AM, Zihan Yang wrote: > > The inner host bridge created by pxb-pcie is TYPE_PXB_PCI_HOST by default, > > change it to a new type TYPE_PXB_PCIE_HOST to better utilize ECAM of PCIe > > > > Signed-off-by: Zihan Yang <whois.zihan.yang@gmail.com> > > --- > > hw/pci-bridge/pci_expander_bridge.c | 127 ++++++++++++++++++++++++++++++++++-- > > 1 file changed, 122 insertions(+), 5 deletions(-) > > > > diff --git a/hw/pci-bridge/pci_expander_bridge.c b/hw/pci-bridge/pci_expander_bridge.c > > index e62de42..6dd38de 100644 > > --- a/hw/pci-bridge/pci_expander_bridge.c > > +++ b/hw/pci-bridge/pci_expander_bridge.c > > @@ -15,10 +15,12 @@ > > #include "hw/pci/pci.h" > > #include "hw/pci/pci_bus.h" > > #include "hw/pci/pci_host.h" > > +#include "hw/pci/pcie_host.h" > > #include "hw/pci/pci_bridge.h" > > #include "qemu/range.h" > > #include "qemu/error-report.h" > > #include "sysemu/numa.h" > > +#include "qapi/visitor.h" > > > > #define TYPE_PXB_BUS "pxb-bus" > > #define PXB_BUS(obj) OBJECT_CHECK(PXBBus, (obj), TYPE_PXB_BUS) > > @@ -40,11 +42,20 @@ typedef struct PXBBus { > > #define TYPE_PXB_PCIE_DEVICE "pxb-pcie" > > #define PXB_PCIE_DEV(obj) OBJECT_CHECK(PXBDev, (obj), TYPE_PXB_PCIE_DEVICE) > > > > +#define PROP_PXB_PCIE_DEV "pxbdev" > > + > > +#define PROP_PXB_PCIE_DOMAIN_NR "domain_nr" > > +#define PROP_PXB_PCIE_MAX_BUS "max_bus" > > +#define PROP_PXB_BUS_NR "bus_nr" > > +#define PROP_PXB_NUMA_NODE "numa_node" > > + > > typedef struct PXBDev { > > /*< private >*/ > > PCIDevice parent_obj; > > /*< public >*/ > > > > + uint32_t domain_nr; /* PCI domain number, non-zero means separate domain */ > > The commit message suggests this patch is only about > re-factoring of the pxb host type, but you add here more fields. > Please use two separate patches. > > > + uint8_t max_bus; /* max bus number to use(including this one) */ > > That's a great idea! Limiting the max_bus will save us a lot > of resource space, we will not need 256 buses on pxbs probably. > > My concern is what happens with the current mode. > Currently bus_nr is used to divide PCI domain 0 buses between pxbs. > So if you have a pxb with bus_nr 100, and another with bus_nr 200, > we divide them like this: > main host bridge 0...99 > pxb1 100 -199 > pxb2 200-255 > > What will be the meaning of max_bus if we don't use the domain_nr parameter? > Maybe it will mean that some bus numbers are not assigned at all, for > example: > pxb1: bus_nr 100, max_bus 150 > pxb2: bus_nr 200, max_bus 210 > > It may work. Yes, it should mean so. Actually max_bus does not have to be specified if domain_nr is not used, but if users decide to use domain_nr and want to save space, max_bus could be used. > > uint8_t bus_nr; > > uint16_t numa_node; > > } PXBDev; > > @@ -58,6 +69,16 @@ static PXBDev *convert_to_pxb(PCIDevice *dev) > > static GList *pxb_dev_list; > > > > #define TYPE_PXB_HOST "pxb-host" > > +#define TYPE_PXB_PCIE_HOST "pxb-pcie-host" > > +#define PXB_PCIE_HOST_DEVICE(obj) \ > > + OBJECT_CHECK(PXBPCIEHost, (obj), TYPE_PXB_PCIE_HOST) > > + > > +typedef struct PXBPCIEHost { > > + PCIExpressHost parent_obj; > > + > > + /* pointers to PXBDev */ > > + PXBDev *pxbdev; > > +} PXBPCIEHost; > > > > static int pxb_bus_num(PCIBus *bus) > > { > > @@ -111,6 +132,35 @@ static const char *pxb_host_root_bus_path(PCIHostState *host_bridge, > > return bus->bus_path; > > } > > > > +/* Use a dedicated function for PCIe since pxb-host does > > + * not have a domain_nr field */ > > +static const char *pxb_pcie_host_root_bus_path(PCIHostState *host_bridge, > > + PCIBus *rootbus) > > +{ > > + if (!pci_bus_is_express(rootbus)) { > > + /* pxb-pcie-host cannot reside on a PCI bus */ > > + return NULL; > > + } > > + PXBBus *bus = PXB_PCIE_BUS(rootbus); > > + > > + /* get the pointer to PXBDev */ > > + Object *obj = object_property_get_link(OBJECT(host_bridge), > > + PROP_PXB_PCIE_DEV, NULL); > > I don't think you need a link here. > I think rootbus->parent_dev returns the pxb device. > (See the implementation of pxb_bus_num() ) OK, I'll change it in next version. > > + > > + snprintf(bus->bus_path, 8, "%04lx:%02x", > > + object_property_get_uint(obj, PROP_PXB_PCIE_DOMAIN_NR, NULL), > > + pxb_bus_num(rootbus)); > > + return bus->bus_path; > > +} > > + > > +static void pxb_pcie_host_get_mmcfg_size(Object *obj, Visitor *v, const char *name, > > + void *opaque, Error **errp) > > +{ > > + PCIExpressHost *e = PCIE_HOST_BRIDGE(obj); > > + > > + visit_type_uint64(v, name, &e->size, errp); > > +} > > + > > static char *pxb_host_ofw_unit_address(const SysBusDevice *dev) > > { > > const PCIHostState *pxb_host; > > @@ -142,6 +192,31 @@ static char *pxb_host_ofw_unit_address(const SysBusDevice *dev) > > return NULL; > > } > > > > +static void pxb_pcie_host_initfn(Object *obj) > > +{ > > + PXBPCIEHost *s = PXB_PCIE_HOST_DEVICE(obj); > > + PCIHostState *phb = PCI_HOST_BRIDGE(obj); > > + > > + memory_region_init_io(&phb->conf_mem, obj, &pci_host_conf_le_ops, phb, > > + "pci-conf-idx", 4); > > + memory_region_init_io(&phb->data_mem, obj, &pci_host_data_le_ops, phb, > > + "pci-conf-data", 4); > > + > > I don't understand the above. Do you want the pxb to respond to > legacy PCI configuration cycles? > I don't think it will be possible since it is accessible only through > addresses > 0xcf8 and 0xcfc which are already "taken" by the Q35 host brigde. > > More importantly, we don't need them, we want to configure > the PXB using MCFG. I see your comment on later patch, there are two reasons. The first is that seabios uses the port IO to read pci configuration space, but 0xcf8 and 0xcfc is binded to pcie.0 bus as you have pointed out. I think sticking with port io could minimize the modification of seabios, so I use another port pair for pxb hosts. Are you suggesting we use mmio for pxb devices specially? The second is that seabios has not loaded RSDP when doing pci_setup, therefore we don't have the base address of each mcfg entry yet. So I still use the legacy ioport method as a temporary workaround. > > + object_property_add(obj, PCIE_HOST_MCFG_SIZE, "uint64", > > + pxb_pcie_host_get_mmcfg_size, > > + NULL, NULL, NULL, NULL); > > + > > + object_property_add_link(obj, PROP_PXB_PCIE_DEV, TYPE_PXB_PCIE_DEVICE, > > + (Object **)&s->pxbdev, > > + qdev_prop_allow_set_link_before_realize, 0, NULL); > > +} > > + > > +static Property pxb_pcie_host_props[] = { > > + DEFINE_PROP_UINT64(PCIE_HOST_MCFG_BASE, PXBPCIEHost, parent_obj.base_addr, > > + PCIE_BASE_ADDR_UNMAPPED), > > + DEFINE_PROP_END_OF_LIST(), > > +}; > > + > > That means you expect the management software to provide the > address... the libvirt guys will not like it :). > But for the moment let's go with it. > > > static void pxb_host_class_init(ObjectClass *class, void *data) > > { > > DeviceClass *dc = DEVICE_CLASS(class); > > @@ -155,12 +230,34 @@ static void pxb_host_class_init(ObjectClass *class, void *data) > > hc->root_bus_path = pxb_host_root_bus_path; > > } > > > > +static void pxb_pcie_host_class_init(ObjectClass *class, void *data) > > +{ > > + DeviceClass *dc = DEVICE_CLASS(class); > > + SysBusDeviceClass *sbc = SYS_BUS_DEVICE_CLASS(class); > > + PCIHostBridgeClass *hc = PCI_HOST_BRIDGE_CLASS(class); > > + > > + dc->fw_name = "pcie"; > > + dc->props = pxb_pcie_host_props; > > + /* Reason: Internal part of the pxb/pxb-pcie device, not usable by itself */ > > + dc->user_creatable = false; > > + sbc->explicit_ofw_unit_address = pxb_host_ofw_unit_address; > > + hc->root_bus_path = pxb_pcie_host_root_bus_path; > > +} > > + > > static const TypeInfo pxb_host_info = { > > .name = TYPE_PXB_HOST, > > .parent = TYPE_PCI_HOST_BRIDGE, > > .class_init = pxb_host_class_init, > > }; > > > > +static const TypeInfo pxb_pcie_host_info = { > > + .name = TYPE_PXB_PCIE_HOST, > > + .parent = TYPE_PCIE_HOST_BRIDGE, > > + .instance_size = sizeof(PXBPCIEHost), > > + .instance_init = pxb_pcie_host_initfn, > > + .class_init = pxb_pcie_host_class_init, > > +}; > > + > > /* > > * Registers the PXB bus as a child of pci host root bus. > > */ > > @@ -205,7 +302,10 @@ static gint pxb_compare(gconstpointer a, gconstpointer b) > > { > > const PXBDev *pxb_a = a, *pxb_b = b; > > > > - return pxb_a->bus_nr < pxb_b->bus_nr ? -1 : > > + /* check domain_nr, then bus_nr */ > > + return pxb_a->domain_nr < pxb_b->domain_nr ? -1 : > > + pxb_a->domain_nr > pxb_b->domain_nr ? 1 : > > + pxb_a->bus_nr < pxb_b->bus_nr ? -1 : > > pxb_a->bus_nr > pxb_b->bus_nr ? 1 : > > 0; > > } > > @@ -228,10 +328,16 @@ static void pxb_dev_realize_common(PCIDevice *dev, bool pcie, Error **errp) > > dev_name = dev->qdev.id; > > } > > > > - ds = qdev_create(NULL, TYPE_PXB_HOST); > > if (pcie) { > > + g_assert (pxb->max_bus >= pxb->bus_nr); > > + ds = qdev_create(NULL, TYPE_PXB_PCIE_HOST); > > + > > + object_property_set_link(OBJECT(ds), OBJECT(pxb), > > + PROP_PXB_PCIE_DEV, NULL); > > Please see the comment above, I don't think you > need this "link". OK. > > + > > bus = pci_root_bus_new(ds, dev_name, NULL, NULL, 0, TYPE_PXB_PCIE_BUS); > > } else { > > + ds = qdev_create(NULL, TYPE_PXB_HOST); > > bus = pci_root_bus_new(ds, "pxb-internal", NULL, NULL, 0, TYPE_PXB_BUS); > > bds = qdev_create(BUS(bus), "pci-bridge"); > > bds->id = dev_name; > > @@ -289,8 +395,18 @@ static void pxb_dev_exitfn(PCIDevice *pci_dev) > > > > static Property pxb_dev_properties[] = { > > /* Note: 0 is not a legal PXB bus number. */ > > - DEFINE_PROP_UINT8("bus_nr", PXBDev, bus_nr, 0), > > - DEFINE_PROP_UINT16("numa_node", PXBDev, numa_node, NUMA_NODE_UNASSIGNED), > > + DEFINE_PROP_UINT8(PROP_PXB_BUS_NR, PXBDev, bus_nr, 0), > > + DEFINE_PROP_UINT16(PROP_PXB_NUMA_NODE, PXBDev, numa_node, NUMA_NODE_UNASSIGNED), > > + DEFINE_PROP_END_OF_LIST(), > > +}; > > + > > +static Property pxb_pcie_dev_properties[] = { > > + DEFINE_PROP_UINT8(PROP_PXB_BUS_NR, PXBDev, bus_nr, 0), > > + DEFINE_PROP_UINT16(PROP_PXB_NUMA_NODE, PXBDev, numa_node, NUMA_NODE_UNASSIGNED), > > + DEFINE_PROP_UINT32(PROP_PXB_PCIE_DOMAIN_NR, PXBDev, domain_nr, 0), > > + /* set a small default value, bus interval is [bus_nr, max_bus] */ > > + DEFINE_PROP_UINT8(PROP_PXB_PCIE_MAX_BUS, PXBDev, max_bus, 16), > > + > > You can unite the common PROPS using a macro, but is not > a big deal. > > > DEFINE_PROP_END_OF_LIST(), > > }; > > > > @@ -344,7 +460,7 @@ static void pxb_pcie_dev_class_init(ObjectClass *klass, void *data) > > k->class_id = PCI_CLASS_BRIDGE_HOST; > > > > dc->desc = "PCI Express Expander Bridge"; > > - dc->props = pxb_dev_properties; > > + dc->props = pxb_pcie_dev_properties; > > dc->hotpluggable = false; > > set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories); > > } > > @@ -365,6 +481,7 @@ static void pxb_register_types(void) > > type_register_static(&pxb_bus_info); > > type_register_static(&pxb_pcie_bus_info); > > type_register_static(&pxb_host_info); > > + type_register_static(&pxb_pcie_host_info); > > type_register_static(&pxb_dev_info); > > type_register_static(&pxb_pcie_dev_info); > > } > > Thanks, > Marcel > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] [RFC v4 1/6] pci_expander_bridge: add type TYPE_PXB_PCIE_HOST 2018-08-19 1:51 ` Zihan Yang @ 2018-08-25 20:08 ` Marcel Apfelbaum 2018-08-27 2:18 ` Zihan Yang 0 siblings, 1 reply; 8+ messages in thread From: Marcel Apfelbaum @ 2018-08-25 20:08 UTC (permalink / raw) To: Zihan Yang; +Cc: qemu-devel, Michael S. Tsirkin Hi Zihan, On 08/19/2018 04:51 AM, Zihan Yang wrote: > Hi Marcel, > > Marcel Apfelbaum <marcel.apfelbaum@gmail.com> 于2018年8月18日周六 上午1:14写道: >> Hi Zihan, >> >> On 08/09/2018 09:33 AM, Zihan Yang wrote: >>> The inner host bridge created by pxb-pcie is TYPE_PXB_PCI_HOST by default, >>> change it to a new type TYPE_PXB_PCIE_HOST to better utilize ECAM of PCIe >>> >>> Signed-off-by: Zihan Yang <whois.zihan.yang@gmail.com> >>> --- >>> hw/pci-bridge/pci_expander_bridge.c | 127 ++++++++++++++++++++++++++++++++++-- >>> 1 file changed, 122 insertions(+), 5 deletions(-) >>> >>> diff --git a/hw/pci-bridge/pci_expander_bridge.c b/hw/pci-bridge/pci_expander_bridge.c >>> index e62de42..6dd38de 100644 >>> --- a/hw/pci-bridge/pci_expander_bridge.c >>> +++ b/hw/pci-bridge/pci_expander_bridge.c >>> @@ -15,10 +15,12 @@ >>> #include "hw/pci/pci.h" >>> #include "hw/pci/pci_bus.h" >>> #include "hw/pci/pci_host.h" >>> +#include "hw/pci/pcie_host.h" >>> #include "hw/pci/pci_bridge.h" >>> #include "qemu/range.h" >>> #include "qemu/error-report.h" >>> #include "sysemu/numa.h" >>> +#include "qapi/visitor.h" >>> >>> #define TYPE_PXB_BUS "pxb-bus" >>> #define PXB_BUS(obj) OBJECT_CHECK(PXBBus, (obj), TYPE_PXB_BUS) >>> @@ -40,11 +42,20 @@ typedef struct PXBBus { >>> #define TYPE_PXB_PCIE_DEVICE "pxb-pcie" >>> #define PXB_PCIE_DEV(obj) OBJECT_CHECK(PXBDev, (obj), TYPE_PXB_PCIE_DEVICE) >>> >>> +#define PROP_PXB_PCIE_DEV "pxbdev" >>> + >>> +#define PROP_PXB_PCIE_DOMAIN_NR "domain_nr" >>> +#define PROP_PXB_PCIE_MAX_BUS "max_bus" >>> +#define PROP_PXB_BUS_NR "bus_nr" >>> +#define PROP_PXB_NUMA_NODE "numa_node" >>> + >>> typedef struct PXBDev { >>> /*< private >*/ >>> PCIDevice parent_obj; >>> /*< public >*/ >>> >>> + uint32_t domain_nr; /* PCI domain number, non-zero means separate domain */ >> The commit message suggests this patch is only about >> re-factoring of the pxb host type, but you add here more fields. >> Please use two separate patches. >> >>> + uint8_t max_bus; /* max bus number to use(including this one) */ >> That's a great idea! Limiting the max_bus will save us a lot >> of resource space, we will not need 256 buses on pxbs probably. >> >> My concern is what happens with the current mode. >> Currently bus_nr is used to divide PCI domain 0 buses between pxbs. >> So if you have a pxb with bus_nr 100, and another with bus_nr 200, >> we divide them like this: >> main host bridge 0...99 >> pxb1 100 -199 >> pxb2 200-255 >> >> What will be the meaning of max_bus if we don't use the domain_nr parameter? >> Maybe it will mean that some bus numbers are not assigned at all, for >> example: >> pxb1: bus_nr 100, max_bus 150 >> pxb2: bus_nr 200, max_bus 210 >> >> It may work. > Yes, it should mean so. Actually max_bus does not have to be specified > if domain_nr > is not used, but if users decide to use domain_nr and want to save > space, max_bus > could be used. > >>> uint8_t bus_nr; >>> uint16_t numa_node; >>> } PXBDev; >>> @@ -58,6 +69,16 @@ static PXBDev *convert_to_pxb(PCIDevice *dev) >>> static GList *pxb_dev_list; >>> >>> #define TYPE_PXB_HOST "pxb-host" >>> +#define TYPE_PXB_PCIE_HOST "pxb-pcie-host" >>> +#define PXB_PCIE_HOST_DEVICE(obj) \ >>> + OBJECT_CHECK(PXBPCIEHost, (obj), TYPE_PXB_PCIE_HOST) >>> + >>> +typedef struct PXBPCIEHost { >>> + PCIExpressHost parent_obj; >>> + >>> + /* pointers to PXBDev */ >>> + PXBDev *pxbdev; >>> +} PXBPCIEHost; >>> >>> static int pxb_bus_num(PCIBus *bus) >>> { >>> @@ -111,6 +132,35 @@ static const char *pxb_host_root_bus_path(PCIHostState *host_bridge, >>> return bus->bus_path; >>> } >>> >>> +/* Use a dedicated function for PCIe since pxb-host does >>> + * not have a domain_nr field */ >>> +static const char *pxb_pcie_host_root_bus_path(PCIHostState *host_bridge, >>> + PCIBus *rootbus) >>> +{ >>> + if (!pci_bus_is_express(rootbus)) { >>> + /* pxb-pcie-host cannot reside on a PCI bus */ >>> + return NULL; >>> + } >>> + PXBBus *bus = PXB_PCIE_BUS(rootbus); >>> + >>> + /* get the pointer to PXBDev */ >>> + Object *obj = object_property_get_link(OBJECT(host_bridge), >>> + PROP_PXB_PCIE_DEV, NULL); >> I don't think you need a link here. >> I think rootbus->parent_dev returns the pxb device. >> (See the implementation of pxb_bus_num() ) > OK, I'll change it in next version. > >>> + >>> + snprintf(bus->bus_path, 8, "%04lx:%02x", >>> + object_property_get_uint(obj, PROP_PXB_PCIE_DOMAIN_NR, NULL), >>> + pxb_bus_num(rootbus)); >>> + return bus->bus_path; >>> +} >>> + >>> +static void pxb_pcie_host_get_mmcfg_size(Object *obj, Visitor *v, const char *name, >>> + void *opaque, Error **errp) >>> +{ >>> + PCIExpressHost *e = PCIE_HOST_BRIDGE(obj); >>> + >>> + visit_type_uint64(v, name, &e->size, errp); >>> +} >>> + >>> static char *pxb_host_ofw_unit_address(const SysBusDevice *dev) >>> { >>> const PCIHostState *pxb_host; >>> @@ -142,6 +192,31 @@ static char *pxb_host_ofw_unit_address(const SysBusDevice *dev) >>> return NULL; >>> } >>> >>> +static void pxb_pcie_host_initfn(Object *obj) >>> +{ >>> + PXBPCIEHost *s = PXB_PCIE_HOST_DEVICE(obj); >>> + PCIHostState *phb = PCI_HOST_BRIDGE(obj); >>> + >>> + memory_region_init_io(&phb->conf_mem, obj, &pci_host_conf_le_ops, phb, >>> + "pci-conf-idx", 4); >>> + memory_region_init_io(&phb->data_mem, obj, &pci_host_data_le_ops, phb, >>> + "pci-conf-data", 4); >>> + >> I don't understand the above. Do you want the pxb to respond to >> legacy PCI configuration cycles? >> I don't think it will be possible since it is accessible only through >> addresses >> 0xcf8 and 0xcfc which are already "taken" by the Q35 host brigde. >> >> More importantly, we don't need them, we want to configure >> the PXB using MCFG. > I see your comment on later patch, there are two reasons. > > The first is that seabios uses the port IO to read pci configuration space, > but 0xcf8 and 0xcfc is binded to pcie.0 bus as you have pointed out. I think > sticking with port io could minimize the modification of seabios, so I use > another port pair for pxb hosts. Are you suggesting we use mmio for pxb > devices specially? > > The second is that seabios has not loaded RSDP when doing pci_setup, > therefore we don't have the base address of each mcfg entry yet. So I still > use the legacy ioport method as a temporary workaround. > As I pointed out in the SeaBIOS series, this issue needs to be addressed before continuing. I repeat it here for QEMU developers, maybe somebody has an idea. If I understand correctly, the only way SeaBIOS lets us configure the devices is using the 0xcf8/0xcfc registers. Since we don't want at this point to support random IO ports for each PCI domain, maybe we can try a different angle: We don't have to configure the PCI devices residing in PCI domain > 0. The only drawback is we won't be able to boot from a PCI device belonging to such PCI domain, and maybe is OK. What we need from SeaBIOS is to 'assign' enough address space for each MMCFG and return their addresses to QEMU. Then QEMU can create the ACPI tables and let the guest OS configure the PCI devices. The problem remains the computation of the actual IO/MEM resources needed by these devices. (Not the MMCFG table). If SeaBIOS can't reach the PCI devices, it can't compute the needed resources, so QEMU can't divide the IO/MEM address space between the PCI domains. Any idea would be welcomed. Thanks, Marcel [...] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] [RFC v4 1/6] pci_expander_bridge: add type TYPE_PXB_PCIE_HOST 2018-08-25 20:08 ` Marcel Apfelbaum @ 2018-08-27 2:18 ` Zihan Yang 0 siblings, 0 replies; 8+ messages in thread From: Zihan Yang @ 2018-08-27 2:18 UTC (permalink / raw) To: Marcel Apfelbaum; +Cc: qemu-devel, Michael S. Tsirkin Marcel Apfelbaum <marcel.apfelbaum@gmail.com> 于2018年8月25日周六 下午8:08写道: > > Hi Zihan, > > On 08/19/2018 04:51 AM, Zihan Yang wrote: > > Hi Marcel, > > > > Marcel Apfelbaum <marcel.apfelbaum@gmail.com> 于2018年8月18日周六 上午1:14写道: > >> Hi Zihan, > >> > >> On 08/09/2018 09:33 AM, Zihan Yang wrote: > >>> The inner host bridge created by pxb-pcie is TYPE_PXB_PCI_HOST by default, > >>> change it to a new type TYPE_PXB_PCIE_HOST to better utilize ECAM of PCIe > >>> > >>> Signed-off-by: Zihan Yang <whois.zihan.yang@gmail.com> > >>> --- > >>> hw/pci-bridge/pci_expander_bridge.c | 127 ++++++++++++++++++++++++++++++++++-- > >>> 1 file changed, 122 insertions(+), 5 deletions(-) > >>> > >>> diff --git a/hw/pci-bridge/pci_expander_bridge.c b/hw/pci-bridge/pci_expander_bridge.c > >>> index e62de42..6dd38de 100644 > >>> --- a/hw/pci-bridge/pci_expander_bridge.c > >>> +++ b/hw/pci-bridge/pci_expander_bridge.c > >>> @@ -15,10 +15,12 @@ > >>> #include "hw/pci/pci.h" > >>> #include "hw/pci/pci_bus.h" > >>> #include "hw/pci/pci_host.h" > >>> +#include "hw/pci/pcie_host.h" > >>> #include "hw/pci/pci_bridge.h" > >>> #include "qemu/range.h" > >>> #include "qemu/error-report.h" > >>> #include "sysemu/numa.h" > >>> +#include "qapi/visitor.h" > >>> > >>> #define TYPE_PXB_BUS "pxb-bus" > >>> #define PXB_BUS(obj) OBJECT_CHECK(PXBBus, (obj), TYPE_PXB_BUS) > >>> @@ -40,11 +42,20 @@ typedef struct PXBBus { > >>> #define TYPE_PXB_PCIE_DEVICE "pxb-pcie" > >>> #define PXB_PCIE_DEV(obj) OBJECT_CHECK(PXBDev, (obj), TYPE_PXB_PCIE_DEVICE) > >>> > >>> +#define PROP_PXB_PCIE_DEV "pxbdev" > >>> + > >>> +#define PROP_PXB_PCIE_DOMAIN_NR "domain_nr" > >>> +#define PROP_PXB_PCIE_MAX_BUS "max_bus" > >>> +#define PROP_PXB_BUS_NR "bus_nr" > >>> +#define PROP_PXB_NUMA_NODE "numa_node" > >>> + > >>> typedef struct PXBDev { > >>> /*< private >*/ > >>> PCIDevice parent_obj; > >>> /*< public >*/ > >>> > >>> + uint32_t domain_nr; /* PCI domain number, non-zero means separate domain */ > >> The commit message suggests this patch is only about > >> re-factoring of the pxb host type, but you add here more fields. > >> Please use two separate patches. > >> > >>> + uint8_t max_bus; /* max bus number to use(including this one) */ > >> That's a great idea! Limiting the max_bus will save us a lot > >> of resource space, we will not need 256 buses on pxbs probably. > >> > >> My concern is what happens with the current mode. > >> Currently bus_nr is used to divide PCI domain 0 buses between pxbs. > >> So if you have a pxb with bus_nr 100, and another with bus_nr 200, > >> we divide them like this: > >> main host bridge 0...99 > >> pxb1 100 -199 > >> pxb2 200-255 > >> > >> What will be the meaning of max_bus if we don't use the domain_nr parameter? > >> Maybe it will mean that some bus numbers are not assigned at all, for > >> example: > >> pxb1: bus_nr 100, max_bus 150 > >> pxb2: bus_nr 200, max_bus 210 > >> > >> It may work. > > Yes, it should mean so. Actually max_bus does not have to be specified > > if domain_nr > > is not used, but if users decide to use domain_nr and want to save > > space, max_bus > > could be used. > > > >>> uint8_t bus_nr; > >>> uint16_t numa_node; > >>> } PXBDev; > >>> @@ -58,6 +69,16 @@ static PXBDev *convert_to_pxb(PCIDevice *dev) > >>> static GList *pxb_dev_list; > >>> > >>> #define TYPE_PXB_HOST "pxb-host" > >>> +#define TYPE_PXB_PCIE_HOST "pxb-pcie-host" > >>> +#define PXB_PCIE_HOST_DEVICE(obj) \ > >>> + OBJECT_CHECK(PXBPCIEHost, (obj), TYPE_PXB_PCIE_HOST) > >>> + > >>> +typedef struct PXBPCIEHost { > >>> + PCIExpressHost parent_obj; > >>> + > >>> + /* pointers to PXBDev */ > >>> + PXBDev *pxbdev; > >>> +} PXBPCIEHost; > >>> > >>> static int pxb_bus_num(PCIBus *bus) > >>> { > >>> @@ -111,6 +132,35 @@ static const char *pxb_host_root_bus_path(PCIHostState *host_bridge, > >>> return bus->bus_path; > >>> } > >>> > >>> +/* Use a dedicated function for PCIe since pxb-host does > >>> + * not have a domain_nr field */ > >>> +static const char *pxb_pcie_host_root_bus_path(PCIHostState *host_bridge, > >>> + PCIBus *rootbus) > >>> +{ > >>> + if (!pci_bus_is_express(rootbus)) { > >>> + /* pxb-pcie-host cannot reside on a PCI bus */ > >>> + return NULL; > >>> + } > >>> + PXBBus *bus = PXB_PCIE_BUS(rootbus); > >>> + > >>> + /* get the pointer to PXBDev */ > >>> + Object *obj = object_property_get_link(OBJECT(host_bridge), > >>> + PROP_PXB_PCIE_DEV, NULL); > >> I don't think you need a link here. > >> I think rootbus->parent_dev returns the pxb device. > >> (See the implementation of pxb_bus_num() ) > > OK, I'll change it in next version. > > > >>> + > >>> + snprintf(bus->bus_path, 8, "%04lx:%02x", > >>> + object_property_get_uint(obj, PROP_PXB_PCIE_DOMAIN_NR, NULL), > >>> + pxb_bus_num(rootbus)); > >>> + return bus->bus_path; > >>> +} > >>> + > >>> +static void pxb_pcie_host_get_mmcfg_size(Object *obj, Visitor *v, const char *name, > >>> + void *opaque, Error **errp) > >>> +{ > >>> + PCIExpressHost *e = PCIE_HOST_BRIDGE(obj); > >>> + > >>> + visit_type_uint64(v, name, &e->size, errp); > >>> +} > >>> + > >>> static char *pxb_host_ofw_unit_address(const SysBusDevice *dev) > >>> { > >>> const PCIHostState *pxb_host; > >>> @@ -142,6 +192,31 @@ static char *pxb_host_ofw_unit_address(const SysBusDevice *dev) > >>> return NULL; > >>> } > >>> > >>> +static void pxb_pcie_host_initfn(Object *obj) > >>> +{ > >>> + PXBPCIEHost *s = PXB_PCIE_HOST_DEVICE(obj); > >>> + PCIHostState *phb = PCI_HOST_BRIDGE(obj); > >>> + > >>> + memory_region_init_io(&phb->conf_mem, obj, &pci_host_conf_le_ops, phb, > >>> + "pci-conf-idx", 4); > >>> + memory_region_init_io(&phb->data_mem, obj, &pci_host_data_le_ops, phb, > >>> + "pci-conf-data", 4); > >>> + > >> I don't understand the above. Do you want the pxb to respond to > >> legacy PCI configuration cycles? > >> I don't think it will be possible since it is accessible only through > >> addresses > >> 0xcf8 and 0xcfc which are already "taken" by the Q35 host brigde. > >> > >> More importantly, we don't need them, we want to configure > >> the PXB using MCFG. > > I see your comment on later patch, there are two reasons. > > > > The first is that seabios uses the port IO to read pci configuration space, > > but 0xcf8 and 0xcfc is binded to pcie.0 bus as you have pointed out. I think > > sticking with port io could minimize the modification of seabios, so I use > > another port pair for pxb hosts. Are you suggesting we use mmio for pxb > > devices specially? > > > > The second is that seabios has not loaded RSDP when doing pci_setup, > > therefore we don't have the base address of each mcfg entry yet. So I still > > use the legacy ioport method as a temporary workaround. > > > > As I pointed out in the SeaBIOS series, this issue needs to be addressed > before continuing. > > I repeat it here for QEMU developers, maybe somebody has an idea. > > If I understand correctly, the only way SeaBIOS lets us configure the > devices > is using the 0xcf8/0xcfc registers. > Since we don't want at this point to support random IO ports for each PCI > domain, maybe we can try a different angle: > > We don't have to configure the PCI devices residing in PCI domain > 0. > The only drawback is we won't be able to boot from a PCI device > belonging to such PCI domain, and maybe is OK. > > What we need from SeaBIOS is to 'assign' enough address space for each > MMCFG and return their addresses to QEMU. Then QEMU can create the > ACPI tables and let the guest OS configure the PCI devices. > > The problem remains the computation of the actual IO/MEM resources > needed by these devices. (Not the MMCFG table). > If SeaBIOS can't reach the PCI devices, it can't compute the needed > resources, so QEMU can't divide the IO/MEM address space between > the PCI domains. > > Any idea would be welcomed. It is welcomed by me too :) > Thanks, > Marcel > > > > > [...] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2018-08-27 2:19 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2018-08-09 6:33 [Qemu-devel] [RFC v4 1/6] pci_expander_bridge: add type TYPE_PXB_PCIE_HOST Zihan Yang 2018-08-09 13:23 ` Eric Blake 2018-08-09 16:39 ` Zihan Yang 2018-08-09 16:48 ` Eric Blake 2018-08-17 17:14 ` Marcel Apfelbaum 2018-08-19 1:51 ` Zihan Yang 2018-08-25 20:08 ` Marcel Apfelbaum 2018-08-27 2:18 ` Zihan Yang
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).