Skip to content

Commit

Permalink
Drivers: hv: vmbus: Implement suspend/resume for VSC drivers for hibe…
Browse files Browse the repository at this point in the history
…rnation

The high-level VSC drivers will implement device-specific callbacks.

Signed-off-by: Dexuan Cui <[email protected]>
Reviewed-by: Michael Kelley <[email protected]>
Signed-off-by: Sasha Levin <[email protected]>
  • Loading branch information
dcui authored and Sasha Levin committed Sep 6, 2019
1 parent ed56ef6 commit 271b222
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
46 changes: 46 additions & 0 deletions drivers/hv/vmbus_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -911,6 +911,43 @@ static void vmbus_shutdown(struct device *child_device)
drv->shutdown(dev);
}

/*
* vmbus_suspend - Suspend a vmbus device
*/
static int vmbus_suspend(struct device *child_device)
{
struct hv_driver *drv;
struct hv_device *dev = device_to_hv_device(child_device);

/* The device may not be attached yet */
if (!child_device->driver)
return 0;

drv = drv_to_hv_drv(child_device->driver);
if (!drv->suspend)
return -EOPNOTSUPP;

return drv->suspend(dev);
}

/*
* vmbus_resume - Resume a vmbus device
*/
static int vmbus_resume(struct device *child_device)
{
struct hv_driver *drv;
struct hv_device *dev = device_to_hv_device(child_device);

/* The device may not be attached yet */
if (!child_device->driver)
return 0;

drv = drv_to_hv_drv(child_device->driver);
if (!drv->resume)
return -EOPNOTSUPP;

return drv->resume(dev);
}

/*
* vmbus_device_release - Final callback release of the vmbus child device
Expand All @@ -926,6 +963,14 @@ static void vmbus_device_release(struct device *device)
kfree(hv_dev);
}

/*
* Note: we must use SET_NOIRQ_SYSTEM_SLEEP_PM_OPS rather than
* SET_SYSTEM_SLEEP_PM_OPS: see the comment before vmbus_bus_pm.
*/
static const struct dev_pm_ops vmbus_pm = {
SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(vmbus_suspend, vmbus_resume)
};

/* The one and only one */
static struct bus_type hv_bus = {
.name = "vmbus",
Expand All @@ -936,6 +981,7 @@ static struct bus_type hv_bus = {
.uevent = vmbus_uevent,
.dev_groups = vmbus_dev_groups,
.drv_groups = vmbus_drv_groups,
.pm = &vmbus_pm,
};

struct onmessage_work_context {
Expand Down
3 changes: 3 additions & 0 deletions include/linux/hyperv.h
Original file line number Diff line number Diff line change
Expand Up @@ -1157,6 +1157,9 @@ struct hv_driver {
int (*remove)(struct hv_device *);
void (*shutdown)(struct hv_device *);

int (*suspend)(struct hv_device *);
int (*resume)(struct hv_device *);

};

/* Base device object */
Expand Down

0 comments on commit 271b222

Please sign in to comment.