All of lore.kernel.org
 help / color / mirror / Atom feed
From: Guenter Roeck <linux@roeck-us.net>
To: Carlo Caione <carlo@caione.org>,
	wim@iguana.be, linux-watchdog@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, robh+dt@kernel.org,
	maxime.ripard@free-electrons.com, b.galvani@gmail.com,
	linux@arm.linux.org.uk, jerry.cao@amlogic.com,
	victor.wan@amlogic.com
Subject: Re: [PATCH v3 0/4] ARM: meson: watchdog driver
Date: Fri, 19 Sep 2014 19:50:25 -0700	[thread overview]
Message-ID: <541CEB71.5060800@roeck-us.net> (raw)
In-Reply-To: <1411158989-8075-1-git-send-email-carlo@caione.org>

On 09/19/2014 01:36 PM, Carlo Caione wrote:
> This patchset adds support for the watchdog found on Amlogic MesonX SoCs. The
> watchdog is used also to reboot the device.
>
> DTSI and multi_v7_defconfig are updated and proper documentation is added.
>
> No documentation is provided by Amlogic, the code is reverse-engineered by the
> code available at http://openlinux.amlogic.com:8000/download/
>
> This patchset depends on:
> [1] [PATCH 0/6] ARM: meson: initial support for MesonX SoCs
> [2] [PATCH 0/2] ARM: meson: add clocksource support
>
> Changes since v2:
> * changed compatible to "amlogic,meson6-wdt"
> * removed useless code
> * code refactored
>
> Changes since v1:
> * added restart handler support
>
> [1] http://www.spinics.net/lists/arm-kernel/msg362521.html
> [2] http://www.spinics.net/lists/arm-kernel/msg362483.html
>
> Carlo Caione (4):
>    ARM: docs: add documentation binding for meson watchdog
>    ARM: meson: add watchdog driver
>    ARM: DTS: meson: update DTSI to add watchdog node
>    ARM: defconfig: update multi_v7_defconfig
>
>   .../devicetree/bindings/watchdog/meson6-wdt.txt    |  13 ++
>   arch/arm/boot/dts/meson.dtsi                       |   5 +
>   arch/arm/configs/multi_v7_defconfig                |   1 +
>   drivers/watchdog/Kconfig                           |  10 +
>   drivers/watchdog/Makefile                          |   1 +
>   drivers/watchdog/meson_wdt.c                       | 235 +++++++++++++++++++++
>   6 files changed, 265 insertions(+)
>   create mode 100644 Documentation/devicetree/bindings/watchdog/meson6-wdt.txt
>   create mode 100644 drivers/watchdog/meson_wdt.c
>
For the series:

Reviewed-by: Guenter Roeck <linux@roeck-us.net>


WARNING: multiple messages have this Message-ID (diff)
From: linux@roeck-us.net (Guenter Roeck)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 0/4] ARM: meson: watchdog driver
Date: Fri, 19 Sep 2014 19:50:25 -0700	[thread overview]
Message-ID: <541CEB71.5060800@roeck-us.net> (raw)
In-Reply-To: <1411158989-8075-1-git-send-email-carlo@caione.org>

On 09/19/2014 01:36 PM, Carlo Caione wrote:
> This patchset adds support for the watchdog found on Amlogic MesonX SoCs. The
> watchdog is used also to reboot the device.
>
> DTSI and multi_v7_defconfig are updated and proper documentation is added.
>
> No documentation is provided by Amlogic, the code is reverse-engineered by the
> code available at http://openlinux.amlogic.com:8000/download/
>
> This patchset depends on:
> [1] [PATCH 0/6] ARM: meson: initial support for MesonX SoCs
> [2] [PATCH 0/2] ARM: meson: add clocksource support
>
> Changes since v2:
> * changed compatible to "amlogic,meson6-wdt"
> * removed useless code
> * code refactored
>
> Changes since v1:
> * added restart handler support
>
> [1] http://www.spinics.net/lists/arm-kernel/msg362521.html
> [2] http://www.spinics.net/lists/arm-kernel/msg362483.html
>
> Carlo Caione (4):
>    ARM: docs: add documentation binding for meson watchdog
>    ARM: meson: add watchdog driver
>    ARM: DTS: meson: update DTSI to add watchdog node
>    ARM: defconfig: update multi_v7_defconfig
>
>   .../devicetree/bindings/watchdog/meson6-wdt.txt    |  13 ++
>   arch/arm/boot/dts/meson.dtsi                       |   5 +
>   arch/arm/configs/multi_v7_defconfig                |   1 +
>   drivers/watchdog/Kconfig                           |  10 +
>   drivers/watchdog/Makefile                          |   1 +
>   drivers/watchdog/meson_wdt.c                       | 235 +++++++++++++++++++++
>   6 files changed, 265 insertions(+)
>   create mode 100644 Documentation/devicetree/bindings/watchdog/meson6-wdt.txt
>   create mode 100644 drivers/watchdog/meson_wdt.c
>
For the series:

Reviewed-by: Guenter Roeck <linux@roeck-us.net>

  parent reply	other threads:[~2014-09-20  2:51 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-19 20:36 [PATCH v3 0/4] ARM: meson: watchdog driver Carlo Caione
2014-09-19 20:36 ` Carlo Caione
2014-09-19 20:36 ` [PATCH v3 1/4] ARM: docs: add documentation binding for meson watchdog Carlo Caione
2014-09-19 20:36   ` Carlo Caione
2014-09-20 15:28   ` Guenter Roeck
2014-09-20 15:28     ` Guenter Roeck
2014-09-20 16:08     ` Carlo Caione
2014-09-20 16:08       ` Carlo Caione
2014-09-20 16:10       ` Guenter Roeck
2014-09-20 16:10         ` Guenter Roeck
2014-09-19 20:36 ` [PATCH v3 2/4] ARM: meson: add watchdog driver Carlo Caione
2014-09-19 20:36   ` Carlo Caione
2014-09-20 15:30   ` Guenter Roeck
2014-09-20 15:30     ` Guenter Roeck
2014-09-20 16:15     ` Carlo Caione
2014-09-20 16:15       ` Carlo Caione
2014-09-20 16:29       ` Guenter Roeck
2014-09-20 16:29         ` Guenter Roeck
2014-09-19 20:36 ` [PATCH v3 3/4] ARM: DTS: meson: update DTSI to add watchdog node Carlo Caione
2014-09-19 20:36   ` Carlo Caione
2014-09-19 20:36 ` [PATCH v3 4/4] ARM: defconfig: update multi_v7_defconfig Carlo Caione
2014-09-19 20:36   ` Carlo Caione
2014-09-20  2:50 ` Guenter Roeck [this message]
2014-09-20  2:50   ` [PATCH v3 0/4] ARM: meson: watchdog driver Guenter Roeck

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=541CEB71.5060800@roeck-us.net \
    --to=linux@roeck-us.net \
    --cc=b.galvani@gmail.com \
    --cc=carlo@caione.org \
    --cc=jerry.cao@amlogic.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-watchdog@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=maxime.ripard@free-electrons.com \
    --cc=robh+dt@kernel.org \
    --cc=victor.wan@amlogic.com \
    --cc=wim@iguana.be \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.