Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1692748 > unrolled thread
| Started by | Matthias Brugger <matthias.bgg@gmail.com> |
|---|---|
| First post | 2017-07-20 12:30 +0200 |
| Last post | 2017-07-24 22:00 +0200 |
| Articles | 5 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH 1/4] ARM: mediatek: dts: Cleanup bindings documentation Matthias Brugger <matthias.bgg@gmail.com> - 2017-07-20 12:30 +0200
[PATCH 4/4] arm64: dts: mediatek: Delete unused dummy clock for MT6797 Matthias Brugger <matthias.bgg@gmail.com> - 2017-07-20 12:30 +0200
[PATCH 2/4] ARM: mediatek: dts: Add mt6796 binding Matthias Brugger <matthias.bgg@gmail.com> - 2017-07-20 12:30 +0200
Re: [PATCH 2/4] ARM: mediatek: dts: Add mt6796 binding Rob Herring <robh@kernel.org> - 2017-07-24 22:00 +0200
Re: [PATCH 1/4] ARM: mediatek: dts: Cleanup bindings documentation Rob Herring <robh@kernel.org> - 2017-07-24 22:00 +0200
| From | Matthias Brugger <matthias.bgg@gmail.com> |
|---|---|
| Date | 2017-07-20 12:30 +0200 |
| Subject | [PATCH 1/4] ARM: mediatek: dts: Cleanup bindings documentation |
| Message-ID | <u5gSt-5Zw-9@gated-at.bofh.it> |
From: Matthias Brugger <mbrugger@suse.com> This patch cleans up the binding documentation stating explicitly the binding and it's fallback for every SoC. Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com> --- Documentation/devicetree/bindings/watchdog/mtk-wdt.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Documentation/devicetree/bindings/watchdog/mtk-wdt.txt b/Documentation/devicetree/bindings/watchdog/mtk-wdt.txt index 6a00939a059a..b0d8d3a9d79e 100644 --- a/Documentation/devicetree/bindings/watchdog/mtk-wdt.txt +++ b/Documentation/devicetree/bindings/watchdog/mtk-wdt.txt @@ -3,9 +3,8 @@ Mediatek SoCs Watchdog timer Required properties: - compatible should contain: - * "mediatek,mt2701-wdt" for MT2701 compatible watchdog timers - * "mediatek,mt6589-wdt" for all compatible watchdog timers (MT2701, - MT6589) + "mediatek,mt2701-wdt", "mediatek,mt6589-wdt": for MT2701 + "mediatek,mt6589-wdt": for MT6589 - reg : Specifies base physical address and size of the registers. -- 2.12.3
[toc] | [next] | [standalone]
| From | Matthias Brugger <matthias.bgg@gmail.com> |
|---|---|
| Date | 2017-07-20 12:30 +0200 |
| Subject | [PATCH 4/4] arm64: dts: mediatek: Delete unused dummy clock for MT6797 |
| Message-ID | <u5gSu-5Zw-23@gated-at.bofh.it> |
| In reply to | #1692748 |
After adding the clock subsystem to the SOC, the dummy
clock clk32k is not longer needed. Delete it.
Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com>
---
arch/arm64/boot/dts/mediatek/mt6797.dtsi | 7 -------
1 file changed, 7 deletions(-)
diff --git a/arch/arm64/boot/dts/mediatek/mt6797.dtsi b/arch/arm64/boot/dts/mediatek/mt6797.dtsi
index 1cb45219ef05..4beaa71107d7 100644
--- a/arch/arm64/boot/dts/mediatek/mt6797.dtsi
+++ b/arch/arm64/boot/dts/mediatek/mt6797.dtsi
@@ -108,13 +108,6 @@
clock-output-names = "clk26m";
};
- clk32k: oscillator@1 {
- compatible = "fixed-clock";
- #clock-cells = <0>;
- clock-frequency = <32000>;
- clock-output-names = "clk32k";
- };
-
timer {
compatible = "arm,armv8-timer";
interrupt-parent = <&gic>;
--
2.12.3
[toc] | [prev] | [next] | [standalone]
| From | Matthias Brugger <matthias.bgg@gmail.com> |
|---|---|
| Date | 2017-07-20 12:30 +0200 |
| Subject | [PATCH 2/4] ARM: mediatek: dts: Add mt6796 binding |
| Message-ID | <u5gSv-5Zw-51@gated-at.bofh.it> |
| In reply to | #1692748 |
From: Matthias Brugger <mbrugger@suse.com> This patch adds the binding for the MT6797 SoC. Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com> --- Documentation/devicetree/bindings/watchdog/mtk-wdt.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/devicetree/bindings/watchdog/mtk-wdt.txt b/Documentation/devicetree/bindings/watchdog/mtk-wdt.txt index b0d8d3a9d79e..20ada673ab0c 100644 --- a/Documentation/devicetree/bindings/watchdog/mtk-wdt.txt +++ b/Documentation/devicetree/bindings/watchdog/mtk-wdt.txt @@ -5,6 +5,7 @@ Required properties: - compatible should contain: "mediatek,mt2701-wdt", "mediatek,mt6589-wdt": for MT2701 "mediatek,mt6589-wdt": for MT6589 + "mediatek,mt6797-wdt", "mediatek,mt6589-wdt": for MT6797 - reg : Specifies base physical address and size of the registers. -- 2.12.3
[toc] | [prev] | [next] | [standalone]
| From | Rob Herring <robh@kernel.org> |
|---|---|
| Date | 2017-07-24 22:00 +0200 |
| Subject | Re: [PATCH 2/4] ARM: mediatek: dts: Add mt6796 binding |
| Message-ID | <u6RGi-12s-19@gated-at.bofh.it> |
| In reply to | #1692762 |
On Thu, Jul 20, 2017 at 12:22:45PM +0200, Matthias Brugger wrote: > From: Matthias Brugger <mbrugger@suse.com> > > This patch adds the binding for the MT6797 SoC. > > Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com> > --- > Documentation/devicetree/bindings/watchdog/mtk-wdt.txt | 1 + > 1 file changed, 1 insertion(+) Acked-by: Rob Herring <robh@kernel.org>
[toc] | [prev] | [next] | [standalone]
| From | Rob Herring <robh@kernel.org> |
|---|---|
| Date | 2017-07-24 22:00 +0200 |
| Message-ID | <u6RGh-12s-11@gated-at.bofh.it> |
| In reply to | #1692748 |
On Thu, Jul 20, 2017 at 12:22:44PM +0200, Matthias Brugger wrote: > From: Matthias Brugger <mbrugger@suse.com> > > This patch cleans up the binding documentation stating explicitly > the binding and it's fallback for every SoC. > > Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com> > --- > Documentation/devicetree/bindings/watchdog/mtk-wdt.txt | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) Acked-by: Rob Herring <robh@kernel.org>
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web