All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/14] staging: fsl-mc: cleanup and uprev to MC v10.x
@ 2016-10-17 18:42 Stuart Yoder
  2016-10-25  7:50 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Stuart Yoder @ 2016-10-17 18:42 UTC (permalink / raw)
  To: gregkh
  Cc: german.rivera, devel, linux-kernel, agraf, arnd, leoyang.li,
	Stuart Yoder

This patch does miscellaneous minor cleanup and uprevs the supported
MC firmware version to 10.x.

I believe with this series the TODO items on our list are complete,
with the exception of "Add at least one device driver for a DPAA2
object", which I expect to send a patch for very soon.  I plan to
do that in conjunction with a request to move the fsl-mc bus
driver out of staging.

Ioana Ciornei (3):
  staging: fsl-mc: cleanup: convert uintX_t types to uX
  staging: fsl-mc: misc whitespace cleanup
  staging: fsl-mc: uprev binary interface to match MC v10.x

Stuart Yoder (11):
  staging: fsl-mc: cleanup: move dpbp and dpcon cmd headers
  staging: fsl-mc: add missing includes to fsl-mc-private.h
  staging: fsl-mc: clean up Kconfig description
  staging: fsl-mc: update Kconfig dependency
  staging: fsl-mc: update MAINTAINERS
  staging: fsl-mc: irq: shorten name of interrupt name
  staging: fsl-mc: dprc: shorten DPRC interrupt name
  staging: fsl-mc: cleanup comment style
  staging: fsl-mc: message cleanup
  staging: fsl-mc: improve comment wording
  staging: fsl-mc: update copyright dates

 MAINTAINERS                                        |   3 +-
 drivers/staging/fsl-mc/bus/Kconfig                 |  24 +-
 drivers/staging/fsl-mc/{include => bus}/dpbp-cmd.h |  61 ++--
 drivers/staging/fsl-mc/bus/dpbp.c                  |  74 ++--
 .../staging/fsl-mc/{include => bus}/dpcon-cmd.h    |   4 +-
 drivers/staging/fsl-mc/bus/dpmcp-cmd.h             |  49 ++-
 drivers/staging/fsl-mc/bus/dpmcp.c                 |  70 +++-
 drivers/staging/fsl-mc/bus/dpmcp.h                 | 141 ++++----
 drivers/staging/fsl-mc/bus/dpmng-cmd.h             |  14 +-
 drivers/staging/fsl-mc/bus/dpmng.c                 |  37 +-
 drivers/staging/fsl-mc/bus/dprc-cmd.h              |  90 ++---
 drivers/staging/fsl-mc/bus/dprc-driver.c           |  23 +-
 drivers/staging/fsl-mc/bus/dprc.c                  |  69 +++-
 drivers/staging/fsl-mc/bus/fsl-mc-allocator.c      |  78 ++--
 drivers/staging/fsl-mc/bus/fsl-mc-bus.c            |  72 ++--
 drivers/staging/fsl-mc/bus/fsl-mc-msi.c            |   2 +-
 drivers/staging/fsl-mc/bus/fsl-mc-private.h        |   3 +
 .../staging/fsl-mc/bus/irq-gic-v3-its-fsl-mc-msi.c |   4 +-
 drivers/staging/fsl-mc/bus/mc-io.c                 |   4 +-
 drivers/staging/fsl-mc/bus/mc-sys.c                |  12 +-
 drivers/staging/fsl-mc/include/dpbp.h              | 173 +++++----
 drivers/staging/fsl-mc/include/dpmng.h             |  22 +-
 drivers/staging/fsl-mc/include/dprc.h              | 392 +++++++++++----------
 drivers/staging/fsl-mc/include/mc-bus.h            |   2 +-
 drivers/staging/fsl-mc/include/mc-cmd.h            |  44 ++-
 drivers/staging/fsl-mc/include/mc-sys.h            |   3 +-
 drivers/staging/fsl-mc/include/mc.h                |   2 +-
 27 files changed, 802 insertions(+), 670 deletions(-)
 rename drivers/staging/fsl-mc/{include => bus}/dpbp-cmd.h (75%)
 rename drivers/staging/fsl-mc/{include => bus}/dpcon-cmd.h (97%)

-- 
1.9.0

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

* Re: [PATCH 00/14] staging: fsl-mc: cleanup and uprev to MC v10.x
  2016-10-17 18:42 [PATCH 00/14] staging: fsl-mc: cleanup and uprev to MC v10.x Stuart Yoder
@ 2016-10-25  7:50 ` Greg KH
  2016-10-25 15:43   ` Stuart Yoder
  0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2016-10-25  7:50 UTC (permalink / raw)
  To: Stuart Yoder; +Cc: german.rivera, devel, linux-kernel, agraf, arnd, leoyang.li

On Mon, Oct 17, 2016 at 01:42:09PM -0500, Stuart Yoder wrote:
> This patch does miscellaneous minor cleanup and uprevs the supported
> MC firmware version to 10.x.
> 
> I believe with this series the TODO items on our list are complete,
> with the exception of "Add at least one device driver for a DPAA2
> object", which I expect to send a patch for very soon.  I plan to
> do that in conjunction with a request to move the fsl-mc bus
> driver out of staging.

I applied some of these patches, can you rebase and fix up and resend
the remaining ones?

thanks,

greg k-h

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

* RE: [PATCH 00/14] staging: fsl-mc: cleanup and uprev to MC v10.x
  2016-10-25  7:50 ` Greg KH
@ 2016-10-25 15:43   ` Stuart Yoder
  2016-10-25 18:09     ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Stuart Yoder @ 2016-10-25 15:43 UTC (permalink / raw)
  To: Greg KH; +Cc: German Rivera, devel, linux-kernel, agraf, arnd, Leo Li



> -----Original Message-----
> From: Greg KH [mailto:gregkh@linuxfoundation.org]
> Sent: Tuesday, October 25, 2016 2:50 AM
> To: Stuart Yoder <stuart.yoder@nxp.com>
> Cc: German Rivera <german.rivera@nxp.com>; devel@driverdev.osuosl.org; linux-kernel@vger.kernel.org;
> agraf@suse.de; arnd@arndb.de; Leo Li <leoyang.li@nxp.com>
> Subject: Re: [PATCH 00/14] staging: fsl-mc: cleanup and uprev to MC v10.x
> 
> On Mon, Oct 17, 2016 at 01:42:09PM -0500, Stuart Yoder wrote:
> > This patch does miscellaneous minor cleanup and uprevs the supported
> > MC firmware version to 10.x.
> >
> > I believe with this series the TODO items on our list are complete,
> > with the exception of "Add at least one device driver for a DPAA2
> > object", which I expect to send a patch for very soon.  I plan to
> > do that in conjunction with a request to move the fsl-mc bus
> > driver out of staging.
> 
> I applied some of these patches, can you rebase and fix up and resend
> the remaining ones?

Yes, will resend.

Regarding the patch:
   [PATCH 14/14] staging: fsl-mc: uprev binary interface to match MC v10.x

...your comment was that it did a lot of different things at once.  In
this case, there is no way for me to break that up.   The things listed
in that patch were the changes to the binary interface of the hardware,
and to match it we have to change everything at once.

Thanks,
Stuart

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

* Re: [PATCH 00/14] staging: fsl-mc: cleanup and uprev to MC v10.x
  2016-10-25 15:43   ` Stuart Yoder
@ 2016-10-25 18:09     ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2016-10-25 18:09 UTC (permalink / raw)
  To: Stuart Yoder; +Cc: devel, agraf, arnd, German Rivera, linux-kernel, Leo Li

On Tue, Oct 25, 2016 at 03:43:56PM +0000, Stuart Yoder wrote:
> 
> 
> > -----Original Message-----
> > From: Greg KH [mailto:gregkh@linuxfoundation.org]
> > Sent: Tuesday, October 25, 2016 2:50 AM
> > To: Stuart Yoder <stuart.yoder@nxp.com>
> > Cc: German Rivera <german.rivera@nxp.com>; devel@driverdev.osuosl.org; linux-kernel@vger.kernel.org;
> > agraf@suse.de; arnd@arndb.de; Leo Li <leoyang.li@nxp.com>
> > Subject: Re: [PATCH 00/14] staging: fsl-mc: cleanup and uprev to MC v10.x
> > 
> > On Mon, Oct 17, 2016 at 01:42:09PM -0500, Stuart Yoder wrote:
> > > This patch does miscellaneous minor cleanup and uprevs the supported
> > > MC firmware version to 10.x.
> > >
> > > I believe with this series the TODO items on our list are complete,
> > > with the exception of "Add at least one device driver for a DPAA2
> > > object", which I expect to send a patch for very soon.  I plan to
> > > do that in conjunction with a request to move the fsl-mc bus
> > > driver out of staging.
> > 
> > I applied some of these patches, can you rebase and fix up and resend
> > the remaining ones?
> 
> Yes, will resend.
> 
> Regarding the patch:
>    [PATCH 14/14] staging: fsl-mc: uprev binary interface to match MC v10.x
> 
> ...your comment was that it did a lot of different things at once.  In
> this case, there is no way for me to break that up.   The things listed
> in that patch were the changes to the binary interface of the hardware,
> and to match it we have to change everything at once.

Ah, ok, make that a bit more specific in the patch changelog text so I
don't ask the same thing when you resend it and I re-review it :)

thanks,

greg k-h

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

end of thread, other threads:[~2016-10-25 18:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-17 18:42 [PATCH 00/14] staging: fsl-mc: cleanup and uprev to MC v10.x Stuart Yoder
2016-10-25  7:50 ` Greg KH
2016-10-25 15:43   ` Stuart Yoder
2016-10-25 18:09     ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.