mbox series

[GIT,PULL] updates to soc/fsl drivers for v5.2

Message ID 20190501203756.5443-1-leoyang.li@nxp.com (mailing list archive)
State New, archived
Headers show
Series [GIT,PULL] updates to soc/fsl drivers for v5.2 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/leo/linux.git tags/soc-fsl-next-v5.2

Message

Leo Li May 1, 2019, 8:37 p.m. UTC
Hi arm-soc maintainers,

Please help to merge for-next patches for the upcoming merge window.  Thanks

Regards,
Leo


The following changes since commit 9e98c678c2d6ae3a17cb2de55d17f69dddaa231b:

  Linux 5.1-rc1 (2019-03-17 14:22:26 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/leo/linux.git tags/soc-fsl-next-v5.2

for you to fetch changes up to 1c8f39946c033de08e382025d7ac7f55fbca57eb:

  soc: fsl: qbman_portals: add APIs to retrieve the probing status (2019-05-01 15:09:59 -0500)

----------------------------------------------------------------
NXP/FSL SoC driver updates for v5.2

DPAA2 Console driver
- Add driver to export two char devices to dump logs for MC and
  AIOP

DPAA2 DPIO driver
- Add support for memory backed QBMan portals
- Increase the timeout period to prevent false error
- Add APIs to retrieve QBMan portal probing status

DPAA Qman driver
- Only make liodn fixup on powerpc SoCs with PAMU iommu

Guts driver
- Add definition for LX2160a SoC

----------------------------------------------------------------
Ioana Ciornei (2):
      Documentation: DT: Add entry for DPAA2 console
      soc: fsl: add DPAA2 console support

Laurentiu Tudor (2):
      soc: fsl: qman: fixup liodns only on ppc targets
      soc: fsl: qbman_portals: add APIs to retrieve the probing status

Roy Pledge (2):
      bus: mc-bus: Add support for mapping shareable portals
      soc: fsl: dpio: Add support for memory backed QBMan portals

Vabhav Sharma (1):
      soc: fsl: guts: Add definition for LX2160A

Youri Querry (1):
      soc: fsl: dpio: Increase timeout for QBMan Management Commands

 .../devicetree/bindings/misc/fsl,dpaa2-console.txt |  11 +
 MAINTAINERS                                        |   1 +
 drivers/bus/fsl-mc/dprc.c                          |  30 +-
 drivers/bus/fsl-mc/fsl-mc-bus.c                    |  15 +-
 drivers/bus/fsl-mc/fsl-mc-private.h                |  17 +-
 drivers/soc/fsl/Kconfig                            |  10 +
 drivers/soc/fsl/Makefile                           |   1 +
 drivers/soc/fsl/dpaa2-console.c                    | 329 +++++++++++++++++++++
 drivers/soc/fsl/dpio/dpio-driver.c                 |  23 +-
 drivers/soc/fsl/dpio/qbman-portal.c                | 148 +++++++--
 drivers/soc/fsl/dpio/qbman-portal.h                |   9 +-
 drivers/soc/fsl/guts.c                             |   6 +
 drivers/soc/fsl/qbman/bman_portal.c                |  20 +-
 drivers/soc/fsl/qbman/qman_ccsr.c                  |   2 +-
 drivers/soc/fsl/qbman/qman_portal.c                |  21 +-
 drivers/soc/fsl/qbman/qman_priv.h                  |   9 +-
 include/soc/fsl/bman.h                             |   8 +
 include/soc/fsl/qman.h                             |   9 +
 18 files changed, 618 insertions(+), 51 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
 create mode 100644 drivers/soc/fsl/dpaa2-console.c

Comments

Laurentiu Tudor May 17, 2019, 8:06 a.m. UTC | #1
Hello,

Did this pull request somehow slipped through?

---
Thanks & Best Regards, Laurentiu

On 01.05.2019 23:37, Li Yang wrote:
> Hi arm-soc maintainers,
> 
> Please help to merge for-next patches for the upcoming merge window.  Thanks
> 
> Regards,
> Leo
> 
> 
> The following changes since commit 9e98c678c2d6ae3a17cb2de55d17f69dddaa231b:
> 
>    Linux 5.1-rc1 (2019-03-17 14:22:26 -0700)
> 
> are available in the Git repository at:
> 
>    git://git.kernel.org/pub/scm/linux/kernel/git/leo/linux.git tags/soc-fsl-next-v5.2
> 
> for you to fetch changes up to 1c8f39946c033de08e382025d7ac7f55fbca57eb:
> 
>    soc: fsl: qbman_portals: add APIs to retrieve the probing status (2019-05-01 15:09:59 -0500)
> 
> ----------------------------------------------------------------
> NXP/FSL SoC driver updates for v5.2
> 
> DPAA2 Console driver
> - Add driver to export two char devices to dump logs for MC and
>    AIOP
> 
> DPAA2 DPIO driver
> - Add support for memory backed QBMan portals
> - Increase the timeout period to prevent false error
> - Add APIs to retrieve QBMan portal probing status
> 
> DPAA Qman driver
> - Only make liodn fixup on powerpc SoCs with PAMU iommu
> 
> Guts driver
> - Add definition for LX2160a SoC
> 
> ----------------------------------------------------------------
> Ioana Ciornei (2):
>        Documentation: DT: Add entry for DPAA2 console
>        soc: fsl: add DPAA2 console support
> 
> Laurentiu Tudor (2):
>        soc: fsl: qman: fixup liodns only on ppc targets
>        soc: fsl: qbman_portals: add APIs to retrieve the probing status
> 
> Roy Pledge (2):
>        bus: mc-bus: Add support for mapping shareable portals
>        soc: fsl: dpio: Add support for memory backed QBMan portals
> 
> Vabhav Sharma (1):
>        soc: fsl: guts: Add definition for LX2160A
> 
> Youri Querry (1):
>        soc: fsl: dpio: Increase timeout for QBMan Management Commands
> 
>   .../devicetree/bindings/misc/fsl,dpaa2-console.txt |  11 +
>   MAINTAINERS                                        |   1 +
>   drivers/bus/fsl-mc/dprc.c                          |  30 +-
>   drivers/bus/fsl-mc/fsl-mc-bus.c                    |  15 +-
>   drivers/bus/fsl-mc/fsl-mc-private.h                |  17 +-
>   drivers/soc/fsl/Kconfig                            |  10 +
>   drivers/soc/fsl/Makefile                           |   1 +
>   drivers/soc/fsl/dpaa2-console.c                    | 329 +++++++++++++++++++++
>   drivers/soc/fsl/dpio/dpio-driver.c                 |  23 +-
>   drivers/soc/fsl/dpio/qbman-portal.c                | 148 +++++++--
>   drivers/soc/fsl/dpio/qbman-portal.h                |   9 +-
>   drivers/soc/fsl/guts.c                             |   6 +
>   drivers/soc/fsl/qbman/bman_portal.c                |  20 +-
>   drivers/soc/fsl/qbman/qman_ccsr.c                  |   2 +-
>   drivers/soc/fsl/qbman/qman_portal.c                |  21 +-
>   drivers/soc/fsl/qbman/qman_priv.h                  |   9 +-
>   include/soc/fsl/bman.h                             |   8 +
>   include/soc/fsl/qman.h                             |   9 +
>   18 files changed, 618 insertions(+), 51 deletions(-)
>   create mode 100644 Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
>   create mode 100644 drivers/soc/fsl/dpaa2-console.c
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Flists.infradead.org%2Fmailman%2Flistinfo%2Flinux-arm-kernel&data=02%7C01%7Claurentiu.tudor%40nxp.com%7Cce3ff1bdc08b445447e408d6ce757dc9%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0%7C0%7C636923401346806528&sdata=DXh5Men7Mw1lttFbJskOzdLfSMqClpMr9lu9qJQV5H8%3D&reserved=0
>