lkml.org 
[lkml]   [2022]   [Jul]   [25]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
SubjectRe: [PATCH v5 1/5] vfio: Add the device features for the low power entry and exit
From
On 7/22/2022 4:04 AM, Alex Williamson wrote:
> On Tue, 19 Jul 2022 17:45:19 +0530
> Abhishek Sahu <abhsahu@nvidia.com> wrote:
>
>> This patch adds the following new device features for the low
>> power entry and exit in the header file. The implementation for the
>> same will be added in the subsequent patches.
>>
>> - VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY
>> - VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY_WITH_WAKEUP
>> - VFIO_DEVICE_FEATURE_LOW_POWER_EXIT
>>
>> With the standard registers, all power states cannot be achieved. The
>
> We're talking about standard PCI PM registers here, let's make that
> clear since we're adding a device agnostic interface here.
>
>> platform-based power management needs to be involved to go into the
>> lowest power state. For doing low power entry and exit with
>> platform-based power management, these device features can be used.
>>
>> The entry device feature has two variants. These two variants are mainly
>> to support the different behaviour for the low power entry.
>> If there is any access for the VFIO device on the host side, then the
>> device will be moved out of the low power state without the user's
>> guest driver involvement. Some devices (for example NVIDIA VGA or
>> 3D controller) require the user's guest driver involvement for
>> each low-power entry. In the first variant, the host can move the
>> device into low power without any guest driver involvement while
>
> Perhaps, "In the first variant, the host can return the device to low
> power automatically. The device will continue to attempt to reach low
> power until the low power exit feature is called."
>
>> in the second variant, the host will send a notification to the user
>> through eventfd and then the users guest driver needs to move
>> the device into low power.
>
> "In the second variant, if the device exits low power due to an access,
> the host kernel will signal the user via the provided eventfd and will
> not return the device to low power without a subsequent call to one of
> the low power entry features. A call to the low power exit feature is
> optional if the user provided eventfd is signaled."
>
>> These device features only support VFIO_DEVICE_FEATURE_SET operation.
>
> And PROBE.
>

Thanks Alex.
I will make the above changes in the commit message.

>> Signed-off-by: Abhishek Sahu <abhsahu@nvidia.com>
>> ---
>> include/uapi/linux/vfio.h | 55 +++++++++++++++++++++++++++++++++++++++
>> 1 file changed, 55 insertions(+)
>>
>> diff --git a/include/uapi/linux/vfio.h b/include/uapi/linux/vfio.h
>> index 733a1cddde30..08fd3482d22b 100644
>> --- a/include/uapi/linux/vfio.h
>> +++ b/include/uapi/linux/vfio.h
>> @@ -986,6 +986,61 @@ enum vfio_device_mig_state {
>> VFIO_DEVICE_STATE_RUNNING_P2P = 5,
>> };
>>
>> +/*
>> + * Upon VFIO_DEVICE_FEATURE_SET, move the VFIO device into the low power state
>> + * with the platform-based power management. This low power state will be
>
> This is really "allow the device to be moved into a low power state"
> rather than actually "move the device into" such a state though, right?
>

Yes. It will just allow the device to be moved into a low power state.
I have addressed all your suggestions in the uAPI description and
added the updated description in the last.

Can you please check that once and check if it looks okay.

>> + * internal to the VFIO driver and the user will not come to know which power
>> + * state is chosen. If any device access happens (either from the host or
>> + * the guest) when the device is in the low power state, then the host will
>> + * move the device out of the low power state first. Once the access has been
>> + * finished, then the host will move the device into the low power state again.
>> + * If the user wants that the device should not go into the low power state
>> + * again in this case, then the user should use the
>> + * VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY_WITH_WAKEUP device feature for the
>
> This should probably just read "For single shot low power support with
> wake-up notification, see
> VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY_WITH_WAKEUP below."
>
>> + * low power entry. The mmap'ed region access is not allowed till the low power
>> + * exit happens through VFIO_DEVICE_FEATURE_LOW_POWER_EXIT and will
>> + * generate the access fault.
>> + */
>> +#define VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY 3
>
> Note that Yishai's DMA logging set is competing for the same feature
> entries. We'll need to coordinate.
>

Since this is last week of rc, so will it possible to consider the updated
patches for next kernel (I can try to send them after complete testing the
by the end of this week). Otherwise, I can wait for next kernel and then
I can rebase my patches.

>> +
>> +/*
>> + * Upon VFIO_DEVICE_FEATURE_SET, move the VFIO device into the low power state
>> + * with the platform-based power management and provide support for the wake-up
>> + * notifications through eventfd. This low power state will be internal to the
>> + * VFIO driver and the user will not come to know which power state is chosen.
>> + * If any device access happens (either from the host or the guest) when the
>> + * device is in the low power state, then the host will move the device out of
>> + * the low power state first and a notification will be sent to the guest
>> + * through eventfd. Once the access is finished, the host will not move back
>> + * the device into the low power state. The guest should move the device into
>> + * the low power state again upon receiving the wakeup notification. The
>> + * notification will be generated only if the device physically went into the
>> + * low power state. If the low power entry has been disabled from the host
>> + * side, then the device will not go into the low power state even after
>> + * calling this device feature and then the device access does not require
>> + * wake-up. The mmap'ed region access is not allowed till the low power exit
>> + * happens. The low power exit can happen either through
>> + * VFIO_DEVICE_FEATURE_LOW_POWER_EXIT or through any other access (where the
>> + * wake-up notification has been generated).
>
> Seems this could leverage a lot more from the previous, simply stating
> that this has the same behavior as VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY
> with the exception that the user provides an eventfd for notification
> when the device resumes from low power and will not try to re-enter a
> low power state without a subsequent user call to one of the low power
> entry feature ioctls. It might also be worth covering the fact that
> device accesses by the user, including region and ioctl access, will
> also trigger the eventfd if that access triggers a resume.
>
> As I'm thinking about this, that latter clause is somewhat subtle.
> AIUI a user can call the low power entry with wakeup feature and
> proceed to do various ioctl and region (not mmap) accesses that could
> perpetually keep the device awake, or there may be dependent devices
> such that the device may never go to low power. It needs to be very
> clear that only if the wakeup eventfd has the device entered into and
> exited a low power state making the low power exit ioctl optional.
>

Yes. In my updated description, I have added more details.
Can you please check if that helps.

>> + */
>> +struct vfio_device_low_power_entry_with_wakeup {
>> + __s32 wakeup_eventfd;
>> + __u32 reserved;
>> +};
>> +
>> +#define VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY_WITH_WAKEUP 4
>> +
>> +/*
>> + * Upon VFIO_DEVICE_FEATURE_SET, move the VFIO device out of the low power
>> + * state.
>
> Any ioctl effectively does that, the key here is that the low power
> state may not be re-entered after this ioctl.
>
>> This device feature should be called only if the user has previously
>> + * put the device into the low power state either with
>> + * VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY or
>> + * VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY_WITH_WAKEUP device feature. If the
>
> Doesn't really seem worth mentioning, we need to protect against misuse
> regardless.
>
>> + * device is not in the low power state currently, this device feature will
>> + * return early with the success status.
>
> This is an implementation detail, it doesn't need to be part of the
> uAPI. Thanks,
>
> Alex
>
>> + */
>> +#define VFIO_DEVICE_FEATURE_LOW_POWER_EXIT 5
>> +
>> /* -------- API for Type1 VFIO IOMMU -------- */
>>
>> /**
>

/*
* Upon VFIO_DEVICE_FEATURE_SET, allow the device to be moved into a low power
* state with the platform-based power management. This low power state will
* be internal to the VFIO driver and the user will not come to know which
* power state is chosen. If any device access happens (either from the host
* or the guest) when the device is in the low power state, then the host will
* move the device out of the low power state first. Once the access has been
* finished, then the host will move the device into the low power state
* again. For single shot low power support with wake-up notification, see
* VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY_WITH_WAKEUP below. The mmap'ed region
* access is not allowed till the low power exit happens through
* VFIO_DEVICE_FEATURE_LOW_POWER_EXIT and will generate the access fault.
*/
#define VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY 3

/*
* This device feature has the same behavior as
* VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY with the exception that the user
* provides an eventfd for wake-up notification. When the device moves out of
* the low power state for the wake-up, the host will not try to re-enter a
* low power state without a subsequent user call to one of the low power
* entry device feature IOCTLs. The low power exit can happen either through
* VFIO_DEVICE_FEATURE_LOW_POWER_EXIT or through any other access (where the
* wake-up notification has been generated).
*
* The notification through eventfd will be generated only if the device has
* gone into the low power state after calling this device feature IOCTL.
* There are various cases where the device will not go into the low power
* state after calling this device feature IOCTL (for example, the low power
* entry has been disabled from the host side, the user keeps the device busy
* after calling this device feature IOCTL, there are dependent devices which
* block the device low power entry, etc.) and in such cases, the device access
* does not require wake-up. Also, the low power exit through
* VFIO_DEVICE_FEATURE_LOW_POWER_EXIT is mandatory for the cases where the
* wake-up notification has not been generated.
*/
struct vfio_device_low_power_entry_with_wakeup {
__s32 wakeup_eventfd;
__u32 reserved;
};

#define VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY_WITH_WAKEUP 4

/*
* Upon VFIO_DEVICE_FEATURE_SET, prevent the VFIO device low power state entry
* which has been previously allowed with VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY
* or VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY_WITH_WAKEUP device features.
*/
#define VFIO_DEVICE_FEATURE_LOW_POWER_EXIT 5

Thanks,
Abhishek

\
 
 \ /
  Last update: 2022-07-25 16:41    [W:0.077 / U:0.128 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site