1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) Microsoft Corporation.
8 * This driver acts as a paravirtual front-end for PCI Express root buses.
9 * When a PCI Express function (either an entire device or an SR-IOV
10 * Virtual Function) is being passed through to the VM, this driver exposes
11 * a new bus to the guest VM. This is modeled as a root PCI bus because
12 * no bridges are being exposed to the VM. In fact, with a "Generation 2"
13 * VM within Hyper-V, there may seem to be no PCI bus at all in the VM
14 * until a device as been exposed using this driver.
16 * Each root PCI bus has its own PCI domain, which is called "Segment" in
17 * the PCI Firmware Specifications. Thus while each device passed through
18 * to the VM using this front-end will appear at "device 0", the domain will
19 * be unique. Typically, each bus will have one PCI function on it, though
20 * this driver does support more than one.
22 * In order to map the interrupts from the device through to the guest VM,
23 * this driver also implements an IRQ Domain, which handles interrupts (either
24 * MSI or MSI-X) associated with the functions on the bus. As interrupts are
25 * set up, torn down, or reaffined, this driver communicates with the
26 * underlying hypervisor to adjust the mappings in the I/O MMU so that each
27 * interrupt will be delivered to the correct virtual processor at the right
28 * vector. This driver does not support level-triggered (line-based)
29 * interrupts, and will report that the Interrupt Line register in the
30 * function's configuration space is zero.
32 * The rest of this driver mostly maps PCI concepts onto underlying Hyper-V
33 * facilities. For instance, the configuration space of a function exposed
34 * by Hyper-V is mapped into a single page of memory space, and the
35 * read and write handlers for config space must be aware of this mechanism.
36 * Similarly, device setup and teardown involves messages sent to and from
37 * the PCI back-end driver in Hyper-V.
40 #include <linux/kernel.h>
41 #include <linux/module.h>
42 #include <linux/pci.h>
43 #include <linux/delay.h>
44 #include <linux/semaphore.h>
45 #include <linux/irqdomain.h>
46 #include <asm/irqdomain.h>
48 #include <linux/irq.h>
49 #include <linux/msi.h>
50 #include <linux/hyperv.h>
51 #include <linux/refcount.h>
52 #include <asm/mshyperv.h>
55 * Protocol versions. The low word is the minor version, the high word the
59 #define PCI_MAKE_VERSION(major, minor) ((u32)(((major) << 16) | (minor)))
60 #define PCI_MAJOR_VERSION(version) ((u32)(version) >> 16)
61 #define PCI_MINOR_VERSION(version) ((u32)(version) & 0xff)
63 enum pci_protocol_version_t {
64 PCI_PROTOCOL_VERSION_1_1 = PCI_MAKE_VERSION(1, 1), /* Win10 */
65 PCI_PROTOCOL_VERSION_1_2 = PCI_MAKE_VERSION(1, 2), /* RS1 */
66 PCI_PROTOCOL_VERSION_1_3 = PCI_MAKE_VERSION(1, 3), /* Vibranium */
69 #define CPU_AFFINITY_ALL -1ULL
72 * Supported protocol versions in the order of probing - highest go
75 static enum pci_protocol_version_t pci_protocol_versions[] = {
76 PCI_PROTOCOL_VERSION_1_3,
77 PCI_PROTOCOL_VERSION_1_2,
78 PCI_PROTOCOL_VERSION_1_1,
81 #define PCI_CONFIG_MMIO_LENGTH 0x2000
82 #define CFG_PAGE_OFFSET 0x1000
83 #define CFG_PAGE_SIZE (PCI_CONFIG_MMIO_LENGTH - CFG_PAGE_OFFSET)
85 #define MAX_SUPPORTED_MSI_MESSAGES 0x400
87 #define STATUS_REVISION_MISMATCH 0xC0000059
89 /* space for 32bit serial number as string */
90 #define SLOT_NAME_SIZE 11
96 enum pci_message_type {
100 PCI_MESSAGE_BASE = 0x42490000,
101 PCI_BUS_RELATIONS = PCI_MESSAGE_BASE + 0,
102 PCI_QUERY_BUS_RELATIONS = PCI_MESSAGE_BASE + 1,
103 PCI_POWER_STATE_CHANGE = PCI_MESSAGE_BASE + 4,
104 PCI_QUERY_RESOURCE_REQUIREMENTS = PCI_MESSAGE_BASE + 5,
105 PCI_QUERY_RESOURCE_RESOURCES = PCI_MESSAGE_BASE + 6,
106 PCI_BUS_D0ENTRY = PCI_MESSAGE_BASE + 7,
107 PCI_BUS_D0EXIT = PCI_MESSAGE_BASE + 8,
108 PCI_READ_BLOCK = PCI_MESSAGE_BASE + 9,
109 PCI_WRITE_BLOCK = PCI_MESSAGE_BASE + 0xA,
110 PCI_EJECT = PCI_MESSAGE_BASE + 0xB,
111 PCI_QUERY_STOP = PCI_MESSAGE_BASE + 0xC,
112 PCI_REENABLE = PCI_MESSAGE_BASE + 0xD,
113 PCI_QUERY_STOP_FAILED = PCI_MESSAGE_BASE + 0xE,
114 PCI_EJECTION_COMPLETE = PCI_MESSAGE_BASE + 0xF,
115 PCI_RESOURCES_ASSIGNED = PCI_MESSAGE_BASE + 0x10,
116 PCI_RESOURCES_RELEASED = PCI_MESSAGE_BASE + 0x11,
117 PCI_INVALIDATE_BLOCK = PCI_MESSAGE_BASE + 0x12,
118 PCI_QUERY_PROTOCOL_VERSION = PCI_MESSAGE_BASE + 0x13,
119 PCI_CREATE_INTERRUPT_MESSAGE = PCI_MESSAGE_BASE + 0x14,
120 PCI_DELETE_INTERRUPT_MESSAGE = PCI_MESSAGE_BASE + 0x15,
121 PCI_RESOURCES_ASSIGNED2 = PCI_MESSAGE_BASE + 0x16,
122 PCI_CREATE_INTERRUPT_MESSAGE2 = PCI_MESSAGE_BASE + 0x17,
123 PCI_DELETE_INTERRUPT_MESSAGE2 = PCI_MESSAGE_BASE + 0x18, /* unused */
124 PCI_BUS_RELATIONS2 = PCI_MESSAGE_BASE + 0x19,
129 * Structures defining the virtual PCI Express protocol.
141 * Function numbers are 8-bits wide on Express, as interpreted through ARI,
142 * which is all this driver does. This representation is the one used in
143 * Windows, which is what is expected when sending this back and forth with
144 * the Hyper-V parent partition.
146 union win_slot_encoding {
156 * Pretty much as defined in the PCI Specifications.
158 struct pci_function_description {
159 u16 v_id; /* vendor ID */
160 u16 d_id; /* device ID */
166 union win_slot_encoding win_slot;
167 u32 ser; /* serial number */
170 enum pci_device_description_flags {
171 HV_PCI_DEVICE_FLAG_NONE = 0x0,
172 HV_PCI_DEVICE_FLAG_NUMA_AFFINITY = 0x1,
175 struct pci_function_description2 {
176 u16 v_id; /* vendor ID */
177 u16 d_id; /* device ID */
183 union win_slot_encoding win_slot;
184 u32 ser; /* serial number */
186 u16 virtual_numa_node;
193 * @delivery_mode: As defined in Intel's Programmer's
194 * Reference Manual, Volume 3, Chapter 8.
195 * @vector_count: Number of contiguous entries in the
196 * Interrupt Descriptor Table that are
197 * occupied by this Message-Signaled
198 * Interrupt. For "MSI", as first defined
199 * in PCI 2.2, this can be between 1 and
200 * 32. For "MSI-X," as first defined in PCI
201 * 3.0, this must be 1, as each MSI-X table
202 * entry would have its own descriptor.
203 * @reserved: Empty space
204 * @cpu_mask: All the target virtual processors.
215 * struct hv_msi_desc2 - 1.2 version of hv_msi_desc
217 * @delivery_mode: As defined in Intel's Programmer's
218 * Reference Manual, Volume 3, Chapter 8.
219 * @vector_count: Number of contiguous entries in the
220 * Interrupt Descriptor Table that are
221 * occupied by this Message-Signaled
222 * Interrupt. For "MSI", as first defined
223 * in PCI 2.2, this can be between 1 and
224 * 32. For "MSI-X," as first defined in PCI
225 * 3.0, this must be 1, as each MSI-X table
226 * entry would have its own descriptor.
227 * @processor_count: number of bits enabled in array.
228 * @processor_array: All the target virtual processors.
230 struct hv_msi_desc2 {
235 u16 processor_array[32];
239 * struct tran_int_desc
240 * @reserved: unused, padding
241 * @vector_count: same as in hv_msi_desc
242 * @data: This is the "data payload" value that is
243 * written by the device when it generates
244 * a message-signaled interrupt, either MSI
246 * @address: This is the address to which the data
247 * payload is written on interrupt
250 struct tran_int_desc {
258 * A generic message format for virtual PCI.
259 * Specific message formats are defined later in the file.
266 struct pci_child_message {
267 struct pci_message message_type;
268 union win_slot_encoding wslot;
271 struct pci_incoming_message {
272 struct vmpacket_descriptor hdr;
273 struct pci_message message_type;
276 struct pci_response {
277 struct vmpacket_descriptor hdr;
278 s32 status; /* negative values are failures */
282 void (*completion_func)(void *context, struct pci_response *resp,
283 int resp_packet_size);
286 struct pci_message message[];
290 * Specific message types supporting the PCI protocol.
294 * Version negotiation message. Sent from the guest to the host.
295 * The guest is free to try different versions until the host
296 * accepts the version.
298 * pci_version: The protocol version requested.
299 * is_last_attempt: If TRUE, this is the last version guest will request.
300 * reservedz: Reserved field, set to zero.
303 struct pci_version_request {
304 struct pci_message message_type;
305 u32 protocol_version;
309 * Bus D0 Entry. This is sent from the guest to the host when the virtual
310 * bus (PCI Express port) is ready for action.
313 struct pci_bus_d0_entry {
314 struct pci_message message_type;
319 struct pci_bus_relations {
320 struct pci_incoming_message incoming;
322 struct pci_function_description func[];
325 struct pci_bus_relations2 {
326 struct pci_incoming_message incoming;
328 struct pci_function_description2 func[];
331 struct pci_q_res_req_response {
332 struct vmpacket_descriptor hdr;
333 s32 status; /* negative values are failures */
334 u32 probed_bar[PCI_STD_NUM_BARS];
337 struct pci_set_power {
338 struct pci_message message_type;
339 union win_slot_encoding wslot;
340 u32 power_state; /* In Windows terms */
344 struct pci_set_power_response {
345 struct vmpacket_descriptor hdr;
346 s32 status; /* negative values are failures */
347 union win_slot_encoding wslot;
348 u32 resultant_state; /* In Windows terms */
352 struct pci_resources_assigned {
353 struct pci_message message_type;
354 union win_slot_encoding wslot;
355 u8 memory_range[0x14][6]; /* not used here */
360 struct pci_resources_assigned2 {
361 struct pci_message message_type;
362 union win_slot_encoding wslot;
363 u8 memory_range[0x14][6]; /* not used here */
364 u32 msi_descriptor_count;
368 struct pci_create_interrupt {
369 struct pci_message message_type;
370 union win_slot_encoding wslot;
371 struct hv_msi_desc int_desc;
374 struct pci_create_int_response {
375 struct pci_response response;
377 struct tran_int_desc int_desc;
380 struct pci_create_interrupt2 {
381 struct pci_message message_type;
382 union win_slot_encoding wslot;
383 struct hv_msi_desc2 int_desc;
386 struct pci_delete_interrupt {
387 struct pci_message message_type;
388 union win_slot_encoding wslot;
389 struct tran_int_desc int_desc;
393 * Note: the VM must pass a valid block id, wslot and bytes_requested.
395 struct pci_read_block {
396 struct pci_message message_type;
398 union win_slot_encoding wslot;
402 struct pci_read_block_response {
403 struct vmpacket_descriptor hdr;
405 u8 bytes[HV_CONFIG_BLOCK_SIZE_MAX];
409 * Note: the VM must pass a valid block id, wslot and byte_count.
411 struct pci_write_block {
412 struct pci_message message_type;
414 union win_slot_encoding wslot;
416 u8 bytes[HV_CONFIG_BLOCK_SIZE_MAX];
419 struct pci_dev_inval_block {
420 struct pci_incoming_message incoming;
421 union win_slot_encoding wslot;
425 struct pci_dev_incoming {
426 struct pci_incoming_message incoming;
427 union win_slot_encoding wslot;
430 struct pci_eject_response {
431 struct pci_message message_type;
432 union win_slot_encoding wslot;
436 static int pci_ring_size = (4 * PAGE_SIZE);
439 * Driver specific state.
442 enum hv_pcibus_state {
451 struct hv_pcibus_device {
452 struct pci_sysdata sysdata;
453 /* Protocol version negotiated with the host */
454 enum pci_protocol_version_t protocol_version;
455 enum hv_pcibus_state state;
456 refcount_t remove_lock;
457 struct hv_device *hdev;
458 resource_size_t low_mmio_space;
459 resource_size_t high_mmio_space;
460 struct resource *mem_config;
461 struct resource *low_mmio_res;
462 struct resource *high_mmio_res;
463 struct completion *survey_event;
464 struct completion remove_event;
465 struct pci_bus *pci_bus;
466 spinlock_t config_lock; /* Avoid two threads writing index page */
467 spinlock_t device_list_lock; /* Protect lists below */
468 void __iomem *cfg_addr;
470 struct list_head resources_for_children;
472 struct list_head children;
473 struct list_head dr_list;
475 struct msi_domain_info msi_info;
476 struct msi_controller msi_chip;
477 struct irq_domain *irq_domain;
479 spinlock_t retarget_msi_interrupt_lock;
481 struct workqueue_struct *wq;
483 /* Highest slot of child device with resources allocated */
484 int wslot_res_allocated;
486 /* hypercall arg, must not cross page boundary */
487 struct hv_retarget_device_interrupt retarget_msi_interrupt_params;
490 * Don't put anything here: retarget_msi_interrupt_params must be last
495 * Tracks "Device Relations" messages from the host, which must be both
496 * processed in order and deferred so that they don't run in the context
497 * of the incoming packet callback.
500 struct work_struct wrk;
501 struct hv_pcibus_device *bus;
504 struct hv_pcidev_description {
505 u16 v_id; /* vendor ID */
506 u16 d_id; /* device ID */
512 union win_slot_encoding win_slot;
513 u32 ser; /* serial number */
515 u16 virtual_numa_node;
519 struct list_head list_entry;
521 struct hv_pcidev_description func[];
524 enum hv_pcichild_state {
525 hv_pcichild_init = 0,
526 hv_pcichild_requirements,
527 hv_pcichild_resourced,
528 hv_pcichild_ejecting,
533 /* List protected by pci_rescan_remove_lock */
534 struct list_head list_entry;
536 enum hv_pcichild_state state;
537 struct pci_slot *pci_slot;
538 struct hv_pcidev_description desc;
539 bool reported_missing;
540 struct hv_pcibus_device *hbus;
541 struct work_struct wrk;
543 void (*block_invalidate)(void *context, u64 block_mask);
544 void *invalidate_context;
547 * What would be observed if one wrote 0xFFFFFFFF to a BAR and then
548 * read it back, for each of the BAR offsets within config space.
550 u32 probed_bar[PCI_STD_NUM_BARS];
553 struct hv_pci_compl {
554 struct completion host_event;
555 s32 completion_status;
558 static void hv_pci_onchannelcallback(void *context);
561 * hv_pci_generic_compl() - Invoked for a completion packet
562 * @context: Set up by the sender of the packet.
563 * @resp: The response packet
564 * @resp_packet_size: Size in bytes of the packet
566 * This function is used to trigger an event and report status
567 * for any message for which the completion packet contains a
568 * status and nothing else.
570 static void hv_pci_generic_compl(void *context, struct pci_response *resp,
571 int resp_packet_size)
573 struct hv_pci_compl *comp_pkt = context;
575 if (resp_packet_size >= offsetofend(struct pci_response, status))
576 comp_pkt->completion_status = resp->status;
578 comp_pkt->completion_status = -1;
580 complete(&comp_pkt->host_event);
583 static struct hv_pci_dev *get_pcichild_wslot(struct hv_pcibus_device *hbus,
586 static void get_pcichild(struct hv_pci_dev *hpdev)
588 refcount_inc(&hpdev->refs);
591 static void put_pcichild(struct hv_pci_dev *hpdev)
593 if (refcount_dec_and_test(&hpdev->refs))
597 static void get_hvpcibus(struct hv_pcibus_device *hv_pcibus);
598 static void put_hvpcibus(struct hv_pcibus_device *hv_pcibus);
601 * There is no good way to get notified from vmbus_onoffer_rescind(),
602 * so let's use polling here, since this is not a hot path.
604 static int wait_for_response(struct hv_device *hdev,
605 struct completion *comp)
608 if (hdev->channel->rescind) {
609 dev_warn_once(&hdev->device, "The device is gone.\n");
613 if (wait_for_completion_timeout(comp, HZ / 10))
621 * devfn_to_wslot() - Convert from Linux PCI slot to Windows
622 * @devfn: The Linux representation of PCI slot
624 * Windows uses a slightly different representation of PCI slot.
626 * Return: The Windows representation
628 static u32 devfn_to_wslot(int devfn)
630 union win_slot_encoding wslot;
633 wslot.bits.dev = PCI_SLOT(devfn);
634 wslot.bits.func = PCI_FUNC(devfn);
640 * wslot_to_devfn() - Convert from Windows PCI slot to Linux
641 * @wslot: The Windows representation of PCI slot
643 * Windows uses a slightly different representation of PCI slot.
645 * Return: The Linux representation
647 static int wslot_to_devfn(u32 wslot)
649 union win_slot_encoding slot_no;
651 slot_no.slot = wslot;
652 return PCI_DEVFN(slot_no.bits.dev, slot_no.bits.func);
656 * PCI Configuration Space for these root PCI buses is implemented as a pair
657 * of pages in memory-mapped I/O space. Writing to the first page chooses
658 * the PCI function being written or read. Once the first page has been
659 * written to, the following page maps in the entire configuration space of
664 * _hv_pcifront_read_config() - Internal PCI config read
665 * @hpdev: The PCI driver's representation of the device
666 * @where: Offset within config space
667 * @size: Size of the transfer
668 * @val: Pointer to the buffer receiving the data
670 static void _hv_pcifront_read_config(struct hv_pci_dev *hpdev, int where,
674 void __iomem *addr = hpdev->hbus->cfg_addr + CFG_PAGE_OFFSET + where;
677 * If the attempt is to read the IDs or the ROM BAR, simulate that.
679 if (where + size <= PCI_COMMAND) {
680 memcpy(val, ((u8 *)&hpdev->desc.v_id) + where, size);
681 } else if (where >= PCI_CLASS_REVISION && where + size <=
682 PCI_CACHE_LINE_SIZE) {
683 memcpy(val, ((u8 *)&hpdev->desc.rev) + where -
684 PCI_CLASS_REVISION, size);
685 } else if (where >= PCI_SUBSYSTEM_VENDOR_ID && where + size <=
687 memcpy(val, (u8 *)&hpdev->desc.subsystem_id + where -
688 PCI_SUBSYSTEM_VENDOR_ID, size);
689 } else if (where >= PCI_ROM_ADDRESS && where + size <=
690 PCI_CAPABILITY_LIST) {
691 /* ROM BARs are unimplemented */
693 } else if (where >= PCI_INTERRUPT_LINE && where + size <=
696 * Interrupt Line and Interrupt PIN are hard-wired to zero
697 * because this front-end only supports message-signaled
701 } else if (where + size <= CFG_PAGE_SIZE) {
702 spin_lock_irqsave(&hpdev->hbus->config_lock, flags);
703 /* Choose the function to be read. (See comment above) */
704 writel(hpdev->desc.win_slot.slot, hpdev->hbus->cfg_addr);
705 /* Make sure the function was chosen before we start reading. */
707 /* Read from that function's config space. */
720 * Make sure the read was done before we release the spinlock
721 * allowing consecutive reads/writes.
724 spin_unlock_irqrestore(&hpdev->hbus->config_lock, flags);
726 dev_err(&hpdev->hbus->hdev->device,
727 "Attempt to read beyond a function's config space.\n");
731 static u16 hv_pcifront_get_vendor_id(struct hv_pci_dev *hpdev)
735 void __iomem *addr = hpdev->hbus->cfg_addr + CFG_PAGE_OFFSET +
738 spin_lock_irqsave(&hpdev->hbus->config_lock, flags);
740 /* Choose the function to be read. (See comment above) */
741 writel(hpdev->desc.win_slot.slot, hpdev->hbus->cfg_addr);
742 /* Make sure the function was chosen before we start reading. */
744 /* Read from that function's config space. */
747 * mb() is not required here, because the spin_unlock_irqrestore()
751 spin_unlock_irqrestore(&hpdev->hbus->config_lock, flags);
757 * _hv_pcifront_write_config() - Internal PCI config write
758 * @hpdev: The PCI driver's representation of the device
759 * @where: Offset within config space
760 * @size: Size of the transfer
761 * @val: The data being transferred
763 static void _hv_pcifront_write_config(struct hv_pci_dev *hpdev, int where,
767 void __iomem *addr = hpdev->hbus->cfg_addr + CFG_PAGE_OFFSET + where;
769 if (where >= PCI_SUBSYSTEM_VENDOR_ID &&
770 where + size <= PCI_CAPABILITY_LIST) {
771 /* SSIDs and ROM BARs are read-only */
772 } else if (where >= PCI_COMMAND && where + size <= CFG_PAGE_SIZE) {
773 spin_lock_irqsave(&hpdev->hbus->config_lock, flags);
774 /* Choose the function to be written. (See comment above) */
775 writel(hpdev->desc.win_slot.slot, hpdev->hbus->cfg_addr);
776 /* Make sure the function was chosen before we start writing. */
778 /* Write to that function's config space. */
791 * Make sure the write was done before we release the spinlock
792 * allowing consecutive reads/writes.
795 spin_unlock_irqrestore(&hpdev->hbus->config_lock, flags);
797 dev_err(&hpdev->hbus->hdev->device,
798 "Attempt to write beyond a function's config space.\n");
803 * hv_pcifront_read_config() - Read configuration space
804 * @bus: PCI Bus structure
805 * @devfn: Device/function
806 * @where: Offset from base
807 * @size: Byte/word/dword
808 * @val: Value to be read
810 * Return: PCIBIOS_SUCCESSFUL on success
811 * PCIBIOS_DEVICE_NOT_FOUND on failure
813 static int hv_pcifront_read_config(struct pci_bus *bus, unsigned int devfn,
814 int where, int size, u32 *val)
816 struct hv_pcibus_device *hbus =
817 container_of(bus->sysdata, struct hv_pcibus_device, sysdata);
818 struct hv_pci_dev *hpdev;
820 hpdev = get_pcichild_wslot(hbus, devfn_to_wslot(devfn));
822 return PCIBIOS_DEVICE_NOT_FOUND;
824 _hv_pcifront_read_config(hpdev, where, size, val);
827 return PCIBIOS_SUCCESSFUL;
831 * hv_pcifront_write_config() - Write configuration space
832 * @bus: PCI Bus structure
833 * @devfn: Device/function
834 * @where: Offset from base
835 * @size: Byte/word/dword
836 * @val: Value to be written to device
838 * Return: PCIBIOS_SUCCESSFUL on success
839 * PCIBIOS_DEVICE_NOT_FOUND on failure
841 static int hv_pcifront_write_config(struct pci_bus *bus, unsigned int devfn,
842 int where, int size, u32 val)
844 struct hv_pcibus_device *hbus =
845 container_of(bus->sysdata, struct hv_pcibus_device, sysdata);
846 struct hv_pci_dev *hpdev;
848 hpdev = get_pcichild_wslot(hbus, devfn_to_wslot(devfn));
850 return PCIBIOS_DEVICE_NOT_FOUND;
852 _hv_pcifront_write_config(hpdev, where, size, val);
855 return PCIBIOS_SUCCESSFUL;
858 /* PCIe operations */
859 static struct pci_ops hv_pcifront_ops = {
860 .read = hv_pcifront_read_config,
861 .write = hv_pcifront_write_config,
865 * Paravirtual backchannel
867 * Hyper-V SR-IOV provides a backchannel mechanism in software for
868 * communication between a VF driver and a PF driver. These
869 * "configuration blocks" are similar in concept to PCI configuration space,
870 * but instead of doing reads and writes in 32-bit chunks through a very slow
871 * path, packets of up to 128 bytes can be sent or received asynchronously.
873 * Nearly every SR-IOV device contains just such a communications channel in
874 * hardware, so using this one in software is usually optional. Using the
875 * software channel, however, allows driver implementers to leverage software
876 * tools that fuzz the communications channel looking for vulnerabilities.
878 * The usage model for these packets puts the responsibility for reading or
879 * writing on the VF driver. The VF driver sends a read or a write packet,
880 * indicating which "block" is being referred to by number.
882 * If the PF driver wishes to initiate communication, it can "invalidate" one or
883 * more of the first 64 blocks. This invalidation is delivered via a callback
884 * supplied by the VF driver by this driver.
886 * No protocol is implied, except that supplied by the PF and VF drivers.
889 struct hv_read_config_compl {
890 struct hv_pci_compl comp_pkt;
893 unsigned int bytes_returned;
897 * hv_pci_read_config_compl() - Invoked when a response packet
898 * for a read config block operation arrives.
899 * @context: Identifies the read config operation
900 * @resp: The response packet itself
901 * @resp_packet_size: Size in bytes of the response packet
903 static void hv_pci_read_config_compl(void *context, struct pci_response *resp,
904 int resp_packet_size)
906 struct hv_read_config_compl *comp = context;
907 struct pci_read_block_response *read_resp =
908 (struct pci_read_block_response *)resp;
909 unsigned int data_len, hdr_len;
911 hdr_len = offsetof(struct pci_read_block_response, bytes);
912 if (resp_packet_size < hdr_len) {
913 comp->comp_pkt.completion_status = -1;
917 data_len = resp_packet_size - hdr_len;
918 if (data_len > 0 && read_resp->status == 0) {
919 comp->bytes_returned = min(comp->len, data_len);
920 memcpy(comp->buf, read_resp->bytes, comp->bytes_returned);
922 comp->bytes_returned = 0;
925 comp->comp_pkt.completion_status = read_resp->status;
927 complete(&comp->comp_pkt.host_event);
931 * hv_read_config_block() - Sends a read config block request to
932 * the back-end driver running in the Hyper-V parent partition.
933 * @pdev: The PCI driver's representation for this device.
934 * @buf: Buffer into which the config block will be copied.
935 * @len: Size in bytes of buf.
936 * @block_id: Identifies the config block which has been requested.
937 * @bytes_returned: Size which came back from the back-end driver.
939 * Return: 0 on success, -errno on failure
941 static int hv_read_config_block(struct pci_dev *pdev, void *buf,
942 unsigned int len, unsigned int block_id,
943 unsigned int *bytes_returned)
945 struct hv_pcibus_device *hbus =
946 container_of(pdev->bus->sysdata, struct hv_pcibus_device,
949 struct pci_packet pkt;
950 char buf[sizeof(struct pci_read_block)];
952 struct hv_read_config_compl comp_pkt;
953 struct pci_read_block *read_blk;
956 if (len == 0 || len > HV_CONFIG_BLOCK_SIZE_MAX)
959 init_completion(&comp_pkt.comp_pkt.host_event);
963 memset(&pkt, 0, sizeof(pkt));
964 pkt.pkt.completion_func = hv_pci_read_config_compl;
965 pkt.pkt.compl_ctxt = &comp_pkt;
966 read_blk = (struct pci_read_block *)&pkt.pkt.message;
967 read_blk->message_type.type = PCI_READ_BLOCK;
968 read_blk->wslot.slot = devfn_to_wslot(pdev->devfn);
969 read_blk->block_id = block_id;
970 read_blk->bytes_requested = len;
972 ret = vmbus_sendpacket(hbus->hdev->channel, read_blk,
973 sizeof(*read_blk), (unsigned long)&pkt.pkt,
975 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
979 ret = wait_for_response(hbus->hdev, &comp_pkt.comp_pkt.host_event);
983 if (comp_pkt.comp_pkt.completion_status != 0 ||
984 comp_pkt.bytes_returned == 0) {
985 dev_err(&hbus->hdev->device,
986 "Read Config Block failed: 0x%x, bytes_returned=%d\n",
987 comp_pkt.comp_pkt.completion_status,
988 comp_pkt.bytes_returned);
992 *bytes_returned = comp_pkt.bytes_returned;
997 * hv_pci_write_config_compl() - Invoked when a response packet for a write
998 * config block operation arrives.
999 * @context: Identifies the write config operation
1000 * @resp: The response packet itself
1001 * @resp_packet_size: Size in bytes of the response packet
1003 static void hv_pci_write_config_compl(void *context, struct pci_response *resp,
1004 int resp_packet_size)
1006 struct hv_pci_compl *comp_pkt = context;
1008 comp_pkt->completion_status = resp->status;
1009 complete(&comp_pkt->host_event);
1013 * hv_write_config_block() - Sends a write config block request to the
1014 * back-end driver running in the Hyper-V parent partition.
1015 * @pdev: The PCI driver's representation for this device.
1016 * @buf: Buffer from which the config block will be copied.
1017 * @len: Size in bytes of buf.
1018 * @block_id: Identifies the config block which is being written.
1020 * Return: 0 on success, -errno on failure
1022 static int hv_write_config_block(struct pci_dev *pdev, void *buf,
1023 unsigned int len, unsigned int block_id)
1025 struct hv_pcibus_device *hbus =
1026 container_of(pdev->bus->sysdata, struct hv_pcibus_device,
1029 struct pci_packet pkt;
1030 char buf[sizeof(struct pci_write_block)];
1033 struct hv_pci_compl comp_pkt;
1034 struct pci_write_block *write_blk;
1038 if (len == 0 || len > HV_CONFIG_BLOCK_SIZE_MAX)
1041 init_completion(&comp_pkt.host_event);
1043 memset(&pkt, 0, sizeof(pkt));
1044 pkt.pkt.completion_func = hv_pci_write_config_compl;
1045 pkt.pkt.compl_ctxt = &comp_pkt;
1046 write_blk = (struct pci_write_block *)&pkt.pkt.message;
1047 write_blk->message_type.type = PCI_WRITE_BLOCK;
1048 write_blk->wslot.slot = devfn_to_wslot(pdev->devfn);
1049 write_blk->block_id = block_id;
1050 write_blk->byte_count = len;
1051 memcpy(write_blk->bytes, buf, len);
1052 pkt_size = offsetof(struct pci_write_block, bytes) + len;
1054 * This quirk is required on some hosts shipped around 2018, because
1055 * these hosts don't check the pkt_size correctly (new hosts have been
1056 * fixed since early 2019). The quirk is also safe on very old hosts
1057 * and new hosts, because, on them, what really matters is the length
1058 * specified in write_blk->byte_count.
1060 pkt_size += sizeof(pkt.reserved);
1062 ret = vmbus_sendpacket(hbus->hdev->channel, write_blk, pkt_size,
1063 (unsigned long)&pkt.pkt, VM_PKT_DATA_INBAND,
1064 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
1068 ret = wait_for_response(hbus->hdev, &comp_pkt.host_event);
1072 if (comp_pkt.completion_status != 0) {
1073 dev_err(&hbus->hdev->device,
1074 "Write Config Block failed: 0x%x\n",
1075 comp_pkt.completion_status);
1083 * hv_register_block_invalidate() - Invoked when a config block invalidation
1084 * arrives from the back-end driver.
1085 * @pdev: The PCI driver's representation for this device.
1086 * @context: Identifies the device.
1087 * @block_invalidate: Identifies all of the blocks being invalidated.
1089 * Return: 0 on success, -errno on failure
1091 static int hv_register_block_invalidate(struct pci_dev *pdev, void *context,
1092 void (*block_invalidate)(void *context,
1095 struct hv_pcibus_device *hbus =
1096 container_of(pdev->bus->sysdata, struct hv_pcibus_device,
1098 struct hv_pci_dev *hpdev;
1100 hpdev = get_pcichild_wslot(hbus, devfn_to_wslot(pdev->devfn));
1104 hpdev->block_invalidate = block_invalidate;
1105 hpdev->invalidate_context = context;
1107 put_pcichild(hpdev);
1112 /* Interrupt management hooks */
1113 static void hv_int_desc_free(struct hv_pci_dev *hpdev,
1114 struct tran_int_desc *int_desc)
1116 struct pci_delete_interrupt *int_pkt;
1118 struct pci_packet pkt;
1119 u8 buffer[sizeof(struct pci_delete_interrupt)];
1122 memset(&ctxt, 0, sizeof(ctxt));
1123 int_pkt = (struct pci_delete_interrupt *)&ctxt.pkt.message;
1124 int_pkt->message_type.type =
1125 PCI_DELETE_INTERRUPT_MESSAGE;
1126 int_pkt->wslot.slot = hpdev->desc.win_slot.slot;
1127 int_pkt->int_desc = *int_desc;
1128 vmbus_sendpacket(hpdev->hbus->hdev->channel, int_pkt, sizeof(*int_pkt),
1129 (unsigned long)&ctxt.pkt, VM_PKT_DATA_INBAND, 0);
1134 * hv_msi_free() - Free the MSI.
1135 * @domain: The interrupt domain pointer
1136 * @info: Extra MSI-related context
1137 * @irq: Identifies the IRQ.
1139 * The Hyper-V parent partition and hypervisor are tracking the
1140 * messages that are in use, keeping the interrupt redirection
1141 * table up to date. This callback sends a message that frees
1142 * the IRT entry and related tracking nonsense.
1144 static void hv_msi_free(struct irq_domain *domain, struct msi_domain_info *info,
1147 struct hv_pcibus_device *hbus;
1148 struct hv_pci_dev *hpdev;
1149 struct pci_dev *pdev;
1150 struct tran_int_desc *int_desc;
1151 struct irq_data *irq_data = irq_domain_get_irq_data(domain, irq);
1152 struct msi_desc *msi = irq_data_get_msi_desc(irq_data);
1154 pdev = msi_desc_to_pci_dev(msi);
1156 int_desc = irq_data_get_irq_chip_data(irq_data);
1160 irq_data->chip_data = NULL;
1161 hpdev = get_pcichild_wslot(hbus, devfn_to_wslot(pdev->devfn));
1167 hv_int_desc_free(hpdev, int_desc);
1168 put_pcichild(hpdev);
1171 static int hv_set_affinity(struct irq_data *data, const struct cpumask *dest,
1174 struct irq_data *parent = data->parent_data;
1176 return parent->chip->irq_set_affinity(parent, dest, force);
1179 static void hv_irq_mask(struct irq_data *data)
1181 pci_msi_mask_irq(data);
1185 * hv_irq_unmask() - "Unmask" the IRQ by setting its current
1187 * @data: Describes the IRQ
1189 * Build new a destination for the MSI and make a hypercall to
1190 * update the Interrupt Redirection Table. "Device Logical ID"
1191 * is built out of this PCI bus's instance GUID and the function
1192 * number of the device.
1194 static void hv_irq_unmask(struct irq_data *data)
1196 struct msi_desc *msi_desc = irq_data_get_msi_desc(data);
1197 struct irq_cfg *cfg = irqd_cfg(data);
1198 struct hv_retarget_device_interrupt *params;
1199 struct hv_pcibus_device *hbus;
1200 struct cpumask *dest;
1202 struct pci_bus *pbus;
1203 struct pci_dev *pdev;
1204 unsigned long flags;
1209 dest = irq_data_get_effective_affinity_mask(data);
1210 pdev = msi_desc_to_pci_dev(msi_desc);
1212 hbus = container_of(pbus->sysdata, struct hv_pcibus_device, sysdata);
1214 spin_lock_irqsave(&hbus->retarget_msi_interrupt_lock, flags);
1216 params = &hbus->retarget_msi_interrupt_params;
1217 memset(params, 0, sizeof(*params));
1218 params->partition_id = HV_PARTITION_ID_SELF;
1219 params->int_entry.source = 1; /* MSI(-X) */
1220 hv_set_msi_entry_from_desc(¶ms->int_entry.msi_entry, msi_desc);
1221 params->device_id = (hbus->hdev->dev_instance.b[5] << 24) |
1222 (hbus->hdev->dev_instance.b[4] << 16) |
1223 (hbus->hdev->dev_instance.b[7] << 8) |
1224 (hbus->hdev->dev_instance.b[6] & 0xf8) |
1225 PCI_FUNC(pdev->devfn);
1226 params->int_target.vector = cfg->vector;
1229 * Honoring apic->irq_delivery_mode set to dest_Fixed by
1230 * setting the HV_DEVICE_INTERRUPT_TARGET_MULTICAST flag results in a
1231 * spurious interrupt storm. Not doing so does not seem to have a
1232 * negative effect (yet?).
1235 if (hbus->protocol_version >= PCI_PROTOCOL_VERSION_1_2) {
1237 * PCI_PROTOCOL_VERSION_1_2 supports the VP_SET version of the
1238 * HVCALL_RETARGET_INTERRUPT hypercall, which also coincides
1239 * with >64 VP support.
1240 * ms_hyperv.hints & HV_X64_EX_PROCESSOR_MASKS_RECOMMENDED
1241 * is not sufficient for this hypercall.
1243 params->int_target.flags |=
1244 HV_DEVICE_INTERRUPT_TARGET_PROCESSOR_SET;
1246 if (!alloc_cpumask_var(&tmp, GFP_ATOMIC)) {
1251 cpumask_and(tmp, dest, cpu_online_mask);
1252 nr_bank = cpumask_to_vpset(¶ms->int_target.vp_set, tmp);
1253 free_cpumask_var(tmp);
1261 * var-sized hypercall, var-size starts after vp_mask (thus
1262 * vp_set.format does not count, but vp_set.valid_bank_mask
1265 var_size = 1 + nr_bank;
1267 for_each_cpu_and(cpu, dest, cpu_online_mask) {
1268 params->int_target.vp_mask |=
1269 (1ULL << hv_cpu_number_to_vp_number(cpu));
1273 res = hv_do_hypercall(HVCALL_RETARGET_INTERRUPT | (var_size << 17),
1277 spin_unlock_irqrestore(&hbus->retarget_msi_interrupt_lock, flags);
1280 dev_err(&hbus->hdev->device,
1281 "%s() failed: %#llx", __func__, res);
1285 pci_msi_unmask_irq(data);
1288 struct compose_comp_ctxt {
1289 struct hv_pci_compl comp_pkt;
1290 struct tran_int_desc int_desc;
1293 static void hv_pci_compose_compl(void *context, struct pci_response *resp,
1294 int resp_packet_size)
1296 struct compose_comp_ctxt *comp_pkt = context;
1297 struct pci_create_int_response *int_resp =
1298 (struct pci_create_int_response *)resp;
1300 comp_pkt->comp_pkt.completion_status = resp->status;
1301 comp_pkt->int_desc = int_resp->int_desc;
1302 complete(&comp_pkt->comp_pkt.host_event);
1305 static u32 hv_compose_msi_req_v1(
1306 struct pci_create_interrupt *int_pkt, struct cpumask *affinity,
1307 u32 slot, u8 vector)
1309 int_pkt->message_type.type = PCI_CREATE_INTERRUPT_MESSAGE;
1310 int_pkt->wslot.slot = slot;
1311 int_pkt->int_desc.vector = vector;
1312 int_pkt->int_desc.vector_count = 1;
1313 int_pkt->int_desc.delivery_mode = dest_Fixed;
1316 * Create MSI w/ dummy vCPU set, overwritten by subsequent retarget in
1319 int_pkt->int_desc.cpu_mask = CPU_AFFINITY_ALL;
1321 return sizeof(*int_pkt);
1324 static u32 hv_compose_msi_req_v2(
1325 struct pci_create_interrupt2 *int_pkt, struct cpumask *affinity,
1326 u32 slot, u8 vector)
1330 int_pkt->message_type.type = PCI_CREATE_INTERRUPT_MESSAGE2;
1331 int_pkt->wslot.slot = slot;
1332 int_pkt->int_desc.vector = vector;
1333 int_pkt->int_desc.vector_count = 1;
1334 int_pkt->int_desc.delivery_mode = dest_Fixed;
1337 * Create MSI w/ dummy vCPU set targeting just one vCPU, overwritten
1338 * by subsequent retarget in hv_irq_unmask().
1340 cpu = cpumask_first_and(affinity, cpu_online_mask);
1341 int_pkt->int_desc.processor_array[0] =
1342 hv_cpu_number_to_vp_number(cpu);
1343 int_pkt->int_desc.processor_count = 1;
1345 return sizeof(*int_pkt);
1349 * hv_compose_msi_msg() - Supplies a valid MSI address/data
1350 * @data: Everything about this MSI
1351 * @msg: Buffer that is filled in by this function
1353 * This function unpacks the IRQ looking for target CPU set, IDT
1354 * vector and mode and sends a message to the parent partition
1355 * asking for a mapping for that tuple in this partition. The
1356 * response supplies a data value and address to which that data
1357 * should be written to trigger that interrupt.
1359 static void hv_compose_msi_msg(struct irq_data *data, struct msi_msg *msg)
1361 struct irq_cfg *cfg = irqd_cfg(data);
1362 struct hv_pcibus_device *hbus;
1363 struct vmbus_channel *channel;
1364 struct hv_pci_dev *hpdev;
1365 struct pci_bus *pbus;
1366 struct pci_dev *pdev;
1367 struct cpumask *dest;
1368 struct compose_comp_ctxt comp;
1369 struct tran_int_desc *int_desc;
1371 struct pci_packet pci_pkt;
1373 struct pci_create_interrupt v1;
1374 struct pci_create_interrupt2 v2;
1381 pdev = msi_desc_to_pci_dev(irq_data_get_msi_desc(data));
1382 dest = irq_data_get_effective_affinity_mask(data);
1384 hbus = container_of(pbus->sysdata, struct hv_pcibus_device, sysdata);
1385 channel = hbus->hdev->channel;
1386 hpdev = get_pcichild_wslot(hbus, devfn_to_wslot(pdev->devfn));
1388 goto return_null_message;
1390 /* Free any previous message that might have already been composed. */
1391 if (data->chip_data) {
1392 int_desc = data->chip_data;
1393 data->chip_data = NULL;
1394 hv_int_desc_free(hpdev, int_desc);
1397 int_desc = kzalloc(sizeof(*int_desc), GFP_ATOMIC);
1399 goto drop_reference;
1401 memset(&ctxt, 0, sizeof(ctxt));
1402 init_completion(&comp.comp_pkt.host_event);
1403 ctxt.pci_pkt.completion_func = hv_pci_compose_compl;
1404 ctxt.pci_pkt.compl_ctxt = ∁
1406 switch (hbus->protocol_version) {
1407 case PCI_PROTOCOL_VERSION_1_1:
1408 size = hv_compose_msi_req_v1(&ctxt.int_pkts.v1,
1410 hpdev->desc.win_slot.slot,
1414 case PCI_PROTOCOL_VERSION_1_2:
1415 case PCI_PROTOCOL_VERSION_1_3:
1416 size = hv_compose_msi_req_v2(&ctxt.int_pkts.v2,
1418 hpdev->desc.win_slot.slot,
1423 /* As we only negotiate protocol versions known to this driver,
1424 * this path should never hit. However, this is it not a hot
1425 * path so we print a message to aid future updates.
1427 dev_err(&hbus->hdev->device,
1428 "Unexpected vPCI protocol, update driver.");
1432 ret = vmbus_sendpacket(hpdev->hbus->hdev->channel, &ctxt.int_pkts,
1433 size, (unsigned long)&ctxt.pci_pkt,
1435 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
1437 dev_err(&hbus->hdev->device,
1438 "Sending request for interrupt failed: 0x%x",
1439 comp.comp_pkt.completion_status);
1444 * Prevents hv_pci_onchannelcallback() from running concurrently
1447 tasklet_disable(&channel->callback_event);
1450 * Since this function is called with IRQ locks held, can't
1451 * do normal wait for completion; instead poll.
1453 while (!try_wait_for_completion(&comp.comp_pkt.host_event)) {
1454 unsigned long flags;
1456 /* 0xFFFF means an invalid PCI VENDOR ID. */
1457 if (hv_pcifront_get_vendor_id(hpdev) == 0xFFFF) {
1458 dev_err_once(&hbus->hdev->device,
1459 "the device has gone\n");
1460 goto enable_tasklet;
1464 * Make sure that the ring buffer data structure doesn't get
1465 * freed while we dereference the ring buffer pointer. Test
1466 * for the channel's onchannel_callback being NULL within a
1467 * sched_lock critical section. See also the inline comments
1468 * in vmbus_reset_channel_cb().
1470 spin_lock_irqsave(&channel->sched_lock, flags);
1471 if (unlikely(channel->onchannel_callback == NULL)) {
1472 spin_unlock_irqrestore(&channel->sched_lock, flags);
1473 goto enable_tasklet;
1475 hv_pci_onchannelcallback(hbus);
1476 spin_unlock_irqrestore(&channel->sched_lock, flags);
1478 if (hpdev->state == hv_pcichild_ejecting) {
1479 dev_err_once(&hbus->hdev->device,
1480 "the device is being ejected\n");
1481 goto enable_tasklet;
1487 tasklet_enable(&channel->callback_event);
1489 if (comp.comp_pkt.completion_status < 0) {
1490 dev_err(&hbus->hdev->device,
1491 "Request for interrupt failed: 0x%x",
1492 comp.comp_pkt.completion_status);
1497 * Record the assignment so that this can be unwound later. Using
1498 * irq_set_chip_data() here would be appropriate, but the lock it takes
1501 *int_desc = comp.int_desc;
1502 data->chip_data = int_desc;
1504 /* Pass up the result. */
1505 msg->address_hi = comp.int_desc.address >> 32;
1506 msg->address_lo = comp.int_desc.address & 0xffffffff;
1507 msg->data = comp.int_desc.data;
1509 put_pcichild(hpdev);
1513 tasklet_enable(&channel->callback_event);
1517 put_pcichild(hpdev);
1518 return_null_message:
1519 msg->address_hi = 0;
1520 msg->address_lo = 0;
1524 /* HW Interrupt Chip Descriptor */
1525 static struct irq_chip hv_msi_irq_chip = {
1526 .name = "Hyper-V PCIe MSI",
1527 .irq_compose_msi_msg = hv_compose_msi_msg,
1528 .irq_set_affinity = hv_set_affinity,
1529 .irq_ack = irq_chip_ack_parent,
1530 .irq_mask = hv_irq_mask,
1531 .irq_unmask = hv_irq_unmask,
1534 static irq_hw_number_t hv_msi_domain_ops_get_hwirq(struct msi_domain_info *info,
1535 msi_alloc_info_t *arg)
1537 return arg->msi_hwirq;
1540 static struct msi_domain_ops hv_msi_ops = {
1541 .get_hwirq = hv_msi_domain_ops_get_hwirq,
1542 .msi_prepare = pci_msi_prepare,
1543 .set_desc = pci_msi_set_desc,
1544 .msi_free = hv_msi_free,
1548 * hv_pcie_init_irq_domain() - Initialize IRQ domain
1549 * @hbus: The root PCI bus
1551 * This function creates an IRQ domain which will be used for
1552 * interrupts from devices that have been passed through. These
1553 * devices only support MSI and MSI-X, not line-based interrupts
1554 * or simulations of line-based interrupts through PCIe's
1555 * fabric-layer messages. Because interrupts are remapped, we
1556 * can support multi-message MSI here.
1558 * Return: '0' on success and error value on failure
1560 static int hv_pcie_init_irq_domain(struct hv_pcibus_device *hbus)
1562 hbus->msi_info.chip = &hv_msi_irq_chip;
1563 hbus->msi_info.ops = &hv_msi_ops;
1564 hbus->msi_info.flags = (MSI_FLAG_USE_DEF_DOM_OPS |
1565 MSI_FLAG_USE_DEF_CHIP_OPS | MSI_FLAG_MULTI_PCI_MSI |
1567 hbus->msi_info.handler = handle_edge_irq;
1568 hbus->msi_info.handler_name = "edge";
1569 hbus->msi_info.data = hbus;
1570 hbus->irq_domain = pci_msi_create_irq_domain(hbus->sysdata.fwnode,
1573 if (!hbus->irq_domain) {
1574 dev_err(&hbus->hdev->device,
1575 "Failed to build an MSI IRQ domain\n");
1583 * get_bar_size() - Get the address space consumed by a BAR
1584 * @bar_val: Value that a BAR returned after -1 was written
1587 * This function returns the size of the BAR, rounded up to 1
1588 * page. It has to be rounded up because the hypervisor's page
1589 * table entry that maps the BAR into the VM can't specify an
1590 * offset within a page. The invariant is that the hypervisor
1591 * must place any BARs of smaller than page length at the
1592 * beginning of a page.
1594 * Return: Size in bytes of the consumed MMIO space.
1596 static u64 get_bar_size(u64 bar_val)
1598 return round_up((1 + ~(bar_val & PCI_BASE_ADDRESS_MEM_MASK)),
1603 * survey_child_resources() - Total all MMIO requirements
1604 * @hbus: Root PCI bus, as understood by this driver
1606 static void survey_child_resources(struct hv_pcibus_device *hbus)
1608 struct hv_pci_dev *hpdev;
1609 resource_size_t bar_size = 0;
1610 unsigned long flags;
1611 struct completion *event;
1615 /* If nobody is waiting on the answer, don't compute it. */
1616 event = xchg(&hbus->survey_event, NULL);
1620 /* If the answer has already been computed, go with it. */
1621 if (hbus->low_mmio_space || hbus->high_mmio_space) {
1626 spin_lock_irqsave(&hbus->device_list_lock, flags);
1629 * Due to an interesting quirk of the PCI spec, all memory regions
1630 * for a child device are a power of 2 in size and aligned in memory,
1631 * so it's sufficient to just add them up without tracking alignment.
1633 list_for_each_entry(hpdev, &hbus->children, list_entry) {
1634 for (i = 0; i < PCI_STD_NUM_BARS; i++) {
1635 if (hpdev->probed_bar[i] & PCI_BASE_ADDRESS_SPACE_IO)
1636 dev_err(&hbus->hdev->device,
1637 "There's an I/O BAR in this list!\n");
1639 if (hpdev->probed_bar[i] != 0) {
1641 * A probed BAR has all the upper bits set that
1645 bar_val = hpdev->probed_bar[i];
1646 if (bar_val & PCI_BASE_ADDRESS_MEM_TYPE_64)
1648 ((u64)hpdev->probed_bar[++i] << 32);
1650 bar_val |= 0xffffffff00000000ULL;
1652 bar_size = get_bar_size(bar_val);
1654 if (bar_val & PCI_BASE_ADDRESS_MEM_TYPE_64)
1655 hbus->high_mmio_space += bar_size;
1657 hbus->low_mmio_space += bar_size;
1662 spin_unlock_irqrestore(&hbus->device_list_lock, flags);
1667 * prepopulate_bars() - Fill in BARs with defaults
1668 * @hbus: Root PCI bus, as understood by this driver
1670 * The core PCI driver code seems much, much happier if the BARs
1671 * for a device have values upon first scan. So fill them in.
1672 * The algorithm below works down from large sizes to small,
1673 * attempting to pack the assignments optimally. The assumption,
1674 * enforced in other parts of the code, is that the beginning of
1675 * the memory-mapped I/O space will be aligned on the largest
1678 static void prepopulate_bars(struct hv_pcibus_device *hbus)
1680 resource_size_t high_size = 0;
1681 resource_size_t low_size = 0;
1682 resource_size_t high_base = 0;
1683 resource_size_t low_base = 0;
1684 resource_size_t bar_size;
1685 struct hv_pci_dev *hpdev;
1686 unsigned long flags;
1692 if (hbus->low_mmio_space) {
1693 low_size = 1ULL << (63 - __builtin_clzll(hbus->low_mmio_space));
1694 low_base = hbus->low_mmio_res->start;
1697 if (hbus->high_mmio_space) {
1699 (63 - __builtin_clzll(hbus->high_mmio_space));
1700 high_base = hbus->high_mmio_res->start;
1703 spin_lock_irqsave(&hbus->device_list_lock, flags);
1706 * Clear the memory enable bit, in case it's already set. This occurs
1707 * in the suspend path of hibernation, where the device is suspended,
1708 * resumed and suspended again: see hibernation_snapshot() and
1709 * hibernation_platform_enter().
1711 * If the memory enable bit is already set, Hyper-V sliently ignores
1712 * the below BAR updates, and the related PCI device driver can not
1713 * work, because reading from the device register(s) always returns
1716 list_for_each_entry(hpdev, &hbus->children, list_entry) {
1717 _hv_pcifront_read_config(hpdev, PCI_COMMAND, 2, &command);
1718 command &= ~PCI_COMMAND_MEMORY;
1719 _hv_pcifront_write_config(hpdev, PCI_COMMAND, 2, command);
1722 /* Pick addresses for the BARs. */
1724 list_for_each_entry(hpdev, &hbus->children, list_entry) {
1725 for (i = 0; i < PCI_STD_NUM_BARS; i++) {
1726 bar_val = hpdev->probed_bar[i];
1729 high = bar_val & PCI_BASE_ADDRESS_MEM_TYPE_64;
1732 ((u64)hpdev->probed_bar[i + 1]
1735 bar_val |= 0xffffffffULL << 32;
1737 bar_size = get_bar_size(bar_val);
1739 if (high_size != bar_size) {
1743 _hv_pcifront_write_config(hpdev,
1744 PCI_BASE_ADDRESS_0 + (4 * i),
1746 (u32)(high_base & 0xffffff00));
1748 _hv_pcifront_write_config(hpdev,
1749 PCI_BASE_ADDRESS_0 + (4 * i),
1750 4, (u32)(high_base >> 32));
1751 high_base += bar_size;
1753 if (low_size != bar_size)
1755 _hv_pcifront_write_config(hpdev,
1756 PCI_BASE_ADDRESS_0 + (4 * i),
1758 (u32)(low_base & 0xffffff00));
1759 low_base += bar_size;
1762 if (high_size <= 1 && low_size <= 1) {
1763 /* Set the memory enable bit. */
1764 _hv_pcifront_read_config(hpdev, PCI_COMMAND, 2,
1766 command |= PCI_COMMAND_MEMORY;
1767 _hv_pcifront_write_config(hpdev, PCI_COMMAND, 2,
1775 } while (high_size || low_size);
1777 spin_unlock_irqrestore(&hbus->device_list_lock, flags);
1781 * Assign entries in sysfs pci slot directory.
1783 * Note that this function does not need to lock the children list
1784 * because it is called from pci_devices_present_work which
1785 * is serialized with hv_eject_device_work because they are on the
1786 * same ordered workqueue. Therefore hbus->children list will not change
1787 * even when pci_create_slot sleeps.
1789 static void hv_pci_assign_slots(struct hv_pcibus_device *hbus)
1791 struct hv_pci_dev *hpdev;
1792 char name[SLOT_NAME_SIZE];
1795 list_for_each_entry(hpdev, &hbus->children, list_entry) {
1796 if (hpdev->pci_slot)
1799 slot_nr = PCI_SLOT(wslot_to_devfn(hpdev->desc.win_slot.slot));
1800 snprintf(name, SLOT_NAME_SIZE, "%u", hpdev->desc.ser);
1801 hpdev->pci_slot = pci_create_slot(hbus->pci_bus, slot_nr,
1803 if (IS_ERR(hpdev->pci_slot)) {
1804 pr_warn("pci_create slot %s failed\n", name);
1805 hpdev->pci_slot = NULL;
1811 * Remove entries in sysfs pci slot directory.
1813 static void hv_pci_remove_slots(struct hv_pcibus_device *hbus)
1815 struct hv_pci_dev *hpdev;
1817 list_for_each_entry(hpdev, &hbus->children, list_entry) {
1818 if (!hpdev->pci_slot)
1820 pci_destroy_slot(hpdev->pci_slot);
1821 hpdev->pci_slot = NULL;
1826 * Set NUMA node for the devices on the bus
1828 static void hv_pci_assign_numa_node(struct hv_pcibus_device *hbus)
1830 struct pci_dev *dev;
1831 struct pci_bus *bus = hbus->pci_bus;
1832 struct hv_pci_dev *hv_dev;
1834 list_for_each_entry(dev, &bus->devices, bus_list) {
1835 hv_dev = get_pcichild_wslot(hbus, devfn_to_wslot(dev->devfn));
1839 if (hv_dev->desc.flags & HV_PCI_DEVICE_FLAG_NUMA_AFFINITY)
1840 set_dev_node(&dev->dev, hv_dev->desc.virtual_numa_node);
1842 put_pcichild(hv_dev);
1847 * create_root_hv_pci_bus() - Expose a new root PCI bus
1848 * @hbus: Root PCI bus, as understood by this driver
1850 * Return: 0 on success, -errno on failure
1852 static int create_root_hv_pci_bus(struct hv_pcibus_device *hbus)
1854 /* Register the device */
1855 hbus->pci_bus = pci_create_root_bus(&hbus->hdev->device,
1856 0, /* bus number is always zero */
1859 &hbus->resources_for_children);
1863 hbus->pci_bus->msi = &hbus->msi_chip;
1864 hbus->pci_bus->msi->dev = &hbus->hdev->device;
1866 pci_lock_rescan_remove();
1867 pci_scan_child_bus(hbus->pci_bus);
1868 hv_pci_assign_numa_node(hbus);
1869 pci_bus_assign_resources(hbus->pci_bus);
1870 hv_pci_assign_slots(hbus);
1871 pci_bus_add_devices(hbus->pci_bus);
1872 pci_unlock_rescan_remove();
1873 hbus->state = hv_pcibus_installed;
1877 struct q_res_req_compl {
1878 struct completion host_event;
1879 struct hv_pci_dev *hpdev;
1883 * q_resource_requirements() - Query Resource Requirements
1884 * @context: The completion context.
1885 * @resp: The response that came from the host.
1886 * @resp_packet_size: The size in bytes of resp.
1888 * This function is invoked on completion of a Query Resource
1889 * Requirements packet.
1891 static void q_resource_requirements(void *context, struct pci_response *resp,
1892 int resp_packet_size)
1894 struct q_res_req_compl *completion = context;
1895 struct pci_q_res_req_response *q_res_req =
1896 (struct pci_q_res_req_response *)resp;
1899 if (resp->status < 0) {
1900 dev_err(&completion->hpdev->hbus->hdev->device,
1901 "query resource requirements failed: %x\n",
1904 for (i = 0; i < PCI_STD_NUM_BARS; i++) {
1905 completion->hpdev->probed_bar[i] =
1906 q_res_req->probed_bar[i];
1910 complete(&completion->host_event);
1914 * new_pcichild_device() - Create a new child device
1915 * @hbus: The internal struct tracking this root PCI bus.
1916 * @desc: The information supplied so far from the host
1919 * This function creates the tracking structure for a new child
1920 * device and kicks off the process of figuring out what it is.
1922 * Return: Pointer to the new tracking struct
1924 static struct hv_pci_dev *new_pcichild_device(struct hv_pcibus_device *hbus,
1925 struct hv_pcidev_description *desc)
1927 struct hv_pci_dev *hpdev;
1928 struct pci_child_message *res_req;
1929 struct q_res_req_compl comp_pkt;
1931 struct pci_packet init_packet;
1932 u8 buffer[sizeof(struct pci_child_message)];
1934 unsigned long flags;
1937 hpdev = kzalloc(sizeof(*hpdev), GFP_KERNEL);
1943 memset(&pkt, 0, sizeof(pkt));
1944 init_completion(&comp_pkt.host_event);
1945 comp_pkt.hpdev = hpdev;
1946 pkt.init_packet.compl_ctxt = &comp_pkt;
1947 pkt.init_packet.completion_func = q_resource_requirements;
1948 res_req = (struct pci_child_message *)&pkt.init_packet.message;
1949 res_req->message_type.type = PCI_QUERY_RESOURCE_REQUIREMENTS;
1950 res_req->wslot.slot = desc->win_slot.slot;
1952 ret = vmbus_sendpacket(hbus->hdev->channel, res_req,
1953 sizeof(struct pci_child_message),
1954 (unsigned long)&pkt.init_packet,
1956 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
1960 if (wait_for_response(hbus->hdev, &comp_pkt.host_event))
1963 hpdev->desc = *desc;
1964 refcount_set(&hpdev->refs, 1);
1965 get_pcichild(hpdev);
1966 spin_lock_irqsave(&hbus->device_list_lock, flags);
1968 list_add_tail(&hpdev->list_entry, &hbus->children);
1969 spin_unlock_irqrestore(&hbus->device_list_lock, flags);
1978 * get_pcichild_wslot() - Find device from slot
1979 * @hbus: Root PCI bus, as understood by this driver
1980 * @wslot: Location on the bus
1982 * This function looks up a PCI device and returns the internal
1983 * representation of it. It acquires a reference on it, so that
1984 * the device won't be deleted while somebody is using it. The
1985 * caller is responsible for calling put_pcichild() to release
1988 * Return: Internal representation of a PCI device
1990 static struct hv_pci_dev *get_pcichild_wslot(struct hv_pcibus_device *hbus,
1993 unsigned long flags;
1994 struct hv_pci_dev *iter, *hpdev = NULL;
1996 spin_lock_irqsave(&hbus->device_list_lock, flags);
1997 list_for_each_entry(iter, &hbus->children, list_entry) {
1998 if (iter->desc.win_slot.slot == wslot) {
2000 get_pcichild(hpdev);
2004 spin_unlock_irqrestore(&hbus->device_list_lock, flags);
2010 * pci_devices_present_work() - Handle new list of child devices
2011 * @work: Work struct embedded in struct hv_dr_work
2013 * "Bus Relations" is the Windows term for "children of this
2014 * bus." The terminology is preserved here for people trying to
2015 * debug the interaction between Hyper-V and Linux. This
2016 * function is called when the parent partition reports a list
2017 * of functions that should be observed under this PCI Express
2020 * This function updates the list, and must tolerate being
2021 * called multiple times with the same information. The typical
2022 * number of child devices is one, with very atypical cases
2023 * involving three or four, so the algorithms used here can be
2024 * simple and inefficient.
2026 * It must also treat the omission of a previously observed device as
2027 * notification that the device no longer exists.
2029 * Note that this function is serialized with hv_eject_device_work(),
2030 * because both are pushed to the ordered workqueue hbus->wq.
2032 static void pci_devices_present_work(struct work_struct *work)
2036 struct hv_pcidev_description *new_desc;
2037 struct hv_pci_dev *hpdev;
2038 struct hv_pcibus_device *hbus;
2039 struct list_head removed;
2040 struct hv_dr_work *dr_wrk;
2041 struct hv_dr_state *dr = NULL;
2042 unsigned long flags;
2044 dr_wrk = container_of(work, struct hv_dr_work, wrk);
2048 INIT_LIST_HEAD(&removed);
2050 /* Pull this off the queue and process it if it was the last one. */
2051 spin_lock_irqsave(&hbus->device_list_lock, flags);
2052 while (!list_empty(&hbus->dr_list)) {
2053 dr = list_first_entry(&hbus->dr_list, struct hv_dr_state,
2055 list_del(&dr->list_entry);
2057 /* Throw this away if the list still has stuff in it. */
2058 if (!list_empty(&hbus->dr_list)) {
2063 spin_unlock_irqrestore(&hbus->device_list_lock, flags);
2070 /* First, mark all existing children as reported missing. */
2071 spin_lock_irqsave(&hbus->device_list_lock, flags);
2072 list_for_each_entry(hpdev, &hbus->children, list_entry) {
2073 hpdev->reported_missing = true;
2075 spin_unlock_irqrestore(&hbus->device_list_lock, flags);
2077 /* Next, add back any reported devices. */
2078 for (child_no = 0; child_no < dr->device_count; child_no++) {
2080 new_desc = &dr->func[child_no];
2082 spin_lock_irqsave(&hbus->device_list_lock, flags);
2083 list_for_each_entry(hpdev, &hbus->children, list_entry) {
2084 if ((hpdev->desc.win_slot.slot == new_desc->win_slot.slot) &&
2085 (hpdev->desc.v_id == new_desc->v_id) &&
2086 (hpdev->desc.d_id == new_desc->d_id) &&
2087 (hpdev->desc.ser == new_desc->ser)) {
2088 hpdev->reported_missing = false;
2092 spin_unlock_irqrestore(&hbus->device_list_lock, flags);
2095 hpdev = new_pcichild_device(hbus, new_desc);
2097 dev_err(&hbus->hdev->device,
2098 "couldn't record a child device.\n");
2102 /* Move missing children to a list on the stack. */
2103 spin_lock_irqsave(&hbus->device_list_lock, flags);
2106 list_for_each_entry(hpdev, &hbus->children, list_entry) {
2107 if (hpdev->reported_missing) {
2109 put_pcichild(hpdev);
2110 list_move_tail(&hpdev->list_entry, &removed);
2115 spin_unlock_irqrestore(&hbus->device_list_lock, flags);
2117 /* Delete everything that should no longer exist. */
2118 while (!list_empty(&removed)) {
2119 hpdev = list_first_entry(&removed, struct hv_pci_dev,
2121 list_del(&hpdev->list_entry);
2123 if (hpdev->pci_slot)
2124 pci_destroy_slot(hpdev->pci_slot);
2126 put_pcichild(hpdev);
2129 switch (hbus->state) {
2130 case hv_pcibus_installed:
2132 * Tell the core to rescan bus
2133 * because there may have been changes.
2135 pci_lock_rescan_remove();
2136 pci_scan_child_bus(hbus->pci_bus);
2137 hv_pci_assign_numa_node(hbus);
2138 hv_pci_assign_slots(hbus);
2139 pci_unlock_rescan_remove();
2142 case hv_pcibus_init:
2143 case hv_pcibus_probed:
2144 survey_child_resources(hbus);
2156 * hv_pci_start_relations_work() - Queue work to start device discovery
2157 * @hbus: Root PCI bus, as understood by this driver
2158 * @dr: The list of children returned from host
2160 * Return: 0 on success, -errno on failure
2162 static int hv_pci_start_relations_work(struct hv_pcibus_device *hbus,
2163 struct hv_dr_state *dr)
2165 struct hv_dr_work *dr_wrk;
2166 unsigned long flags;
2169 if (hbus->state == hv_pcibus_removing) {
2170 dev_info(&hbus->hdev->device,
2171 "PCI VMBus BUS_RELATIONS: ignored\n");
2175 dr_wrk = kzalloc(sizeof(*dr_wrk), GFP_NOWAIT);
2179 INIT_WORK(&dr_wrk->wrk, pci_devices_present_work);
2182 spin_lock_irqsave(&hbus->device_list_lock, flags);
2184 * If pending_dr is true, we have already queued a work,
2185 * which will see the new dr. Otherwise, we need to
2188 pending_dr = !list_empty(&hbus->dr_list);
2189 list_add_tail(&dr->list_entry, &hbus->dr_list);
2190 spin_unlock_irqrestore(&hbus->device_list_lock, flags);
2196 queue_work(hbus->wq, &dr_wrk->wrk);
2203 * hv_pci_devices_present() - Handle list of new children
2204 * @hbus: Root PCI bus, as understood by this driver
2205 * @relations: Packet from host listing children
2207 * Process a new list of devices on the bus. The list of devices is
2208 * discovered by VSP and sent to us via VSP message PCI_BUS_RELATIONS,
2209 * whenever a new list of devices for this bus appears.
2211 static void hv_pci_devices_present(struct hv_pcibus_device *hbus,
2212 struct pci_bus_relations *relations)
2214 struct hv_dr_state *dr;
2217 dr = kzalloc(struct_size(dr, func, relations->device_count),
2222 dr->device_count = relations->device_count;
2223 for (i = 0; i < dr->device_count; i++) {
2224 dr->func[i].v_id = relations->func[i].v_id;
2225 dr->func[i].d_id = relations->func[i].d_id;
2226 dr->func[i].rev = relations->func[i].rev;
2227 dr->func[i].prog_intf = relations->func[i].prog_intf;
2228 dr->func[i].subclass = relations->func[i].subclass;
2229 dr->func[i].base_class = relations->func[i].base_class;
2230 dr->func[i].subsystem_id = relations->func[i].subsystem_id;
2231 dr->func[i].win_slot = relations->func[i].win_slot;
2232 dr->func[i].ser = relations->func[i].ser;
2235 if (hv_pci_start_relations_work(hbus, dr))
2240 * hv_pci_devices_present2() - Handle list of new children
2241 * @hbus: Root PCI bus, as understood by this driver
2242 * @relations: Packet from host listing children
2244 * This function is the v2 version of hv_pci_devices_present()
2246 static void hv_pci_devices_present2(struct hv_pcibus_device *hbus,
2247 struct pci_bus_relations2 *relations)
2249 struct hv_dr_state *dr;
2252 dr = kzalloc(struct_size(dr, func, relations->device_count),
2257 dr->device_count = relations->device_count;
2258 for (i = 0; i < dr->device_count; i++) {
2259 dr->func[i].v_id = relations->func[i].v_id;
2260 dr->func[i].d_id = relations->func[i].d_id;
2261 dr->func[i].rev = relations->func[i].rev;
2262 dr->func[i].prog_intf = relations->func[i].prog_intf;
2263 dr->func[i].subclass = relations->func[i].subclass;
2264 dr->func[i].base_class = relations->func[i].base_class;
2265 dr->func[i].subsystem_id = relations->func[i].subsystem_id;
2266 dr->func[i].win_slot = relations->func[i].win_slot;
2267 dr->func[i].ser = relations->func[i].ser;
2268 dr->func[i].flags = relations->func[i].flags;
2269 dr->func[i].virtual_numa_node =
2270 relations->func[i].virtual_numa_node;
2273 if (hv_pci_start_relations_work(hbus, dr))
2278 * hv_eject_device_work() - Asynchronously handles ejection
2279 * @work: Work struct embedded in internal device struct
2281 * This function handles ejecting a device. Windows will
2282 * attempt to gracefully eject a device, waiting 60 seconds to
2283 * hear back from the guest OS that this completed successfully.
2284 * If this timer expires, the device will be forcibly removed.
2286 static void hv_eject_device_work(struct work_struct *work)
2288 struct pci_eject_response *ejct_pkt;
2289 struct hv_pcibus_device *hbus;
2290 struct hv_pci_dev *hpdev;
2291 struct pci_dev *pdev;
2292 unsigned long flags;
2295 struct pci_packet pkt;
2296 u8 buffer[sizeof(struct pci_eject_response)];
2299 hpdev = container_of(work, struct hv_pci_dev, wrk);
2302 WARN_ON(hpdev->state != hv_pcichild_ejecting);
2305 * Ejection can come before or after the PCI bus has been set up, so
2306 * attempt to find it and tear down the bus state, if it exists. This
2307 * must be done without constructs like pci_domain_nr(hbus->pci_bus)
2308 * because hbus->pci_bus may not exist yet.
2310 wslot = wslot_to_devfn(hpdev->desc.win_slot.slot);
2311 pdev = pci_get_domain_bus_and_slot(hbus->sysdata.domain, 0, wslot);
2313 pci_lock_rescan_remove();
2314 pci_stop_and_remove_bus_device(pdev);
2316 pci_unlock_rescan_remove();
2319 spin_lock_irqsave(&hbus->device_list_lock, flags);
2320 list_del(&hpdev->list_entry);
2321 spin_unlock_irqrestore(&hbus->device_list_lock, flags);
2323 if (hpdev->pci_slot)
2324 pci_destroy_slot(hpdev->pci_slot);
2326 memset(&ctxt, 0, sizeof(ctxt));
2327 ejct_pkt = (struct pci_eject_response *)&ctxt.pkt.message;
2328 ejct_pkt->message_type.type = PCI_EJECTION_COMPLETE;
2329 ejct_pkt->wslot.slot = hpdev->desc.win_slot.slot;
2330 vmbus_sendpacket(hbus->hdev->channel, ejct_pkt,
2331 sizeof(*ejct_pkt), (unsigned long)&ctxt.pkt,
2332 VM_PKT_DATA_INBAND, 0);
2334 /* For the get_pcichild() in hv_pci_eject_device() */
2335 put_pcichild(hpdev);
2336 /* For the two refs got in new_pcichild_device() */
2337 put_pcichild(hpdev);
2338 put_pcichild(hpdev);
2339 /* hpdev has been freed. Do not use it any more. */
2345 * hv_pci_eject_device() - Handles device ejection
2346 * @hpdev: Internal device tracking struct
2348 * This function is invoked when an ejection packet arrives. It
2349 * just schedules work so that we don't re-enter the packet
2350 * delivery code handling the ejection.
2352 static void hv_pci_eject_device(struct hv_pci_dev *hpdev)
2354 struct hv_pcibus_device *hbus = hpdev->hbus;
2355 struct hv_device *hdev = hbus->hdev;
2357 if (hbus->state == hv_pcibus_removing) {
2358 dev_info(&hdev->device, "PCI VMBus EJECT: ignored\n");
2362 hpdev->state = hv_pcichild_ejecting;
2363 get_pcichild(hpdev);
2364 INIT_WORK(&hpdev->wrk, hv_eject_device_work);
2366 queue_work(hbus->wq, &hpdev->wrk);
2370 * hv_pci_onchannelcallback() - Handles incoming packets
2371 * @context: Internal bus tracking struct
2373 * This function is invoked whenever the host sends a packet to
2374 * this channel (which is private to this root PCI bus).
2376 static void hv_pci_onchannelcallback(void *context)
2378 const int packet_size = 0x100;
2380 struct hv_pcibus_device *hbus = context;
2383 struct vmpacket_descriptor *desc;
2384 unsigned char *buffer;
2385 int bufferlen = packet_size;
2386 struct pci_packet *comp_packet;
2387 struct pci_response *response;
2388 struct pci_incoming_message *new_message;
2389 struct pci_bus_relations *bus_rel;
2390 struct pci_bus_relations2 *bus_rel2;
2391 struct pci_dev_inval_block *inval;
2392 struct pci_dev_incoming *dev_message;
2393 struct hv_pci_dev *hpdev;
2395 buffer = kmalloc(bufferlen, GFP_ATOMIC);
2400 ret = vmbus_recvpacket_raw(hbus->hdev->channel, buffer,
2401 bufferlen, &bytes_recvd, &req_id);
2403 if (ret == -ENOBUFS) {
2405 /* Handle large packet */
2406 bufferlen = bytes_recvd;
2407 buffer = kmalloc(bytes_recvd, GFP_ATOMIC);
2413 /* Zero length indicates there are no more packets. */
2414 if (ret || !bytes_recvd)
2418 * All incoming packets must be at least as large as a
2421 if (bytes_recvd <= sizeof(struct pci_response))
2423 desc = (struct vmpacket_descriptor *)buffer;
2425 switch (desc->type) {
2429 * The host is trusted, and thus it's safe to interpret
2430 * this transaction ID as a pointer.
2432 comp_packet = (struct pci_packet *)req_id;
2433 response = (struct pci_response *)buffer;
2434 comp_packet->completion_func(comp_packet->compl_ctxt,
2439 case VM_PKT_DATA_INBAND:
2441 new_message = (struct pci_incoming_message *)buffer;
2442 switch (new_message->message_type.type) {
2443 case PCI_BUS_RELATIONS:
2445 bus_rel = (struct pci_bus_relations *)buffer;
2447 struct_size(bus_rel, func,
2448 bus_rel->device_count)) {
2449 dev_err(&hbus->hdev->device,
2450 "bus relations too small\n");
2454 hv_pci_devices_present(hbus, bus_rel);
2457 case PCI_BUS_RELATIONS2:
2459 bus_rel2 = (struct pci_bus_relations2 *)buffer;
2461 struct_size(bus_rel2, func,
2462 bus_rel2->device_count)) {
2463 dev_err(&hbus->hdev->device,
2464 "bus relations v2 too small\n");
2468 hv_pci_devices_present2(hbus, bus_rel2);
2473 dev_message = (struct pci_dev_incoming *)buffer;
2474 hpdev = get_pcichild_wslot(hbus,
2475 dev_message->wslot.slot);
2477 hv_pci_eject_device(hpdev);
2478 put_pcichild(hpdev);
2482 case PCI_INVALIDATE_BLOCK:
2484 inval = (struct pci_dev_inval_block *)buffer;
2485 hpdev = get_pcichild_wslot(hbus,
2488 if (hpdev->block_invalidate) {
2489 hpdev->block_invalidate(
2490 hpdev->invalidate_context,
2493 put_pcichild(hpdev);
2498 dev_warn(&hbus->hdev->device,
2499 "Unimplemented protocol message %x\n",
2500 new_message->message_type.type);
2506 dev_err(&hbus->hdev->device,
2507 "unhandled packet type %d, tid %llx len %d\n",
2508 desc->type, req_id, bytes_recvd);
2517 * hv_pci_protocol_negotiation() - Set up protocol
2518 * @hdev: VMBus's tracking struct for this root PCI bus
2520 * This driver is intended to support running on Windows 10
2521 * (server) and later versions. It will not run on earlier
2522 * versions, as they assume that many of the operations which
2523 * Linux needs accomplished with a spinlock held were done via
2524 * asynchronous messaging via VMBus. Windows 10 increases the
2525 * surface area of PCI emulation so that these actions can take
2526 * place by suspending a virtual processor for their duration.
2528 * This function negotiates the channel protocol version,
2529 * failing if the host doesn't support the necessary protocol
2532 static int hv_pci_protocol_negotiation(struct hv_device *hdev,
2533 enum pci_protocol_version_t version[],
2536 struct hv_pcibus_device *hbus = hv_get_drvdata(hdev);
2537 struct pci_version_request *version_req;
2538 struct hv_pci_compl comp_pkt;
2539 struct pci_packet *pkt;
2544 * Initiate the handshake with the host and negotiate
2545 * a version that the host can support. We start with the
2546 * highest version number and go down if the host cannot
2549 pkt = kzalloc(sizeof(*pkt) + sizeof(*version_req), GFP_KERNEL);
2553 init_completion(&comp_pkt.host_event);
2554 pkt->completion_func = hv_pci_generic_compl;
2555 pkt->compl_ctxt = &comp_pkt;
2556 version_req = (struct pci_version_request *)&pkt->message;
2557 version_req->message_type.type = PCI_QUERY_PROTOCOL_VERSION;
2559 for (i = 0; i < num_version; i++) {
2560 version_req->protocol_version = version[i];
2561 ret = vmbus_sendpacket(hdev->channel, version_req,
2562 sizeof(struct pci_version_request),
2563 (unsigned long)pkt, VM_PKT_DATA_INBAND,
2564 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
2566 ret = wait_for_response(hdev, &comp_pkt.host_event);
2569 dev_err(&hdev->device,
2570 "PCI Pass-through VSP failed to request version: %d",
2575 if (comp_pkt.completion_status >= 0) {
2576 hbus->protocol_version = version[i];
2577 dev_info(&hdev->device,
2578 "PCI VMBus probing: Using version %#x\n",
2579 hbus->protocol_version);
2583 if (comp_pkt.completion_status != STATUS_REVISION_MISMATCH) {
2584 dev_err(&hdev->device,
2585 "PCI Pass-through VSP failed version request: %#x",
2586 comp_pkt.completion_status);
2591 reinit_completion(&comp_pkt.host_event);
2594 dev_err(&hdev->device,
2595 "PCI pass-through VSP failed to find supported version");
2604 * hv_pci_free_bridge_windows() - Release memory regions for the
2606 * @hbus: Root PCI bus, as understood by this driver
2608 static void hv_pci_free_bridge_windows(struct hv_pcibus_device *hbus)
2611 * Set the resources back to the way they looked when they
2612 * were allocated by setting IORESOURCE_BUSY again.
2615 if (hbus->low_mmio_space && hbus->low_mmio_res) {
2616 hbus->low_mmio_res->flags |= IORESOURCE_BUSY;
2617 vmbus_free_mmio(hbus->low_mmio_res->start,
2618 resource_size(hbus->low_mmio_res));
2621 if (hbus->high_mmio_space && hbus->high_mmio_res) {
2622 hbus->high_mmio_res->flags |= IORESOURCE_BUSY;
2623 vmbus_free_mmio(hbus->high_mmio_res->start,
2624 resource_size(hbus->high_mmio_res));
2629 * hv_pci_allocate_bridge_windows() - Allocate memory regions
2631 * @hbus: Root PCI bus, as understood by this driver
2633 * This function calls vmbus_allocate_mmio(), which is itself a
2634 * bit of a compromise. Ideally, we might change the pnp layer
2635 * in the kernel such that it comprehends either PCI devices
2636 * which are "grandchildren of ACPI," with some intermediate bus
2637 * node (in this case, VMBus) or change it such that it
2638 * understands VMBus. The pnp layer, however, has been declared
2639 * deprecated, and not subject to change.
2641 * The workaround, implemented here, is to ask VMBus to allocate
2642 * MMIO space for this bus. VMBus itself knows which ranges are
2643 * appropriate by looking at its own ACPI objects. Then, after
2644 * these ranges are claimed, they're modified to look like they
2645 * would have looked if the ACPI and pnp code had allocated
2646 * bridge windows. These descriptors have to exist in this form
2647 * in order to satisfy the code which will get invoked when the
2648 * endpoint PCI function driver calls request_mem_region() or
2649 * request_mem_region_exclusive().
2651 * Return: 0 on success, -errno on failure
2653 static int hv_pci_allocate_bridge_windows(struct hv_pcibus_device *hbus)
2655 resource_size_t align;
2658 if (hbus->low_mmio_space) {
2659 align = 1ULL << (63 - __builtin_clzll(hbus->low_mmio_space));
2660 ret = vmbus_allocate_mmio(&hbus->low_mmio_res, hbus->hdev, 0,
2661 (u64)(u32)0xffffffff,
2662 hbus->low_mmio_space,
2665 dev_err(&hbus->hdev->device,
2666 "Need %#llx of low MMIO space. Consider reconfiguring the VM.\n",
2667 hbus->low_mmio_space);
2671 /* Modify this resource to become a bridge window. */
2672 hbus->low_mmio_res->flags |= IORESOURCE_WINDOW;
2673 hbus->low_mmio_res->flags &= ~IORESOURCE_BUSY;
2674 pci_add_resource(&hbus->resources_for_children,
2675 hbus->low_mmio_res);
2678 if (hbus->high_mmio_space) {
2679 align = 1ULL << (63 - __builtin_clzll(hbus->high_mmio_space));
2680 ret = vmbus_allocate_mmio(&hbus->high_mmio_res, hbus->hdev,
2682 hbus->high_mmio_space, align,
2685 dev_err(&hbus->hdev->device,
2686 "Need %#llx of high MMIO space. Consider reconfiguring the VM.\n",
2687 hbus->high_mmio_space);
2688 goto release_low_mmio;
2691 /* Modify this resource to become a bridge window. */
2692 hbus->high_mmio_res->flags |= IORESOURCE_WINDOW;
2693 hbus->high_mmio_res->flags &= ~IORESOURCE_BUSY;
2694 pci_add_resource(&hbus->resources_for_children,
2695 hbus->high_mmio_res);
2701 if (hbus->low_mmio_res) {
2702 vmbus_free_mmio(hbus->low_mmio_res->start,
2703 resource_size(hbus->low_mmio_res));
2710 * hv_allocate_config_window() - Find MMIO space for PCI Config
2711 * @hbus: Root PCI bus, as understood by this driver
2713 * This function claims memory-mapped I/O space for accessing
2714 * configuration space for the functions on this bus.
2716 * Return: 0 on success, -errno on failure
2718 static int hv_allocate_config_window(struct hv_pcibus_device *hbus)
2723 * Set up a region of MMIO space to use for accessing configuration
2726 ret = vmbus_allocate_mmio(&hbus->mem_config, hbus->hdev, 0, -1,
2727 PCI_CONFIG_MMIO_LENGTH, 0x1000, false);
2732 * vmbus_allocate_mmio() gets used for allocating both device endpoint
2733 * resource claims (those which cannot be overlapped) and the ranges
2734 * which are valid for the children of this bus, which are intended
2735 * to be overlapped by those children. Set the flag on this claim
2736 * meaning that this region can't be overlapped.
2739 hbus->mem_config->flags |= IORESOURCE_BUSY;
2744 static void hv_free_config_window(struct hv_pcibus_device *hbus)
2746 vmbus_free_mmio(hbus->mem_config->start, PCI_CONFIG_MMIO_LENGTH);
2749 static int hv_pci_bus_exit(struct hv_device *hdev, bool keep_devs);
2752 * hv_pci_enter_d0() - Bring the "bus" into the D0 power state
2753 * @hdev: VMBus's tracking struct for this root PCI bus
2755 * Return: 0 on success, -errno on failure
2757 static int hv_pci_enter_d0(struct hv_device *hdev)
2759 struct hv_pcibus_device *hbus = hv_get_drvdata(hdev);
2760 struct pci_bus_d0_entry *d0_entry;
2761 struct hv_pci_compl comp_pkt;
2762 struct pci_packet *pkt;
2766 * Tell the host that the bus is ready to use, and moved into the
2767 * powered-on state. This includes telling the host which region
2768 * of memory-mapped I/O space has been chosen for configuration space
2771 pkt = kzalloc(sizeof(*pkt) + sizeof(*d0_entry), GFP_KERNEL);
2775 init_completion(&comp_pkt.host_event);
2776 pkt->completion_func = hv_pci_generic_compl;
2777 pkt->compl_ctxt = &comp_pkt;
2778 d0_entry = (struct pci_bus_d0_entry *)&pkt->message;
2779 d0_entry->message_type.type = PCI_BUS_D0ENTRY;
2780 d0_entry->mmio_base = hbus->mem_config->start;
2782 ret = vmbus_sendpacket(hdev->channel, d0_entry, sizeof(*d0_entry),
2783 (unsigned long)pkt, VM_PKT_DATA_INBAND,
2784 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
2786 ret = wait_for_response(hdev, &comp_pkt.host_event);
2791 if (comp_pkt.completion_status < 0) {
2792 dev_err(&hdev->device,
2793 "PCI Pass-through VSP failed D0 Entry with status %x\n",
2794 comp_pkt.completion_status);
2807 * hv_pci_query_relations() - Ask host to send list of child
2809 * @hdev: VMBus's tracking struct for this root PCI bus
2811 * Return: 0 on success, -errno on failure
2813 static int hv_pci_query_relations(struct hv_device *hdev)
2815 struct hv_pcibus_device *hbus = hv_get_drvdata(hdev);
2816 struct pci_message message;
2817 struct completion comp;
2820 /* Ask the host to send along the list of child devices */
2821 init_completion(&comp);
2822 if (cmpxchg(&hbus->survey_event, NULL, &comp))
2825 memset(&message, 0, sizeof(message));
2826 message.type = PCI_QUERY_BUS_RELATIONS;
2828 ret = vmbus_sendpacket(hdev->channel, &message, sizeof(message),
2829 0, VM_PKT_DATA_INBAND, 0);
2831 ret = wait_for_response(hdev, &comp);
2837 * hv_send_resources_allocated() - Report local resource choices
2838 * @hdev: VMBus's tracking struct for this root PCI bus
2840 * The host OS is expecting to be sent a request as a message
2841 * which contains all the resources that the device will use.
2842 * The response contains those same resources, "translated"
2843 * which is to say, the values which should be used by the
2844 * hardware, when it delivers an interrupt. (MMIO resources are
2845 * used in local terms.) This is nice for Windows, and lines up
2846 * with the FDO/PDO split, which doesn't exist in Linux. Linux
2847 * is deeply expecting to scan an emulated PCI configuration
2848 * space. So this message is sent here only to drive the state
2849 * machine on the host forward.
2851 * Return: 0 on success, -errno on failure
2853 static int hv_send_resources_allocated(struct hv_device *hdev)
2855 struct hv_pcibus_device *hbus = hv_get_drvdata(hdev);
2856 struct pci_resources_assigned *res_assigned;
2857 struct pci_resources_assigned2 *res_assigned2;
2858 struct hv_pci_compl comp_pkt;
2859 struct hv_pci_dev *hpdev;
2860 struct pci_packet *pkt;
2865 size_res = (hbus->protocol_version < PCI_PROTOCOL_VERSION_1_2)
2866 ? sizeof(*res_assigned) : sizeof(*res_assigned2);
2868 pkt = kmalloc(sizeof(*pkt) + size_res, GFP_KERNEL);
2874 for (wslot = 0; wslot < 256; wslot++) {
2875 hpdev = get_pcichild_wslot(hbus, wslot);
2879 memset(pkt, 0, sizeof(*pkt) + size_res);
2880 init_completion(&comp_pkt.host_event);
2881 pkt->completion_func = hv_pci_generic_compl;
2882 pkt->compl_ctxt = &comp_pkt;
2884 if (hbus->protocol_version < PCI_PROTOCOL_VERSION_1_2) {
2886 (struct pci_resources_assigned *)&pkt->message;
2887 res_assigned->message_type.type =
2888 PCI_RESOURCES_ASSIGNED;
2889 res_assigned->wslot.slot = hpdev->desc.win_slot.slot;
2892 (struct pci_resources_assigned2 *)&pkt->message;
2893 res_assigned2->message_type.type =
2894 PCI_RESOURCES_ASSIGNED2;
2895 res_assigned2->wslot.slot = hpdev->desc.win_slot.slot;
2897 put_pcichild(hpdev);
2899 ret = vmbus_sendpacket(hdev->channel, &pkt->message,
2900 size_res, (unsigned long)pkt,
2902 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
2904 ret = wait_for_response(hdev, &comp_pkt.host_event);
2908 if (comp_pkt.completion_status < 0) {
2910 dev_err(&hdev->device,
2911 "resource allocated returned 0x%x",
2912 comp_pkt.completion_status);
2916 hbus->wslot_res_allocated = wslot;
2924 * hv_send_resources_released() - Report local resources
2926 * @hdev: VMBus's tracking struct for this root PCI bus
2928 * Return: 0 on success, -errno on failure
2930 static int hv_send_resources_released(struct hv_device *hdev)
2932 struct hv_pcibus_device *hbus = hv_get_drvdata(hdev);
2933 struct pci_child_message pkt;
2934 struct hv_pci_dev *hpdev;
2938 for (wslot = hbus->wslot_res_allocated; wslot >= 0; wslot--) {
2939 hpdev = get_pcichild_wslot(hbus, wslot);
2943 memset(&pkt, 0, sizeof(pkt));
2944 pkt.message_type.type = PCI_RESOURCES_RELEASED;
2945 pkt.wslot.slot = hpdev->desc.win_slot.slot;
2947 put_pcichild(hpdev);
2949 ret = vmbus_sendpacket(hdev->channel, &pkt, sizeof(pkt), 0,
2950 VM_PKT_DATA_INBAND, 0);
2954 hbus->wslot_res_allocated = wslot - 1;
2957 hbus->wslot_res_allocated = -1;
2962 static void get_hvpcibus(struct hv_pcibus_device *hbus)
2964 refcount_inc(&hbus->remove_lock);
2967 static void put_hvpcibus(struct hv_pcibus_device *hbus)
2969 if (refcount_dec_and_test(&hbus->remove_lock))
2970 complete(&hbus->remove_event);
2973 #define HVPCI_DOM_MAP_SIZE (64 * 1024)
2974 static DECLARE_BITMAP(hvpci_dom_map, HVPCI_DOM_MAP_SIZE);
2977 * PCI domain number 0 is used by emulated devices on Gen1 VMs, so define 0
2978 * as invalid for passthrough PCI devices of this driver.
2980 #define HVPCI_DOM_INVALID 0
2983 * hv_get_dom_num() - Get a valid PCI domain number
2984 * Check if the PCI domain number is in use, and return another number if
2987 * @dom: Requested domain number
2989 * return: domain number on success, HVPCI_DOM_INVALID on failure
2991 static u16 hv_get_dom_num(u16 dom)
2995 if (test_and_set_bit(dom, hvpci_dom_map) == 0)
2998 for_each_clear_bit(i, hvpci_dom_map, HVPCI_DOM_MAP_SIZE) {
2999 if (test_and_set_bit(i, hvpci_dom_map) == 0)
3003 return HVPCI_DOM_INVALID;
3007 * hv_put_dom_num() - Mark the PCI domain number as free
3008 * @dom: Domain number to be freed
3010 static void hv_put_dom_num(u16 dom)
3012 clear_bit(dom, hvpci_dom_map);
3016 * hv_pci_probe() - New VMBus channel probe, for a root PCI bus
3017 * @hdev: VMBus's tracking struct for this root PCI bus
3018 * @dev_id: Identifies the device itself
3020 * Return: 0 on success, -errno on failure
3022 static int hv_pci_probe(struct hv_device *hdev,
3023 const struct hv_vmbus_device_id *dev_id)
3025 struct hv_pcibus_device *hbus;
3028 bool enter_d0_retry = true;
3032 * hv_pcibus_device contains the hypercall arguments for retargeting in
3033 * hv_irq_unmask(). Those must not cross a page boundary.
3035 BUILD_BUG_ON(sizeof(*hbus) > HV_HYP_PAGE_SIZE);
3038 * With the recent 59bb47985c1d ("mm, sl[aou]b: guarantee natural
3039 * alignment for kmalloc(power-of-two)"), kzalloc() is able to allocate
3040 * a 4KB buffer that is guaranteed to be 4KB-aligned. Here the size and
3041 * alignment of hbus is important because hbus's field
3042 * retarget_msi_interrupt_params must not cross a 4KB page boundary.
3044 * Here we prefer kzalloc to get_zeroed_page(), because a buffer
3045 * allocated by the latter is not tracked and scanned by kmemleak, and
3046 * hence kmemleak reports the pointer contained in the hbus buffer
3047 * (i.e. the hpdev struct, which is created in new_pcichild_device() and
3048 * is tracked by hbus->children) as memory leak (false positive).
3050 * If the kernel doesn't have 59bb47985c1d, get_zeroed_page() *must* be
3051 * used to allocate the hbus buffer and we can avoid the kmemleak false
3052 * positive by using kmemleak_alloc() and kmemleak_free() to ask
3053 * kmemleak to track and scan the hbus buffer.
3055 hbus = kzalloc(HV_HYP_PAGE_SIZE, GFP_KERNEL);
3058 hbus->state = hv_pcibus_init;
3059 hbus->wslot_res_allocated = -1;
3062 * The PCI bus "domain" is what is called "segment" in ACPI and other
3063 * specs. Pull it from the instance ID, to get something usually
3064 * unique. In rare cases of collision, we will find out another number
3067 * Note that, since this code only runs in a Hyper-V VM, Hyper-V
3068 * together with this guest driver can guarantee that (1) The only
3069 * domain used by Gen1 VMs for something that looks like a physical
3070 * PCI bus (which is actually emulated by the hypervisor) is domain 0.
3071 * (2) There will be no overlap between domains (after fixing possible
3072 * collisions) in the same VM.
3074 dom_req = hdev->dev_instance.b[5] << 8 | hdev->dev_instance.b[4];
3075 dom = hv_get_dom_num(dom_req);
3077 if (dom == HVPCI_DOM_INVALID) {
3078 dev_err(&hdev->device,
3079 "Unable to use dom# 0x%hx or other numbers", dom_req);
3085 dev_info(&hdev->device,
3086 "PCI dom# 0x%hx has collision, using 0x%hx",
3089 hbus->sysdata.domain = dom;
3092 refcount_set(&hbus->remove_lock, 1);
3093 INIT_LIST_HEAD(&hbus->children);
3094 INIT_LIST_HEAD(&hbus->dr_list);
3095 INIT_LIST_HEAD(&hbus->resources_for_children);
3096 spin_lock_init(&hbus->config_lock);
3097 spin_lock_init(&hbus->device_list_lock);
3098 spin_lock_init(&hbus->retarget_msi_interrupt_lock);
3099 init_completion(&hbus->remove_event);
3100 hbus->wq = alloc_ordered_workqueue("hv_pci_%x", 0,
3101 hbus->sysdata.domain);
3107 ret = vmbus_open(hdev->channel, pci_ring_size, pci_ring_size, NULL, 0,
3108 hv_pci_onchannelcallback, hbus);
3112 hv_set_drvdata(hdev, hbus);
3114 ret = hv_pci_protocol_negotiation(hdev, pci_protocol_versions,
3115 ARRAY_SIZE(pci_protocol_versions));
3119 ret = hv_allocate_config_window(hbus);
3123 hbus->cfg_addr = ioremap(hbus->mem_config->start,
3124 PCI_CONFIG_MMIO_LENGTH);
3125 if (!hbus->cfg_addr) {
3126 dev_err(&hdev->device,
3127 "Unable to map a virtual address for config space\n");
3132 name = kasprintf(GFP_KERNEL, "%pUL", &hdev->dev_instance);
3138 hbus->sysdata.fwnode = irq_domain_alloc_named_fwnode(name);
3140 if (!hbus->sysdata.fwnode) {
3145 ret = hv_pcie_init_irq_domain(hbus);
3150 ret = hv_pci_query_relations(hdev);
3152 goto free_irq_domain;
3154 ret = hv_pci_enter_d0(hdev);
3156 * In certain case (Kdump) the pci device of interest was
3157 * not cleanly shut down and resource is still held on host
3158 * side, the host could return invalid device status.
3159 * We need to explicitly request host to release the resource
3160 * and try to enter D0 again.
3161 * Since the hv_pci_bus_exit() call releases structures
3162 * of all its child devices, we need to start the retry from
3163 * hv_pci_query_relations() call, requesting host to send
3164 * the synchronous child device relations message before this
3165 * information is needed in hv_send_resources_allocated()
3168 if (ret == -EPROTO && enter_d0_retry) {
3169 enter_d0_retry = false;
3171 dev_err(&hdev->device, "Retrying D0 Entry\n");
3174 * Hv_pci_bus_exit() calls hv_send_resources_released()
3175 * to free up resources of its child devices.
3176 * In the kdump kernel we need to set the
3177 * wslot_res_allocated to 255 so it scans all child
3178 * devices to release resources allocated in the
3179 * normal kernel before panic happened.
3181 hbus->wslot_res_allocated = 255;
3182 ret = hv_pci_bus_exit(hdev, true);
3187 dev_err(&hdev->device,
3188 "Retrying D0 failed with ret %d\n", ret);
3191 goto free_irq_domain;
3193 ret = hv_pci_allocate_bridge_windows(hbus);
3197 ret = hv_send_resources_allocated(hdev);
3201 prepopulate_bars(hbus);
3203 hbus->state = hv_pcibus_probed;
3205 ret = create_root_hv_pci_bus(hbus);
3212 hv_pci_free_bridge_windows(hbus);
3214 (void) hv_pci_bus_exit(hdev, true);
3216 irq_domain_remove(hbus->irq_domain);
3218 irq_domain_free_fwnode(hbus->sysdata.fwnode);
3220 iounmap(hbus->cfg_addr);
3222 hv_free_config_window(hbus);
3224 vmbus_close(hdev->channel);
3226 destroy_workqueue(hbus->wq);
3228 hv_put_dom_num(hbus->sysdata.domain);
3234 static int hv_pci_bus_exit(struct hv_device *hdev, bool keep_devs)
3236 struct hv_pcibus_device *hbus = hv_get_drvdata(hdev);
3238 struct pci_packet teardown_packet;
3239 u8 buffer[sizeof(struct pci_message)];
3241 struct hv_dr_state *dr;
3242 struct hv_pci_compl comp_pkt;
3246 * After the host sends the RESCIND_CHANNEL message, it doesn't
3247 * access the per-channel ringbuffer any longer.
3249 if (hdev->channel->rescind)
3253 /* Delete any children which might still exist. */
3254 dr = kzalloc(sizeof(*dr), GFP_KERNEL);
3255 if (dr && hv_pci_start_relations_work(hbus, dr))
3259 ret = hv_send_resources_released(hdev);
3261 dev_err(&hdev->device,
3262 "Couldn't send resources released packet(s)\n");
3266 memset(&pkt.teardown_packet, 0, sizeof(pkt.teardown_packet));
3267 init_completion(&comp_pkt.host_event);
3268 pkt.teardown_packet.completion_func = hv_pci_generic_compl;
3269 pkt.teardown_packet.compl_ctxt = &comp_pkt;
3270 pkt.teardown_packet.message[0].type = PCI_BUS_D0EXIT;
3272 ret = vmbus_sendpacket(hdev->channel, &pkt.teardown_packet.message,
3273 sizeof(struct pci_message),
3274 (unsigned long)&pkt.teardown_packet,
3276 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
3280 if (wait_for_completion_timeout(&comp_pkt.host_event, 10 * HZ) == 0)
3287 * hv_pci_remove() - Remove routine for this VMBus channel
3288 * @hdev: VMBus's tracking struct for this root PCI bus
3290 * Return: 0 on success, -errno on failure
3292 static int hv_pci_remove(struct hv_device *hdev)
3294 struct hv_pcibus_device *hbus;
3297 hbus = hv_get_drvdata(hdev);
3298 if (hbus->state == hv_pcibus_installed) {
3299 /* Remove the bus from PCI's point of view. */
3300 pci_lock_rescan_remove();
3301 pci_stop_root_bus(hbus->pci_bus);
3302 hv_pci_remove_slots(hbus);
3303 pci_remove_root_bus(hbus->pci_bus);
3304 pci_unlock_rescan_remove();
3305 hbus->state = hv_pcibus_removed;
3308 ret = hv_pci_bus_exit(hdev, false);
3310 vmbus_close(hdev->channel);
3312 iounmap(hbus->cfg_addr);
3313 hv_free_config_window(hbus);
3314 pci_free_resource_list(&hbus->resources_for_children);
3315 hv_pci_free_bridge_windows(hbus);
3316 irq_domain_remove(hbus->irq_domain);
3317 irq_domain_free_fwnode(hbus->sysdata.fwnode);
3319 wait_for_completion(&hbus->remove_event);
3320 destroy_workqueue(hbus->wq);
3322 hv_put_dom_num(hbus->sysdata.domain);
3328 static int hv_pci_suspend(struct hv_device *hdev)
3330 struct hv_pcibus_device *hbus = hv_get_drvdata(hdev);
3331 enum hv_pcibus_state old_state;
3335 * hv_pci_suspend() must make sure there are no pending work items
3336 * before calling vmbus_close(), since it runs in a process context
3337 * as a callback in dpm_suspend(). When it starts to run, the channel
3338 * callback hv_pci_onchannelcallback(), which runs in a tasklet
3339 * context, can be still running concurrently and scheduling new work
3340 * items onto hbus->wq in hv_pci_devices_present() and
3341 * hv_pci_eject_device(), and the work item handlers can access the
3342 * vmbus channel, which can be being closed by hv_pci_suspend(), e.g.
3343 * the work item handler pci_devices_present_work() ->
3344 * new_pcichild_device() writes to the vmbus channel.
3346 * To eliminate the race, hv_pci_suspend() disables the channel
3347 * callback tasklet, sets hbus->state to hv_pcibus_removing, and
3348 * re-enables the tasklet. This way, when hv_pci_suspend() proceeds,
3349 * it knows that no new work item can be scheduled, and then it flushes
3350 * hbus->wq and safely closes the vmbus channel.
3352 tasklet_disable(&hdev->channel->callback_event);
3354 /* Change the hbus state to prevent new work items. */
3355 old_state = hbus->state;
3356 if (hbus->state == hv_pcibus_installed)
3357 hbus->state = hv_pcibus_removing;
3359 tasklet_enable(&hdev->channel->callback_event);
3361 if (old_state != hv_pcibus_installed)
3364 flush_workqueue(hbus->wq);
3366 ret = hv_pci_bus_exit(hdev, true);
3370 vmbus_close(hdev->channel);
3375 static int hv_pci_resume(struct hv_device *hdev)
3377 struct hv_pcibus_device *hbus = hv_get_drvdata(hdev);
3378 enum pci_protocol_version_t version[1];
3381 hbus->state = hv_pcibus_init;
3383 ret = vmbus_open(hdev->channel, pci_ring_size, pci_ring_size, NULL, 0,
3384 hv_pci_onchannelcallback, hbus);
3388 /* Only use the version that was in use before hibernation. */
3389 version[0] = hbus->protocol_version;
3390 ret = hv_pci_protocol_negotiation(hdev, version, 1);
3394 ret = hv_pci_query_relations(hdev);
3398 ret = hv_pci_enter_d0(hdev);
3402 ret = hv_send_resources_allocated(hdev);
3406 prepopulate_bars(hbus);
3408 hbus->state = hv_pcibus_installed;
3411 vmbus_close(hdev->channel);
3415 static const struct hv_vmbus_device_id hv_pci_id_table[] = {
3416 /* PCI Pass-through Class ID */
3417 /* 44C4F61D-4444-4400-9D52-802E27EDE19F */
3422 MODULE_DEVICE_TABLE(vmbus, hv_pci_id_table);
3424 static struct hv_driver hv_pci_drv = {
3426 .id_table = hv_pci_id_table,
3427 .probe = hv_pci_probe,
3428 .remove = hv_pci_remove,
3429 .suspend = hv_pci_suspend,
3430 .resume = hv_pci_resume,
3433 static void __exit exit_hv_pci_drv(void)
3435 vmbus_driver_unregister(&hv_pci_drv);
3437 hvpci_block_ops.read_block = NULL;
3438 hvpci_block_ops.write_block = NULL;
3439 hvpci_block_ops.reg_blk_invalidate = NULL;
3442 static int __init init_hv_pci_drv(void)
3444 /* Set the invalid domain number's bit, so it will not be used */
3445 set_bit(HVPCI_DOM_INVALID, hvpci_dom_map);
3447 /* Initialize PCI block r/w interface */
3448 hvpci_block_ops.read_block = hv_read_config_block;
3449 hvpci_block_ops.write_block = hv_write_config_block;
3450 hvpci_block_ops.reg_blk_invalidate = hv_register_block_invalidate;
3452 return vmbus_driver_register(&hv_pci_drv);
3455 module_init(init_hv_pci_drv);
3456 module_exit(exit_hv_pci_drv);
3458 MODULE_DESCRIPTION("Hyper-V PCI");
3459 MODULE_LICENSE("GPL v2");