]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/pci/host/pci-hyperv.c
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc
[mirror_ubuntu-bionic-kernel.git] / drivers / pci / host / pci-hyperv.c
1 /*
2 * Copyright (c) Microsoft Corporation.
3 *
4 * Author:
5 * Jake Oshins <jakeo@microsoft.com>
6 *
7 * This driver acts as a paravirtual front-end for PCI Express root buses.
8 * When a PCI Express function (either an entire device or an SR-IOV
9 * Virtual Function) is being passed through to the VM, this driver exposes
10 * a new bus to the guest VM. This is modeled as a root PCI bus because
11 * no bridges are being exposed to the VM. In fact, with a "Generation 2"
12 * VM within Hyper-V, there may seem to be no PCI bus at all in the VM
13 * until a device as been exposed using this driver.
14 *
15 * Each root PCI bus has its own PCI domain, which is called "Segment" in
16 * the PCI Firmware Specifications. Thus while each device passed through
17 * to the VM using this front-end will appear at "device 0", the domain will
18 * be unique. Typically, each bus will have one PCI function on it, though
19 * this driver does support more than one.
20 *
21 * In order to map the interrupts from the device through to the guest VM,
22 * this driver also implements an IRQ Domain, which handles interrupts (either
23 * MSI or MSI-X) associated with the functions on the bus. As interrupts are
24 * set up, torn down, or reaffined, this driver communicates with the
25 * underlying hypervisor to adjust the mappings in the I/O MMU so that each
26 * interrupt will be delivered to the correct virtual processor at the right
27 * vector. This driver does not support level-triggered (line-based)
28 * interrupts, and will report that the Interrupt Line register in the
29 * function's configuration space is zero.
30 *
31 * The rest of this driver mostly maps PCI concepts onto underlying Hyper-V
32 * facilities. For instance, the configuration space of a function exposed
33 * by Hyper-V is mapped into a single page of memory space, and the
34 * read and write handlers for config space must be aware of this mechanism.
35 * Similarly, device setup and teardown involves messages sent to and from
36 * the PCI back-end driver in Hyper-V.
37 *
38 * This program is free software; you can redistribute it and/or modify it
39 * under the terms of the GNU General Public License version 2 as published
40 * by the Free Software Foundation.
41 *
42 * This program is distributed in the hope that it will be useful, but
43 * WITHOUT ANY WARRANTY; without even the implied warranty of
44 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
45 * NON INFRINGEMENT. See the GNU General Public License for more
46 * details.
47 *
48 */
49
50 #include <linux/kernel.h>
51 #include <linux/module.h>
52 #include <linux/pci.h>
53 #include <linux/delay.h>
54 #include <linux/semaphore.h>
55 #include <linux/irqdomain.h>
56 #include <asm/irqdomain.h>
57 #include <asm/apic.h>
58 #include <linux/msi.h>
59 #include <linux/hyperv.h>
60 #include <linux/refcount.h>
61 #include <asm/mshyperv.h>
62
63 /*
64 * Protocol versions. The low word is the minor version, the high word the
65 * major version.
66 */
67
68 #define PCI_MAKE_VERSION(major, minor) ((u32)(((major) << 16) | (minor)))
69 #define PCI_MAJOR_VERSION(version) ((u32)(version) >> 16)
70 #define PCI_MINOR_VERSION(version) ((u32)(version) & 0xff)
71
72 enum pci_protocol_version_t {
73 PCI_PROTOCOL_VERSION_1_1 = PCI_MAKE_VERSION(1, 1), /* Win10 */
74 PCI_PROTOCOL_VERSION_1_2 = PCI_MAKE_VERSION(1, 2), /* RS1 */
75 };
76
77 #define CPU_AFFINITY_ALL -1ULL
78
79 /*
80 * Supported protocol versions in the order of probing - highest go
81 * first.
82 */
83 static enum pci_protocol_version_t pci_protocol_versions[] = {
84 PCI_PROTOCOL_VERSION_1_2,
85 PCI_PROTOCOL_VERSION_1_1,
86 };
87
88 /*
89 * Protocol version negotiated by hv_pci_protocol_negotiation().
90 */
91 static enum pci_protocol_version_t pci_protocol_version;
92
93 #define PCI_CONFIG_MMIO_LENGTH 0x2000
94 #define CFG_PAGE_OFFSET 0x1000
95 #define CFG_PAGE_SIZE (PCI_CONFIG_MMIO_LENGTH - CFG_PAGE_OFFSET)
96
97 #define MAX_SUPPORTED_MSI_MESSAGES 0x400
98
99 #define STATUS_REVISION_MISMATCH 0xC0000059
100
101 /*
102 * Message Types
103 */
104
105 enum pci_message_type {
106 /*
107 * Version 1.1
108 */
109 PCI_MESSAGE_BASE = 0x42490000,
110 PCI_BUS_RELATIONS = PCI_MESSAGE_BASE + 0,
111 PCI_QUERY_BUS_RELATIONS = PCI_MESSAGE_BASE + 1,
112 PCI_POWER_STATE_CHANGE = PCI_MESSAGE_BASE + 4,
113 PCI_QUERY_RESOURCE_REQUIREMENTS = PCI_MESSAGE_BASE + 5,
114 PCI_QUERY_RESOURCE_RESOURCES = PCI_MESSAGE_BASE + 6,
115 PCI_BUS_D0ENTRY = PCI_MESSAGE_BASE + 7,
116 PCI_BUS_D0EXIT = PCI_MESSAGE_BASE + 8,
117 PCI_READ_BLOCK = PCI_MESSAGE_BASE + 9,
118 PCI_WRITE_BLOCK = PCI_MESSAGE_BASE + 0xA,
119 PCI_EJECT = PCI_MESSAGE_BASE + 0xB,
120 PCI_QUERY_STOP = PCI_MESSAGE_BASE + 0xC,
121 PCI_REENABLE = PCI_MESSAGE_BASE + 0xD,
122 PCI_QUERY_STOP_FAILED = PCI_MESSAGE_BASE + 0xE,
123 PCI_EJECTION_COMPLETE = PCI_MESSAGE_BASE + 0xF,
124 PCI_RESOURCES_ASSIGNED = PCI_MESSAGE_BASE + 0x10,
125 PCI_RESOURCES_RELEASED = PCI_MESSAGE_BASE + 0x11,
126 PCI_INVALIDATE_BLOCK = PCI_MESSAGE_BASE + 0x12,
127 PCI_QUERY_PROTOCOL_VERSION = PCI_MESSAGE_BASE + 0x13,
128 PCI_CREATE_INTERRUPT_MESSAGE = PCI_MESSAGE_BASE + 0x14,
129 PCI_DELETE_INTERRUPT_MESSAGE = PCI_MESSAGE_BASE + 0x15,
130 PCI_RESOURCES_ASSIGNED2 = PCI_MESSAGE_BASE + 0x16,
131 PCI_CREATE_INTERRUPT_MESSAGE2 = PCI_MESSAGE_BASE + 0x17,
132 PCI_DELETE_INTERRUPT_MESSAGE2 = PCI_MESSAGE_BASE + 0x18, /* unused */
133 PCI_MESSAGE_MAXIMUM
134 };
135
136 /*
137 * Structures defining the virtual PCI Express protocol.
138 */
139
140 union pci_version {
141 struct {
142 u16 minor_version;
143 u16 major_version;
144 } parts;
145 u32 version;
146 } __packed;
147
148 /*
149 * Function numbers are 8-bits wide on Express, as interpreted through ARI,
150 * which is all this driver does. This representation is the one used in
151 * Windows, which is what is expected when sending this back and forth with
152 * the Hyper-V parent partition.
153 */
154 union win_slot_encoding {
155 struct {
156 u32 dev:5;
157 u32 func:3;
158 u32 reserved:24;
159 } bits;
160 u32 slot;
161 } __packed;
162
163 /*
164 * Pretty much as defined in the PCI Specifications.
165 */
166 struct pci_function_description {
167 u16 v_id; /* vendor ID */
168 u16 d_id; /* device ID */
169 u8 rev;
170 u8 prog_intf;
171 u8 subclass;
172 u8 base_class;
173 u32 subsystem_id;
174 union win_slot_encoding win_slot;
175 u32 ser; /* serial number */
176 } __packed;
177
178 /**
179 * struct hv_msi_desc
180 * @vector: IDT entry
181 * @delivery_mode: As defined in Intel's Programmer's
182 * Reference Manual, Volume 3, Chapter 8.
183 * @vector_count: Number of contiguous entries in the
184 * Interrupt Descriptor Table that are
185 * occupied by this Message-Signaled
186 * Interrupt. For "MSI", as first defined
187 * in PCI 2.2, this can be between 1 and
188 * 32. For "MSI-X," as first defined in PCI
189 * 3.0, this must be 1, as each MSI-X table
190 * entry would have its own descriptor.
191 * @reserved: Empty space
192 * @cpu_mask: All the target virtual processors.
193 */
194 struct hv_msi_desc {
195 u8 vector;
196 u8 delivery_mode;
197 u16 vector_count;
198 u32 reserved;
199 u64 cpu_mask;
200 } __packed;
201
202 /**
203 * struct hv_msi_desc2 - 1.2 version of hv_msi_desc
204 * @vector: IDT entry
205 * @delivery_mode: As defined in Intel's Programmer's
206 * Reference Manual, Volume 3, Chapter 8.
207 * @vector_count: Number of contiguous entries in the
208 * Interrupt Descriptor Table that are
209 * occupied by this Message-Signaled
210 * Interrupt. For "MSI", as first defined
211 * in PCI 2.2, this can be between 1 and
212 * 32. For "MSI-X," as first defined in PCI
213 * 3.0, this must be 1, as each MSI-X table
214 * entry would have its own descriptor.
215 * @processor_count: number of bits enabled in array.
216 * @processor_array: All the target virtual processors.
217 */
218 struct hv_msi_desc2 {
219 u8 vector;
220 u8 delivery_mode;
221 u16 vector_count;
222 u16 processor_count;
223 u16 processor_array[32];
224 } __packed;
225
226 /**
227 * struct tran_int_desc
228 * @reserved: unused, padding
229 * @vector_count: same as in hv_msi_desc
230 * @data: This is the "data payload" value that is
231 * written by the device when it generates
232 * a message-signaled interrupt, either MSI
233 * or MSI-X.
234 * @address: This is the address to which the data
235 * payload is written on interrupt
236 * generation.
237 */
238 struct tran_int_desc {
239 u16 reserved;
240 u16 vector_count;
241 u32 data;
242 u64 address;
243 } __packed;
244
245 /*
246 * A generic message format for virtual PCI.
247 * Specific message formats are defined later in the file.
248 */
249
250 struct pci_message {
251 u32 type;
252 } __packed;
253
254 struct pci_child_message {
255 struct pci_message message_type;
256 union win_slot_encoding wslot;
257 } __packed;
258
259 struct pci_incoming_message {
260 struct vmpacket_descriptor hdr;
261 struct pci_message message_type;
262 } __packed;
263
264 struct pci_response {
265 struct vmpacket_descriptor hdr;
266 s32 status; /* negative values are failures */
267 } __packed;
268
269 struct pci_packet {
270 void (*completion_func)(void *context, struct pci_response *resp,
271 int resp_packet_size);
272 void *compl_ctxt;
273
274 struct pci_message message[0];
275 };
276
277 /*
278 * Specific message types supporting the PCI protocol.
279 */
280
281 /*
282 * Version negotiation message. Sent from the guest to the host.
283 * The guest is free to try different versions until the host
284 * accepts the version.
285 *
286 * pci_version: The protocol version requested.
287 * is_last_attempt: If TRUE, this is the last version guest will request.
288 * reservedz: Reserved field, set to zero.
289 */
290
291 struct pci_version_request {
292 struct pci_message message_type;
293 u32 protocol_version;
294 } __packed;
295
296 /*
297 * Bus D0 Entry. This is sent from the guest to the host when the virtual
298 * bus (PCI Express port) is ready for action.
299 */
300
301 struct pci_bus_d0_entry {
302 struct pci_message message_type;
303 u32 reserved;
304 u64 mmio_base;
305 } __packed;
306
307 struct pci_bus_relations {
308 struct pci_incoming_message incoming;
309 u32 device_count;
310 struct pci_function_description func[0];
311 } __packed;
312
313 struct pci_q_res_req_response {
314 struct vmpacket_descriptor hdr;
315 s32 status; /* negative values are failures */
316 u32 probed_bar[6];
317 } __packed;
318
319 struct pci_set_power {
320 struct pci_message message_type;
321 union win_slot_encoding wslot;
322 u32 power_state; /* In Windows terms */
323 u32 reserved;
324 } __packed;
325
326 struct pci_set_power_response {
327 struct vmpacket_descriptor hdr;
328 s32 status; /* negative values are failures */
329 union win_slot_encoding wslot;
330 u32 resultant_state; /* In Windows terms */
331 u32 reserved;
332 } __packed;
333
334 struct pci_resources_assigned {
335 struct pci_message message_type;
336 union win_slot_encoding wslot;
337 u8 memory_range[0x14][6]; /* not used here */
338 u32 msi_descriptors;
339 u32 reserved[4];
340 } __packed;
341
342 struct pci_resources_assigned2 {
343 struct pci_message message_type;
344 union win_slot_encoding wslot;
345 u8 memory_range[0x14][6]; /* not used here */
346 u32 msi_descriptor_count;
347 u8 reserved[70];
348 } __packed;
349
350 struct pci_create_interrupt {
351 struct pci_message message_type;
352 union win_slot_encoding wslot;
353 struct hv_msi_desc int_desc;
354 } __packed;
355
356 struct pci_create_int_response {
357 struct pci_response response;
358 u32 reserved;
359 struct tran_int_desc int_desc;
360 } __packed;
361
362 struct pci_create_interrupt2 {
363 struct pci_message message_type;
364 union win_slot_encoding wslot;
365 struct hv_msi_desc2 int_desc;
366 } __packed;
367
368 struct pci_delete_interrupt {
369 struct pci_message message_type;
370 union win_slot_encoding wslot;
371 struct tran_int_desc int_desc;
372 } __packed;
373
374 struct pci_dev_incoming {
375 struct pci_incoming_message incoming;
376 union win_slot_encoding wslot;
377 } __packed;
378
379 struct pci_eject_response {
380 struct pci_message message_type;
381 union win_slot_encoding wslot;
382 u32 status;
383 } __packed;
384
385 static int pci_ring_size = (4 * PAGE_SIZE);
386
387 /*
388 * Definitions or interrupt steering hypercall.
389 */
390 #define HV_PARTITION_ID_SELF ((u64)-1)
391 #define HVCALL_RETARGET_INTERRUPT 0x7e
392
393 struct hv_interrupt_entry {
394 u32 source; /* 1 for MSI(-X) */
395 u32 reserved1;
396 u32 address;
397 u32 data;
398 };
399
400 #define HV_VP_SET_BANK_COUNT_MAX 5 /* current implementation limit */
401
402 struct hv_vp_set {
403 u64 format; /* 0 (HvGenericSetSparse4k) */
404 u64 valid_banks;
405 u64 masks[HV_VP_SET_BANK_COUNT_MAX];
406 };
407
408 /*
409 * flags for hv_device_interrupt_target.flags
410 */
411 #define HV_DEVICE_INTERRUPT_TARGET_MULTICAST 1
412 #define HV_DEVICE_INTERRUPT_TARGET_PROCESSOR_SET 2
413
414 struct hv_device_interrupt_target {
415 u32 vector;
416 u32 flags;
417 union {
418 u64 vp_mask;
419 struct hv_vp_set vp_set;
420 };
421 };
422
423 struct retarget_msi_interrupt {
424 u64 partition_id; /* use "self" */
425 u64 device_id;
426 struct hv_interrupt_entry int_entry;
427 u64 reserved2;
428 struct hv_device_interrupt_target int_target;
429 } __packed;
430
431 /*
432 * Driver specific state.
433 */
434
435 enum hv_pcibus_state {
436 hv_pcibus_init = 0,
437 hv_pcibus_probed,
438 hv_pcibus_installed,
439 hv_pcibus_removed,
440 hv_pcibus_maximum
441 };
442
443 struct hv_pcibus_device {
444 struct pci_sysdata sysdata;
445 enum hv_pcibus_state state;
446 atomic_t remove_lock;
447 struct hv_device *hdev;
448 resource_size_t low_mmio_space;
449 resource_size_t high_mmio_space;
450 struct resource *mem_config;
451 struct resource *low_mmio_res;
452 struct resource *high_mmio_res;
453 struct completion *survey_event;
454 struct completion remove_event;
455 struct pci_bus *pci_bus;
456 spinlock_t config_lock; /* Avoid two threads writing index page */
457 spinlock_t device_list_lock; /* Protect lists below */
458 void __iomem *cfg_addr;
459
460 struct semaphore enum_sem;
461 struct list_head resources_for_children;
462
463 struct list_head children;
464 struct list_head dr_list;
465
466 struct msi_domain_info msi_info;
467 struct msi_controller msi_chip;
468 struct irq_domain *irq_domain;
469
470 /* hypercall arg, must not cross page boundary */
471 struct retarget_msi_interrupt retarget_msi_interrupt_params;
472
473 spinlock_t retarget_msi_interrupt_lock;
474 };
475
476 /*
477 * Tracks "Device Relations" messages from the host, which must be both
478 * processed in order and deferred so that they don't run in the context
479 * of the incoming packet callback.
480 */
481 struct hv_dr_work {
482 struct work_struct wrk;
483 struct hv_pcibus_device *bus;
484 };
485
486 struct hv_dr_state {
487 struct list_head list_entry;
488 u32 device_count;
489 struct pci_function_description func[0];
490 };
491
492 enum hv_pcichild_state {
493 hv_pcichild_init = 0,
494 hv_pcichild_requirements,
495 hv_pcichild_resourced,
496 hv_pcichild_ejecting,
497 hv_pcichild_maximum
498 };
499
500 enum hv_pcidev_ref_reason {
501 hv_pcidev_ref_invalid = 0,
502 hv_pcidev_ref_initial,
503 hv_pcidev_ref_by_slot,
504 hv_pcidev_ref_packet,
505 hv_pcidev_ref_pnp,
506 hv_pcidev_ref_childlist,
507 hv_pcidev_irqdata,
508 hv_pcidev_ref_max
509 };
510
511 struct hv_pci_dev {
512 /* List protected by pci_rescan_remove_lock */
513 struct list_head list_entry;
514 refcount_t refs;
515 enum hv_pcichild_state state;
516 struct pci_function_description desc;
517 bool reported_missing;
518 struct hv_pcibus_device *hbus;
519 struct work_struct wrk;
520
521 /*
522 * What would be observed if one wrote 0xFFFFFFFF to a BAR and then
523 * read it back, for each of the BAR offsets within config space.
524 */
525 u32 probed_bar[6];
526 };
527
528 struct hv_pci_compl {
529 struct completion host_event;
530 s32 completion_status;
531 };
532
533 /**
534 * hv_pci_generic_compl() - Invoked for a completion packet
535 * @context: Set up by the sender of the packet.
536 * @resp: The response packet
537 * @resp_packet_size: Size in bytes of the packet
538 *
539 * This function is used to trigger an event and report status
540 * for any message for which the completion packet contains a
541 * status and nothing else.
542 */
543 static void hv_pci_generic_compl(void *context, struct pci_response *resp,
544 int resp_packet_size)
545 {
546 struct hv_pci_compl *comp_pkt = context;
547
548 if (resp_packet_size >= offsetofend(struct pci_response, status))
549 comp_pkt->completion_status = resp->status;
550 else
551 comp_pkt->completion_status = -1;
552
553 complete(&comp_pkt->host_event);
554 }
555
556 static struct hv_pci_dev *get_pcichild_wslot(struct hv_pcibus_device *hbus,
557 u32 wslot);
558 static void get_pcichild(struct hv_pci_dev *hv_pcidev,
559 enum hv_pcidev_ref_reason reason);
560 static void put_pcichild(struct hv_pci_dev *hv_pcidev,
561 enum hv_pcidev_ref_reason reason);
562
563 static void get_hvpcibus(struct hv_pcibus_device *hv_pcibus);
564 static void put_hvpcibus(struct hv_pcibus_device *hv_pcibus);
565
566 /**
567 * devfn_to_wslot() - Convert from Linux PCI slot to Windows
568 * @devfn: The Linux representation of PCI slot
569 *
570 * Windows uses a slightly different representation of PCI slot.
571 *
572 * Return: The Windows representation
573 */
574 static u32 devfn_to_wslot(int devfn)
575 {
576 union win_slot_encoding wslot;
577
578 wslot.slot = 0;
579 wslot.bits.dev = PCI_SLOT(devfn);
580 wslot.bits.func = PCI_FUNC(devfn);
581
582 return wslot.slot;
583 }
584
585 /**
586 * wslot_to_devfn() - Convert from Windows PCI slot to Linux
587 * @wslot: The Windows representation of PCI slot
588 *
589 * Windows uses a slightly different representation of PCI slot.
590 *
591 * Return: The Linux representation
592 */
593 static int wslot_to_devfn(u32 wslot)
594 {
595 union win_slot_encoding slot_no;
596
597 slot_no.slot = wslot;
598 return PCI_DEVFN(slot_no.bits.dev, slot_no.bits.func);
599 }
600
601 /*
602 * PCI Configuration Space for these root PCI buses is implemented as a pair
603 * of pages in memory-mapped I/O space. Writing to the first page chooses
604 * the PCI function being written or read. Once the first page has been
605 * written to, the following page maps in the entire configuration space of
606 * the function.
607 */
608
609 /**
610 * _hv_pcifront_read_config() - Internal PCI config read
611 * @hpdev: The PCI driver's representation of the device
612 * @where: Offset within config space
613 * @size: Size of the transfer
614 * @val: Pointer to the buffer receiving the data
615 */
616 static void _hv_pcifront_read_config(struct hv_pci_dev *hpdev, int where,
617 int size, u32 *val)
618 {
619 unsigned long flags;
620 void __iomem *addr = hpdev->hbus->cfg_addr + CFG_PAGE_OFFSET + where;
621
622 /*
623 * If the attempt is to read the IDs or the ROM BAR, simulate that.
624 */
625 if (where + size <= PCI_COMMAND) {
626 memcpy(val, ((u8 *)&hpdev->desc.v_id) + where, size);
627 } else if (where >= PCI_CLASS_REVISION && where + size <=
628 PCI_CACHE_LINE_SIZE) {
629 memcpy(val, ((u8 *)&hpdev->desc.rev) + where -
630 PCI_CLASS_REVISION, size);
631 } else if (where >= PCI_SUBSYSTEM_VENDOR_ID && where + size <=
632 PCI_ROM_ADDRESS) {
633 memcpy(val, (u8 *)&hpdev->desc.subsystem_id + where -
634 PCI_SUBSYSTEM_VENDOR_ID, size);
635 } else if (where >= PCI_ROM_ADDRESS && where + size <=
636 PCI_CAPABILITY_LIST) {
637 /* ROM BARs are unimplemented */
638 *val = 0;
639 } else if (where >= PCI_INTERRUPT_LINE && where + size <=
640 PCI_INTERRUPT_PIN) {
641 /*
642 * Interrupt Line and Interrupt PIN are hard-wired to zero
643 * because this front-end only supports message-signaled
644 * interrupts.
645 */
646 *val = 0;
647 } else if (where + size <= CFG_PAGE_SIZE) {
648 spin_lock_irqsave(&hpdev->hbus->config_lock, flags);
649 /* Choose the function to be read. (See comment above) */
650 writel(hpdev->desc.win_slot.slot, hpdev->hbus->cfg_addr);
651 /* Make sure the function was chosen before we start reading. */
652 mb();
653 /* Read from that function's config space. */
654 switch (size) {
655 case 1:
656 *val = readb(addr);
657 break;
658 case 2:
659 *val = readw(addr);
660 break;
661 default:
662 *val = readl(addr);
663 break;
664 }
665 /*
666 * Make sure the write was done before we release the spinlock
667 * allowing consecutive reads/writes.
668 */
669 mb();
670 spin_unlock_irqrestore(&hpdev->hbus->config_lock, flags);
671 } else {
672 dev_err(&hpdev->hbus->hdev->device,
673 "Attempt to read beyond a function's config space.\n");
674 }
675 }
676
677 /**
678 * _hv_pcifront_write_config() - Internal PCI config write
679 * @hpdev: The PCI driver's representation of the device
680 * @where: Offset within config space
681 * @size: Size of the transfer
682 * @val: The data being transferred
683 */
684 static void _hv_pcifront_write_config(struct hv_pci_dev *hpdev, int where,
685 int size, u32 val)
686 {
687 unsigned long flags;
688 void __iomem *addr = hpdev->hbus->cfg_addr + CFG_PAGE_OFFSET + where;
689
690 if (where >= PCI_SUBSYSTEM_VENDOR_ID &&
691 where + size <= PCI_CAPABILITY_LIST) {
692 /* SSIDs and ROM BARs are read-only */
693 } else if (where >= PCI_COMMAND && where + size <= CFG_PAGE_SIZE) {
694 spin_lock_irqsave(&hpdev->hbus->config_lock, flags);
695 /* Choose the function to be written. (See comment above) */
696 writel(hpdev->desc.win_slot.slot, hpdev->hbus->cfg_addr);
697 /* Make sure the function was chosen before we start writing. */
698 wmb();
699 /* Write to that function's config space. */
700 switch (size) {
701 case 1:
702 writeb(val, addr);
703 break;
704 case 2:
705 writew(val, addr);
706 break;
707 default:
708 writel(val, addr);
709 break;
710 }
711 /*
712 * Make sure the write was done before we release the spinlock
713 * allowing consecutive reads/writes.
714 */
715 mb();
716 spin_unlock_irqrestore(&hpdev->hbus->config_lock, flags);
717 } else {
718 dev_err(&hpdev->hbus->hdev->device,
719 "Attempt to write beyond a function's config space.\n");
720 }
721 }
722
723 /**
724 * hv_pcifront_read_config() - Read configuration space
725 * @bus: PCI Bus structure
726 * @devfn: Device/function
727 * @where: Offset from base
728 * @size: Byte/word/dword
729 * @val: Value to be read
730 *
731 * Return: PCIBIOS_SUCCESSFUL on success
732 * PCIBIOS_DEVICE_NOT_FOUND on failure
733 */
734 static int hv_pcifront_read_config(struct pci_bus *bus, unsigned int devfn,
735 int where, int size, u32 *val)
736 {
737 struct hv_pcibus_device *hbus =
738 container_of(bus->sysdata, struct hv_pcibus_device, sysdata);
739 struct hv_pci_dev *hpdev;
740
741 hpdev = get_pcichild_wslot(hbus, devfn_to_wslot(devfn));
742 if (!hpdev)
743 return PCIBIOS_DEVICE_NOT_FOUND;
744
745 _hv_pcifront_read_config(hpdev, where, size, val);
746
747 put_pcichild(hpdev, hv_pcidev_ref_by_slot);
748 return PCIBIOS_SUCCESSFUL;
749 }
750
751 /**
752 * hv_pcifront_write_config() - Write configuration space
753 * @bus: PCI Bus structure
754 * @devfn: Device/function
755 * @where: Offset from base
756 * @size: Byte/word/dword
757 * @val: Value to be written to device
758 *
759 * Return: PCIBIOS_SUCCESSFUL on success
760 * PCIBIOS_DEVICE_NOT_FOUND on failure
761 */
762 static int hv_pcifront_write_config(struct pci_bus *bus, unsigned int devfn,
763 int where, int size, u32 val)
764 {
765 struct hv_pcibus_device *hbus =
766 container_of(bus->sysdata, struct hv_pcibus_device, sysdata);
767 struct hv_pci_dev *hpdev;
768
769 hpdev = get_pcichild_wslot(hbus, devfn_to_wslot(devfn));
770 if (!hpdev)
771 return PCIBIOS_DEVICE_NOT_FOUND;
772
773 _hv_pcifront_write_config(hpdev, where, size, val);
774
775 put_pcichild(hpdev, hv_pcidev_ref_by_slot);
776 return PCIBIOS_SUCCESSFUL;
777 }
778
779 /* PCIe operations */
780 static struct pci_ops hv_pcifront_ops = {
781 .read = hv_pcifront_read_config,
782 .write = hv_pcifront_write_config,
783 };
784
785 /* Interrupt management hooks */
786 static void hv_int_desc_free(struct hv_pci_dev *hpdev,
787 struct tran_int_desc *int_desc)
788 {
789 struct pci_delete_interrupt *int_pkt;
790 struct {
791 struct pci_packet pkt;
792 u8 buffer[sizeof(struct pci_delete_interrupt)];
793 } ctxt;
794
795 memset(&ctxt, 0, sizeof(ctxt));
796 int_pkt = (struct pci_delete_interrupt *)&ctxt.pkt.message;
797 int_pkt->message_type.type =
798 PCI_DELETE_INTERRUPT_MESSAGE;
799 int_pkt->wslot.slot = hpdev->desc.win_slot.slot;
800 int_pkt->int_desc = *int_desc;
801 vmbus_sendpacket(hpdev->hbus->hdev->channel, int_pkt, sizeof(*int_pkt),
802 (unsigned long)&ctxt.pkt, VM_PKT_DATA_INBAND, 0);
803 kfree(int_desc);
804 }
805
806 /**
807 * hv_msi_free() - Free the MSI.
808 * @domain: The interrupt domain pointer
809 * @info: Extra MSI-related context
810 * @irq: Identifies the IRQ.
811 *
812 * The Hyper-V parent partition and hypervisor are tracking the
813 * messages that are in use, keeping the interrupt redirection
814 * table up to date. This callback sends a message that frees
815 * the IRT entry and related tracking nonsense.
816 */
817 static void hv_msi_free(struct irq_domain *domain, struct msi_domain_info *info,
818 unsigned int irq)
819 {
820 struct hv_pcibus_device *hbus;
821 struct hv_pci_dev *hpdev;
822 struct pci_dev *pdev;
823 struct tran_int_desc *int_desc;
824 struct irq_data *irq_data = irq_domain_get_irq_data(domain, irq);
825 struct msi_desc *msi = irq_data_get_msi_desc(irq_data);
826
827 pdev = msi_desc_to_pci_dev(msi);
828 hbus = info->data;
829 int_desc = irq_data_get_irq_chip_data(irq_data);
830 if (!int_desc)
831 return;
832
833 irq_data->chip_data = NULL;
834 hpdev = get_pcichild_wslot(hbus, devfn_to_wslot(pdev->devfn));
835 if (!hpdev) {
836 kfree(int_desc);
837 return;
838 }
839
840 hv_int_desc_free(hpdev, int_desc);
841 put_pcichild(hpdev, hv_pcidev_ref_by_slot);
842 }
843
844 static int hv_set_affinity(struct irq_data *data, const struct cpumask *dest,
845 bool force)
846 {
847 struct irq_data *parent = data->parent_data;
848
849 return parent->chip->irq_set_affinity(parent, dest, force);
850 }
851
852 static void hv_irq_mask(struct irq_data *data)
853 {
854 pci_msi_mask_irq(data);
855 }
856
857 /**
858 * hv_irq_unmask() - "Unmask" the IRQ by setting its current
859 * affinity.
860 * @data: Describes the IRQ
861 *
862 * Build new a destination for the MSI and make a hypercall to
863 * update the Interrupt Redirection Table. "Device Logical ID"
864 * is built out of this PCI bus's instance GUID and the function
865 * number of the device.
866 */
867 static void hv_irq_unmask(struct irq_data *data)
868 {
869 struct msi_desc *msi_desc = irq_data_get_msi_desc(data);
870 struct irq_cfg *cfg = irqd_cfg(data);
871 struct retarget_msi_interrupt *params;
872 struct hv_pcibus_device *hbus;
873 struct cpumask *dest;
874 struct pci_bus *pbus;
875 struct pci_dev *pdev;
876 unsigned long flags;
877 u32 var_size = 0;
878 int cpu_vmbus;
879 int cpu;
880 u64 res;
881
882 dest = irq_data_get_effective_affinity_mask(data);
883 pdev = msi_desc_to_pci_dev(msi_desc);
884 pbus = pdev->bus;
885 hbus = container_of(pbus->sysdata, struct hv_pcibus_device, sysdata);
886
887 spin_lock_irqsave(&hbus->retarget_msi_interrupt_lock, flags);
888
889 params = &hbus->retarget_msi_interrupt_params;
890 memset(params, 0, sizeof(*params));
891 params->partition_id = HV_PARTITION_ID_SELF;
892 params->int_entry.source = 1; /* MSI(-X) */
893 params->int_entry.address = msi_desc->msg.address_lo;
894 params->int_entry.data = msi_desc->msg.data;
895 params->device_id = (hbus->hdev->dev_instance.b[5] << 24) |
896 (hbus->hdev->dev_instance.b[4] << 16) |
897 (hbus->hdev->dev_instance.b[7] << 8) |
898 (hbus->hdev->dev_instance.b[6] & 0xf8) |
899 PCI_FUNC(pdev->devfn);
900 params->int_target.vector = cfg->vector;
901
902 /*
903 * Honoring apic->irq_delivery_mode set to dest_Fixed by
904 * setting the HV_DEVICE_INTERRUPT_TARGET_MULTICAST flag results in a
905 * spurious interrupt storm. Not doing so does not seem to have a
906 * negative effect (yet?).
907 */
908
909 if (pci_protocol_version >= PCI_PROTOCOL_VERSION_1_2) {
910 /*
911 * PCI_PROTOCOL_VERSION_1_2 supports the VP_SET version of the
912 * HVCALL_RETARGET_INTERRUPT hypercall, which also coincides
913 * with >64 VP support.
914 * ms_hyperv.hints & HV_X64_EX_PROCESSOR_MASKS_RECOMMENDED
915 * is not sufficient for this hypercall.
916 */
917 params->int_target.flags |=
918 HV_DEVICE_INTERRUPT_TARGET_PROCESSOR_SET;
919 params->int_target.vp_set.valid_banks =
920 (1ull << HV_VP_SET_BANK_COUNT_MAX) - 1;
921
922 /*
923 * var-sized hypercall, var-size starts after vp_mask (thus
924 * vp_set.format does not count, but vp_set.valid_banks does).
925 */
926 var_size = 1 + HV_VP_SET_BANK_COUNT_MAX;
927
928 for_each_cpu_and(cpu, dest, cpu_online_mask) {
929 cpu_vmbus = hv_cpu_number_to_vp_number(cpu);
930
931 if (cpu_vmbus >= HV_VP_SET_BANK_COUNT_MAX * 64) {
932 dev_err(&hbus->hdev->device,
933 "too high CPU %d", cpu_vmbus);
934 res = 1;
935 goto exit_unlock;
936 }
937
938 params->int_target.vp_set.masks[cpu_vmbus / 64] |=
939 (1ULL << (cpu_vmbus & 63));
940 }
941 } else {
942 for_each_cpu_and(cpu, dest, cpu_online_mask) {
943 params->int_target.vp_mask |=
944 (1ULL << hv_cpu_number_to_vp_number(cpu));
945 }
946 }
947
948 res = hv_do_hypercall(HVCALL_RETARGET_INTERRUPT | (var_size << 17),
949 params, NULL);
950
951 exit_unlock:
952 spin_unlock_irqrestore(&hbus->retarget_msi_interrupt_lock, flags);
953
954 if (res) {
955 dev_err(&hbus->hdev->device,
956 "%s() failed: %#llx", __func__, res);
957 return;
958 }
959
960 pci_msi_unmask_irq(data);
961 }
962
963 struct compose_comp_ctxt {
964 struct hv_pci_compl comp_pkt;
965 struct tran_int_desc int_desc;
966 };
967
968 static void hv_pci_compose_compl(void *context, struct pci_response *resp,
969 int resp_packet_size)
970 {
971 struct compose_comp_ctxt *comp_pkt = context;
972 struct pci_create_int_response *int_resp =
973 (struct pci_create_int_response *)resp;
974
975 comp_pkt->comp_pkt.completion_status = resp->status;
976 comp_pkt->int_desc = int_resp->int_desc;
977 complete(&comp_pkt->comp_pkt.host_event);
978 }
979
980 static u32 hv_compose_msi_req_v1(
981 struct pci_create_interrupt *int_pkt, struct cpumask *affinity,
982 u32 slot, u8 vector)
983 {
984 int_pkt->message_type.type = PCI_CREATE_INTERRUPT_MESSAGE;
985 int_pkt->wslot.slot = slot;
986 int_pkt->int_desc.vector = vector;
987 int_pkt->int_desc.vector_count = 1;
988 int_pkt->int_desc.delivery_mode =
989 (apic->irq_delivery_mode == dest_LowestPrio) ?
990 dest_LowestPrio : dest_Fixed;
991
992 /*
993 * Create MSI w/ dummy vCPU set, overwritten by subsequent retarget in
994 * hv_irq_unmask().
995 */
996 int_pkt->int_desc.cpu_mask = CPU_AFFINITY_ALL;
997
998 return sizeof(*int_pkt);
999 }
1000
1001 static u32 hv_compose_msi_req_v2(
1002 struct pci_create_interrupt2 *int_pkt, struct cpumask *affinity,
1003 u32 slot, u8 vector)
1004 {
1005 int cpu;
1006
1007 int_pkt->message_type.type = PCI_CREATE_INTERRUPT_MESSAGE2;
1008 int_pkt->wslot.slot = slot;
1009 int_pkt->int_desc.vector = vector;
1010 int_pkt->int_desc.vector_count = 1;
1011 int_pkt->int_desc.delivery_mode =
1012 (apic->irq_delivery_mode == dest_LowestPrio) ?
1013 dest_LowestPrio : dest_Fixed;
1014
1015 /*
1016 * Create MSI w/ dummy vCPU set targeting just one vCPU, overwritten
1017 * by subsequent retarget in hv_irq_unmask().
1018 */
1019 cpu = cpumask_first_and(affinity, cpu_online_mask);
1020 int_pkt->int_desc.processor_array[0] =
1021 hv_cpu_number_to_vp_number(cpu);
1022 int_pkt->int_desc.processor_count = 1;
1023
1024 return sizeof(*int_pkt);
1025 }
1026
1027 /**
1028 * hv_compose_msi_msg() - Supplies a valid MSI address/data
1029 * @data: Everything about this MSI
1030 * @msg: Buffer that is filled in by this function
1031 *
1032 * This function unpacks the IRQ looking for target CPU set, IDT
1033 * vector and mode and sends a message to the parent partition
1034 * asking for a mapping for that tuple in this partition. The
1035 * response supplies a data value and address to which that data
1036 * should be written to trigger that interrupt.
1037 */
1038 static void hv_compose_msi_msg(struct irq_data *data, struct msi_msg *msg)
1039 {
1040 struct irq_cfg *cfg = irqd_cfg(data);
1041 struct hv_pcibus_device *hbus;
1042 struct hv_pci_dev *hpdev;
1043 struct pci_bus *pbus;
1044 struct pci_dev *pdev;
1045 struct cpumask *dest;
1046 struct compose_comp_ctxt comp;
1047 struct tran_int_desc *int_desc;
1048 struct {
1049 struct pci_packet pci_pkt;
1050 union {
1051 struct pci_create_interrupt v1;
1052 struct pci_create_interrupt2 v2;
1053 } int_pkts;
1054 } __packed ctxt;
1055
1056 u32 size;
1057 int ret;
1058
1059 pdev = msi_desc_to_pci_dev(irq_data_get_msi_desc(data));
1060 dest = irq_data_get_effective_affinity_mask(data);
1061 pbus = pdev->bus;
1062 hbus = container_of(pbus->sysdata, struct hv_pcibus_device, sysdata);
1063 hpdev = get_pcichild_wslot(hbus, devfn_to_wslot(pdev->devfn));
1064 if (!hpdev)
1065 goto return_null_message;
1066
1067 /* Free any previous message that might have already been composed. */
1068 if (data->chip_data) {
1069 int_desc = data->chip_data;
1070 data->chip_data = NULL;
1071 hv_int_desc_free(hpdev, int_desc);
1072 }
1073
1074 int_desc = kzalloc(sizeof(*int_desc), GFP_ATOMIC);
1075 if (!int_desc)
1076 goto drop_reference;
1077
1078 memset(&ctxt, 0, sizeof(ctxt));
1079 init_completion(&comp.comp_pkt.host_event);
1080 ctxt.pci_pkt.completion_func = hv_pci_compose_compl;
1081 ctxt.pci_pkt.compl_ctxt = &comp;
1082
1083 switch (pci_protocol_version) {
1084 case PCI_PROTOCOL_VERSION_1_1:
1085 size = hv_compose_msi_req_v1(&ctxt.int_pkts.v1,
1086 dest,
1087 hpdev->desc.win_slot.slot,
1088 cfg->vector);
1089 break;
1090
1091 case PCI_PROTOCOL_VERSION_1_2:
1092 size = hv_compose_msi_req_v2(&ctxt.int_pkts.v2,
1093 dest,
1094 hpdev->desc.win_slot.slot,
1095 cfg->vector);
1096 break;
1097
1098 default:
1099 /* As we only negotiate protocol versions known to this driver,
1100 * this path should never hit. However, this is it not a hot
1101 * path so we print a message to aid future updates.
1102 */
1103 dev_err(&hbus->hdev->device,
1104 "Unexpected vPCI protocol, update driver.");
1105 goto free_int_desc;
1106 }
1107
1108 ret = vmbus_sendpacket(hpdev->hbus->hdev->channel, &ctxt.int_pkts,
1109 size, (unsigned long)&ctxt.pci_pkt,
1110 VM_PKT_DATA_INBAND,
1111 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
1112 if (ret) {
1113 dev_err(&hbus->hdev->device,
1114 "Sending request for interrupt failed: 0x%x",
1115 comp.comp_pkt.completion_status);
1116 goto free_int_desc;
1117 }
1118
1119 /*
1120 * Since this function is called with IRQ locks held, can't
1121 * do normal wait for completion; instead poll.
1122 */
1123 while (!try_wait_for_completion(&comp.comp_pkt.host_event))
1124 udelay(100);
1125
1126 if (comp.comp_pkt.completion_status < 0) {
1127 dev_err(&hbus->hdev->device,
1128 "Request for interrupt failed: 0x%x",
1129 comp.comp_pkt.completion_status);
1130 goto free_int_desc;
1131 }
1132
1133 /*
1134 * Record the assignment so that this can be unwound later. Using
1135 * irq_set_chip_data() here would be appropriate, but the lock it takes
1136 * is already held.
1137 */
1138 *int_desc = comp.int_desc;
1139 data->chip_data = int_desc;
1140
1141 /* Pass up the result. */
1142 msg->address_hi = comp.int_desc.address >> 32;
1143 msg->address_lo = comp.int_desc.address & 0xffffffff;
1144 msg->data = comp.int_desc.data;
1145
1146 put_pcichild(hpdev, hv_pcidev_ref_by_slot);
1147 return;
1148
1149 free_int_desc:
1150 kfree(int_desc);
1151 drop_reference:
1152 put_pcichild(hpdev, hv_pcidev_ref_by_slot);
1153 return_null_message:
1154 msg->address_hi = 0;
1155 msg->address_lo = 0;
1156 msg->data = 0;
1157 }
1158
1159 /* HW Interrupt Chip Descriptor */
1160 static struct irq_chip hv_msi_irq_chip = {
1161 .name = "Hyper-V PCIe MSI",
1162 .irq_compose_msi_msg = hv_compose_msi_msg,
1163 .irq_set_affinity = hv_set_affinity,
1164 .irq_ack = irq_chip_ack_parent,
1165 .irq_mask = hv_irq_mask,
1166 .irq_unmask = hv_irq_unmask,
1167 };
1168
1169 static irq_hw_number_t hv_msi_domain_ops_get_hwirq(struct msi_domain_info *info,
1170 msi_alloc_info_t *arg)
1171 {
1172 return arg->msi_hwirq;
1173 }
1174
1175 static struct msi_domain_ops hv_msi_ops = {
1176 .get_hwirq = hv_msi_domain_ops_get_hwirq,
1177 .msi_prepare = pci_msi_prepare,
1178 .set_desc = pci_msi_set_desc,
1179 .msi_free = hv_msi_free,
1180 };
1181
1182 /**
1183 * hv_pcie_init_irq_domain() - Initialize IRQ domain
1184 * @hbus: The root PCI bus
1185 *
1186 * This function creates an IRQ domain which will be used for
1187 * interrupts from devices that have been passed through. These
1188 * devices only support MSI and MSI-X, not line-based interrupts
1189 * or simulations of line-based interrupts through PCIe's
1190 * fabric-layer messages. Because interrupts are remapped, we
1191 * can support multi-message MSI here.
1192 *
1193 * Return: '0' on success and error value on failure
1194 */
1195 static int hv_pcie_init_irq_domain(struct hv_pcibus_device *hbus)
1196 {
1197 hbus->msi_info.chip = &hv_msi_irq_chip;
1198 hbus->msi_info.ops = &hv_msi_ops;
1199 hbus->msi_info.flags = (MSI_FLAG_USE_DEF_DOM_OPS |
1200 MSI_FLAG_USE_DEF_CHIP_OPS | MSI_FLAG_MULTI_PCI_MSI |
1201 MSI_FLAG_PCI_MSIX);
1202 hbus->msi_info.handler = handle_edge_irq;
1203 hbus->msi_info.handler_name = "edge";
1204 hbus->msi_info.data = hbus;
1205 hbus->irq_domain = pci_msi_create_irq_domain(hbus->sysdata.fwnode,
1206 &hbus->msi_info,
1207 x86_vector_domain);
1208 if (!hbus->irq_domain) {
1209 dev_err(&hbus->hdev->device,
1210 "Failed to build an MSI IRQ domain\n");
1211 return -ENODEV;
1212 }
1213
1214 return 0;
1215 }
1216
1217 /**
1218 * get_bar_size() - Get the address space consumed by a BAR
1219 * @bar_val: Value that a BAR returned after -1 was written
1220 * to it.
1221 *
1222 * This function returns the size of the BAR, rounded up to 1
1223 * page. It has to be rounded up because the hypervisor's page
1224 * table entry that maps the BAR into the VM can't specify an
1225 * offset within a page. The invariant is that the hypervisor
1226 * must place any BARs of smaller than page length at the
1227 * beginning of a page.
1228 *
1229 * Return: Size in bytes of the consumed MMIO space.
1230 */
1231 static u64 get_bar_size(u64 bar_val)
1232 {
1233 return round_up((1 + ~(bar_val & PCI_BASE_ADDRESS_MEM_MASK)),
1234 PAGE_SIZE);
1235 }
1236
1237 /**
1238 * survey_child_resources() - Total all MMIO requirements
1239 * @hbus: Root PCI bus, as understood by this driver
1240 */
1241 static void survey_child_resources(struct hv_pcibus_device *hbus)
1242 {
1243 struct list_head *iter;
1244 struct hv_pci_dev *hpdev;
1245 resource_size_t bar_size = 0;
1246 unsigned long flags;
1247 struct completion *event;
1248 u64 bar_val;
1249 int i;
1250
1251 /* If nobody is waiting on the answer, don't compute it. */
1252 event = xchg(&hbus->survey_event, NULL);
1253 if (!event)
1254 return;
1255
1256 /* If the answer has already been computed, go with it. */
1257 if (hbus->low_mmio_space || hbus->high_mmio_space) {
1258 complete(event);
1259 return;
1260 }
1261
1262 spin_lock_irqsave(&hbus->device_list_lock, flags);
1263
1264 /*
1265 * Due to an interesting quirk of the PCI spec, all memory regions
1266 * for a child device are a power of 2 in size and aligned in memory,
1267 * so it's sufficient to just add them up without tracking alignment.
1268 */
1269 list_for_each(iter, &hbus->children) {
1270 hpdev = container_of(iter, struct hv_pci_dev, list_entry);
1271 for (i = 0; i < 6; i++) {
1272 if (hpdev->probed_bar[i] & PCI_BASE_ADDRESS_SPACE_IO)
1273 dev_err(&hbus->hdev->device,
1274 "There's an I/O BAR in this list!\n");
1275
1276 if (hpdev->probed_bar[i] != 0) {
1277 /*
1278 * A probed BAR has all the upper bits set that
1279 * can be changed.
1280 */
1281
1282 bar_val = hpdev->probed_bar[i];
1283 if (bar_val & PCI_BASE_ADDRESS_MEM_TYPE_64)
1284 bar_val |=
1285 ((u64)hpdev->probed_bar[++i] << 32);
1286 else
1287 bar_val |= 0xffffffff00000000ULL;
1288
1289 bar_size = get_bar_size(bar_val);
1290
1291 if (bar_val & PCI_BASE_ADDRESS_MEM_TYPE_64)
1292 hbus->high_mmio_space += bar_size;
1293 else
1294 hbus->low_mmio_space += bar_size;
1295 }
1296 }
1297 }
1298
1299 spin_unlock_irqrestore(&hbus->device_list_lock, flags);
1300 complete(event);
1301 }
1302
1303 /**
1304 * prepopulate_bars() - Fill in BARs with defaults
1305 * @hbus: Root PCI bus, as understood by this driver
1306 *
1307 * The core PCI driver code seems much, much happier if the BARs
1308 * for a device have values upon first scan. So fill them in.
1309 * The algorithm below works down from large sizes to small,
1310 * attempting to pack the assignments optimally. The assumption,
1311 * enforced in other parts of the code, is that the beginning of
1312 * the memory-mapped I/O space will be aligned on the largest
1313 * BAR size.
1314 */
1315 static void prepopulate_bars(struct hv_pcibus_device *hbus)
1316 {
1317 resource_size_t high_size = 0;
1318 resource_size_t low_size = 0;
1319 resource_size_t high_base = 0;
1320 resource_size_t low_base = 0;
1321 resource_size_t bar_size;
1322 struct hv_pci_dev *hpdev;
1323 struct list_head *iter;
1324 unsigned long flags;
1325 u64 bar_val;
1326 u32 command;
1327 bool high;
1328 int i;
1329
1330 if (hbus->low_mmio_space) {
1331 low_size = 1ULL << (63 - __builtin_clzll(hbus->low_mmio_space));
1332 low_base = hbus->low_mmio_res->start;
1333 }
1334
1335 if (hbus->high_mmio_space) {
1336 high_size = 1ULL <<
1337 (63 - __builtin_clzll(hbus->high_mmio_space));
1338 high_base = hbus->high_mmio_res->start;
1339 }
1340
1341 spin_lock_irqsave(&hbus->device_list_lock, flags);
1342
1343 /* Pick addresses for the BARs. */
1344 do {
1345 list_for_each(iter, &hbus->children) {
1346 hpdev = container_of(iter, struct hv_pci_dev,
1347 list_entry);
1348 for (i = 0; i < 6; i++) {
1349 bar_val = hpdev->probed_bar[i];
1350 if (bar_val == 0)
1351 continue;
1352 high = bar_val & PCI_BASE_ADDRESS_MEM_TYPE_64;
1353 if (high) {
1354 bar_val |=
1355 ((u64)hpdev->probed_bar[i + 1]
1356 << 32);
1357 } else {
1358 bar_val |= 0xffffffffULL << 32;
1359 }
1360 bar_size = get_bar_size(bar_val);
1361 if (high) {
1362 if (high_size != bar_size) {
1363 i++;
1364 continue;
1365 }
1366 _hv_pcifront_write_config(hpdev,
1367 PCI_BASE_ADDRESS_0 + (4 * i),
1368 4,
1369 (u32)(high_base & 0xffffff00));
1370 i++;
1371 _hv_pcifront_write_config(hpdev,
1372 PCI_BASE_ADDRESS_0 + (4 * i),
1373 4, (u32)(high_base >> 32));
1374 high_base += bar_size;
1375 } else {
1376 if (low_size != bar_size)
1377 continue;
1378 _hv_pcifront_write_config(hpdev,
1379 PCI_BASE_ADDRESS_0 + (4 * i),
1380 4,
1381 (u32)(low_base & 0xffffff00));
1382 low_base += bar_size;
1383 }
1384 }
1385 if (high_size <= 1 && low_size <= 1) {
1386 /* Set the memory enable bit. */
1387 _hv_pcifront_read_config(hpdev, PCI_COMMAND, 2,
1388 &command);
1389 command |= PCI_COMMAND_MEMORY;
1390 _hv_pcifront_write_config(hpdev, PCI_COMMAND, 2,
1391 command);
1392 break;
1393 }
1394 }
1395
1396 high_size >>= 1;
1397 low_size >>= 1;
1398 } while (high_size || low_size);
1399
1400 spin_unlock_irqrestore(&hbus->device_list_lock, flags);
1401 }
1402
1403 /**
1404 * create_root_hv_pci_bus() - Expose a new root PCI bus
1405 * @hbus: Root PCI bus, as understood by this driver
1406 *
1407 * Return: 0 on success, -errno on failure
1408 */
1409 static int create_root_hv_pci_bus(struct hv_pcibus_device *hbus)
1410 {
1411 /* Register the device */
1412 hbus->pci_bus = pci_create_root_bus(&hbus->hdev->device,
1413 0, /* bus number is always zero */
1414 &hv_pcifront_ops,
1415 &hbus->sysdata,
1416 &hbus->resources_for_children);
1417 if (!hbus->pci_bus)
1418 return -ENODEV;
1419
1420 hbus->pci_bus->msi = &hbus->msi_chip;
1421 hbus->pci_bus->msi->dev = &hbus->hdev->device;
1422
1423 pci_lock_rescan_remove();
1424 pci_scan_child_bus(hbus->pci_bus);
1425 pci_bus_assign_resources(hbus->pci_bus);
1426 pci_bus_add_devices(hbus->pci_bus);
1427 pci_unlock_rescan_remove();
1428 hbus->state = hv_pcibus_installed;
1429 return 0;
1430 }
1431
1432 struct q_res_req_compl {
1433 struct completion host_event;
1434 struct hv_pci_dev *hpdev;
1435 };
1436
1437 /**
1438 * q_resource_requirements() - Query Resource Requirements
1439 * @context: The completion context.
1440 * @resp: The response that came from the host.
1441 * @resp_packet_size: The size in bytes of resp.
1442 *
1443 * This function is invoked on completion of a Query Resource
1444 * Requirements packet.
1445 */
1446 static void q_resource_requirements(void *context, struct pci_response *resp,
1447 int resp_packet_size)
1448 {
1449 struct q_res_req_compl *completion = context;
1450 struct pci_q_res_req_response *q_res_req =
1451 (struct pci_q_res_req_response *)resp;
1452 int i;
1453
1454 if (resp->status < 0) {
1455 dev_err(&completion->hpdev->hbus->hdev->device,
1456 "query resource requirements failed: %x\n",
1457 resp->status);
1458 } else {
1459 for (i = 0; i < 6; i++) {
1460 completion->hpdev->probed_bar[i] =
1461 q_res_req->probed_bar[i];
1462 }
1463 }
1464
1465 complete(&completion->host_event);
1466 }
1467
1468 static void get_pcichild(struct hv_pci_dev *hpdev,
1469 enum hv_pcidev_ref_reason reason)
1470 {
1471 refcount_inc(&hpdev->refs);
1472 }
1473
1474 static void put_pcichild(struct hv_pci_dev *hpdev,
1475 enum hv_pcidev_ref_reason reason)
1476 {
1477 if (refcount_dec_and_test(&hpdev->refs))
1478 kfree(hpdev);
1479 }
1480
1481 /**
1482 * new_pcichild_device() - Create a new child device
1483 * @hbus: The internal struct tracking this root PCI bus.
1484 * @desc: The information supplied so far from the host
1485 * about the device.
1486 *
1487 * This function creates the tracking structure for a new child
1488 * device and kicks off the process of figuring out what it is.
1489 *
1490 * Return: Pointer to the new tracking struct
1491 */
1492 static struct hv_pci_dev *new_pcichild_device(struct hv_pcibus_device *hbus,
1493 struct pci_function_description *desc)
1494 {
1495 struct hv_pci_dev *hpdev;
1496 struct pci_child_message *res_req;
1497 struct q_res_req_compl comp_pkt;
1498 struct {
1499 struct pci_packet init_packet;
1500 u8 buffer[sizeof(struct pci_child_message)];
1501 } pkt;
1502 unsigned long flags;
1503 int ret;
1504
1505 hpdev = kzalloc(sizeof(*hpdev), GFP_ATOMIC);
1506 if (!hpdev)
1507 return NULL;
1508
1509 hpdev->hbus = hbus;
1510
1511 memset(&pkt, 0, sizeof(pkt));
1512 init_completion(&comp_pkt.host_event);
1513 comp_pkt.hpdev = hpdev;
1514 pkt.init_packet.compl_ctxt = &comp_pkt;
1515 pkt.init_packet.completion_func = q_resource_requirements;
1516 res_req = (struct pci_child_message *)&pkt.init_packet.message;
1517 res_req->message_type.type = PCI_QUERY_RESOURCE_REQUIREMENTS;
1518 res_req->wslot.slot = desc->win_slot.slot;
1519
1520 ret = vmbus_sendpacket(hbus->hdev->channel, res_req,
1521 sizeof(struct pci_child_message),
1522 (unsigned long)&pkt.init_packet,
1523 VM_PKT_DATA_INBAND,
1524 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
1525 if (ret)
1526 goto error;
1527
1528 wait_for_completion(&comp_pkt.host_event);
1529
1530 hpdev->desc = *desc;
1531 refcount_set(&hpdev->refs, 1);
1532 get_pcichild(hpdev, hv_pcidev_ref_childlist);
1533 spin_lock_irqsave(&hbus->device_list_lock, flags);
1534
1535 /*
1536 * When a device is being added to the bus, we set the PCI domain
1537 * number to be the device serial number, which is non-zero and
1538 * unique on the same VM. The serial numbers start with 1, and
1539 * increase by 1 for each device. So device names including this
1540 * can have shorter names than based on the bus instance UUID.
1541 * Only the first device serial number is used for domain, so the
1542 * domain number will not change after the first device is added.
1543 */
1544 if (list_empty(&hbus->children))
1545 hbus->sysdata.domain = desc->ser;
1546 list_add_tail(&hpdev->list_entry, &hbus->children);
1547 spin_unlock_irqrestore(&hbus->device_list_lock, flags);
1548 return hpdev;
1549
1550 error:
1551 kfree(hpdev);
1552 return NULL;
1553 }
1554
1555 /**
1556 * get_pcichild_wslot() - Find device from slot
1557 * @hbus: Root PCI bus, as understood by this driver
1558 * @wslot: Location on the bus
1559 *
1560 * This function looks up a PCI device and returns the internal
1561 * representation of it. It acquires a reference on it, so that
1562 * the device won't be deleted while somebody is using it. The
1563 * caller is responsible for calling put_pcichild() to release
1564 * this reference.
1565 *
1566 * Return: Internal representation of a PCI device
1567 */
1568 static struct hv_pci_dev *get_pcichild_wslot(struct hv_pcibus_device *hbus,
1569 u32 wslot)
1570 {
1571 unsigned long flags;
1572 struct hv_pci_dev *iter, *hpdev = NULL;
1573
1574 spin_lock_irqsave(&hbus->device_list_lock, flags);
1575 list_for_each_entry(iter, &hbus->children, list_entry) {
1576 if (iter->desc.win_slot.slot == wslot) {
1577 hpdev = iter;
1578 get_pcichild(hpdev, hv_pcidev_ref_by_slot);
1579 break;
1580 }
1581 }
1582 spin_unlock_irqrestore(&hbus->device_list_lock, flags);
1583
1584 return hpdev;
1585 }
1586
1587 /**
1588 * pci_devices_present_work() - Handle new list of child devices
1589 * @work: Work struct embedded in struct hv_dr_work
1590 *
1591 * "Bus Relations" is the Windows term for "children of this
1592 * bus." The terminology is preserved here for people trying to
1593 * debug the interaction between Hyper-V and Linux. This
1594 * function is called when the parent partition reports a list
1595 * of functions that should be observed under this PCI Express
1596 * port (bus).
1597 *
1598 * This function updates the list, and must tolerate being
1599 * called multiple times with the same information. The typical
1600 * number of child devices is one, with very atypical cases
1601 * involving three or four, so the algorithms used here can be
1602 * simple and inefficient.
1603 *
1604 * It must also treat the omission of a previously observed device as
1605 * notification that the device no longer exists.
1606 *
1607 * Note that this function is a work item, and it may not be
1608 * invoked in the order that it was queued. Back to back
1609 * updates of the list of present devices may involve queuing
1610 * multiple work items, and this one may run before ones that
1611 * were sent later. As such, this function only does something
1612 * if is the last one in the queue.
1613 */
1614 static void pci_devices_present_work(struct work_struct *work)
1615 {
1616 u32 child_no;
1617 bool found;
1618 struct list_head *iter;
1619 struct pci_function_description *new_desc;
1620 struct hv_pci_dev *hpdev;
1621 struct hv_pcibus_device *hbus;
1622 struct list_head removed;
1623 struct hv_dr_work *dr_wrk;
1624 struct hv_dr_state *dr = NULL;
1625 unsigned long flags;
1626
1627 dr_wrk = container_of(work, struct hv_dr_work, wrk);
1628 hbus = dr_wrk->bus;
1629 kfree(dr_wrk);
1630
1631 INIT_LIST_HEAD(&removed);
1632
1633 if (down_interruptible(&hbus->enum_sem)) {
1634 put_hvpcibus(hbus);
1635 return;
1636 }
1637
1638 /* Pull this off the queue and process it if it was the last one. */
1639 spin_lock_irqsave(&hbus->device_list_lock, flags);
1640 while (!list_empty(&hbus->dr_list)) {
1641 dr = list_first_entry(&hbus->dr_list, struct hv_dr_state,
1642 list_entry);
1643 list_del(&dr->list_entry);
1644
1645 /* Throw this away if the list still has stuff in it. */
1646 if (!list_empty(&hbus->dr_list)) {
1647 kfree(dr);
1648 continue;
1649 }
1650 }
1651 spin_unlock_irqrestore(&hbus->device_list_lock, flags);
1652
1653 if (!dr) {
1654 up(&hbus->enum_sem);
1655 put_hvpcibus(hbus);
1656 return;
1657 }
1658
1659 /* First, mark all existing children as reported missing. */
1660 spin_lock_irqsave(&hbus->device_list_lock, flags);
1661 list_for_each(iter, &hbus->children) {
1662 hpdev = container_of(iter, struct hv_pci_dev,
1663 list_entry);
1664 hpdev->reported_missing = true;
1665 }
1666 spin_unlock_irqrestore(&hbus->device_list_lock, flags);
1667
1668 /* Next, add back any reported devices. */
1669 for (child_no = 0; child_no < dr->device_count; child_no++) {
1670 found = false;
1671 new_desc = &dr->func[child_no];
1672
1673 spin_lock_irqsave(&hbus->device_list_lock, flags);
1674 list_for_each(iter, &hbus->children) {
1675 hpdev = container_of(iter, struct hv_pci_dev,
1676 list_entry);
1677 if ((hpdev->desc.win_slot.slot ==
1678 new_desc->win_slot.slot) &&
1679 (hpdev->desc.v_id == new_desc->v_id) &&
1680 (hpdev->desc.d_id == new_desc->d_id) &&
1681 (hpdev->desc.ser == new_desc->ser)) {
1682 hpdev->reported_missing = false;
1683 found = true;
1684 }
1685 }
1686 spin_unlock_irqrestore(&hbus->device_list_lock, flags);
1687
1688 if (!found) {
1689 hpdev = new_pcichild_device(hbus, new_desc);
1690 if (!hpdev)
1691 dev_err(&hbus->hdev->device,
1692 "couldn't record a child device.\n");
1693 }
1694 }
1695
1696 /* Move missing children to a list on the stack. */
1697 spin_lock_irqsave(&hbus->device_list_lock, flags);
1698 do {
1699 found = false;
1700 list_for_each(iter, &hbus->children) {
1701 hpdev = container_of(iter, struct hv_pci_dev,
1702 list_entry);
1703 if (hpdev->reported_missing) {
1704 found = true;
1705 put_pcichild(hpdev, hv_pcidev_ref_childlist);
1706 list_move_tail(&hpdev->list_entry, &removed);
1707 break;
1708 }
1709 }
1710 } while (found);
1711 spin_unlock_irqrestore(&hbus->device_list_lock, flags);
1712
1713 /* Delete everything that should no longer exist. */
1714 while (!list_empty(&removed)) {
1715 hpdev = list_first_entry(&removed, struct hv_pci_dev,
1716 list_entry);
1717 list_del(&hpdev->list_entry);
1718 put_pcichild(hpdev, hv_pcidev_ref_initial);
1719 }
1720
1721 switch (hbus->state) {
1722 case hv_pcibus_installed:
1723 /*
1724 * Tell the core to rescan bus
1725 * because there may have been changes.
1726 */
1727 pci_lock_rescan_remove();
1728 pci_scan_child_bus(hbus->pci_bus);
1729 pci_unlock_rescan_remove();
1730 break;
1731
1732 case hv_pcibus_init:
1733 case hv_pcibus_probed:
1734 survey_child_resources(hbus);
1735 break;
1736
1737 default:
1738 break;
1739 }
1740
1741 up(&hbus->enum_sem);
1742 put_hvpcibus(hbus);
1743 kfree(dr);
1744 }
1745
1746 /**
1747 * hv_pci_devices_present() - Handles list of new children
1748 * @hbus: Root PCI bus, as understood by this driver
1749 * @relations: Packet from host listing children
1750 *
1751 * This function is invoked whenever a new list of devices for
1752 * this bus appears.
1753 */
1754 static void hv_pci_devices_present(struct hv_pcibus_device *hbus,
1755 struct pci_bus_relations *relations)
1756 {
1757 struct hv_dr_state *dr;
1758 struct hv_dr_work *dr_wrk;
1759 unsigned long flags;
1760
1761 dr_wrk = kzalloc(sizeof(*dr_wrk), GFP_NOWAIT);
1762 if (!dr_wrk)
1763 return;
1764
1765 dr = kzalloc(offsetof(struct hv_dr_state, func) +
1766 (sizeof(struct pci_function_description) *
1767 (relations->device_count)), GFP_NOWAIT);
1768 if (!dr) {
1769 kfree(dr_wrk);
1770 return;
1771 }
1772
1773 INIT_WORK(&dr_wrk->wrk, pci_devices_present_work);
1774 dr_wrk->bus = hbus;
1775 dr->device_count = relations->device_count;
1776 if (dr->device_count != 0) {
1777 memcpy(dr->func, relations->func,
1778 sizeof(struct pci_function_description) *
1779 dr->device_count);
1780 }
1781
1782 spin_lock_irqsave(&hbus->device_list_lock, flags);
1783 list_add_tail(&dr->list_entry, &hbus->dr_list);
1784 spin_unlock_irqrestore(&hbus->device_list_lock, flags);
1785
1786 get_hvpcibus(hbus);
1787 schedule_work(&dr_wrk->wrk);
1788 }
1789
1790 /**
1791 * hv_eject_device_work() - Asynchronously handles ejection
1792 * @work: Work struct embedded in internal device struct
1793 *
1794 * This function handles ejecting a device. Windows will
1795 * attempt to gracefully eject a device, waiting 60 seconds to
1796 * hear back from the guest OS that this completed successfully.
1797 * If this timer expires, the device will be forcibly removed.
1798 */
1799 static void hv_eject_device_work(struct work_struct *work)
1800 {
1801 struct pci_eject_response *ejct_pkt;
1802 struct hv_pci_dev *hpdev;
1803 struct pci_dev *pdev;
1804 unsigned long flags;
1805 int wslot;
1806 struct {
1807 struct pci_packet pkt;
1808 u8 buffer[sizeof(struct pci_eject_response)];
1809 } ctxt;
1810
1811 hpdev = container_of(work, struct hv_pci_dev, wrk);
1812
1813 if (hpdev->state != hv_pcichild_ejecting) {
1814 put_pcichild(hpdev, hv_pcidev_ref_pnp);
1815 return;
1816 }
1817
1818 /*
1819 * Ejection can come before or after the PCI bus has been set up, so
1820 * attempt to find it and tear down the bus state, if it exists. This
1821 * must be done without constructs like pci_domain_nr(hbus->pci_bus)
1822 * because hbus->pci_bus may not exist yet.
1823 */
1824 wslot = wslot_to_devfn(hpdev->desc.win_slot.slot);
1825 pdev = pci_get_domain_bus_and_slot(hpdev->hbus->sysdata.domain, 0,
1826 wslot);
1827 if (pdev) {
1828 pci_lock_rescan_remove();
1829 pci_stop_and_remove_bus_device(pdev);
1830 pci_dev_put(pdev);
1831 pci_unlock_rescan_remove();
1832 }
1833
1834 spin_lock_irqsave(&hpdev->hbus->device_list_lock, flags);
1835 list_del(&hpdev->list_entry);
1836 spin_unlock_irqrestore(&hpdev->hbus->device_list_lock, flags);
1837
1838 memset(&ctxt, 0, sizeof(ctxt));
1839 ejct_pkt = (struct pci_eject_response *)&ctxt.pkt.message;
1840 ejct_pkt->message_type.type = PCI_EJECTION_COMPLETE;
1841 ejct_pkt->wslot.slot = hpdev->desc.win_slot.slot;
1842 vmbus_sendpacket(hpdev->hbus->hdev->channel, ejct_pkt,
1843 sizeof(*ejct_pkt), (unsigned long)&ctxt.pkt,
1844 VM_PKT_DATA_INBAND, 0);
1845
1846 put_pcichild(hpdev, hv_pcidev_ref_childlist);
1847 put_pcichild(hpdev, hv_pcidev_ref_pnp);
1848 put_hvpcibus(hpdev->hbus);
1849 }
1850
1851 /**
1852 * hv_pci_eject_device() - Handles device ejection
1853 * @hpdev: Internal device tracking struct
1854 *
1855 * This function is invoked when an ejection packet arrives. It
1856 * just schedules work so that we don't re-enter the packet
1857 * delivery code handling the ejection.
1858 */
1859 static void hv_pci_eject_device(struct hv_pci_dev *hpdev)
1860 {
1861 hpdev->state = hv_pcichild_ejecting;
1862 get_pcichild(hpdev, hv_pcidev_ref_pnp);
1863 INIT_WORK(&hpdev->wrk, hv_eject_device_work);
1864 get_hvpcibus(hpdev->hbus);
1865 schedule_work(&hpdev->wrk);
1866 }
1867
1868 /**
1869 * hv_pci_onchannelcallback() - Handles incoming packets
1870 * @context: Internal bus tracking struct
1871 *
1872 * This function is invoked whenever the host sends a packet to
1873 * this channel (which is private to this root PCI bus).
1874 */
1875 static void hv_pci_onchannelcallback(void *context)
1876 {
1877 const int packet_size = 0x100;
1878 int ret;
1879 struct hv_pcibus_device *hbus = context;
1880 u32 bytes_recvd;
1881 u64 req_id;
1882 struct vmpacket_descriptor *desc;
1883 unsigned char *buffer;
1884 int bufferlen = packet_size;
1885 struct pci_packet *comp_packet;
1886 struct pci_response *response;
1887 struct pci_incoming_message *new_message;
1888 struct pci_bus_relations *bus_rel;
1889 struct pci_dev_incoming *dev_message;
1890 struct hv_pci_dev *hpdev;
1891
1892 buffer = kmalloc(bufferlen, GFP_ATOMIC);
1893 if (!buffer)
1894 return;
1895
1896 while (1) {
1897 ret = vmbus_recvpacket_raw(hbus->hdev->channel, buffer,
1898 bufferlen, &bytes_recvd, &req_id);
1899
1900 if (ret == -ENOBUFS) {
1901 kfree(buffer);
1902 /* Handle large packet */
1903 bufferlen = bytes_recvd;
1904 buffer = kmalloc(bytes_recvd, GFP_ATOMIC);
1905 if (!buffer)
1906 return;
1907 continue;
1908 }
1909
1910 /* Zero length indicates there are no more packets. */
1911 if (ret || !bytes_recvd)
1912 break;
1913
1914 /*
1915 * All incoming packets must be at least as large as a
1916 * response.
1917 */
1918 if (bytes_recvd <= sizeof(struct pci_response))
1919 continue;
1920 desc = (struct vmpacket_descriptor *)buffer;
1921
1922 switch (desc->type) {
1923 case VM_PKT_COMP:
1924
1925 /*
1926 * The host is trusted, and thus it's safe to interpret
1927 * this transaction ID as a pointer.
1928 */
1929 comp_packet = (struct pci_packet *)req_id;
1930 response = (struct pci_response *)buffer;
1931 comp_packet->completion_func(comp_packet->compl_ctxt,
1932 response,
1933 bytes_recvd);
1934 break;
1935
1936 case VM_PKT_DATA_INBAND:
1937
1938 new_message = (struct pci_incoming_message *)buffer;
1939 switch (new_message->message_type.type) {
1940 case PCI_BUS_RELATIONS:
1941
1942 bus_rel = (struct pci_bus_relations *)buffer;
1943 if (bytes_recvd <
1944 offsetof(struct pci_bus_relations, func) +
1945 (sizeof(struct pci_function_description) *
1946 (bus_rel->device_count))) {
1947 dev_err(&hbus->hdev->device,
1948 "bus relations too small\n");
1949 break;
1950 }
1951
1952 hv_pci_devices_present(hbus, bus_rel);
1953 break;
1954
1955 case PCI_EJECT:
1956
1957 dev_message = (struct pci_dev_incoming *)buffer;
1958 hpdev = get_pcichild_wslot(hbus,
1959 dev_message->wslot.slot);
1960 if (hpdev) {
1961 hv_pci_eject_device(hpdev);
1962 put_pcichild(hpdev,
1963 hv_pcidev_ref_by_slot);
1964 }
1965 break;
1966
1967 default:
1968 dev_warn(&hbus->hdev->device,
1969 "Unimplemented protocol message %x\n",
1970 new_message->message_type.type);
1971 break;
1972 }
1973 break;
1974
1975 default:
1976 dev_err(&hbus->hdev->device,
1977 "unhandled packet type %d, tid %llx len %d\n",
1978 desc->type, req_id, bytes_recvd);
1979 break;
1980 }
1981 }
1982
1983 kfree(buffer);
1984 }
1985
1986 /**
1987 * hv_pci_protocol_negotiation() - Set up protocol
1988 * @hdev: VMBus's tracking struct for this root PCI bus
1989 *
1990 * This driver is intended to support running on Windows 10
1991 * (server) and later versions. It will not run on earlier
1992 * versions, as they assume that many of the operations which
1993 * Linux needs accomplished with a spinlock held were done via
1994 * asynchronous messaging via VMBus. Windows 10 increases the
1995 * surface area of PCI emulation so that these actions can take
1996 * place by suspending a virtual processor for their duration.
1997 *
1998 * This function negotiates the channel protocol version,
1999 * failing if the host doesn't support the necessary protocol
2000 * level.
2001 */
2002 static int hv_pci_protocol_negotiation(struct hv_device *hdev)
2003 {
2004 struct pci_version_request *version_req;
2005 struct hv_pci_compl comp_pkt;
2006 struct pci_packet *pkt;
2007 int ret;
2008 int i;
2009
2010 /*
2011 * Initiate the handshake with the host and negotiate
2012 * a version that the host can support. We start with the
2013 * highest version number and go down if the host cannot
2014 * support it.
2015 */
2016 pkt = kzalloc(sizeof(*pkt) + sizeof(*version_req), GFP_KERNEL);
2017 if (!pkt)
2018 return -ENOMEM;
2019
2020 init_completion(&comp_pkt.host_event);
2021 pkt->completion_func = hv_pci_generic_compl;
2022 pkt->compl_ctxt = &comp_pkt;
2023 version_req = (struct pci_version_request *)&pkt->message;
2024 version_req->message_type.type = PCI_QUERY_PROTOCOL_VERSION;
2025
2026 for (i = 0; i < ARRAY_SIZE(pci_protocol_versions); i++) {
2027 version_req->protocol_version = pci_protocol_versions[i];
2028 ret = vmbus_sendpacket(hdev->channel, version_req,
2029 sizeof(struct pci_version_request),
2030 (unsigned long)pkt, VM_PKT_DATA_INBAND,
2031 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
2032 if (ret) {
2033 dev_err(&hdev->device,
2034 "PCI Pass-through VSP failed sending version reqquest: %#x",
2035 ret);
2036 goto exit;
2037 }
2038
2039 wait_for_completion(&comp_pkt.host_event);
2040
2041 if (comp_pkt.completion_status >= 0) {
2042 pci_protocol_version = pci_protocol_versions[i];
2043 dev_info(&hdev->device,
2044 "PCI VMBus probing: Using version %#x\n",
2045 pci_protocol_version);
2046 goto exit;
2047 }
2048
2049 if (comp_pkt.completion_status != STATUS_REVISION_MISMATCH) {
2050 dev_err(&hdev->device,
2051 "PCI Pass-through VSP failed version request: %#x",
2052 comp_pkt.completion_status);
2053 ret = -EPROTO;
2054 goto exit;
2055 }
2056
2057 reinit_completion(&comp_pkt.host_event);
2058 }
2059
2060 dev_err(&hdev->device,
2061 "PCI pass-through VSP failed to find supported version");
2062 ret = -EPROTO;
2063
2064 exit:
2065 kfree(pkt);
2066 return ret;
2067 }
2068
2069 /**
2070 * hv_pci_free_bridge_windows() - Release memory regions for the
2071 * bus
2072 * @hbus: Root PCI bus, as understood by this driver
2073 */
2074 static void hv_pci_free_bridge_windows(struct hv_pcibus_device *hbus)
2075 {
2076 /*
2077 * Set the resources back to the way they looked when they
2078 * were allocated by setting IORESOURCE_BUSY again.
2079 */
2080
2081 if (hbus->low_mmio_space && hbus->low_mmio_res) {
2082 hbus->low_mmio_res->flags |= IORESOURCE_BUSY;
2083 vmbus_free_mmio(hbus->low_mmio_res->start,
2084 resource_size(hbus->low_mmio_res));
2085 }
2086
2087 if (hbus->high_mmio_space && hbus->high_mmio_res) {
2088 hbus->high_mmio_res->flags |= IORESOURCE_BUSY;
2089 vmbus_free_mmio(hbus->high_mmio_res->start,
2090 resource_size(hbus->high_mmio_res));
2091 }
2092 }
2093
2094 /**
2095 * hv_pci_allocate_bridge_windows() - Allocate memory regions
2096 * for the bus
2097 * @hbus: Root PCI bus, as understood by this driver
2098 *
2099 * This function calls vmbus_allocate_mmio(), which is itself a
2100 * bit of a compromise. Ideally, we might change the pnp layer
2101 * in the kernel such that it comprehends either PCI devices
2102 * which are "grandchildren of ACPI," with some intermediate bus
2103 * node (in this case, VMBus) or change it such that it
2104 * understands VMBus. The pnp layer, however, has been declared
2105 * deprecated, and not subject to change.
2106 *
2107 * The workaround, implemented here, is to ask VMBus to allocate
2108 * MMIO space for this bus. VMBus itself knows which ranges are
2109 * appropriate by looking at its own ACPI objects. Then, after
2110 * these ranges are claimed, they're modified to look like they
2111 * would have looked if the ACPI and pnp code had allocated
2112 * bridge windows. These descriptors have to exist in this form
2113 * in order to satisfy the code which will get invoked when the
2114 * endpoint PCI function driver calls request_mem_region() or
2115 * request_mem_region_exclusive().
2116 *
2117 * Return: 0 on success, -errno on failure
2118 */
2119 static int hv_pci_allocate_bridge_windows(struct hv_pcibus_device *hbus)
2120 {
2121 resource_size_t align;
2122 int ret;
2123
2124 if (hbus->low_mmio_space) {
2125 align = 1ULL << (63 - __builtin_clzll(hbus->low_mmio_space));
2126 ret = vmbus_allocate_mmio(&hbus->low_mmio_res, hbus->hdev, 0,
2127 (u64)(u32)0xffffffff,
2128 hbus->low_mmio_space,
2129 align, false);
2130 if (ret) {
2131 dev_err(&hbus->hdev->device,
2132 "Need %#llx of low MMIO space. Consider reconfiguring the VM.\n",
2133 hbus->low_mmio_space);
2134 return ret;
2135 }
2136
2137 /* Modify this resource to become a bridge window. */
2138 hbus->low_mmio_res->flags |= IORESOURCE_WINDOW;
2139 hbus->low_mmio_res->flags &= ~IORESOURCE_BUSY;
2140 pci_add_resource(&hbus->resources_for_children,
2141 hbus->low_mmio_res);
2142 }
2143
2144 if (hbus->high_mmio_space) {
2145 align = 1ULL << (63 - __builtin_clzll(hbus->high_mmio_space));
2146 ret = vmbus_allocate_mmio(&hbus->high_mmio_res, hbus->hdev,
2147 0x100000000, -1,
2148 hbus->high_mmio_space, align,
2149 false);
2150 if (ret) {
2151 dev_err(&hbus->hdev->device,
2152 "Need %#llx of high MMIO space. Consider reconfiguring the VM.\n",
2153 hbus->high_mmio_space);
2154 goto release_low_mmio;
2155 }
2156
2157 /* Modify this resource to become a bridge window. */
2158 hbus->high_mmio_res->flags |= IORESOURCE_WINDOW;
2159 hbus->high_mmio_res->flags &= ~IORESOURCE_BUSY;
2160 pci_add_resource(&hbus->resources_for_children,
2161 hbus->high_mmio_res);
2162 }
2163
2164 return 0;
2165
2166 release_low_mmio:
2167 if (hbus->low_mmio_res) {
2168 vmbus_free_mmio(hbus->low_mmio_res->start,
2169 resource_size(hbus->low_mmio_res));
2170 }
2171
2172 return ret;
2173 }
2174
2175 /**
2176 * hv_allocate_config_window() - Find MMIO space for PCI Config
2177 * @hbus: Root PCI bus, as understood by this driver
2178 *
2179 * This function claims memory-mapped I/O space for accessing
2180 * configuration space for the functions on this bus.
2181 *
2182 * Return: 0 on success, -errno on failure
2183 */
2184 static int hv_allocate_config_window(struct hv_pcibus_device *hbus)
2185 {
2186 int ret;
2187
2188 /*
2189 * Set up a region of MMIO space to use for accessing configuration
2190 * space.
2191 */
2192 ret = vmbus_allocate_mmio(&hbus->mem_config, hbus->hdev, 0, -1,
2193 PCI_CONFIG_MMIO_LENGTH, 0x1000, false);
2194 if (ret)
2195 return ret;
2196
2197 /*
2198 * vmbus_allocate_mmio() gets used for allocating both device endpoint
2199 * resource claims (those which cannot be overlapped) and the ranges
2200 * which are valid for the children of this bus, which are intended
2201 * to be overlapped by those children. Set the flag on this claim
2202 * meaning that this region can't be overlapped.
2203 */
2204
2205 hbus->mem_config->flags |= IORESOURCE_BUSY;
2206
2207 return 0;
2208 }
2209
2210 static void hv_free_config_window(struct hv_pcibus_device *hbus)
2211 {
2212 vmbus_free_mmio(hbus->mem_config->start, PCI_CONFIG_MMIO_LENGTH);
2213 }
2214
2215 /**
2216 * hv_pci_enter_d0() - Bring the "bus" into the D0 power state
2217 * @hdev: VMBus's tracking struct for this root PCI bus
2218 *
2219 * Return: 0 on success, -errno on failure
2220 */
2221 static int hv_pci_enter_d0(struct hv_device *hdev)
2222 {
2223 struct hv_pcibus_device *hbus = hv_get_drvdata(hdev);
2224 struct pci_bus_d0_entry *d0_entry;
2225 struct hv_pci_compl comp_pkt;
2226 struct pci_packet *pkt;
2227 int ret;
2228
2229 /*
2230 * Tell the host that the bus is ready to use, and moved into the
2231 * powered-on state. This includes telling the host which region
2232 * of memory-mapped I/O space has been chosen for configuration space
2233 * access.
2234 */
2235 pkt = kzalloc(sizeof(*pkt) + sizeof(*d0_entry), GFP_KERNEL);
2236 if (!pkt)
2237 return -ENOMEM;
2238
2239 init_completion(&comp_pkt.host_event);
2240 pkt->completion_func = hv_pci_generic_compl;
2241 pkt->compl_ctxt = &comp_pkt;
2242 d0_entry = (struct pci_bus_d0_entry *)&pkt->message;
2243 d0_entry->message_type.type = PCI_BUS_D0ENTRY;
2244 d0_entry->mmio_base = hbus->mem_config->start;
2245
2246 ret = vmbus_sendpacket(hdev->channel, d0_entry, sizeof(*d0_entry),
2247 (unsigned long)pkt, VM_PKT_DATA_INBAND,
2248 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
2249 if (ret)
2250 goto exit;
2251
2252 wait_for_completion(&comp_pkt.host_event);
2253
2254 if (comp_pkt.completion_status < 0) {
2255 dev_err(&hdev->device,
2256 "PCI Pass-through VSP failed D0 Entry with status %x\n",
2257 comp_pkt.completion_status);
2258 ret = -EPROTO;
2259 goto exit;
2260 }
2261
2262 ret = 0;
2263
2264 exit:
2265 kfree(pkt);
2266 return ret;
2267 }
2268
2269 /**
2270 * hv_pci_query_relations() - Ask host to send list of child
2271 * devices
2272 * @hdev: VMBus's tracking struct for this root PCI bus
2273 *
2274 * Return: 0 on success, -errno on failure
2275 */
2276 static int hv_pci_query_relations(struct hv_device *hdev)
2277 {
2278 struct hv_pcibus_device *hbus = hv_get_drvdata(hdev);
2279 struct pci_message message;
2280 struct completion comp;
2281 int ret;
2282
2283 /* Ask the host to send along the list of child devices */
2284 init_completion(&comp);
2285 if (cmpxchg(&hbus->survey_event, NULL, &comp))
2286 return -ENOTEMPTY;
2287
2288 memset(&message, 0, sizeof(message));
2289 message.type = PCI_QUERY_BUS_RELATIONS;
2290
2291 ret = vmbus_sendpacket(hdev->channel, &message, sizeof(message),
2292 0, VM_PKT_DATA_INBAND, 0);
2293 if (ret)
2294 return ret;
2295
2296 wait_for_completion(&comp);
2297 return 0;
2298 }
2299
2300 /**
2301 * hv_send_resources_allocated() - Report local resource choices
2302 * @hdev: VMBus's tracking struct for this root PCI bus
2303 *
2304 * The host OS is expecting to be sent a request as a message
2305 * which contains all the resources that the device will use.
2306 * The response contains those same resources, "translated"
2307 * which is to say, the values which should be used by the
2308 * hardware, when it delivers an interrupt. (MMIO resources are
2309 * used in local terms.) This is nice for Windows, and lines up
2310 * with the FDO/PDO split, which doesn't exist in Linux. Linux
2311 * is deeply expecting to scan an emulated PCI configuration
2312 * space. So this message is sent here only to drive the state
2313 * machine on the host forward.
2314 *
2315 * Return: 0 on success, -errno on failure
2316 */
2317 static int hv_send_resources_allocated(struct hv_device *hdev)
2318 {
2319 struct hv_pcibus_device *hbus = hv_get_drvdata(hdev);
2320 struct pci_resources_assigned *res_assigned;
2321 struct pci_resources_assigned2 *res_assigned2;
2322 struct hv_pci_compl comp_pkt;
2323 struct hv_pci_dev *hpdev;
2324 struct pci_packet *pkt;
2325 size_t size_res;
2326 u32 wslot;
2327 int ret;
2328
2329 size_res = (pci_protocol_version < PCI_PROTOCOL_VERSION_1_2)
2330 ? sizeof(*res_assigned) : sizeof(*res_assigned2);
2331
2332 pkt = kmalloc(sizeof(*pkt) + size_res, GFP_KERNEL);
2333 if (!pkt)
2334 return -ENOMEM;
2335
2336 ret = 0;
2337
2338 for (wslot = 0; wslot < 256; wslot++) {
2339 hpdev = get_pcichild_wslot(hbus, wslot);
2340 if (!hpdev)
2341 continue;
2342
2343 memset(pkt, 0, sizeof(*pkt) + size_res);
2344 init_completion(&comp_pkt.host_event);
2345 pkt->completion_func = hv_pci_generic_compl;
2346 pkt->compl_ctxt = &comp_pkt;
2347
2348 if (pci_protocol_version < PCI_PROTOCOL_VERSION_1_2) {
2349 res_assigned =
2350 (struct pci_resources_assigned *)&pkt->message;
2351 res_assigned->message_type.type =
2352 PCI_RESOURCES_ASSIGNED;
2353 res_assigned->wslot.slot = hpdev->desc.win_slot.slot;
2354 } else {
2355 res_assigned2 =
2356 (struct pci_resources_assigned2 *)&pkt->message;
2357 res_assigned2->message_type.type =
2358 PCI_RESOURCES_ASSIGNED2;
2359 res_assigned2->wslot.slot = hpdev->desc.win_slot.slot;
2360 }
2361 put_pcichild(hpdev, hv_pcidev_ref_by_slot);
2362
2363 ret = vmbus_sendpacket(hdev->channel, &pkt->message,
2364 size_res, (unsigned long)pkt,
2365 VM_PKT_DATA_INBAND,
2366 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
2367 if (ret)
2368 break;
2369
2370 wait_for_completion(&comp_pkt.host_event);
2371
2372 if (comp_pkt.completion_status < 0) {
2373 ret = -EPROTO;
2374 dev_err(&hdev->device,
2375 "resource allocated returned 0x%x",
2376 comp_pkt.completion_status);
2377 break;
2378 }
2379 }
2380
2381 kfree(pkt);
2382 return ret;
2383 }
2384
2385 /**
2386 * hv_send_resources_released() - Report local resources
2387 * released
2388 * @hdev: VMBus's tracking struct for this root PCI bus
2389 *
2390 * Return: 0 on success, -errno on failure
2391 */
2392 static int hv_send_resources_released(struct hv_device *hdev)
2393 {
2394 struct hv_pcibus_device *hbus = hv_get_drvdata(hdev);
2395 struct pci_child_message pkt;
2396 struct hv_pci_dev *hpdev;
2397 u32 wslot;
2398 int ret;
2399
2400 for (wslot = 0; wslot < 256; wslot++) {
2401 hpdev = get_pcichild_wslot(hbus, wslot);
2402 if (!hpdev)
2403 continue;
2404
2405 memset(&pkt, 0, sizeof(pkt));
2406 pkt.message_type.type = PCI_RESOURCES_RELEASED;
2407 pkt.wslot.slot = hpdev->desc.win_slot.slot;
2408
2409 put_pcichild(hpdev, hv_pcidev_ref_by_slot);
2410
2411 ret = vmbus_sendpacket(hdev->channel, &pkt, sizeof(pkt), 0,
2412 VM_PKT_DATA_INBAND, 0);
2413 if (ret)
2414 return ret;
2415 }
2416
2417 return 0;
2418 }
2419
2420 static void get_hvpcibus(struct hv_pcibus_device *hbus)
2421 {
2422 atomic_inc(&hbus->remove_lock);
2423 }
2424
2425 static void put_hvpcibus(struct hv_pcibus_device *hbus)
2426 {
2427 if (atomic_dec_and_test(&hbus->remove_lock))
2428 complete(&hbus->remove_event);
2429 }
2430
2431 /**
2432 * hv_pci_probe() - New VMBus channel probe, for a root PCI bus
2433 * @hdev: VMBus's tracking struct for this root PCI bus
2434 * @dev_id: Identifies the device itself
2435 *
2436 * Return: 0 on success, -errno on failure
2437 */
2438 static int hv_pci_probe(struct hv_device *hdev,
2439 const struct hv_vmbus_device_id *dev_id)
2440 {
2441 struct hv_pcibus_device *hbus;
2442 int ret;
2443
2444 /*
2445 * hv_pcibus_device contains the hypercall arguments for retargeting in
2446 * hv_irq_unmask(). Those must not cross a page boundary.
2447 */
2448 BUILD_BUG_ON(sizeof(*hbus) > PAGE_SIZE);
2449
2450 hbus = (struct hv_pcibus_device *)get_zeroed_page(GFP_KERNEL);
2451 if (!hbus)
2452 return -ENOMEM;
2453 hbus->state = hv_pcibus_init;
2454
2455 /*
2456 * The PCI bus "domain" is what is called "segment" in ACPI and
2457 * other specs. Pull it from the instance ID, to get something
2458 * unique. Bytes 8 and 9 are what is used in Windows guests, so
2459 * do the same thing for consistency. Note that, since this code
2460 * only runs in a Hyper-V VM, Hyper-V can (and does) guarantee
2461 * that (1) the only domain in use for something that looks like
2462 * a physical PCI bus (which is actually emulated by the
2463 * hypervisor) is domain 0 and (2) there will be no overlap
2464 * between domains derived from these instance IDs in the same
2465 * VM.
2466 */
2467 hbus->sysdata.domain = hdev->dev_instance.b[9] |
2468 hdev->dev_instance.b[8] << 8;
2469
2470 hbus->hdev = hdev;
2471 atomic_inc(&hbus->remove_lock);
2472 INIT_LIST_HEAD(&hbus->children);
2473 INIT_LIST_HEAD(&hbus->dr_list);
2474 INIT_LIST_HEAD(&hbus->resources_for_children);
2475 spin_lock_init(&hbus->config_lock);
2476 spin_lock_init(&hbus->device_list_lock);
2477 spin_lock_init(&hbus->retarget_msi_interrupt_lock);
2478 sema_init(&hbus->enum_sem, 1);
2479 init_completion(&hbus->remove_event);
2480
2481 ret = vmbus_open(hdev->channel, pci_ring_size, pci_ring_size, NULL, 0,
2482 hv_pci_onchannelcallback, hbus);
2483 if (ret)
2484 goto free_bus;
2485
2486 hv_set_drvdata(hdev, hbus);
2487
2488 ret = hv_pci_protocol_negotiation(hdev);
2489 if (ret)
2490 goto close;
2491
2492 ret = hv_allocate_config_window(hbus);
2493 if (ret)
2494 goto close;
2495
2496 hbus->cfg_addr = ioremap(hbus->mem_config->start,
2497 PCI_CONFIG_MMIO_LENGTH);
2498 if (!hbus->cfg_addr) {
2499 dev_err(&hdev->device,
2500 "Unable to map a virtual address for config space\n");
2501 ret = -ENOMEM;
2502 goto free_config;
2503 }
2504
2505 hbus->sysdata.fwnode = irq_domain_alloc_fwnode(hbus);
2506 if (!hbus->sysdata.fwnode) {
2507 ret = -ENOMEM;
2508 goto unmap;
2509 }
2510
2511 ret = hv_pcie_init_irq_domain(hbus);
2512 if (ret)
2513 goto free_fwnode;
2514
2515 ret = hv_pci_query_relations(hdev);
2516 if (ret)
2517 goto free_irq_domain;
2518
2519 ret = hv_pci_enter_d0(hdev);
2520 if (ret)
2521 goto free_irq_domain;
2522
2523 ret = hv_pci_allocate_bridge_windows(hbus);
2524 if (ret)
2525 goto free_irq_domain;
2526
2527 ret = hv_send_resources_allocated(hdev);
2528 if (ret)
2529 goto free_windows;
2530
2531 prepopulate_bars(hbus);
2532
2533 hbus->state = hv_pcibus_probed;
2534
2535 ret = create_root_hv_pci_bus(hbus);
2536 if (ret)
2537 goto free_windows;
2538
2539 return 0;
2540
2541 free_windows:
2542 hv_pci_free_bridge_windows(hbus);
2543 free_irq_domain:
2544 irq_domain_remove(hbus->irq_domain);
2545 free_fwnode:
2546 irq_domain_free_fwnode(hbus->sysdata.fwnode);
2547 unmap:
2548 iounmap(hbus->cfg_addr);
2549 free_config:
2550 hv_free_config_window(hbus);
2551 close:
2552 vmbus_close(hdev->channel);
2553 free_bus:
2554 free_page((unsigned long)hbus);
2555 return ret;
2556 }
2557
2558 static void hv_pci_bus_exit(struct hv_device *hdev)
2559 {
2560 struct hv_pcibus_device *hbus = hv_get_drvdata(hdev);
2561 struct {
2562 struct pci_packet teardown_packet;
2563 u8 buffer[sizeof(struct pci_message)];
2564 } pkt;
2565 struct pci_bus_relations relations;
2566 struct hv_pci_compl comp_pkt;
2567 int ret;
2568
2569 /*
2570 * After the host sends the RESCIND_CHANNEL message, it doesn't
2571 * access the per-channel ringbuffer any longer.
2572 */
2573 if (hdev->channel->rescind)
2574 return;
2575
2576 /* Delete any children which might still exist. */
2577 memset(&relations, 0, sizeof(relations));
2578 hv_pci_devices_present(hbus, &relations);
2579
2580 ret = hv_send_resources_released(hdev);
2581 if (ret)
2582 dev_err(&hdev->device,
2583 "Couldn't send resources released packet(s)\n");
2584
2585 memset(&pkt.teardown_packet, 0, sizeof(pkt.teardown_packet));
2586 init_completion(&comp_pkt.host_event);
2587 pkt.teardown_packet.completion_func = hv_pci_generic_compl;
2588 pkt.teardown_packet.compl_ctxt = &comp_pkt;
2589 pkt.teardown_packet.message[0].type = PCI_BUS_D0EXIT;
2590
2591 ret = vmbus_sendpacket(hdev->channel, &pkt.teardown_packet.message,
2592 sizeof(struct pci_message),
2593 (unsigned long)&pkt.teardown_packet,
2594 VM_PKT_DATA_INBAND,
2595 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
2596 if (!ret)
2597 wait_for_completion_timeout(&comp_pkt.host_event, 10 * HZ);
2598 }
2599
2600 /**
2601 * hv_pci_remove() - Remove routine for this VMBus channel
2602 * @hdev: VMBus's tracking struct for this root PCI bus
2603 *
2604 * Return: 0 on success, -errno on failure
2605 */
2606 static int hv_pci_remove(struct hv_device *hdev)
2607 {
2608 struct hv_pcibus_device *hbus;
2609
2610 hbus = hv_get_drvdata(hdev);
2611 if (hbus->state == hv_pcibus_installed) {
2612 /* Remove the bus from PCI's point of view. */
2613 pci_lock_rescan_remove();
2614 pci_stop_root_bus(hbus->pci_bus);
2615 pci_remove_root_bus(hbus->pci_bus);
2616 pci_unlock_rescan_remove();
2617 hbus->state = hv_pcibus_removed;
2618 }
2619
2620 hv_pci_bus_exit(hdev);
2621
2622 vmbus_close(hdev->channel);
2623
2624 iounmap(hbus->cfg_addr);
2625 hv_free_config_window(hbus);
2626 pci_free_resource_list(&hbus->resources_for_children);
2627 hv_pci_free_bridge_windows(hbus);
2628 irq_domain_remove(hbus->irq_domain);
2629 irq_domain_free_fwnode(hbus->sysdata.fwnode);
2630 put_hvpcibus(hbus);
2631 wait_for_completion(&hbus->remove_event);
2632 free_page((unsigned long)hbus);
2633 return 0;
2634 }
2635
2636 static const struct hv_vmbus_device_id hv_pci_id_table[] = {
2637 /* PCI Pass-through Class ID */
2638 /* 44C4F61D-4444-4400-9D52-802E27EDE19F */
2639 { HV_PCIE_GUID, },
2640 { },
2641 };
2642
2643 MODULE_DEVICE_TABLE(vmbus, hv_pci_id_table);
2644
2645 static struct hv_driver hv_pci_drv = {
2646 .name = "hv_pci",
2647 .id_table = hv_pci_id_table,
2648 .probe = hv_pci_probe,
2649 .remove = hv_pci_remove,
2650 };
2651
2652 static void __exit exit_hv_pci_drv(void)
2653 {
2654 vmbus_driver_unregister(&hv_pci_drv);
2655 }
2656
2657 static int __init init_hv_pci_drv(void)
2658 {
2659 return vmbus_driver_register(&hv_pci_drv);
2660 }
2661
2662 module_init(init_hv_pci_drv);
2663 module_exit(exit_hv_pci_drv);
2664
2665 MODULE_DESCRIPTION("Hyper-V PCI");
2666 MODULE_LICENSE("GPL v2");