public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
From: atull <atull@opensource.altera.com>
To: gregkh@linuxfoundation.org, jgunthorpe@obsidianresearch.com,
	hpa@zytor.com, monstr@monstr.eu, michal.simek@xilinx.com,
	rdunlap@infradead.org
Cc: linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
	pantelis.antoniou@konsulko.com, robh+dt@kernel.org,
	grant.likely@linaro.org, iws@ovro.caltech.edu,
	linux-doc@vger.kernel.org, pavel@denx.de, broonie@kernel.org,
	philip@balister.org, rubini@gnudd.com, s.trumtrar@pengutronix.de,
	jason@lakedaemon.net, kyle.teske@ni.com, nico@linaro.org,
	balbi@ti.com, m.chehab@samsung.com, davidb@codeaurora.org,
	rob@landley.net, davem@davemloft.net, cesarb@cesarb.net,
	sameo@linux.intel.com, akpm@linux-foundation.org,
	linus.walleij@linaro.org, delicious.quinoa@gmail.com,
	dinguyen@opensource.altera.com, yvanderv@opensource.altera.com
Subject: Re: [PATCH v3 0/3] FPGA Manager Framework
Date: Tue, 9 Dec 2014 12:40:54 -0600	[thread overview]
Message-ID: <alpine.DEB.2.02.1412091239530.10268@linuxheads99> (raw)
In-Reply-To: <1418142481-6167-1-git-send-email-atull@opensource.altera.com>

On Tue, 9 Dec 2014, atull@opensource.altera.com wrote:

> From: Alan Tull <atull@opensource.altera.com>
> 
> Improvements in this version:
> 
> Fixed things in the framework that were left over from my original
> version that was a character driver.  In particular, make the
> struct device be present in the fpga_manager struct, not as a
> pointer, so container_of will work.
> 
> Also rewrote the part that handles DT notifications.  Now this
> section takes notifications instead of being another device to
> load/unload.
> 
> Still want to integrate bridge enable/disable with this, but
> that's not done yet.
> 

I have been recommended to move this to drivers/staging.  This
makes sense as there has always been a lot of discussion of the
interface.

Will be submitting that as v4 today.

Alan Tull


> Alan Tull (3):
>   fpga manager: add sysfs interface document
>   fpga manager: framework core
>   fpga manager: device tree overlay support
> 
>  Documentation/ABI/testing/sysfs-class-fpga-manager |   38 ++
>  drivers/Kconfig                                    |    2 +
>  drivers/Makefile                                   |    1 +
>  drivers/fpga/Kconfig                               |   28 +
>  drivers/fpga/Makefile                              |   10 +
>  drivers/fpga/fpga-mgr.c                            |  587 ++++++++++++++++++++
>  include/linux/fpga-mgr.h                           |  107 ++++
>  7 files changed, 773 insertions(+)
>  create mode 100644 Documentation/ABI/testing/sysfs-class-fpga-manager
>  create mode 100644 drivers/fpga/Kconfig
>  create mode 100644 drivers/fpga/Makefile
>  create mode 100644 drivers/fpga/fpga-mgr.c
>  create mode 100644 include/linux/fpga-mgr.h
> 
> -- 
> 1.7.9.5
> 
> 

      parent reply	other threads:[~2014-12-09 18:40 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-09 16:27 [PATCH v3 0/3] FPGA Manager Framework atull-yzvPICuk2ABMcg4IHK0kFoH6Mc4MB0Vx
2014-12-09 16:27 ` [PATCH v3 1/3] fpga manager: add sysfs interface document atull
2014-12-09 16:28 ` [PATCH v3 2/3] fpga manager: framework core atull
     [not found] ` <1418142481-6167-1-git-send-email-atull-yzvPICuk2ABMcg4IHK0kFoH6Mc4MB0Vx@public.gmane.org>
2014-12-09 16:28   ` [PATCH v3 3/3] fpga manager: device tree overlay support atull-yzvPICuk2ABMcg4IHK0kFoH6Mc4MB0Vx
2014-12-09 18:40 ` atull [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=alpine.DEB.2.02.1412091239530.10268@linuxheads99 \
    --to=atull@opensource.altera.com \
    --cc=akpm@linux-foundation.org \
    --cc=balbi@ti.com \
    --cc=broonie@kernel.org \
    --cc=cesarb@cesarb.net \
    --cc=davem@davemloft.net \
    --cc=davidb@codeaurora.org \
    --cc=delicious.quinoa@gmail.com \
    --cc=devicetree@vger.kernel.org \
    --cc=dinguyen@opensource.altera.com \
    --cc=grant.likely@linaro.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=hpa@zytor.com \
    --cc=iws@ovro.caltech.edu \
    --cc=jason@lakedaemon.net \
    --cc=jgunthorpe@obsidianresearch.com \
    --cc=kyle.teske@ni.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=m.chehab@samsung.com \
    --cc=michal.simek@xilinx.com \
    --cc=monstr@monstr.eu \
    --cc=nico@linaro.org \
    --cc=pantelis.antoniou@konsulko.com \
    --cc=pavel@denx.de \
    --cc=philip@balister.org \
    --cc=rdunlap@infradead.org \
    --cc=rob@landley.net \
    --cc=robh+dt@kernel.org \
    --cc=rubini@gnudd.com \
    --cc=s.trumtrar@pengutronix.de \
    --cc=sameo@linux.intel.com \
    --cc=yvanderv@opensource.altera.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox