From: Loic Poulain <loic.poulain@linaro.org>
To: Guenter Roeck <linux@roeck-us.net>
Cc: wim@linux-watchdog.org, Rob Herring <robh+dt@kernel.org>,
linux-arm-msm <linux-arm-msm@vger.kernel.org>,
linux-watchdog@vger.kernel.org,
devicetree <devicetree@vger.kernel.org>,
Andy Gross <andy.gross@linaro.org>
Subject: Re: [PATCH v2 1/3] watchdog: Add pm8916 watchdog driver
Date: Thu, 22 Nov 2018 17:07:30 +0100 [thread overview]
Message-ID: <CAMZdPi9yeFEussm=z0mng2iCiR7xyFUeWbSw=efMBn78yjzGAQ@mail.gmail.com> (raw)
In-Reply-To: <20181122155915.GB27764@roeck-us.net>
[-- Attachment #1: Type: text/plain, Size: 4154 bytes --]
Hi Guenter,
On Thu, 22 Nov 2018 at 16:59, Guenter Roeck <linux@roeck-us.net> wrote:
> On Wed, Nov 21, 2018 at 06:27:42PM +0100, Loic Poulain wrote:
> > The PM816 module is a versatile PMIC with many diverse functions
> > integrated, including, a watchdog.
> > This watchdog is subcomponent of the PON (Power On) peripheral,
> > in the same way as pwrkey/resin buttons.
> > It works with two timers (2-stages), the first one generates an
> > IRQ to the main SoC (APQ8016/MSM8916), the second one performs
> > the reset.
> >
> > This driver expects the following device hierarchy:
> > [pm8916]->[pm8916-pon]->[pm8916-wdt]
> >
> > It uses the pm8916 regmap to access PM8916 registers.
> >
> > Signed-off-by: Loic Poulain <loic.poulain@linaro.org>
> > ---
> > v2: SPDX license
> > headers ordering
> > coding styles / tabs / multi-line comments
> > pretimeout / bark interrupt
> > WDIOF_MAGICCLOSE flag
> > timeout init via fdt
> > devm usage
> >
> > drivers/watchdog/Kconfig | 8 ++
> > drivers/watchdog/Makefile | 1 +
> > drivers/watchdog/pm8916_wdt.c | 214
> ++++++++++++++++++++++++++++++++++++++++++
> > 3 files changed, 223 insertions(+)
> > create mode 100644 drivers/watchdog/pm8916_wdt.c
> >
> > diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig
> > index 2d64333..ef2c2b5 100644
> > --- a/drivers/watchdog/Kconfig
> > +++ b/drivers/watchdog/Kconfig
> > @@ -847,6 +847,14 @@ config SPRD_WATCHDOG
> > Say Y here to include watchdog timer supported
> > by Spreadtrum system.
> >
> > +config PM8916_WATCHDOG
> > + tristate "QCOM PM8916 pmic watchdog"
> > + depends on OF && MFD_SPMI_PMIC
> > + select WATCHDOG_CORE
> > + help
> > + Say Y here to include support watchdog timer embedded into the
> > + pm8916 module.
> > +
> > # X86 (i386 + ia64 + x86_64) Architecture
> >
> > config ACQUIRE_WDT
> > diff --git a/drivers/watchdog/Makefile b/drivers/watchdog/Makefile
> > index f69cdff..cc90e72 100644
> > --- a/drivers/watchdog/Makefile
> > +++ b/drivers/watchdog/Makefile
> > @@ -92,6 +92,7 @@ obj-$(CONFIG_STM32_WATCHDOG) += stm32_iwdg.o
> > obj-$(CONFIG_UNIPHIER_WATCHDOG) += uniphier_wdt.o
> > obj-$(CONFIG_RTD119X_WATCHDOG) += rtd119x_wdt.o
> > obj-$(CONFIG_SPRD_WATCHDOG) += sprd_wdt.o
> > +obj-$(CONFIG_PM8916_WATCHDOG) += pm8916_wdt.o
> >
> > # X86 (i386 + ia64 + x86_64) Architecture
> > obj-$(CONFIG_ACQUIRE_WDT) += acquirewdt.o
> > diff --git a/drivers/watchdog/pm8916_wdt.c
> b/drivers/watchdog/pm8916_wdt.c
> > new file mode 100644
> > index 0000000..25d1110
> > --- /dev/null
> > +++ b/drivers/watchdog/pm8916_wdt.c
> > @@ -0,0 +1,214 @@
> > +// SPDX-License-Identifier: GPL-2.0
> > +#include <linux/bitops.h>
> > +#include <linux/interrupt.h>
> > +#include <linux/kernel.h>
> > +#include <linux/module.h>
> > +#include <linux/of.h>
> > +#include <linux/property.h>
> > +#include <linux/platform_device.h>
> > +#include <linux/regmap.h>
> > +#include <linux/watchdog.h>
> > +
> > +#define PON_INT_RT_STS 0x10
> > +#define PMIC_WD_BARK_STS_BIT BIT(6)
> > +
> > +#define PON_PMIC_WD_RESET_S1_TIMER 0x54
> > +#define PON_PMIC_WD_RESET_S2_TIMER 0x55
> > +
> > +#define PON_PMIC_WD_RESET_S2_CTL 0x56
> > +#define RESET_TYPE_WARM 0x01
> > +#define RESET_TYPE_SHUTDOWN 0x04
> > +#define RESET_TYPE_HARD 0x07
> > +
> > +#define PON_PMIC_WD_RESET_S2_CTL2 0x57
> > +#define S2_RESET_EN_BIT BIT(7)
> > +
> > +#define PON_PMIC_WD_RESET_PET 0x58
> > +#define WATCHDOG_PET_BIT BIT(0)
> > +
> > +#define PM8916_WDT_DEFAULT_TIMEOUT 32
> > +#define PM8916_WDT_MIN_TIMEOUT 1
> > +#define PM8916_WDT_MAX_TIMEOUT 127
> > +
> > +struct pm8916_wdt {
> > + struct device *dev;
>
> Not used anywhere.
>
> > + struct regmap *regmap;
> > + struct watchdog_device wdev;
> > + u32 baseaddr;
> > + int irq;
>
> Not used anywhere except for the probe function, and there it can be
> kept internal.
>
>
Thanks for the sharp-eyed review, I'll send a v3.
Guenter
>
[-- Attachment #2: Type: text/html, Size: 5934 bytes --]
prev parent reply other threads:[~2018-11-22 16:07 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-21 17:27 [PATCH v2 1/3] watchdog: Add pm8916 watchdog driver Loic Poulain
2018-11-21 17:27 ` [PATCH v2 2/3] dt-bindings: watchdog: Add Qualcomm PM8916 watchdog Loic Poulain
2018-11-22 15:51 ` Guenter Roeck
2018-11-21 17:27 ` [PATCH v2 3/3] arm64: dts: qcom: pm8916: Add PON watchdog node Loic Poulain
2018-11-22 15:59 ` [PATCH v2 1/3] watchdog: Add pm8916 watchdog driver Guenter Roeck
2018-11-22 16:07 ` Loic Poulain [this message]
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='CAMZdPi9yeFEussm=z0mng2iCiR7xyFUeWbSw=efMBn78yjzGAQ@mail.gmail.com' \
--to=loic.poulain@linaro.org \
--cc=andy.gross@linaro.org \
--cc=devicetree@vger.kernel.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-watchdog@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=robh+dt@kernel.org \
--cc=wim@linux-watchdog.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).