linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/14] staging: fsl-mc: misc updates
@ 2016-04-11 16:48 Stuart Yoder
  2016-04-11 20:51 ` Jose Rivera
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Stuart Yoder @ 2016-04-11 16:48 UTC (permalink / raw)
  To: gregkh, german.rivera
  Cc: devel, linux-kernel, agraf, arnd, leoyang.li, Stuart Yoder

From: Stuart Yoder <stuart.yoder@nxp.com>

This patch series makes further progress towards completing the fsl-mc
TODO list.

-patch 1 removes three items from the TODO file that were previously 
 completed-- multiple root dprc support, MSI support, and command
 serialization

-patch 2 makes some way overdue updates to README.txt from review
 comments on the mailing list last fall

-patches 3-5 update the binary interface for several objects to
 sync with latest MC firmware (todo item: "MC firmware uprev")

-patches 6-13 are cleanup items
   -change in how object versions are used in binding decisions
   -setting coherent dma_ops for devices if necessary
   -setting cacheable flag for object regions if applicable
   -getting the version of the root dprc from hardware, not based
    on what was in the .h file
   -dprc driver now refuses to probe if dprc version is not minimum
    expected
   -added quirk for bug in coherency flag for dpseci objects
   -allocator driver refuses to bind to dpmcp objects if version
    is not minimum expected

-patch 14 adds a second maintainer for the driver
 
Horia Geanta (1):
  staging: fsl-mc: add quirk handling for dpseci objects < 4.0

Horia Geantă (1):
  staging: fsl-mc: return -EINVAL for all fsl_mc_portal_allocate()
    failures

Itai Katz (5):
  staging: fsl-mc: don't use object versions to make binding decisions
  staging: fsl-mc: set cacheable flag for added devices if applicable
  staging: fsl-mc: get version of root dprc from MC hardware
  staging: fsl-mc: add dprc version check
  staging: fsl-mc: add dpmcp version check

Stuart Yoder (7):
  staging: fsl-mc: TODO updates
  staging: fsl-mc: DPAA2 overview readme update
  staging: fsl-mc: update dpmcp binary interface to v3.0
  staging: fsl-mc: update dpbp binary interface to v2.2
  staging: fsl-mc: update dprc binary interface to v5.1
  staging: fsl-mc: set up coherent dma ops for added devices
  MAINTAINERS: fsl-mc: Add second maintainer

 MAINTAINERS                                 |    1 +
 drivers/staging/fsl-mc/README.txt           |  138 ++++++++++++++++-----------
 drivers/staging/fsl-mc/TODO                 |   13 ---
 drivers/staging/fsl-mc/bus/dpbp.c           |   77 ++++++++++++++-
 drivers/staging/fsl-mc/bus/dpmcp-cmd.h      |    7 +-
 drivers/staging/fsl-mc/bus/dpmcp.c          |   35 +------
 drivers/staging/fsl-mc/bus/dpmcp.h          |   10 +-
 drivers/staging/fsl-mc/bus/dprc-cmd.h       |    6 +-
 drivers/staging/fsl-mc/bus/dprc-driver.c    |   33 ++++++-
 drivers/staging/fsl-mc/bus/dprc.c           |   26 ++---
 drivers/staging/fsl-mc/bus/mc-allocator.c   |   18 ++--
 drivers/staging/fsl-mc/bus/mc-bus.c         |   93 +++++++++---------
 drivers/staging/fsl-mc/bus/mc-msi.c         |    2 +-
 drivers/staging/fsl-mc/include/dpbp-cmd.h   |    4 +-
 drivers/staging/fsl-mc/include/dpbp.h       |   51 +++++++++-
 drivers/staging/fsl-mc/include/dprc.h       |   19 ++--
 drivers/staging/fsl-mc/include/mc-private.h |    2 +
 17 files changed, 335 insertions(+), 200 deletions(-)

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH 00/14] staging: fsl-mc: misc updates
  2016-04-11 16:48 [PATCH 00/14] staging: fsl-mc: misc updates Stuart Yoder
@ 2016-04-11 20:51 ` Jose Rivera
  2016-04-12  1:34 ` Jose Rivera
  2016-04-30  1:01 ` Greg KH
  2 siblings, 0 replies; 5+ messages in thread
From: Jose Rivera @ 2016-04-11 20:51 UTC (permalink / raw)
  To: Stuart Yoder, gregkh
  Cc: devel, linux-kernel, agraf, arnd, Yang-Leo Li, Stuart Yoder

> -----Original Message-----
> From: Stuart Yoder [mailto:stuart.yoder@nxp.com]
> Sent: Monday, April 11, 2016 11:48 AM
> To: gregkh@linuxfoundation.org; Jose Rivera <german.rivera@nxp.com>
> Cc: devel@driverdev.osuosl.org; linux-kernel@vger.kernel.org; agraf@suse.de;
> arnd@arndb.de; Yang-Leo Li <leoyang.li@nxp.com>; Stuart Yoder
> <stuart.yoder@nxp.com>
> Subject: [PATCH 00/14] staging: fsl-mc: misc updates
> 
> From: Stuart Yoder <stuart.yoder@nxp.com>
> 
> This patch series makes further progress towards completing the fsl-mc TODO
> list.
> 
> -patch 1 removes three items from the TODO file that were previously
>  completed-- multiple root dprc support, MSI support, and command
> serialization
> 
> -patch 2 makes some way overdue updates to README.txt from review
> comments on the mailing list last fall
> 
> -patches 3-5 update the binary interface for several objects to  sync with latest
> MC firmware (todo item: "MC firmware uprev")
> 
> -patches 6-13 are cleanup items
>    -change in how object versions are used in binding decisions
>    -setting coherent dma_ops for devices if necessary
>    -setting cacheable flag for object regions if applicable
>    -getting the version of the root dprc from hardware, not based
>     on what was in the .h file
>    -dprc driver now refuses to probe if dprc version is not minimum
>     expected
>    -added quirk for bug in coherency flag for dpseci objects
>    -allocator driver refuses to bind to dpmcp objects if version
>     is not minimum expected
> 
> -patch 14 adds a second maintainer for the driver
> 
> Horia Geanta (1):
>   staging: fsl-mc: add quirk handling for dpseci objects < 4.0
> 
> Horia Geantă (1):
>   staging: fsl-mc: return -EINVAL for all fsl_mc_portal_allocate()
>     failures
> 
> Itai Katz (5):
>   staging: fsl-mc: don't use object versions to make binding decisions
>   staging: fsl-mc: set cacheable flag for added devices if applicable
>   staging: fsl-mc: get version of root dprc from MC hardware
>   staging: fsl-mc: add dprc version check
>   staging: fsl-mc: add dpmcp version check
> 
> Stuart Yoder (7):
>   staging: fsl-mc: TODO updates
>   staging: fsl-mc: DPAA2 overview readme update
>   staging: fsl-mc: update dpmcp binary interface to v3.0
>   staging: fsl-mc: update dpbp binary interface to v2.2
>   staging: fsl-mc: update dprc binary interface to v5.1
>   staging: fsl-mc: set up coherent dma ops for added devices
>   MAINTAINERS: fsl-mc: Add second maintainer
> 
>  MAINTAINERS                                 |    1 +
>  drivers/staging/fsl-mc/README.txt           |  138 ++++++++++++++++-----------
>  drivers/staging/fsl-mc/TODO                 |   13 ---
>  drivers/staging/fsl-mc/bus/dpbp.c           |   77 ++++++++++++++-
>  drivers/staging/fsl-mc/bus/dpmcp-cmd.h      |    7 +-
>  drivers/staging/fsl-mc/bus/dpmcp.c          |   35 +------
>  drivers/staging/fsl-mc/bus/dpmcp.h          |   10 +-
>  drivers/staging/fsl-mc/bus/dprc-cmd.h       |    6 +-
>  drivers/staging/fsl-mc/bus/dprc-driver.c    |   33 ++++++-
>  drivers/staging/fsl-mc/bus/dprc.c           |   26 ++---
>  drivers/staging/fsl-mc/bus/mc-allocator.c   |   18 ++--
>  drivers/staging/fsl-mc/bus/mc-bus.c         |   93 +++++++++---------
>  drivers/staging/fsl-mc/bus/mc-msi.c         |    2 +-
>  drivers/staging/fsl-mc/include/dpbp-cmd.h   |    4 +-
>  drivers/staging/fsl-mc/include/dpbp.h       |   51 +++++++++-
>  drivers/staging/fsl-mc/include/dprc.h       |   19 ++--
>  drivers/staging/fsl-mc/include/mc-private.h |    2 +
>  17 files changed, 335 insertions(+), 200 deletions(-)
> 
> --
> 1.7.9.5

Acked-by: German Rivera <german.rivera@nxp.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH 00/14] staging: fsl-mc: misc updates
  2016-04-11 16:48 [PATCH 00/14] staging: fsl-mc: misc updates Stuart Yoder
  2016-04-11 20:51 ` Jose Rivera
@ 2016-04-12  1:34 ` Jose Rivera
  2016-04-30  1:01 ` Greg KH
  2 siblings, 0 replies; 5+ messages in thread
From: Jose Rivera @ 2016-04-12  1:34 UTC (permalink / raw)
  To: Stuart Yoder, gregkh
  Cc: devel, linux-kernel, agraf, arnd, Yang-Leo Li, Stuart Yoder

> -----Original Message-----
> From: Stuart Yoder [mailto:stuart.yoder@nxp.com]
> Sent: Monday, April 11, 2016 11:48 AM
> To: gregkh@linuxfoundation.org; Jose Rivera <german.rivera@nxp.com>
> Cc: devel@driverdev.osuosl.org; linux-kernel@vger.kernel.org; agraf@suse.de;
> arnd@arndb.de; Yang-Leo Li <leoyang.li@nxp.com>; Stuart Yoder
> <stuart.yoder@nxp.com>
> Subject: [PATCH 00/14] staging: fsl-mc: misc updates
> 
> From: Stuart Yoder <stuart.yoder@nxp.com>
> 
> This patch series makes further progress towards completing the fsl-mc TODO
> list.
> 
> -patch 1 removes three items from the TODO file that were previously
>  completed-- multiple root dprc support, MSI support, and command
> serialization
> 
> -patch 2 makes some way overdue updates to README.txt from review
> comments on the mailing list last fall
> 
> -patches 3-5 update the binary interface for several objects to  sync with latest
> MC firmware (todo item: "MC firmware uprev")
> 
> -patches 6-13 are cleanup items
>    -change in how object versions are used in binding decisions
>    -setting coherent dma_ops for devices if necessary
>    -setting cacheable flag for object regions if applicable
>    -getting the version of the root dprc from hardware, not based
>     on what was in the .h file
>    -dprc driver now refuses to probe if dprc version is not minimum
>     expected
>    -added quirk for bug in coherency flag for dpseci objects
>    -allocator driver refuses to bind to dpmcp objects if version
>     is not minimum expected
> 
> -patch 14 adds a second maintainer for the driver
> 
> Horia Geanta (1):
>   staging: fsl-mc: add quirk handling for dpseci objects < 4.0
> 
> Horia Geantă (1):
>   staging: fsl-mc: return -EINVAL for all fsl_mc_portal_allocate()
>     failures
> 
> Itai Katz (5):
>   staging: fsl-mc: don't use object versions to make binding decisions
>   staging: fsl-mc: set cacheable flag for added devices if applicable
>   staging: fsl-mc: get version of root dprc from MC hardware
>   staging: fsl-mc: add dprc version check
>   staging: fsl-mc: add dpmcp version check
> 
> Stuart Yoder (7):
>   staging: fsl-mc: TODO updates
>   staging: fsl-mc: DPAA2 overview readme update
>   staging: fsl-mc: update dpmcp binary interface to v3.0
>   staging: fsl-mc: update dpbp binary interface to v2.2
>   staging: fsl-mc: update dprc binary interface to v5.1
>   staging: fsl-mc: set up coherent dma ops for added devices
>   MAINTAINERS: fsl-mc: Add second maintainer
> 
>  MAINTAINERS                                 |    1 +
>  drivers/staging/fsl-mc/README.txt           |  138 ++++++++++++++++-----------
>  drivers/staging/fsl-mc/TODO                 |   13 ---
>  drivers/staging/fsl-mc/bus/dpbp.c           |   77 ++++++++++++++-
>  drivers/staging/fsl-mc/bus/dpmcp-cmd.h      |    7 +-
>  drivers/staging/fsl-mc/bus/dpmcp.c          |   35 +------
>  drivers/staging/fsl-mc/bus/dpmcp.h          |   10 +-
>  drivers/staging/fsl-mc/bus/dprc-cmd.h       |    6 +-
>  drivers/staging/fsl-mc/bus/dprc-driver.c    |   33 ++++++-
>  drivers/staging/fsl-mc/bus/dprc.c           |   26 ++---
>  drivers/staging/fsl-mc/bus/mc-allocator.c   |   18 ++--
>  drivers/staging/fsl-mc/bus/mc-bus.c         |   93 +++++++++---------
>  drivers/staging/fsl-mc/bus/mc-msi.c         |    2 +-
>  drivers/staging/fsl-mc/include/dpbp-cmd.h   |    4 +-
>  drivers/staging/fsl-mc/include/dpbp.h       |   51 +++++++++-
>  drivers/staging/fsl-mc/include/dprc.h       |   19 ++--
>  drivers/staging/fsl-mc/include/mc-private.h |    2 +
>  17 files changed, 335 insertions(+), 200 deletions(-)
> 
> --
> 1.7.9.5

For the series:
 Acked-by: German Rivera <german.rivera@nxp.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 00/14] staging: fsl-mc: misc updates
  2016-04-11 16:48 [PATCH 00/14] staging: fsl-mc: misc updates Stuart Yoder
  2016-04-11 20:51 ` Jose Rivera
  2016-04-12  1:34 ` Jose Rivera
@ 2016-04-30  1:01 ` Greg KH
  2016-05-02 13:52   ` Stuart Yoder
  2 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2016-04-30  1:01 UTC (permalink / raw)
  To: Stuart Yoder; +Cc: german.rivera, devel, agraf, arnd, linux-kernel, leoyang.li

On Mon, Apr 11, 2016 at 11:48:25AM -0500, Stuart Yoder wrote:
> From: Stuart Yoder <stuart.yoder@nxp.com>
> 
> This patch series makes further progress towards completing the fsl-mc
> TODO list.

I don't seem to have gotten patch 14/14, can you resend just that one?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH 00/14] staging: fsl-mc: misc updates
  2016-04-30  1:01 ` Greg KH
@ 2016-05-02 13:52   ` Stuart Yoder
  0 siblings, 0 replies; 5+ messages in thread
From: Stuart Yoder @ 2016-05-02 13:52 UTC (permalink / raw)
  To: Greg KH; +Cc: Jose Rivera, devel, agraf, arnd, linux-kernel, Yang-Leo Li


> -----Original Message-----
> From: Greg KH [mailto:gregkh@linuxfoundation.org]
> Sent: Friday, April 29, 2016 8:01 PM
> To: Stuart Yoder <stuart.yoder@nxp.com>
> Cc: Jose Rivera <german.rivera@nxp.com>; devel@driverdev.osuosl.org; agraf@suse.de; arnd@arndb.de;
> linux-kernel@vger.kernel.org; Yang-Leo Li <leoyang.li@nxp.com>
> Subject: Re: [PATCH 00/14] staging: fsl-mc: misc updates
> 
> On Mon, Apr 11, 2016 at 11:48:25AM -0500, Stuart Yoder wrote:
> > From: Stuart Yoder <stuart.yoder@nxp.com>
> >
> > This patch series makes further progress towards completing the fsl-mc
> > TODO list.
> 
> I don't seem to have gotten patch 14/14, can you resend just that one?

Done.  This was the patch where a 2nd maintainer was added for the fsl-mc
bus driver.

Thanks,
Stuart

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-05-02 14:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-11 16:48 [PATCH 00/14] staging: fsl-mc: misc updates Stuart Yoder
2016-04-11 20:51 ` Jose Rivera
2016-04-12  1:34 ` Jose Rivera
2016-04-30  1:01 ` Greg KH
2016-05-02 13:52   ` Stuart Yoder

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).