From: Daniel Lezcano <daniel.lezcano@linaro.org>
To: tglx@linutronix.de
Cc: linux-kernel@vger.kernel.org, Dong Aisheng <aisheng.dong@nxp.com>,
Mark Rutland <mark.rutland@arm.com>,
devicetree@vger.kernel.org, Shawn Guo <shawnguo@kernel.org>,
Bai Ping <ping.bai@nxp.com>, Rob Herring <robh@kernel.org>,
Rob Herring <robh+dt@kernel.org>
Subject: [PATCH 1/9] dt-bindings: timer: Add nxp tpm timer binding doc
Date: Tue, 29 Aug 2017 11:34:19 +0200 [thread overview]
Message-ID: <1503999271-15712-1-git-send-email-daniel.lezcano@linaro.org> (raw)
In-Reply-To: <20170829093354.GA2572@mai>
From: Dong Aisheng <aisheng.dong@nxp.com>
Adding NXP Low Power Timer/Pulse Width Modulation Module (TPM)
binding doc.
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: devicetree@vger.kernel.org
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Shawn Guo <shawnguo@kernel.org>
Cc: Bai Ping <ping.bai@nxp.com>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
.../devicetree/bindings/timer/nxp,tpm-timer.txt | 28 ++++++++++++++++++++++
1 file changed, 28 insertions(+)
create mode 100644 Documentation/devicetree/bindings/timer/nxp,tpm-timer.txt
diff --git a/Documentation/devicetree/bindings/timer/nxp,tpm-timer.txt b/Documentation/devicetree/bindings/timer/nxp,tpm-timer.txt
new file mode 100644
index 0000000..b4aa7dd
--- /dev/null
+++ b/Documentation/devicetree/bindings/timer/nxp,tpm-timer.txt
@@ -0,0 +1,28 @@
+NXP Low Power Timer/Pulse Width Modulation Module (TPM)
+
+The Timer/PWM Module (TPM) supports input capture, output compare,
+and the generation of PWM signals to control electric motor and power
+management applications. The counter, compare and capture registers
+are clocked by an asynchronous clock that can remain enabled in low
+power modes. TPM can support global counter bus where one TPM drives
+the counter bus for the others, provided bit width is the same.
+
+Required properties:
+
+- compatible : should be "fsl,imx7ulp-tpm"
+- reg : Specifies base physical address and size of the register sets
+ for the clock event device and clock source device.
+- interrupts : Should be the clock event device interrupt.
+- clocks : The clocks provided by the SoC to drive the timer, must contain
+ an entry for each entry in clock-names.
+- clock-names : Must include the following entries: "igp" and "per".
+
+Example:
+tpm5: tpm@40260000 {
+ compatible = "fsl,imx7ulp-tpm";
+ reg = <0x40260000 0x1000>;
+ interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>;
+ clocks = <&clks IMX7ULP_CLK_NIC1_BUS_DIV>,
+ <&clks IMX7ULP_CLK_LPTPM5>;
+ clock-names = "ipg", "per";
+};
--
2.7.4
next prev parent reply other threads:[~2017-08-29 9:35 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-29 9:33 [GIT PULL] clockevents for 4.14 Daniel Lezcano
2017-08-29 9:34 ` Daniel Lezcano [this message]
2017-08-29 9:34 ` [PATCH 2/9] clocksource/drivers/imx-tpm: Add imx tpm timer support Daniel Lezcano
2017-08-29 9:34 ` [PATCH 3/9] devicetree: bindings: Remove sh7372 CMT binding Daniel Lezcano
2017-08-29 9:34 ` [PATCH 4/9] devicetree: bindings: R-Car Gen2 CMT0 and CMT1 bindings Daniel Lezcano
2017-08-29 9:34 ` [PATCH 5/9] devicetree: bindings: r8a73a4 and R-Car Gen2 CMT bindings Daniel Lezcano
2017-08-29 9:34 ` [PATCH 6/9] devicetree: bindings: Deprecate property, update example Daniel Lezcano
2017-08-29 9:34 ` [PATCH 7/9] devicetree: bindings: Remove unused 32-bit CMT bindings Daniel Lezcano
2017-08-29 9:34 ` [PATCH 8/9] devicetree: bindings: Remove deprecated properties Daniel Lezcano
2017-08-29 9:34 ` [PATCH 9/9] clocksource/drivers/bcm2835: Remove message on memory allocation failure Daniel Lezcano
2017-08-29 11:21 ` SF Markus Elfring
2017-08-29 11:42 ` Daniel Lezcano
2017-08-29 13:12 ` SF Markus Elfring
2017-08-29 13:16 ` Daniel Lezcano
2017-08-29 13:20 ` SF Markus Elfring
2017-08-29 13:26 ` Daniel Lezcano
2017-08-29 13:01 ` [GIT PULL] clockevents for 4.14 Daniel Lezcano
2017-08-31 13:49 ` Thomas Gleixner
2017-08-31 14:00 ` Daniel Lezcano
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=1503999271-15712-1-git-send-email-daniel.lezcano@linaro.org \
--to=daniel.lezcano@linaro.org \
--cc=aisheng.dong@nxp.com \
--cc=devicetree@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=ping.bai@nxp.com \
--cc=robh+dt@kernel.org \
--cc=robh@kernel.org \
--cc=shawnguo@kernel.org \
--cc=tglx@linutronix.de \
/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
Powered by JetHome