OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

virtio-comment message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Re: [PATCH v5 1/1] Add SUSPEND bit to device status


On Tue, Feb 27, 2024 at 5:52âPM Zhu, Lingshan <lingshan.zhu@intel.com> wrote:
> On 2/27/2024 3:59 PM, David Stevens wrote:
> > On Tue, Feb 27, 2024 at 11:22âAM Zhu, Lingshan <lingshan.zhu@intel.com> wrote:
> >> On 2/27/2024 9:53 AM, David Stevens wrote:
> >>> Add a SUSPEND bit to the device status field to allow drivers to suspend
> >>> virtio devices. On systems where drivers don't directly manage interrupt
> >>> routing (e.g. Linux), this allows the drivers to suspend their devices
> >>> and prevent interrupts from being sent when the interrupt routing system
> >>> does not expect interrupts.
> >>> ---
> >>>    content.tex | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++---
> >>>    1 file changed, 84 insertions(+), 5 deletions(-)
> >>>
> >>> diff --git a/content.tex b/content.tex
> >>> index 0a62dce5f65f..2183c63c45ea 100644
> >>> --- a/content.tex
> >>> +++ b/content.tex
> >>> @@ -49,6 +49,9 @@ \section{\field{Device Status} Field}\label{sec:Basic Facilities of a Virtio Dev
> >>>
> >>>    \item[DEVICE_NEEDS_RESET (64)] Indicates that the device has experienced
> >>>      an error from which it can't recover.
> >>> +
> >>> +\item[SUSPEND (16)] Indicates that the device has been suspended by the
> >>> +  driver. Only valid when the VIRTIO_F_SUSPEND feature bit is negotiated.
> >>>    \end{description}
> >>>
> >>>    The \field{device status} field starts out as 0, and is reinitialized to 0 by
> >>> @@ -60,9 +63,11 @@ \section{\field{Device Status} Field}\label{sec:Basic Facilities of a Virtio Dev
> >>>    initialization sequence specified in
> >>>    \ref{sec:General Initialization And Device Operation / Device
> >>>    Initialization}.
> >>> -The driver MUST NOT clear a
> >>> -\field{device status} bit.  If the driver sets the FAILED bit,
> >>> -the driver MUST later reset the device before attempting to re-initialize.
> >>> +
> >>> +The driver MUST NOT clear a \field{device status} bit, except for the
> >>> +SUSPEND bit as described in \ref{sec:General Initialization And Device
> >>> +Operation / Device Suspend}. If the driver sets the FAILED bit, the
> >>> +driver MUST later reset the device before attempting to re-initialize.
> >> Comparing to add a new exception, why not just re-setting DRIVER_OK to
> >> let the device
> >> clearing SUSPEND? This issue has been addressed when Eugenio working on
> >> a similar STOP_BIT
> >>
> >> https://lists.oasis-open.org/archives/virtio-dev/202111/msg00020.html
> > I don't think the device status bit is bit-addressable, so it's not
> > possible to re-set DRIVER_OK without also either re-setting or
> > clearing SUSPEND.
> Please correct me if I misunderstand your point,
> I think it can be addressed, for example, in PCI it is an u8,
> the device can clear a bit in it.
>
> It may be easier to let the device to clear the SUSPEND bit.

If it's a u8, then the driver will be writing all 8 bits at the same
time. So I don't see how it's possible for the driver to set one bit
without also setting/clearing all the other bits at the same time.
When you say the driver can re-set DRIVER_OK, it can either write 0x1F
or 0xF. If we don't allow clearing the suspend bit, then it has to
write 0x1F. But that's exactly what the driver wrote to suspend the
device in the first place - how is the device supposed to tell the
difference? I guess we could add something to the spec saying that's
how the device is supposed to interpret it. But at that point, that's
really the same as allowing the driver to clear the suspend bit, just
with more complexity.

-David


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]