On Tue, Nov 16, 2021 at 3:48 PM Bjorn Helgaas <helgaas@xxxxxxxxxx> wrote: > > On Fri, Nov 05, 2021 at 04:50:53PM -0700, ira.weiny@xxxxxxxxx wrote: > > From: Jonathan Cameron <Jonathan.Cameron@xxxxxxxxxx> > > > > Introduced in a PCI ECN [1], DOE provides a config space based mailbox > > with standard protocol discovery. Each mailbox is accessed through a > > DOE Extended Capability. > > > > Define an auxiliary device driver which control DOE auxiliary devices > > registered on the auxiliary bus. > > What do we gain by making this an auxiliary driver? > > This doesn't really feel like a "driver," and apparently it used to be > a library. I'd like to see the rationale and benefits of the driver > approach (in the eventual commit log as well as the current email > thread). > I asked Ira to use the auxiliary bus for DOE primarily for the ABI it offers for userspace to manage kernel vs userspace access to a device. CONFIG_IO_STRICT_DEVMEM set the precedent that userspace can not clobber mmio space that is actively claimed by a kernel driver. I submit that DOE merits the same protection for DOE instances that the kernel consumes. Unlike other PCI configuration registers that root userspace has no reason to touch unless it wants to actively break things, DOE is a mechanism that root userspace may need to access directly in some cases. There are a few examples that come to mind. CXL Compliance Testing (see CXL 2.0 14.16.4 Compliance Mode DOE) offers a mechanism to set different test modes for a DOE device. The kernel has no reason to ever use that interface, and it has strong reasons to want to block access to it in production. However, hardware vendors also use debug Linux builds for hardware bringup. So I would like to be able to say that the mechanism to gain access to the compliance DOE is to detach the aux DOE driver from the right aux DOE device. Could we build a custom way to do the same for the DOE library, sure, but why re-invent the wheel when udev and the driver model can handle this type of policy question already? Another use case is SPDM where an agent can establish a secure message passing channel to a device, or paravirtualized device to exchange protected messages with the hypervisor. My expectation is that in addition to the kernel establishing SPDM sessions for PCI IDE and CXL.cachemem IDE (link Integrity and Data Encryption) there will be use cases for root userspace to establish their own SPDM session. In that scenario as well the kernel can be told to give up control of a specific DOE instance by detaching the aux device for its driver, but otherwise the kernel driver can be assured that userspace will not clobber its communications with its own attempts to talk over the DOE. Lastly, and perhaps this is minor, the PCI core is a built-in object and aux-bus allows for breaking out device library functionality like this into a dedicated module. But yes, that's not a good reason unto itself because you could "auxify" almost anything past the point of reason just to get more modules. > > A DOE mailbox is allowed to support any number of protocols while some > > DOE protocol specifications apply additional restrictions. > > This sounds something like a fancy version of VPD, and VPD has been a > huge headache. I hope DOE avoids that ;) Please say a bit more, I think DOE is a rather large headache as evidenced by us fine folks grappling with how to architect the Linux enabling.