Re: [PATCH v8 2/4] fpga manager: add sysfs interface document

From: atull
Date: Thu Jan 15 2015 - 11:35:34 EST


On Tue, 13 Jan 2015, Jason Gunthorpe wrote:

> On Tue, Jan 13, 2015 at 03:37:14PM -0600, atull wrote:
>
> > > I do agree with this, and I think this is where this patch set goes so
> > > wrong.
> > >
> > > Just exposing all sorts of controls to userspace and having a way for
> > > the kernel to load/unload a bitstream compleletely misses the point that
> > > the two main ways to use FPGAs *require* some kind of kernel side
> > > driver suppport on the FPGA.
> >
> > Hi Jason,
> >
> > I may be misunderstanding. I thought you wanted lots of user control
> > a couple years ago.
> >
> > https://lkml.org/lkml/2013/9/18/490
>
> Yes, that is absolutely true, that is certainly where my projects have
> been historically, and in the context of requiring user space to
> manage the whole process I think that is completely right.
>
> But - I like Alan's point - this should be a higher level thing, the
> kernel should be able to load the FPGA, and handle binding the drivers
> so user space doesn't need to be involved, and it makes sense that
> should be the place to start the API design.
>
> > Your feedback carried a lot of weight as I've been developing this patchset
> > although I didn't do absolutely everything you asked for. Back then you
> > were asking for lots of user control including being able to reset the FPGA
> > and being able to know from userspace what configuration steps failed (if any).
>
> Yes, this is all true. Since my FPGAs all seem to require a software
> mediated startup sequence the dream of having a DT scheme like I
> described is farther away for me, but I think that is not the 90%
> case. Almost all vendor IP designs do not require a SW startup and
> auto-start after programming. 90% of designs can program and then
> immediately connect drivers.
>
> > I'm glad you like DT support for FPGA images + drivers loading since I've
> > been pushing that since April and have submitted several earlier versions
> > of this patchset which included it.
>
> Yes, I do, thank you for working on this!
>
> > I think your arguements against the current patchset are a bit over
> > the top here.
>
> Perhaps, and I apologize. But as you know I've never liked the sysfs
> interface, and I think Pavel is right. catting a file name just so you
> can call request_firmware on that file in the kernel is a bad design.
>
> The request_firmware interface should be for the DT overlay path, and
> other schemes shouldn't use it. The name should come from the DT and
> no place else.
>
> > > Make it so linux can boot, automatically fetch the gpio-api1 bit file
> > > and load it into the chip and then bind the GPIO driver to the FPGA
> > > resource. All without userspace involvment, all potentially done
> > > before calling INIT.
> >
> > Where would the fpga image be fetch from? What is the mechanism for
> > doing that? Do we need to reqire everybody to do that or can
> > firmware be one of the available mechanisms?
>
> I see there are three options:
> 1) The bootloader programs the FPGA and passes a DT to the kernel
> that completely describes the hard and soft logic, the kernel
> doesn't need FPGA bitfile management code or other special
> support.
>
> Obviously things like reprogram on resume have to be done by the
> bootloader, there is no handoff here where the kernel takes over
> control of the bitfile programming. I think that is fine, #2/#3
> are better choices for most people anyhow.
> 2) The bootloader starts the kernel and passes a DT that describes
> the hard logic and soft logic using a scheme like I outlined. The
> kernel is responsible to request_firmware the bitfile and start
> the FPGA and connect the drivers.
>
> DT purists will rightly point out that this isn't great, but it
> is a simple and pragmatic solution.
>
> This probably falls out automatically if #3 is implemented..
> 3) The bootloader starts the kernel with a DT that only describes the
> hard logic.
>
> Userspace must load a DT overlay early on. Otherwise proceeds like #2.
>
> In both 2 and 3 the FPGA can be reprogrammed on resume by re-doing
> request_firmware.
>

This is great! The way I had it working was using Pantelis' devicetree
configfs interface.

# To load a fpga image and a driver or drivers under userspace control:
mkdir /config/device-tree/overlays/1
echo socfpga_overlay.dtbo > /config/device-tree/overlays/1/path

# To remove the driver(s) and fpga image:
rmdir /config/device-tree/overlays/1

The DT fragment described the FPGA logic and included a filename
for firmware to load. In another branch of this thread, I see discussion
starting on what the overlay should look like and whether it could somehow
contain the DT itself.

> And for folks that need more control, expose all the knobs explicitly
> to user space:
> 4) There is a /dev/ node for the fpga that allows
> - ioctl to program via mmap'd file (no request_firmware)
>
> The ioctl has an option for the kernel to hang on to the mmap
> for the repogram on resume case.
> - ioctl to get status/error reporting/etc
> - ioctl to load/bind a DT overlay to the FPGA instance
> This provides a gap where userspace can boot and configure the
> FPGA internals before binding the kernel drivers.
> (end result is the same as #3 case, but no request_firmware)
> - (future) ioctl to load a swappable FPGA (what Alan is talking
> about)
>

This sounds good to me. To do that I will need to export more a few more
base functions to get at a finer grain of control that we can add a /dev
interface for.

Long ago this driver started out with a /dev interface. It didn't have
an ioctl yet at that point, but programming the fpga was by opening
the devnode and writing to it. Greg KH preferred sysfs or configfs
over adding another ioctl:

https://lkml.org/lkml/2013/10/8/677

snippet
Because we really hate to add new ioctls to the kernel if at all
possible. Using sysfs (and it's one-value-per-file rule), makes
userspace tools easier, and managing the different devices in the system
easier (you know _exactly_ which device you are talking to, you don't
have to guess based on minor number).
end snippet

I'm ok with this becoming an /dev interface. We lose the easy interface
of sysfs or configfs but gain a permissions scheme. It would be
good to have concensus before I do to much coding in that direction.

> The key thing is that we have a FPGA object that can be associated
> with some DT element, and the kernel can then keep track if the FPGA
> is is in use or not. Exactly like you said in your reply.
>
> Otherwise, for the /dev/ case the FPGA becomes unuse once the FD is
> closed if it wasn't attached to an overlay. This is at least the start
> of addressing the space Alan is talking about.
>
> If this sort of world is the goal, it is hard for me to see how the
> proposed sysfs interface fits into that long term.
>
> The /dev/ interface is probably a better place to start talking about
> partial reconfiguration as well. The fixed part might be bound to a
> kernel driver (eg the PCI-E interface) and the reconfigurable part
> might be a maths algorithm - for instance.
>
> > > Make it so via sysfs we can reverse this process and reboot the FPGA.
> >
> > Better to use the device tree's configfs interface if you are going
> > to add/delete a DT overlay. Adding an overlay could load the fpga,
> > enable bridges, and load driver(s). Some fpga images may have several
> > hardware blocks so several drivers to load.
>
> Yes, absolutely!
>
> > > And no, this isn't just a 'theory', I have 4 shipping products today
> > > that work pretty much exactly like this, including a Zynq
> > > design. Binding kernel drivers to a FPGA once it is loaded is a big
> > > functionality gap, and an annoying problem. Programming the actual
> > > FPGA? That is the *EASIEST* part of this whole thing!
>
> > That's why I'm trying to get programming the fpga out of the way here.
>
> I have no problem with the in kernel stuff, and I'd have no problem if
> the sysfs controls were in debugfs for testing purposes. It just
> doesn't make sense to me to expose that kind of interface as a
> permanent API...
>
> Jason
>

I appreciate all of you and Alan's input on this. I'm glad we are starting
to see ways of supporting both DT and fpga resources.

I'm looking into moving the sysfs interface to debugfs. Doesn't look too
hard and you and Alan are making lots of sense about this.

Alan Tull

aka atull
aka delicious quinoa
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/