From: Anand Moon <linux.amoon@gmail.com>
To: linux-usb@vger.kernel.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-clk@vger.kernel.org
Cc: Rob Herring <robh+dt@kernel.org>, Kukjin Kim <kgene@kernel.org>,
Krzysztof Kozlowski <krzk@kernel.org>,
Marek Szyprowski <m.szyprowski@samsung.com>,
Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
Felipe Balbi <balbi@kernel.org>,
Sylwester Nawrocki <s.nawrocki@samsung.com>,
Tomasz Figa <tomasz.figa@gmail.com>,
Chanwoo Choi <cw00.choi@samsung.com>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>
Subject: [PATCHv3 0/5] Add support for FSYS power domain and enable suspend clk for Exynos542x SoC
Date: Tue, 10 Mar 2020 19:48:49 +0000 [thread overview]
Message-ID: <20200310194854.831-1-linux.amoon@gmail.com> (raw)
Series build and tested on linux next-20200306.
This patch series tries to enable FSYS power domain
for USBDRD3, PDMA and USB2.0 devices.
Some new patches is added to enable this feature.
Summary:
# powerdebug -d
...
FSYS:
current_state: on
active_time: 236786 ms
total_idle_time: 1914 ms
Idle States:
State Time
S0 1914
Devices:
/devices/platform/soc/10010000.clock-controller/exynos5-subcmu.6.auto
/devices/platform/soc/12130000.phy
/devices/platform/soc/12100000.phy
/devices/platform/soc/12500000.phy
/devices/platform/soc/soc:amba/121a0000.pdma
/devices/platform/soc/soc:amba/121b0000.pdma
/devices/platform/soc/12110000.usb
/devices/platform/soc/12120000.usb
/devices/platform/soc/soc:usb3-0
/devices/platform/soc/soc:usb3-1
This patch series tries to enable suspend clk using
exynos dwc3 driver, for this I have added new
compatible string "samsung,exynos5420-dwusb3"
so that we could add new suspend clk in addition
to the core clk. exynos dwc3 driver will help
enable/disable these clk.
This series PatchV2.
--Added the clk names for exynos5420 compatible.
--Added missing support for Exyno5410 SoC suspend clock.
--Update the commit message to support suspend clk usages.
---
Long time ago I tried to add suspend clk for dwc3 phy
which was wrong appoch, see below.
[0] https://lore.kernel.org/patchwork/patch/837635/
[1] https://lore.kernel.org/patchwork/patch/837636/
Previous changes V3 (It was send with wrong Patch version)
[2] https://patchwork.kernel.org/cover/11373043/
-Anand
Anand Moon (5):
devicetree: bindings: exynos: Add new compatible for Exynos5420 dwc3
clocks support
ARM: dts: exynos: Add missing usbdrd3 suspend clk
ARM: dts: exynos: Add FSYS power domain to Exynos542x USB nodes
usb: dwc3: exynos: Add support for Exynos5422 suspend clk
clk: samsung: exynos542x: Move FSYS subsystem clocks to its sub-CMU
.../devicetree/bindings/usb/exynos-usb.txt | 5 ++-
arch/arm/boot/dts/exynos5410.dtsi | 8 ++--
arch/arm/boot/dts/exynos5420.dtsi | 24 ++++++++--
arch/arm/boot/dts/exynos54xx.dtsi | 4 +-
drivers/clk/samsung/clk-exynos5420.c | 45 ++++++++++++++-----
drivers/usb/dwc3/dwc3-exynos.c | 9 ++++
6 files changed, 73 insertions(+), 22 deletions(-)
--
2.25.1
WARNING: multiple messages have this Message-ID (diff)
From: Anand Moon <linux.amoon@gmail.com>
To: linux-usb@vger.kernel.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-clk@vger.kernel.org
Cc: Felipe Balbi <balbi@kernel.org>,
Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
Stephen Boyd <sboyd@kernel.org>,
Michael Turquette <mturquette@baylibre.com>,
Tomasz Figa <tomasz.figa@gmail.com>,
Krzysztof Kozlowski <krzk@kernel.org>,
Chanwoo Choi <cw00.choi@samsung.com>,
Rob Herring <robh+dt@kernel.org>, Kukjin Kim <kgene@kernel.org>,
Sylwester Nawrocki <s.nawrocki@samsung.com>,
Marek Szyprowski <m.szyprowski@samsung.com>
Subject: [PATCHv3 0/5] Add support for FSYS power domain and enable suspend clk for Exynos542x SoC
Date: Tue, 10 Mar 2020 19:48:49 +0000 [thread overview]
Message-ID: <20200310194854.831-1-linux.amoon@gmail.com> (raw)
Series build and tested on linux next-20200306.
This patch series tries to enable FSYS power domain
for USBDRD3, PDMA and USB2.0 devices.
Some new patches is added to enable this feature.
Summary:
# powerdebug -d
...
FSYS:
current_state: on
active_time: 236786 ms
total_idle_time: 1914 ms
Idle States:
State Time
S0 1914
Devices:
/devices/platform/soc/10010000.clock-controller/exynos5-subcmu.6.auto
/devices/platform/soc/12130000.phy
/devices/platform/soc/12100000.phy
/devices/platform/soc/12500000.phy
/devices/platform/soc/soc:amba/121a0000.pdma
/devices/platform/soc/soc:amba/121b0000.pdma
/devices/platform/soc/12110000.usb
/devices/platform/soc/12120000.usb
/devices/platform/soc/soc:usb3-0
/devices/platform/soc/soc:usb3-1
This patch series tries to enable suspend clk using
exynos dwc3 driver, for this I have added new
compatible string "samsung,exynos5420-dwusb3"
so that we could add new suspend clk in addition
to the core clk. exynos dwc3 driver will help
enable/disable these clk.
This series PatchV2.
--Added the clk names for exynos5420 compatible.
--Added missing support for Exyno5410 SoC suspend clock.
--Update the commit message to support suspend clk usages.
---
Long time ago I tried to add suspend clk for dwc3 phy
which was wrong appoch, see below.
[0] https://lore.kernel.org/patchwork/patch/837635/
[1] https://lore.kernel.org/patchwork/patch/837636/
Previous changes V3 (It was send with wrong Patch version)
[2] https://patchwork.kernel.org/cover/11373043/
-Anand
Anand Moon (5):
devicetree: bindings: exynos: Add new compatible for Exynos5420 dwc3
clocks support
ARM: dts: exynos: Add missing usbdrd3 suspend clk
ARM: dts: exynos: Add FSYS power domain to Exynos542x USB nodes
usb: dwc3: exynos: Add support for Exynos5422 suspend clk
clk: samsung: exynos542x: Move FSYS subsystem clocks to its sub-CMU
.../devicetree/bindings/usb/exynos-usb.txt | 5 ++-
arch/arm/boot/dts/exynos5410.dtsi | 8 ++--
arch/arm/boot/dts/exynos5420.dtsi | 24 ++++++++--
arch/arm/boot/dts/exynos54xx.dtsi | 4 +-
drivers/clk/samsung/clk-exynos5420.c | 45 ++++++++++++++-----
drivers/usb/dwc3/dwc3-exynos.c | 9 ++++
6 files changed, 73 insertions(+), 22 deletions(-)
--
2.25.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next reply other threads:[~2020-03-10 19:49 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-10 19:48 Anand Moon [this message]
2020-03-10 19:48 ` [PATCHv3 0/5] Add support for FSYS power domain and enable suspend clk for Exynos542x SoC Anand Moon
2020-03-10 19:48 ` [PATCHv3 1/5] devicetree: bindings: exynos: Add new compatible for Exynos5420 dwc3 clocks support Anand Moon
2020-03-10 19:48 ` Anand Moon
2020-03-15 9:07 ` Felipe Balbi
2020-03-15 9:07 ` Felipe Balbi
2020-03-15 9:25 ` Anand Moon
2020-03-15 9:25 ` Anand Moon
2020-03-17 8:42 ` Krzysztof Kozlowski
2020-03-17 8:42 ` Krzysztof Kozlowski
2020-03-10 19:48 ` [PATCHv3 2/5] ARM: dts: exynos: Add missing usbdrd3 suspend clk Anand Moon
2020-03-10 19:48 ` Anand Moon
2020-03-14 13:32 ` Anand Moon
2020-03-14 13:32 ` Anand Moon
2020-03-14 18:20 ` Krzysztof Kozlowski
2020-03-14 18:20 ` Krzysztof Kozlowski
2020-03-15 9:46 ` Anand Moon
2020-03-15 9:46 ` Anand Moon
2020-03-10 19:48 ` [PATCHv3 3/5] ARM: dts: exynos: Add FSYS power domain to Exynos542x USB nodes Anand Moon
2020-03-10 19:48 ` Anand Moon
2020-03-10 19:48 ` [PATCHv3 4/5] usb: dwc3: exynos: Add support for Exynos5422 suspend clk Anand Moon
2020-03-10 19:48 ` Anand Moon
2020-03-10 19:48 ` [PATCHv3 5/5] clk: samsung: exynos542x: Move FSYS subsystem clocks to its sub-CMU Anand Moon
2020-03-10 19:48 ` Anand Moon
2020-03-11 14:42 ` Krzysztof Kozlowski
2020-03-11 14:42 ` Krzysztof Kozlowski
2020-03-12 10:34 ` Anand Moon
2020-03-12 10:34 ` Anand Moon
2020-03-12 11:36 ` Krzysztof Kozlowski
2020-03-12 11:36 ` Krzysztof Kozlowski
2020-03-12 12:54 ` Anand Moon
2020-03-12 12:54 ` Anand Moon
2020-03-12 14:08 ` Anand Moon
2020-03-12 14:08 ` Anand Moon
2020-03-14 17:41 ` Krzysztof Kozlowski
2020-03-14 17:41 ` Krzysztof Kozlowski
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=20200310194854.831-1-linux.amoon@gmail.com \
--to=linux.amoon@gmail.com \
--cc=b.zolnierkie@samsung.com \
--cc=balbi@kernel.org \
--cc=cw00.choi@samsung.com \
--cc=devicetree@vger.kernel.org \
--cc=kgene@kernel.org \
--cc=krzk@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=m.szyprowski@samsung.com \
--cc=mturquette@baylibre.com \
--cc=robh+dt@kernel.org \
--cc=s.nawrocki@samsung.com \
--cc=sboyd@kernel.org \
--cc=tomasz.figa@gmail.com \
/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.