public inbox for linux-arm-kernel@lists.infradead.org 
 help / color / mirror / Atom feed
From: cw00.choi@samsung•com (Chanwoo Choi)
To: linux-arm-kernel@lists•infradead.org
Subject: [PATCH v4 0/7] rk3399 support ddr frequency scaling
Date: Mon, 01 Aug 2016 16:50:34 +0900	[thread overview]
Message-ID: <579EFF4A.1020908@samsung.com> (raw)
In-Reply-To: <579EFE64.1000502@rock-chips.com>

Hi Lin,

On 2016? 08? 01? 16:46, hl wrote:
> Hi Chanwoo Choi,
> 
>     Ah, i am base on https://chromium.googlesource.com/chromiumos/third_party/kernel/v4.4,
> and forget to rebase on https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git, i will fix it in next version.
> I am sorry about that. And can you help to review the devfreq patch first, if something need to update,
> i will do it together. Thanks.

Sure. I'm now reviewing the devfreq patches.

Regards,
Chanwoo Choi

> 
> On 2016?08?01? 15:39, Chanwoo Choi wrote:
>> Hi Lin,
>>
>> On 2016? 07? 29? 16:56, Lin Huang wrote:
>>> rk3399 platform have dfi controller can monitor ddr load,
>>> and dcf controller to handle ddr register so we can get the
>>> right ddr frequency and make ddr controller happy work(which
>>> will implement in bl31). So we do ddr frequency scaling with
>>> following flow:
>>>
>>>          kernel                                bl31
>>>
>>>     monitor ddr load
>>>         |
>>>         |
>>>     get_target_rate
>>>         |
>>>         |           pass rate to bl31
>>>     clk_set_rate(ddr) --------------------->run dcf flow
>>>         |                                   |
>>>         |                                   |
>>>     wait dcf interrupt<-------------------trigger dcf interrupt
>>>         |
>>>         |
>>>           return
>>>
>>> Lin Huang (6):
>>>    clk: rockchip: add new clock-type for the ddrclk
>>>    clk: rockchip: rk3399: add SCLK_DDRCLK ID for ddrc
>>>    clk: rockchip: rk3399: add ddrc clock support
>>>    PM / devfreq: event: support rockchip dfi controller
>>>    PM / devfreq: rockchip: add devfreq driver for rk3399 dmc
>>>    drm/rockchip: Add dmc notifier in vop driver
>>>
>>>
>>> Heiko St?bner (1):
>>>    clk: rockchip: add clock flag parameter when register pll
>>>
>>> Lin Huang (6):
>>>    clk: rockchip: add new clock-type for the ddrclk
>>>    clk: rockchip: rk3399: add SCLK_DDRCLK ID for ddrc
>>>    clk: rockchip: rk3399: add ddrc clock support
>>>    PM / devfreq: event: support rockchip dfi controller
>>>    PM / devfreq: rockchip: add devfreq driver for rk3399 dmc
>>>    drm/rockchip: Add dmc notifier in vop driver
>> The cover-letter includes the duplicate list of patches.
>>
>> Also, I want to test the build test. but, When I apply these patches,
>> merge conflict happen. Could you give the information about base git repository?
>>
>> Regards,
>> Chanwoo Choi
>>
>>
>>>   drivers/clk/rockchip/Makefile               |   1 +
>>>   drivers/clk/rockchip/clk-ddr.c              | 146 +++++++++
>>>   drivers/clk/rockchip/clk-pll.c              |   4 +-
>>>   drivers/clk/rockchip/clk-rk3399.c           |  19 ++
>>>   drivers/clk/rockchip/clk.c                  |  11 +-
>>>   drivers/clk/rockchip/clk.h                  |  29 +-
>>>   drivers/devfreq/Kconfig                     |   1 +
>>>   drivers/devfreq/Makefile                    |   1 +
>>>   drivers/devfreq/event/Kconfig               |   7 +
>>>   drivers/devfreq/event/Makefile              |   1 +
>>>   drivers/devfreq/event/rockchip-dfi.c        | 253 +++++++++++++++
>>>   drivers/devfreq/rockchip/Kconfig            |   8 +
>>>   drivers/devfreq/rockchip/Makefile           |   1 +
>>>   drivers/devfreq/rockchip/rk3399_dmc.c       | 473 ++++++++++++++++++++++++++++
>>>   drivers/gpu/drm/rockchip/rockchip_drm_vop.c | 124 +++++++-
>>>   include/dt-bindings/clock/rk3399-cru.h      |   1 +
>>>   include/soc/rockchip/rockchip_sip.h         |  27 ++
>>>   17 files changed, 1098 insertions(+), 9 deletions(-)
>>>   create mode 100644 drivers/clk/rockchip/clk-ddr.c
>>>   create mode 100644 drivers/devfreq/event/rockchip-dfi.c
>>>   create mode 100644 drivers/devfreq/rockchip/Kconfig
>>>   create mode 100644 drivers/devfreq/rockchip/Makefile
>>>   create mode 100644 drivers/devfreq/rockchip/rk3399_dmc.c
>>>   create mode 100644 include/soc/rockchip/rockchip_sip.h
>>>
>>
>>
>>
> 

  reply	other threads:[~2016-08-01  7:50 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20160729075805epcas1p2fa2fab53fc8cdfdf42f53e99a0a72e6a@epcas1p2.samsung.com>
2016-07-29  7:56 ` [PATCH v4 0/7] rk3399 support ddr frequency scaling Lin Huang
2016-07-29  7:56   ` [PATCH v4 1/7] clk: rockchip: add clock flag parameter when register pll Lin Huang
2016-08-04 22:37     ` Heiko Stuebner
2016-08-05  8:50       ` hl
2016-08-05  8:55         ` Heiko Stübner
2016-07-29  7:56   ` [PATCH v4 2/7] clk: rockchip: add new clock-type for the ddrclk Lin Huang
2016-08-04 20:23     ` Heiko Stübner
2016-08-04 22:42       ` Heiko Stuebner
2016-07-29  7:56   ` [PATCH v4 3/7] clk: rockchip: rk3399: add SCLK_DDRCLK ID for ddrc Lin Huang
2016-08-04 22:40     ` Heiko Stuebner
2016-07-29  7:56   ` [PATCH v4 4/7] clk: rockchip: rk3399: add ddrc clock support Lin Huang
2016-07-29  7:56   ` [PATCH v4 5/7] PM / devfreq: event: support rockchip dfi controller Lin Huang
2016-08-01  7:41     ` Chanwoo Choi
2016-08-01  8:08       ` Chanwoo Choi
2016-08-01  8:27         ` hl
2016-08-01 10:31           ` Chanwoo Choi
2016-07-29  7:57   ` [PATCH v4 6/7] PM / devfreq: rockchip: add devfreq driver for rk3399 dmc Lin Huang
2016-08-01 10:28     ` Chanwoo Choi
2016-08-02  1:03       ` hl
2016-08-02  4:21         ` Chanwoo Choi
2016-08-03  7:38           ` hl
2016-08-04  0:33             ` Chanwoo Choi
2016-07-29  7:57   ` [PATCH v4 7/7] drm/rockchip: Add dmc notifier in vop driver Lin Huang
2016-08-01  7:39   ` [PATCH v4 0/7] rk3399 support ddr frequency scaling Chanwoo Choi
2016-08-01  7:46     ` hl
2016-08-01  7:50       ` Chanwoo Choi [this message]
2016-08-05 13:48   ` Tomeu Vizoso

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=579EFF4A.1020908@samsung.com \
    --to=cw00.choi@samsung$(echo .)com \
    --cc=linux-arm-kernel@lists$(echo .)infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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