Hi Leela, On Wednesday 24 of July 2013 15:08:17 Leela Krishna Amudala wrote: > This patch parses the watchdog node to read pmu wdt sys registers > addresses and do mask/unmask enable/disable of WDT in probe and s2r > scenarios. > > Reviewed-by: Doug Anderson <dianders@xxxxxxxxxxxx> > Signed-off-by: Leela Krishna Amudala <l.krishna@xxxxxxxxxxx> > --- > .../devicetree/bindings/watchdog/samsung-wdt.txt | 14 ++++- > drivers/watchdog/s3c2410_wdt.c | 56 > ++++++++++++++++++++ 2 files changed, 69 insertions(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/watchdog/samsung-wdt.txt > b/Documentation/devicetree/bindings/watchdog/samsung-wdt.txt index > 2aa486c..4c798e3 100644 > --- a/Documentation/devicetree/bindings/watchdog/samsung-wdt.txt > +++ b/Documentation/devicetree/bindings/watchdog/samsung-wdt.txt > @@ -7,8 +7,20 @@ occurred. > Required properties: > - compatible : should be "samsung,s3c2410-wdt" > - reg : base physical address of the controller and length of memory > mapped - region. > + region and the optional (addresses and length of memory mapped regions > + of) PMU registers for masking/unmasking WDT. > - interrupts : interrupt number to the cpu. I don't think PMU registers should be passed like this, even if USB PHY driver currently does it - it needs to be fixed. Every time you are mapping a single 4-byte register, you are creating new mapping for the whole page (4K) containing it. In addition, this makes the WDT driver map IO memory that does not belong to the IP block it handles, which is not nice. I would suggest looking into regmap helpers to implement a driver for the PMU that can share PMU registers with interested drivers. > Optional properties: > - timeout-sec : contains the watchdog timeout in seconds. > +- reset-mask-bit: bit number in the PMU registers to program mask/unmask > WDT. + > +Example: If WDT of Exynos 5420 needs special masking, it is no longer compatible with "samsung,s3c2410-wdt". You need to create separate compatible for it ("samsung,exynos5420-wdt") and do this special masking only for devices using it. > +watchdog { > + compatible = "samsung,s3c2410-wdt"; > + reg = <0x101D0000 0x100>, <0x10040408 0x4>, <0x1004040c 0x4>; > + interrupts = <0 42 0>; > + status = "disabled"; > + reset-mask-bit = <0>; > +}; By the way, you need to Cc devicetree@xxxxxxxxxxxxxxx mailing if you modify device tree bindings. Best regards, Tomasz -- To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html