On Wed, Dec 20, 2017 at 04:31:15PM -0600, Alan Tull wrote: > On Mon, Nov 27, 2017 at 12:42 AM, Wu Hao <hao.wu@xxxxxxxxx> wrote: > > + > > +PORT > > +==== > > +A port represents the interface between the static FPGA fabric (the "blue > > +bitstream") and a partially reconfigurable region containing an AFU (the "green > > +bitstream"). It controls the communication from SW to the accelerator and > > +exposes features such as reset and debug. > > Hi Hao, > > If I remember correctly, reset means that the accelerator gets reset > and this is something that is desirable to do between jobs. I've > asked for some documentation about the port reset function, partly > because the idea of being able to reset hardware from userspace > somehow scares me. So please find a good logical place to explain > what a port reset does and how it is safe for userspace to request it > at some arbitrary time and how it won't crash the kernel. We > discussed this in v2, I grepped v3 for it, maybe I missed it, but I > don't see it in v3. My understanding is that disabling and reenabling > the port bridge causes the accelerator in its FPGA region to get > reset. Hi Alan Yes, that's correct. Some descriptions are added in Patch#18[1] when introduced the reset ioctl. I will add some descriptions in the doc as well. [1]https://marc.info/?l=linux-fpga&m=151176566714744&w=2 @@ -50,6 +53,20 @@ #define FPGA_CHECK_EXTENSION _IO(FPGA_MAGIC, FPGA_BASE + 1) +/* IOCTLs for AFU file descriptor */ + +/** + * FPGA_PORT_RESET - _IO(FPGA_MAGIC, PORT_BASE + 0) + * + * Reset the FPGA Port and its AFU. No parameters are supported. + * Userspace can do Port reset at any time, e.g during DMA or PR. But + * it should never cause any system level issue, only functional failure + * (e.g DMA or PR operation failure) and be recoverable from the failure. + * Return: 0 on success, -errno of failure + */ + +#define FPGA_PORT_RESET _IO(FPGA_MAGIC, PORT_BASE + 0) + Thanks Hao > > Alan > > > + > > +A PCIe device may have several ports and each port can be released from PF by > > +FPGA_FME_PORT_RELEASE ioctl on FME, and exposed through a VF via PCIe sriov > > +sysfs interface. > > + > -- > To unsubscribe from this list: send the line "unsubscribe linux-fpga" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe linux-api" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html