From: Chanwoo Choi <cw00.choi@samsung.com>
To: myungjoo.ham@samsung.com, kgene@kernel.org
Cc: Chanwoo Choi <cw00.choi@samsung.com>,
kyungmin.park@samsung.com, rafael.j.wysocki@intel.com,
mark.rutland@arm.com, a.kesavan@samsung.com,
tomasz.figa@gmail.com, k.kozlowski@samsung.com,
b.zolnierkie@samsung.com, robh+dt@kernel.org,
inki.dae@samsung.com, linux-pm@vger.kernel.org,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org
Subject: Re: [PATCH v4 0/9] devfreq: Add generic exynos memory-bus frequency driver
Date: Mon, 19 Jan 2015 09:50:58 +0900 [thread overview]
Message-ID: <54BC54F2.8090001@samsung.com> (raw)
In-Reply-To: <1421286657-4720-1-git-send-email-cw00.choi@samsung.com>
Dear Myungjoo and Kukjin,
Could you please review this patchset?
Best Regards,
Chanwoo Choi
On 01/15/2015 10:50 AM, Chanwoo Choi wrote:
> This patch-set adds the generic exynos bus frequency driver for memory bus
> with DEVFREQ framework. The Samsung Exynos SoCs have the common architecture
> for memory bus between DRAM memory and MMC/sub IP in SoC. This driver can
> support the memory bus frequency driver for Exynos SoCs.
>
> Each memory bus block has a clock for memory bus speed and frequency
> table which is changed according to the utilization of memory bus on runtime.
> And then each memory bus group has the one more memory bus blocks and
> OPP table (including frequency and voltage), regulator, devfreq-event
> devices.
>
> There are a little difference about the number of memory bus because each Exynos
> SoC have the different sub-IP and different memory bus speed. In spite of this
> difference among Exynos SoCs, we can support almost Exynos SoC by adding
> unique data of memory bus to devicetree file.
>
> Depend on:
> - [PATCHv8 0/9] devfreq: Add devfreq-event class to provide raw data for devfreq device
> : https://lkml.org/lkml/2015/1/7/795
>
> Changelog:
>
> Changes from v3:
> (https://lkml.org/lkml/2015/1/7/872)
> - Change the driver name and path by comment
> : drivers/devfreq/exynos-busfreq.c -> drivers/devfreq/exynos/exynos-bus.c
> - Disable regulator when entering suspend state in exynos-bus.c
> and enable it after wake-up from suspend state.
> - Add 'exynos,saturation-ratio' property to calibrate the performance count
> against cycle count.
> - Add new patch to remove unused old driver
> : drivers/devfreq/exynos/exynos4_bus.{c|h}
> - Clean-up code for minor issue
> - Add acked tag by Myungjoo Ham (DEVFREQ maintainer)
>
> Changes from v2:
> (https://lkml.org/lkml/2014/12/31/2)
> - Support the memory bus frequency feature for Exynos3250-based Monk board
> - Fix build warning about variable uninitialized
>
> Changes from v1:
> (https://lkml.org/lkml/2014/12/23/178)
> - This patchset is rebased on v3.19-rc2.
> - Fix bug after wake-up from suspend state. If devfreq device fail to get event,
> exynos-busfreq retry to set the event for starting.
> - Add memory bus group of Exynos4x12/Exynos4210
> - Add divider clock id for Exynos4 memory bus frequency
> - Support memory bus frequency driver on Exynos4412-based TRATS2 board
> - This patch-set has the dependency on following patch-set[1]:
> [1] [PATCHv6 0/9] devfreq: Add devfreq-event class to provide raw data for devfreq device
> : https://lkml.org/lkml/2014/12/28/139
>
> Chanwoo Choi (9):
> devfreq: exynos: Add generic exynos memory bus frequency driver
> devfreq: exynos: Add documentation for generic exynos memory bus frequency driver
> ARM: dts: Add memory bus node for Exynos3250
> clk: samsung: exynos4: Add divider clock id for memory bus frequency
> ARM: dts: Add memory bus node for Exynos4x12
> ARM: dts: Add memory bus node for Exynos4210
> ARM: dts: Add the support for exynos busfreq on Exynos3250-based Rinato/Monk board
> ARM: dts: Add the support for exynos busfreq on Exynos4412-based TRATS2 board
> devfreq: exynos: Remove unused exynos4 memory busfreq driver
>
> .../devicetree/bindings/devfreq/exynos-bus.txt | 188 ++++
> arch/arm/boot/dts/exynos3250-monk.dts | 12 +
> arch/arm/boot/dts/exynos3250-rinato.dts | 12 +
> arch/arm/boot/dts/exynos3250.dtsi | 125 +++
> arch/arm/boot/dts/exynos4210.dtsi | 93 ++
> arch/arm/boot/dts/exynos4412-trats2.dts | 12 +
> arch/arm/boot/dts/exynos4x12.dtsi | 121 +++
> drivers/clk/samsung/clk-exynos4.c | 10 +-
> drivers/devfreq/Kconfig | 17 +-
> drivers/devfreq/Makefile | 1 +
> drivers/devfreq/exynos/Makefile | 2 +-
> drivers/devfreq/exynos/exynos-bus.c | 598 +++++++++++
> drivers/devfreq/exynos/exynos4_bus.c | 1055 --------------------
> drivers/devfreq/exynos/exynos4_bus.h | 110 --
> include/dt-bindings/clock/exynos4.h | 7 +-
> 15 files changed, 1184 insertions(+), 1179 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/devfreq/exynos-bus.txt
> create mode 100644 drivers/devfreq/exynos/exynos-bus.c
> delete mode 100644 drivers/devfreq/exynos/exynos4_bus.c
> delete mode 100644 drivers/devfreq/exynos/exynos4_bus.h
>
prev parent reply other threads:[~2015-01-19 0:51 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-15 1:50 [PATCH v4 0/9] devfreq: Add generic exynos memory-bus frequency driver Chanwoo Choi
2015-01-15 1:50 ` [PATCH v4 1/9] devfreq: exynos: Add generic exynos memory bus " Chanwoo Choi
2015-01-15 1:50 ` [PATCH v4 2/9] devfreq: exynos: Add documentation for " Chanwoo Choi
2015-01-15 1:50 ` [PATCH v4 3/9] ARM: dts: Add memory bus node for Exynos3250 Chanwoo Choi
2015-01-15 1:50 ` [PATCH v4 4/9] clk: samsung: exynos4: Add divider clock id for memory bus frequency Chanwoo Choi
2015-01-20 14:17 ` Sylwester Nawrocki
2015-01-15 1:50 ` [PATCH v4 5/9] ARM: dts: Add memory bus node for Exynos4x12 Chanwoo Choi
2015-01-15 1:50 ` [PATCH v4 6/9] ARM: dts: Add memory bus node for Exynos4210 Chanwoo Choi
2015-01-15 1:50 ` [PATCH v4 7/9] ARM: dts: Add the support for exynos busfreq on Exynos3250-based Rinato/Monk board Chanwoo Choi
2015-01-15 1:50 ` [PATCH v4 8/9] ARM: dts: Add the support for exynos busfreq on Exynos4412-based TRATS2 board Chanwoo Choi
2015-01-15 1:50 ` [PATCH v4 9/9] devfreq: exynos: Remove unused exynos4 memory busfreq driver Chanwoo Choi
2015-01-19 0:50 ` Chanwoo Choi [this message]
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=54BC54F2.8090001@samsung.com \
--to=cw00.choi@samsung.com \
--cc=a.kesavan@samsung.com \
--cc=b.zolnierkie@samsung.com \
--cc=inki.dae@samsung.com \
--cc=k.kozlowski@samsung.com \
--cc=kgene@kernel.org \
--cc=kyungmin.park@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=myungjoo.ham@samsung.com \
--cc=rafael.j.wysocki@intel.com \
--cc=robh+dt@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox