[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] pci: introduce a type to store a SBDF
commit 514f58d4468a40b5dd418a5ea1742681930c3f2d Author: Roger Pau Monné <roger.pau@xxxxxxxxxx> AuthorDate: Mon Dec 4 11:02:46 2017 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Mon Dec 4 11:02:46 2017 +0100 pci: introduce a type to store a SBDF That provides direct access to all the members that constitute a SBDF. The only function switched to use it is hvm_pci_decode_addr, because it makes following patches simpler. Suggested-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Signed-off-by: Roger Pau Monné <roger.pau@xxxxxxxxxx> Reviewed-by: Paul Durrant <paul.durrant@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> Reviewed-by: Wei Liu <wei.liu2@xxxxxxxxxx> --- xen/arch/x86/hvm/io.c | 11 +++-------- xen/arch/x86/hvm/ioreq.c | 12 +++++------- xen/include/asm-x86/hvm/io.h | 4 ++-- xen/include/xen/pci.h | 20 ++++++++++++++++++++ 4 files changed, 30 insertions(+), 17 deletions(-) diff --git a/xen/arch/x86/hvm/io.c b/xen/arch/x86/hvm/io.c index 7e8b8ac..77f4c2a 100644 --- a/xen/arch/x86/hvm/io.c +++ b/xen/arch/x86/hvm/io.c @@ -265,17 +265,12 @@ void register_g2m_portio_handler(struct domain *d) } unsigned int hvm_pci_decode_addr(unsigned int cf8, unsigned int addr, - unsigned int *bus, unsigned int *slot, - unsigned int *func) + pci_sbdf_t *sbdf) { - unsigned int bdf; - ASSERT(CF8_ENABLED(cf8)); - bdf = CF8_BDF(cf8); - *bus = PCI_BUS(bdf); - *slot = PCI_SLOT(bdf); - *func = PCI_FUNC(bdf); + sbdf->bdf = CF8_BDF(cf8); + sbdf->seg = 0; /* * NB: the lower 2 bits of the register address are fetched from the * offset into the 0xcfc register when reading/writing to it. diff --git a/xen/arch/x86/hvm/ioreq.c b/xen/arch/x86/hvm/ioreq.c index d5afe20..ec9b31f 100644 --- a/xen/arch/x86/hvm/ioreq.c +++ b/xen/arch/x86/hvm/ioreq.c @@ -1183,17 +1183,15 @@ struct hvm_ioreq_server *hvm_select_ioreq_server(struct domain *d, (p->addr & ~3) == 0xcfc && CF8_ENABLED(cf8) ) { - uint32_t sbdf, x86_fam; - unsigned int bus, slot, func, reg; + uint32_t x86_fam; + pci_sbdf_t sbdf; + unsigned int reg; - reg = hvm_pci_decode_addr(cf8, p->addr, &bus, &slot, &func); + reg = hvm_pci_decode_addr(cf8, p->addr, &sbdf); /* PCI config data cycle */ - - sbdf = XEN_DMOP_PCI_SBDF(0, bus, slot, func); - type = XEN_DMOP_IO_RANGE_PCI; - addr = ((uint64_t)sbdf << 32) | reg; + addr = ((uint64_t)sbdf.sbdf << 32) | reg; /* AMD extended configuration space access? */ if ( CF8_ADDR_HI(cf8) && d->arch.cpuid->x86_vendor == X86_VENDOR_AMD && diff --git a/xen/include/asm-x86/hvm/io.h b/xen/include/asm-x86/hvm/io.h index 51659b6..707665f 100644 --- a/xen/include/asm-x86/hvm/io.h +++ b/xen/include/asm-x86/hvm/io.h @@ -20,6 +20,7 @@ #define __ASM_X86_HVM_IO_H__ #include <xen/mm.h> +#include <xen/pci.h> #include <asm/hvm/vpic.h> #include <asm/hvm/vioapic.h> #include <public/hvm/ioreq.h> @@ -151,8 +152,7 @@ extern void hvm_dpci_msi_eoi(struct domain *d, int vector); /* Decode a PCI port IO access into a bus/slot/func/reg. */ unsigned int hvm_pci_decode_addr(unsigned int cf8, unsigned int addr, - unsigned int *bus, unsigned int *slot, - unsigned int *func); + pci_sbdf_t *sbdf); /* * HVM port IO handler that performs forwarding of guest IO ports into machine diff --git a/xen/include/xen/pci.h b/xen/include/xen/pci.h index 43f2125..dd5ec43 100644 --- a/xen/include/xen/pci.h +++ b/xen/include/xen/pci.h @@ -38,6 +38,26 @@ #define PCI_SBDF2(s,bdf) ((((s) & 0xffff) << 16) | ((bdf) & 0xffff)) #define PCI_SBDF3(s,b,df) ((((s) & 0xffff) << 16) | PCI_BDF2(b, df)) +typedef union { + uint32_t sbdf; + struct { + union { + uint16_t bdf; + struct { + union { + struct { + uint8_t func : 3, + dev : 5; + }; + uint8_t extfunc; + }; + uint8_t bus; + }; + }; + uint16_t seg; + }; +} pci_sbdf_t; + struct pci_dev_info { /* * VF's 'is_extfn' field is used to indicate whether its PF is an extended -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |