Merge tag 'block-5.11-2021-01-10' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / drivers / pci / controller / pci-hyperv-intf.c
blobcc96be4503606f18973031a2541423434acd546c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (c) Microsoft Corporation.
5 * Author:
6 * Haiyang Zhang <haiyangz@microsoft.com>
8 * This small module is a helper driver allows other drivers to
9 * have a common interface with the Hyper-V PCI frontend driver.
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/hyperv.h>
18 struct hyperv_pci_block_ops hvpci_block_ops;
19 EXPORT_SYMBOL_GPL(hvpci_block_ops);
21 int hyperv_read_cfg_blk(struct pci_dev *dev, void *buf, unsigned int buf_len,
22 unsigned int block_id, unsigned int *bytes_returned)
24 if (!hvpci_block_ops.read_block)
25 return -EOPNOTSUPP;
27 return hvpci_block_ops.read_block(dev, buf, buf_len, block_id,
28 bytes_returned);
30 EXPORT_SYMBOL_GPL(hyperv_read_cfg_blk);
32 int hyperv_write_cfg_blk(struct pci_dev *dev, void *buf, unsigned int len,
33 unsigned int block_id)
35 if (!hvpci_block_ops.write_block)
36 return -EOPNOTSUPP;
38 return hvpci_block_ops.write_block(dev, buf, len, block_id);
40 EXPORT_SYMBOL_GPL(hyperv_write_cfg_blk);
42 int hyperv_reg_block_invalidate(struct pci_dev *dev, void *context,
43 void (*block_invalidate)(void *context,
44 u64 block_mask))
46 if (!hvpci_block_ops.reg_blk_invalidate)
47 return -EOPNOTSUPP;
49 return hvpci_block_ops.reg_blk_invalidate(dev, context,
50 block_invalidate);
52 EXPORT_SYMBOL_GPL(hyperv_reg_block_invalidate);
54 static void __exit exit_hv_pci_intf(void)
58 static int __init init_hv_pci_intf(void)
60 return 0;
63 module_init(init_hv_pci_intf);
64 module_exit(exit_hv_pci_intf);
66 MODULE_DESCRIPTION("Hyper-V PCI Interface");
67 MODULE_LICENSE("GPL v2");