mbox series

[GIT,PULL] Turris Mox Moxtet bus

Message ID 20190328192232.4b5c993a@nic.cz
State New
Headers show
Series [GIT,PULL] Turris Mox Moxtet bus | expand

Pull-request

https://gitlab.labs.nic.cz/turris/mox-kernel.git/ arm-soc-moxtet-bus

Message

Marek Behún March 28, 2019, 6:22 p.m. UTC
Hello arm-soc maintainers,

please pull the implementation of the Moxtet bus driver into arm-soc/for-next.
Moxtet is a small bus found on Turris Mox.
The patches are reviewed by Linus Walleij and Rob Herring.

Thanks,
Marek

The following changes since commit 93958742192e7956d05989836ada9071f9ffe42e:

  arm64: tegra: Disable CQE Support for SDMMC4 on Tegra186 (2019-03-25 17:12:20 +0100)

are available in the Git repository at:

  https://gitlab.labs.nic.cz/turris/mox-kernel.git/ arm-soc-moxtet-bus

for you to fetch changes up to cea960603584ff05ae6dba647d1641508e5998b4:

  dt-bindings: gpio: Document GPIOs via Moxtet bus (2019-03-28 19:03:01 +0100)

----------------------------------------------------------------
Marek Behún (5):
      bus: Add support for Moxtet bus
      dt-bindings: bus: Document moxtet bus binding
      bus: moxtet: Add sysfs and debugfs documentation
      drivers: gpio: Add support for GPIOs over Moxtet bus
      dt-bindings: gpio: Document GPIOs via Moxtet bus

 Documentation/ABI/testing/debugfs-moxtet               |  23 ++
 Documentation/ABI/testing/sysfs-bus-moxtet-devices     |  17 ++
 Documentation/devicetree/bindings/bus/moxtet.txt       |  46 ++++
 Documentation/devicetree/bindings/gpio/gpio-moxtet.txt |  18 ++
 MAINTAINERS                                            |  12 ++
 drivers/bus/Kconfig                                    |  10 +
 drivers/bus/Makefile                                   |   1 +
 drivers/bus/moxtet.c                                   | 886 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/gpio/Kconfig                                   |   9 +
 drivers/gpio/Makefile                                  |   1 +
 drivers/gpio/gpio-moxtet.c                             | 179 ++++++++++++++++
 include/dt-bindings/bus/moxtet.h                       |  16 ++
 include/linux/moxtet.h                                 | 109 ++++++++++
 13 files changed, 1327 insertions(+)
 create mode 100644 Documentation/ABI/testing/debugfs-moxtet
 create mode 100644 Documentation/ABI/testing/sysfs-bus-moxtet-devices
 create mode 100644 Documentation/devicetree/bindings/bus/moxtet.txt
 create mode 100644 Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
 create mode 100644 drivers/bus/moxtet.c
 create mode 100644 drivers/gpio/gpio-moxtet.c
 create mode 100644 include/dt-bindings/bus/moxtet.h
 create mode 100644 include/linux/moxtet.h

Comments

Olof Johansson April 28, 2019, 7:06 p.m. UTC | #1
Hi Marek,

On Thu, Mar 28, 2019 at 07:22:32PM +0100, Marek Behun wrote:
> Hello arm-soc maintainers,
> 
> please pull the implementation of the Moxtet bus driver into arm-soc/for-next.
> Moxtet is a small bus found on Turris Mox.
> The patches are reviewed by Linus Walleij and Rob Herring.
> 
> Thanks,
> Marek
> 
> The following changes since commit 93958742192e7956d05989836ada9071f9ffe42e:
> 
>   arm64: tegra: Disable CQE Support for SDMMC4 on Tegra186 (2019-03-25 17:12:20 +0100)
> 
> are available in the Git repository at:
> 
>   https://gitlab.labs.nic.cz/turris/mox-kernel.git/ arm-soc-moxtet-bus
> 
> for you to fetch changes up to cea960603584ff05ae6dba647d1641508e5998b4:
> 
>   dt-bindings: gpio: Document GPIOs via Moxtet bus (2019-03-28 19:03:01 +0100)

There are several things that should be addressed in this pull request:

 - Please use a signed tag. In that tag, you should provide a description of
   the pull request similar to above (but with a bit more context, i.e.
   a high-level description of the functionality and why we should merge it.
   Similar to cover letters for patch series.
 - For said signed tag, please get a PGP key established and get other
   developers/maintainers to sign it for you.
 - Nit: If you pipe the 'git pull-request' output to cat, or redirect it to
   a file, it'll size the diffstat such that it fits in 80 columns and won't
   wrap as per below.


I know time is getting short for the next release at the moment and
getting keys signed might take some time, so if you prefer to send the
contents as a patch series and have us apply that, feel free to do so.



-Olof
Marek Behún April 28, 2019, 9:40 p.m. UTC | #2
Hi Olof,

> I know time is getting short for the next release at the moment and
> getting keys signed might take some time, so if you prefer to send the
> contents as a patch series and have us apply that, feel free to do so.

yes, if it is possible I would like these to be merged for the next
release, so I sent it as a patch series just now.

Thanks.

Marek