mirror of
https://github.com/torvalds/linux.git
synced 2026-05-12 16:18:45 +02:00
In all cases in which a struct acpi_driver is used for binding a driver to an ACPI device object, a corresponding platform device is created by the ACPI core and that device is regarded as a proper representation of underlying hardware. Accordingly, a struct platform_driver should be used by driver code to bind to that device. There are multiple reasons why drivers should not bind directly to ACPI device objects [1]. Overall, it is better to bind drivers to platform devices than to their ACPI companions, so convert the PTP VMware ACPI driver to a platform one. While this is not expected to alter functionality, it changes sysfs layout and so it will be visible to user space. Link: https://lore.kernel.org/all/2396510.ElGaqSPkdT@rafael.j.wysocki/ [1] Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Reviewed-by: Simon Horman <horms@kernel.org> Link: https://patch.msgid.link/12883468.O9o76ZdvQC@rafael.j.wysocki Signed-off-by: Jakub Kicinski <kuba@kernel.org>
138 lines
2.9 KiB
C
138 lines
2.9 KiB
C
// SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause
|
|
/*
|
|
* Copyright (C) 2020 VMware, Inc., Palo Alto, CA., USA
|
|
*
|
|
* PTP clock driver for VMware precision clock virtual device.
|
|
*/
|
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
#include <linux/acpi.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/ptp_clock_kernel.h>
|
|
#include <asm/hypervisor.h>
|
|
#include <asm/vmware.h>
|
|
|
|
#define VMWARE_CMD_PCLK(nr) ((nr << 16) | 97)
|
|
#define VMWARE_CMD_PCLK_GETTIME VMWARE_CMD_PCLK(0)
|
|
|
|
static struct acpi_device *ptp_vmw_acpi_device;
|
|
static struct ptp_clock *ptp_vmw_clock;
|
|
|
|
|
|
static int ptp_vmw_pclk_read(u64 *ns)
|
|
{
|
|
u32 ret, nsec_hi, nsec_lo;
|
|
|
|
ret = vmware_hypercall3(VMWARE_CMD_PCLK_GETTIME, 0,
|
|
&nsec_hi, &nsec_lo);
|
|
if (ret == 0)
|
|
*ns = ((u64)nsec_hi << 32) | nsec_lo;
|
|
return ret;
|
|
}
|
|
|
|
/*
|
|
* PTP clock ops.
|
|
*/
|
|
|
|
static int ptp_vmw_adjtime(struct ptp_clock_info *info, s64 delta)
|
|
{
|
|
return -EOPNOTSUPP;
|
|
}
|
|
|
|
static int ptp_vmw_adjfine(struct ptp_clock_info *info, long delta)
|
|
{
|
|
return -EOPNOTSUPP;
|
|
}
|
|
|
|
static int ptp_vmw_gettime(struct ptp_clock_info *info, struct timespec64 *ts)
|
|
{
|
|
u64 ns;
|
|
|
|
if (ptp_vmw_pclk_read(&ns) != 0)
|
|
return -EIO;
|
|
*ts = ns_to_timespec64(ns);
|
|
return 0;
|
|
}
|
|
|
|
static int ptp_vmw_settime(struct ptp_clock_info *info,
|
|
const struct timespec64 *ts)
|
|
{
|
|
return -EOPNOTSUPP;
|
|
}
|
|
|
|
static int ptp_vmw_enable(struct ptp_clock_info *info,
|
|
struct ptp_clock_request *request, int on)
|
|
{
|
|
return -EOPNOTSUPP;
|
|
}
|
|
|
|
static struct ptp_clock_info ptp_vmw_clock_info = {
|
|
.owner = THIS_MODULE,
|
|
.name = "ptp_vmw",
|
|
.max_adj = 0,
|
|
.adjtime = ptp_vmw_adjtime,
|
|
.adjfine = ptp_vmw_adjfine,
|
|
.gettime64 = ptp_vmw_gettime,
|
|
.settime64 = ptp_vmw_settime,
|
|
.enable = ptp_vmw_enable,
|
|
};
|
|
|
|
/*
|
|
* ACPI driver ops for VMware "precision clock" virtual device.
|
|
*/
|
|
|
|
static int ptp_vmw_acpi_probe(struct platform_device *pdev)
|
|
{
|
|
ptp_vmw_clock = ptp_clock_register(&ptp_vmw_clock_info, NULL);
|
|
if (IS_ERR(ptp_vmw_clock)) {
|
|
pr_err("failed to register ptp clock\n");
|
|
return PTR_ERR(ptp_vmw_clock);
|
|
}
|
|
|
|
ptp_vmw_acpi_device = ACPI_COMPANION(&pdev->dev);
|
|
return 0;
|
|
}
|
|
|
|
static void ptp_vmw_acpi_remove(struct platform_device *pdev)
|
|
{
|
|
ptp_clock_unregister(ptp_vmw_clock);
|
|
}
|
|
|
|
static const struct acpi_device_id ptp_vmw_acpi_device_ids[] = {
|
|
{ "VMW0005", 0 },
|
|
{ "", 0 },
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(acpi, ptp_vmw_acpi_device_ids);
|
|
|
|
static struct platform_driver ptp_vmw_acpi_driver = {
|
|
.probe = ptp_vmw_acpi_probe,
|
|
.remove = ptp_vmw_acpi_remove,
|
|
.driver = {
|
|
.name = "ptp_vmw_acpi",
|
|
.acpi_match_table = ptp_vmw_acpi_device_ids,
|
|
},
|
|
};
|
|
|
|
static int __init ptp_vmw_init(void)
|
|
{
|
|
if (x86_hyper_type != X86_HYPER_VMWARE)
|
|
return -1;
|
|
return platform_driver_register(&ptp_vmw_acpi_driver);
|
|
}
|
|
|
|
static void __exit ptp_vmw_exit(void)
|
|
{
|
|
platform_driver_unregister(&ptp_vmw_acpi_driver);
|
|
}
|
|
|
|
module_init(ptp_vmw_init);
|
|
module_exit(ptp_vmw_exit);
|
|
|
|
MODULE_DESCRIPTION("VMware virtual PTP clock driver");
|
|
MODULE_AUTHOR("VMware, Inc.");
|
|
MODULE_LICENSE("Dual BSD/GPL");
|