Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1404229

[PATCH 0/3] Amlogic: GXBB: Add reset controller

From Neil Armstrong <narmstrong@baylibre.com>
Newsgroups linux.kernel
Subject [PATCH 0/3] Amlogic: GXBB: Add reset controller
Date 2016-05-20 10:30 +0200
Message-ID <rANYJ-38Z-5@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


Patchset to add and enable the reset controller driver on GXBB platforms.

This reset controller has up to 256 reset lines with reset pulse generation only,
so the assert and deassert calls are not available.

Changes since the RFC at http://lkml.kernel.org/r/1463148012-25988-1-git-send-email-narmstrong@baylibre.com :
- Fix register mapping and bit defines in bindings header
- Remove assert and unassert calls
- Fix missing __iomem

Neil Armstrong (3):
  reset: Add support for the Amlogic Meson GXBB Reset Controller
  dt-bindings: reset: Add bindings for the Meson GXBB Reset Controller
  ARM64: dts: amlogic: Enable Reset Controller on GXBB-based platforms

 .../bindings/reset/amlogic,meson-gxbb-reset.txt    |  18 ++
 arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi        |   6 +
 drivers/reset/Kconfig                              |   6 +
 drivers/reset/Makefile                             |   1 +
 drivers/reset/reset-meson-gxbb.c                   | 129 +++++++++++++
 .../dt-bindings/reset/amlogic,meson-gxbb-reset.h   | 199 +++++++++++++++++++++
 6 files changed, 359 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/reset/amlogic,meson-gxbb-reset.txt
 create mode 100644 drivers/reset/reset-meson-gxbb.c
 create mode 100644 include/dt-bindings/reset/amlogic,meson-gxbb-reset.h

-- 
2.7.0

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH 0/3] Amlogic: GXBB: Add reset controller Neil Armstrong <narmstrong@baylibre.com> - 2016-05-20 10:30 +0200
  [PATCH 1/3] reset: Add support for the Amlogic Meson GXBB Reset Controller Neil Armstrong <narmstrong@baylibre.com> - 2016-05-20 10:30 +0200
    Re: [PATCH 1/3] reset: Add support for the Amlogic Meson GXBB Reset  Controller Carlo Caione <carlo@caione.org> - 2016-05-20 11:10 +0200
      Re: [PATCH 1/3] reset: Add support for the Amlogic Meson GXBB Reset  Controller Neil Armstrong <narmstrong@baylibre.com> - 2016-05-20 11:20 +0200
        Re: [PATCH 1/3] reset: Add support for the Amlogic Meson GXBB Reset  Controller Philipp Zabel <p.zabel@pengutronix.de> - 2016-05-20 11:30 +0200
        Re: [PATCH 1/3] reset: Add support for the Amlogic Meson GXBB Reset  Controller Carlo Caione <carlo@caione.org> - 2016-05-20 12:10 +0200
          Re: [PATCH 1/3] reset: Add support for the Amlogic Meson GXBB Reset  Controller Neil Armstrong <narmstrong@baylibre.com> - 2016-05-20 14:30 +0200
            Re: [PATCH 1/3] reset: Add support for the Amlogic Meson GXBB Reset  Controller Carlo Caione <carlo@caione.org> - 2016-05-20 14:30 +0200
    Re: [PATCH 1/3] reset: Add support for the Amlogic Meson GXBB Reset  Controller Philipp Zabel <p.zabel@pengutronix.de> - 2016-05-20 11:30 +0200
      Re: [PATCH 1/3] reset: Add support for the Amlogic Meson GXBB Reset  Controller Neil Armstrong <narmstrong@baylibre.com> - 2016-05-20 14:20 +0200
  [PATCH 3/3] ARM64: dts: amlogic: Enable Reset Controller on GXBB-based platforms Neil Armstrong <narmstrong@baylibre.com> - 2016-05-20 10:30 +0200
    Re: [PATCH 3/3] ARM64: dts: amlogic: Enable Reset Controller on  GXBB-based platforms Carlo Caione <carlo@caione.org> - 2016-05-20 10:50 +0200
      Re: [PATCH 3/3] ARM64: dts: amlogic: Enable Reset Controller on  GXBB-based platforms Neil Armstrong <narmstrong@baylibre.com> - 2016-05-20 11:00 +0200
        Re: [PATCH 3/3] ARM64: dts: amlogic: Enable Reset Controller on  GXBB-based platforms Carlo Caione <carlo@caione.org> - 2016-05-20 11:20 +0200
          Re: [PATCH 3/3] ARM64: dts: amlogic: Enable Reset Controller on  GXBB-based platforms Neil Armstrong <narmstrong@baylibre.com> - 2016-05-20 14:20 +0200
            Re: [PATCH 3/3] ARM64: dts: amlogic: Enable Reset Controller on  GXBB-based platforms Carlo Caione <carlo@caione.org> - 2016-05-20 14:30 +0200
              Re: [PATCH 3/3] ARM64: dts: amlogic: Enable Reset Controller on  GXBB-based platforms Neil Armstrong <narmstrong@baylibre.com> - 2016-05-20 14:30 +0200
  [PATCH 2/3] dt-bindings: reset: Add bindings for the Meson GXBB Reset Controller Neil Armstrong <narmstrong@baylibre.com> - 2016-05-20 10:30 +0200
    Re: [PATCH 2/3] dt-bindings: reset: Add bindings for the Meson GXBB  Reset Controller Carlo Caione <carlo@caione.org> - 2016-05-20 10:50 +0200
      Re: [PATCH 2/3] dt-bindings: reset: Add bindings for the Meson GXBB  Reset Controller Neil Armstrong <narmstrong@baylibre.com> - 2016-05-20 11:00 +0200
        Re: [PATCH 2/3] dt-bindings: reset: Add bindings for the Meson GXBB  Reset Controller Carlo Caione <carlo@caione.org> - 2016-05-20 11:10 +0200
          Re: [PATCH 2/3] dt-bindings: reset: Add bindings for the Meson GXBB  Reset Controller Neil Armstrong <narmstrong@baylibre.com> - 2016-05-20 14:20 +0200
    Re: [PATCH 2/3] dt-bindings: reset: Add bindings for the Meson GXBB  Reset Controller Rob Herring <robh@kernel.org> - 2016-05-23 23:10 +0200

csiph-web