[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <5434723F.70800@codeaurora.org>
Date: Tue, 07 Oct 2014 16:07:43 -0700
From: Stephen Boyd <sboyd@...eaurora.org>
To: Josh Cartwright <joshc@...eaurora.org>
CC: Kumar Gala <galak@...eaurora.org>,
Rob Herring <robh+dt@...nel.org>,
Pawel Moll <pawel.moll@....com>,
Mark Rutland <mark.rutland@....com>,
Ian Campbell <ijc+devicetree@...lion.org.uk>,
linux-arm-msm@...r.kernel.org,
Russell King <linux@....linux.org.uk>,
devicetree@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH 2/4] ARM: qcom: add description of KPSS WDT for IPQ8064
On 10/07/2014 03:10 PM, Josh Cartwright wrote:
> On Thu, Oct 02, 2014 at 12:08:38PM -0700, Stephen Boyd wrote:
> [..]
>> On 10/01/14 11:15, Josh Cartwright wrote:
>>> Something like this perhaps:
>>>
>>> timer@...a000 {
>>> compatible = "qcom,kpss-timer", "qcom,msm-timer";
>>> interrupts = <1 1 0x301>,
>>> <1 2 0x301>,
>>> <1 3 0x301>;
>>> reg = <0x0200a000 0x100>;
>>> clock-frequency = <25000000>,
>>> <32768>;
>>> cpu-offset = <0x80000>;
>>>
>>> #address-cells = <1>;
>>> #size-cells = <1>;
>>> ranges;
>>>
>>> cpu0_wdt0: watchdog@...a038 {
>>> compatible = "qcom,kpss-wdt";
>>> reg = <0x208a038 0x40>;
>>> interrupts = <1 4 0x301>,
>>> clocks = <&sleep_clk>;
>>> timeout-sec = <10>;
>>> cpu = <&cpu0>;
>>> };
>>>
>>> cpu0_wdt1: watchdog@...a060 {
>>> compatible = "qcom,kpss-wdt";
>>> reg = <0x208a060 0x40>;
>>> interrupts = <1 5 0x301>,
>>> clocks = <&sleep_clk>;
>>> timeout-sec = <20>;
>>> cpu = <&cpu0>;
>>> };
>>>
>>> cpu1_wdt0: watchdog@...a038 {
>>> compatible = "qcom,kpss-wdt";
>>> reg = <0x209a038 0x40>;
>>> interrupts = <1 4 0x301>,
>>> clocks = <&sleep_clk>;
>>> timeout-sec = <8>;
>>> cpu = <&cpu1>;
>>> };
>>>
>>> cpu1_wdt1: watchdog@...a060 {
>>> compatible = "qcom,kpss-wdt";
>>> reg = <0x209a060 0x40>;
>>> interrupts = <1 5 0x301>,
>>> clocks = <&sleep_clk>;
>>> timeout-sec = <15>;
>>> cpu = <&cpu1>;
>>> };
>>> };
>>>
>>>
>> I'm thinking:
>>
>> timer@...a000 {
>> compatible = "qcom,kpss-timer", "qcom,msm-timer";
>> interrupts = <1 1 0x301>,
>> <1 2 0x301>,
>> <1 3 0x301>,
>> <1 4 0x301>,
>> <1 5 0x301>;
>> reg = <0x0200a000 0x100>;
>> clock-frequency = <27000000>,
>> <32768>;
>> clocks = <&cxo>, <&sleep_clk>;
>> clock-names = "ref", "sleep";
>> cpu-offset = <0x80000>;
>> };
> Where'd the default timeout configuration go? Or, should we have one
> timeout-sec property and not allow setting the default timeouts per WDT
> instance? Or no configurable timeout at all?
Ah sorry. How about a timeout-sec-0, timeout-sec-1 property that is
per-cpu and maps to the first and second watchdog timer? Something like:
timeout-sec-wdt0 = <10 8>;
timeout-sec-wdt1 = <20 15>;
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by The Linux Foundation
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists