* Re: [PATCH v11 0/4] FPGA Manager Framework [not found] <1444232189-5762-1-git-send-email-atull@opensource.altera.com> @ 2015-10-07 17:09 ` Greg KH 2015-10-07 17:36 ` Moritz Fischer 0 siblings, 1 reply; 4+ messages in thread From: Greg KH @ 2015-10-07 17:09 UTC (permalink / raw) To: atull Cc: jgunthorpe, hpa, monstr, michal.simek, rdunlap, Moritz Fischer, linux-kernel, devicetree, pantelis.antoniou, robh+dt, grant.likely, iws, linux-doc, pavel, broonie, philip, rubini, s.trumtrar, jason, kyle.teske, nico, balbi, m.chehab, davidb, rob, davem, cesarb, sameo, akpm, linus.walleij, pawel.moll, mark.rutland, ijc+devicetree, galak, devel, Petr Cvek, delicious.quinoa, dinguyen On Wed, Oct 07, 2015 at 04:36:25PM +0100, atull@opensource.altera.com wrote: > From: Alan Tull <atull@opensource.altera.com> > > Hi Greg, > > I'm resending v11 > > The changes requested for v12 are minor. We can fix them upstream in > some small patches. Thanks for everybody's support and help in reviewing > these. Looks great, thanks for working so hard on this over the past year(s), nice job everyone. I've queued this up in my tree now. thanks, greg k-h ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v11 0/4] FPGA Manager Framework 2015-10-07 17:09 ` [PATCH v11 0/4] FPGA Manager Framework Greg KH @ 2015-10-07 17:36 ` Moritz Fischer 2015-10-07 20:18 ` atull 0 siblings, 1 reply; 4+ messages in thread From: Moritz Fischer @ 2015-10-07 17:36 UTC (permalink / raw) To: Greg KH Cc: Alan Tull, Jason Gunthorpe, hpa, Michal Simek, Michal Simek, rdunlap, linux-kernel, devicetree, Pantelis Antoniou, robh+dt, Grant Likely, iws, linux-doc, Pavel Machek, broonie, Philip Balister, rubini, s.trumtrar, jason, kyle.teske, Nicolas Pitre, balbi, m.chehab, David Brown, Rob Landley, davem, cesarb, sameo, akpm, Linus Walleij, pawel.moll, mark.rutland, ijc+devicetree, Kumar Gala, devel, Petr Cvek, Alan Tull, dinguyen Hi Greg, Alan On Wed, Oct 7, 2015 at 6:09 PM, Greg KH <gregkh@linuxfoundation.org> wrote: > On Wed, Oct 07, 2015 at 04:36:25PM +0100, atull@opensource.altera.com wrote: >> From: Alan Tull <atull@opensource.altera.com> >> >> Hi Greg, >> >> I'm resending v11 >> >> The changes requested for v12 are minor. We can fix them upstream in >> some small patches. Thanks for everybody's support and help in reviewing >> these. Agreed, It's been a recurring theme the last few days that people should step up and volunteer to co-maintain code. I have a vested interest in a working upstream solution for FPGA manager for my devices, so if you need help, I'll be around. > > Looks great, thanks for working so hard on this over the past year(s), > nice job everyone. I've queued this up in my tree now. Awesome! I'll submit my series for the Xilinx equivalent low level driver within the next few days, great to finally see things moving. > thanks, > > greg k-h Cheers, Moritz ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v11 0/4] FPGA Manager Framework 2015-10-07 17:36 ` Moritz Fischer @ 2015-10-07 20:18 ` atull 0 siblings, 0 replies; 4+ messages in thread From: atull @ 2015-10-07 20:18 UTC (permalink / raw) To: Moritz Fischer; +Cc: Greg KH, linux-kernel, Alan Tull, dinguyen On Wed, 7 Oct 2015, Moritz Fischer wrote: > Hi Greg, Alan > > On Wed, Oct 7, 2015 at 6:09 PM, Greg KH <gregkh@linuxfoundation.org> wrote: > > On Wed, Oct 07, 2015 at 04:36:25PM +0100, atull@opensource.altera.com wrote: > >> From: Alan Tull <atull@opensource.altera.com> > >> > >> Hi Greg, > >> > >> I'm resending v11 > >> > >> The changes requested for v12 are minor. We can fix them upstream in > >> some small patches. Thanks for everybody's support and help in reviewing > >> these. > > Agreed, It's been a recurring theme the last few days that people > should step up and volunteer to co-maintain code. > I have a vested interest in a working upstream solution for FPGA > manager for my devices, so if you need help, I'll be around. Thank you Moritz. > > > > Looks great, thanks for working so hard on this over the past year(s), > > nice job everyone. I've queued this up in my tree now. > Hi Greg, Thanks! Alan ^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v11 0/4] FPGA Manager Framework @ 2015-09-22 15:21 atull 0 siblings, 0 replies; 4+ messages in thread From: atull @ 2015-09-22 15:21 UTC (permalink / raw) To: gregkh, jgunthorpe, hpa, monstr, michal.simek, rdunlap Cc: Moritz Fischer, linux-kernel, devicetree, pantelis.antoniou, robh+dt, grant.likely, iws, linux-doc, pavel, broonie, philip, rubini, s.trumtrar, jason, kyle.teske, nico, balbi, m.chehab, davidb, rob, davem, cesarb, sameo, akpm, linus.walleij, pawel.moll, mark.rutland, ijc+devicetree, galak, devel, Petr Cvek, delicious.quinoa, dinguyen, Alan Tull From: Alan Tull <atull@opensource.altera.com> This patch set adds the FPGA manager core which exports API functions that write an image to a FPGA I'm holding off on the DT overlay support a little for now. The core's API is minimal to start with: only 6 functions. This gives a manufacturer-agnostic interface for programming FPGA's such that higher level interfaces (such as DT Overlays) can be shared. Alan Tull (4): usage documentation for FPGA manager core fpga manager: add sysfs interface document add FPGA manager core fpga manager: add driver for socfpga fpga manager Documentation/ABI/testing/sysfs-class-fpga-manager | 37 ++ Documentation/fpga/fpga-mgr.txt | 171 ++++++ drivers/Kconfig | 2 + drivers/Makefile | 1 + drivers/fpga/Kconfig | 24 + drivers/fpga/Makefile | 9 + drivers/fpga/fpga-mgr.c | 382 ++++++++++++ drivers/fpga/socfpga.c | 616 ++++++++++++++++++++ include/linux/fpga/fpga-mgr.h | 127 ++++ 9 files changed, 1369 insertions(+) create mode 100644 Documentation/ABI/testing/sysfs-class-fpga-manager create mode 100644 Documentation/fpga/fpga-mgr.txt create mode 100644 drivers/fpga/Kconfig create mode 100644 drivers/fpga/Makefile create mode 100644 drivers/fpga/fpga-mgr.c create mode 100644 drivers/fpga/socfpga.c create mode 100644 include/linux/fpga/fpga-mgr.h -- 1.7.9.5 ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-10-07 20:19 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <1444232189-5762-1-git-send-email-atull@opensource.altera.com>
2015-10-07 17:09 ` [PATCH v11 0/4] FPGA Manager Framework Greg KH
2015-10-07 17:36 ` Moritz Fischer
2015-10-07 20:18 ` atull
2015-09-22 15:21 atull
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox
Powered by JetHome