All of lore.kernel.org
 help / color / mirror / Atom feed
From: Guenter Roeck <linux@roeck-us.net>
To: "Yang, Wenyou" <Wenyou.Yang@atmel.com>,
	"wim@iguana.be" <wim@iguana.be>,
	"robh+dt@kernel.org" <robh+dt@kernel.org>,
	"pawel.moll@arm.com" <pawel.moll@arm.com>,
	"mark.rutland@arm.com" <mark.rutland@arm.com>,
	"ijc+devicetree@hellion.org.uk" <ijc+devicetree@hellion.org.uk>,
	"galak@codeaurora.org" <galak@codeaurora.org>
Cc: "sylvain.rochet@finsecur.com" <sylvain.rochet@finsecur.com>,
	"Ferre, Nicolas" <Nicolas.FERRE@atmel.com>,
	"boris.brezillon@free-electrons.com"
	<boris.brezillon@free-electrons.com>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-watchdog@vger.kernel.org" <linux-watchdog@vger.kernel.org>
Subject: Re: [PATCH v6 1/2] drivers: watchdog: add a driver to support SAMA5D4 watchdog timer
Date: Thu, 27 Aug 2015 19:57:56 -0700	[thread overview]
Message-ID: <55DFCE34.3030508@roeck-us.net> (raw)
In-Reply-To: <B256D81BAE5131468A838E5D7A243641C9F967D2@penmbx01>

On 08/27/2015 06:30 PM, Yang, Wenyou wrote:
>
>
>> -----Original Message-----
>> From: Guenter Roeck [mailto:linux@roeck-us.net]
>> Sent: 2015年8月7日 23:26
>> To: Yang, Wenyou; wim@iguana.be; robh+dt@kernel.org; pawel.moll@arm.com;
>> mark.rutland@arm.com; ijc+devicetree@hellion.org.uk; galak@codeaurora.org
>> Cc: sylvain.rochet@finsecur.com; Ferre, Nicolas; boris.brezillon@free-
>> electrons.com; devicetree@vger.kernel.org; linux-kernel@vger.kernel.org; linux-
>> watchdog@vger.kernel.org
>> Subject: Re: [PATCH v6 1/2] drivers: watchdog: add a driver to support SAMA5D4
>> watchdog timer
>>
>> On 08/06/2015 03:16 AM, Wenyou Yang wrote:
>>> >From SAMA5D4, the watchdog timer is upgrated with a new feature,
>>> which is describled as in the datasheet, "WDT_MR can be written until
>>> a LOCKMR command is issued in WDT_CR".
>>> That is to say, as long as the bootstrap and u-boot don't issue a
>>> LOCKMR command, WDT_MR can be written more than once in the driver.
>>>
>>> So the SAMA5D4 watchdog driver's implementation is different from the
>>> at91sam9260 watchdog driver implemented in file at91sam9_wdt.c.
>>> The user application open the device file to enable the watchdog timer
>>> hardware, and close to disable it, and set the watchdog timer timeout
>>> by seting WDV and WDD fields of WDT_MR register, and ping the watchdog
>>> by issuing WDRSTT command to WDT_CR register with hard-coded key.
>>>
>>> Signed-off-by: Wenyou Yang <wenyou.yang@atmel.com>
>>
>> Reviewed-by: Guenter Roeck <linux@roeck-us.net>
>
> Hi Vim,
>
> Can this patch series be merged? Could you please?
>
It is included in the pull request I sent to Wim last week.

Guenter



WARNING: multiple messages have this Message-ID (diff)
From: Guenter Roeck <linux-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org>
To: "Yang,
	Wenyou" <Wenyou.Yang-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>,
	"wim-IQzOog9fTRqzQB+pC5nmwQ@public.gmane.org"
	<wim-IQzOog9fTRqzQB+pC5nmwQ@public.gmane.org>,
	"robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org"
	<robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	"pawel.moll-5wv7dgnIgG8@public.gmane.org"
	<pawel.moll-5wv7dgnIgG8@public.gmane.org>,
	"mark.rutland-5wv7dgnIgG8@public.gmane.org"
	<mark.rutland-5wv7dgnIgG8@public.gmane.org>,
	"ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg@public.gmane.org"
	<ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg@public.gmane.org>,
	"galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org"
	<galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
Cc: "sylvain.rochet-ETtyaVkrhkNWk0Htik3J/w@public.gmane.org"
	<sylvain.rochet-ETtyaVkrhkNWk0Htik3J/w@public.gmane.org>,
	"Ferre,
	Nicolas" <Nicolas.FERRE-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>,
	"boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org"
	<boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>,
	"devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
	<devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	"linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
	<linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	"linux-watchdog-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
	<linux-watchdog-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Subject: Re: [PATCH v6 1/2] drivers: watchdog: add a driver to support SAMA5D4 watchdog timer
Date: Thu, 27 Aug 2015 19:57:56 -0700	[thread overview]
Message-ID: <55DFCE34.3030508@roeck-us.net> (raw)
In-Reply-To: <B256D81BAE5131468A838E5D7A243641C9F967D2@penmbx01>

On 08/27/2015 06:30 PM, Yang, Wenyou wrote:
>
>
>> -----Original Message-----
>> From: Guenter Roeck [mailto:linux-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org]
>> Sent: 2015年8月7日 23:26
>> To: Yang, Wenyou; wim-IQzOog9fTRqzQB+pC5nmwQ@public.gmane.org; robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org; pawel.moll@arm.com;
>> mark.rutland-5wv7dgnIgG8@public.gmane.org; ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg@public.gmane.org; galak@codeaurora.org
>> Cc: sylvain.rochet-ETtyaVkrhkNWk0Htik3J/w@public.gmane.org; Ferre, Nicolas; boris.brezillon@free-
>> electrons.com; devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org; linux-kernel-u79uwXL29TasMV2rI37PzA@public.gmane.orgorg; linux-
>> watchdog-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
>> Subject: Re: [PATCH v6 1/2] drivers: watchdog: add a driver to support SAMA5D4
>> watchdog timer
>>
>> On 08/06/2015 03:16 AM, Wenyou Yang wrote:
>>> >From SAMA5D4, the watchdog timer is upgrated with a new feature,
>>> which is describled as in the datasheet, "WDT_MR can be written until
>>> a LOCKMR command is issued in WDT_CR".
>>> That is to say, as long as the bootstrap and u-boot don't issue a
>>> LOCKMR command, WDT_MR can be written more than once in the driver.
>>>
>>> So the SAMA5D4 watchdog driver's implementation is different from the
>>> at91sam9260 watchdog driver implemented in file at91sam9_wdt.c.
>>> The user application open the device file to enable the watchdog timer
>>> hardware, and close to disable it, and set the watchdog timer timeout
>>> by seting WDV and WDD fields of WDT_MR register, and ping the watchdog
>>> by issuing WDRSTT command to WDT_CR register with hard-coded key.
>>>
>>> Signed-off-by: Wenyou Yang <wenyou.yang-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
>>
>> Reviewed-by: Guenter Roeck <linux-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org>
>
> Hi Vim,
>
> Can this patch series be merged? Could you please?
>
It is included in the pull request I sent to Wim last week.

Guenter


--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  reply	other threads:[~2015-08-28  2:58 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-06 10:15 [PATCH v6 0/2] add a new driver to support SAMA5D4 watchdog timer Wenyou Yang
2015-08-06 10:15 ` Wenyou Yang
2015-08-06 10:15 ` Wenyou Yang
2015-08-06 10:16 ` [PATCH v6 1/2] drivers: watchdog: add a " Wenyou Yang
2015-08-06 10:16   ` Wenyou Yang
2015-08-07 15:25   ` Guenter Roeck
2015-08-28  1:30     ` Yang, Wenyou
2015-08-28  1:30       ` Yang, Wenyou
2015-08-28  1:30       ` Yang, Wenyou
2015-08-28  2:57       ` Guenter Roeck [this message]
2015-08-28  2:57         ` Guenter Roeck
2015-08-06 10:17 ` [PATCH v6 2/2] Documentation: dt: binding: atmel-sama5d4-wdt: for SAMA5D4 watchdog driver Wenyou Yang
2015-08-06 10:17   ` Wenyou Yang
2015-08-07 15:27   ` Guenter Roeck
2015-08-07 15:27     ` Guenter Roeck
2015-08-07  0:04 ` [PATCH v6 1/2] drivers: watchdog: add a driver to support SAMA5D4 watchdog timer Wenyou Yang
2015-08-07  0:06 ` [PATCH v6 2/2] Documentation: dt: binding: atmel-sama5d4-wdt: for SAMA5D4 watchdog driver Wenyou Yang

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=55DFCE34.3030508@roeck-us.net \
    --to=linux@roeck-us.net \
    --cc=Nicolas.FERRE@atmel.com \
    --cc=Wenyou.Yang@atmel.com \
    --cc=boris.brezillon@free-electrons.com \
    --cc=devicetree@vger.kernel.org \
    --cc=galak@codeaurora.org \
    --cc=ijc+devicetree@hellion.org.uk \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-watchdog@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=pawel.moll@arm.com \
    --cc=robh+dt@kernel.org \
    --cc=sylvain.rochet@finsecur.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.