Re: [PATCH v1 2/2] clk: qcom : dispcc: Add support for display port clocks

2019-07-15 Thread Stephen Boyd
Quoting chand...@codeaurora.org (2019-02-01 16:05:55) > On 2018-10-29 11:43, Stephen Boyd wrote: > > Quoting Taniya Das (2018-10-28 03:34:55) > >> On 2018-10-19 16:04, Taniya Das wrote: > > >> >> > >> >>> +static struct clk_branch disp_cc_mdss_dp_link_intf_clk = { > >> >>> + .halt_reg = 0x20

Re: [PATCH v1 2/2] clk: qcom : dispcc: Add support for display port clocks

2019-02-01 Thread chandanu
Hello Stephen, On 2018-10-29 11:43, Stephen Boyd wrote: Quoting Taniya Das (2018-10-28 03:34:55) Hello Stephen, On 2018-10-19 16:04, Taniya Das wrote: > Hello Stephen, > /snip >>> +static struct clk_rcg2 disp_cc_mdss_dp_crypto_clk_src = { >>> + .cmd_rcgr = 0x2154, >>> + .mnd_

Re: [PATCH v1 2/2] clk: qcom : dispcc: Add support for display port clocks

2018-11-11 Thread chandanu
On 2018-11-06 09:08, Stephen Boyd wrote: Quoting Taniya Das (2018-10-31 22:02:22) + Chandan from Display Port team, On 10/30/2018 10:03 PM, Stephen Boyd wrote: > Also, those > numbers look like gigabits per second (Gbit/s) for the DP spec which > isn't exactly the same as a clk frequency. What

Re: [PATCH v1 2/2] clk: qcom : dispcc: Add support for display port clocks

2018-11-06 Thread Stephen Boyd
Quoting Taniya Das (2018-10-31 22:02:22) > + Chandan from Display Port team, > > On 10/30/2018 10:03 PM, Stephen Boyd wrote: > > Also, those > > numbers look like gigabits per second (Gbit/s) for the DP spec which > > isn't exactly the same as a clk frequency. What frequency does the PLL > > run a

Re: [PATCH v1 2/2] clk: qcom : dispcc: Add support for display port clocks

2018-10-31 Thread Taniya Das
+ Chandan from Display Port team, On 10/30/2018 10:03 PM, Stephen Boyd wrote: Quoting Taniya Das (2018-10-29 23:01:44) On 10/30/2018 12:13 AM, Stephen Boyd wrote: Quoting Taniya Das (2018-10-28 03:34:55) On 2018-10-19 16:04, Taniya Das wrote: On 10/10/2018 2:04 AM, Stephen Boyd wrote: Quoti

Re: [PATCH v1 2/2] clk: qcom : dispcc: Add support for display port clocks

2018-10-30 Thread Stephen Boyd
Quoting Taniya Das (2018-10-29 23:01:44) > On 10/30/2018 12:13 AM, Stephen Boyd wrote: > > Quoting Taniya Das (2018-10-28 03:34:55) > >> On 2018-10-19 16:04, Taniya Das wrote: > >>> On 10/10/2018 2:04 AM, Stephen Boyd wrote: > Quoting Taniya Das (2018-10-09 06:57:47) > > diff --git a/drive

Re: [PATCH v1 2/2] clk: qcom : dispcc: Add support for display port clocks

2018-10-29 Thread Taniya Das
On 10/30/2018 12:13 AM, Stephen Boyd wrote: Quoting Taniya Das (2018-10-28 03:34:55) Hello Stephen, On 2018-10-19 16:04, Taniya Das wrote: Hello Stephen, On 10/10/2018 2:04 AM, Stephen Boyd wrote: Quoting Taniya Das (2018-10-09 06:57:47) diff --git a/drivers/clk/qcom/dispcc-sdm845.c b/dr

Re: [PATCH v1 2/2] clk: qcom : dispcc: Add support for display port clocks

2018-10-29 Thread Stephen Boyd
Quoting Taniya Das (2018-10-28 03:34:55) > Hello Stephen, > > On 2018-10-19 16:04, Taniya Das wrote: > > Hello Stephen, > > > > On 10/10/2018 2:04 AM, Stephen Boyd wrote: > >> Quoting Taniya Das (2018-10-09 06:57:47) > >>> diff --git a/drivers/clk/qcom/dispcc-sdm845.c > >>> b/drivers/clk/qcom/di

Re: [PATCH v1 2/2] clk: qcom : dispcc: Add support for display port clocks

2018-10-28 Thread Taniya Das
Hello Stephen, On 2018-10-19 16:04, Taniya Das wrote: Hello Stephen, On 10/10/2018 2:04 AM, Stephen Boyd wrote: Quoting Taniya Das (2018-10-09 06:57:47) diff --git a/drivers/clk/qcom/dispcc-sdm845.c b/drivers/clk/qcom/dispcc-sdm845.c index 0cc4909..6d3136a 100644 --- a/drivers/clk/qcom/dispc

Re: [PATCH v1 2/2] clk: qcom : dispcc: Add support for display port clocks

2018-10-19 Thread Taniya Das
Hello Stephen, On 10/10/2018 2:04 AM, Stephen Boyd wrote: Quoting Taniya Das (2018-10-09 06:57:47) diff --git a/drivers/clk/qcom/dispcc-sdm845.c b/drivers/clk/qcom/dispcc-sdm845.c index 0cc4909..6d3136a 100644 --- a/drivers/clk/qcom/dispcc-sdm845.c +++ b/drivers/clk/qcom/dispcc-sdm845.c @@ -128

Re: [PATCH v1 2/2] clk: qcom : dispcc: Add support for display port clocks

2018-10-09 Thread Stephen Boyd
Quoting Taniya Das (2018-10-09 06:57:47) > diff --git a/drivers/clk/qcom/dispcc-sdm845.c > b/drivers/clk/qcom/dispcc-sdm845.c > index 0cc4909..6d3136a 100644 > --- a/drivers/clk/qcom/dispcc-sdm845.c > +++ b/drivers/clk/qcom/dispcc-sdm845.c > @@ -128,6 +144,100 @@ enum { > }, > }; > > +st

[PATCH v1 2/2] clk: qcom : dispcc: Add support for display port clocks

2018-10-09 Thread Taniya Das
SDM845 dispcc supports RCG and CBCRs for display port, so add support for the same. Signed-off-by: Taniya Das --- drivers/clk/qcom/dispcc-sdm845.c | 232 + include/dt-bindings/clock/qcom,dispcc-sdm845.h | 11 ++ 2 files changed, 243 insertions(+) diff --gi