Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1712653 > unrolled thread

Re: [PATCH 0/5] Add clk and scpsys support for MT6755

Started byMars Cheng <mars.cheng@mediatek.com>
First post2017-08-16 06:10 +0200
Last post2017-08-19 10:20 +0200
Articles 4 — 3 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH 0/5] Add clk and scpsys support for MT6755 Mars Cheng <mars.cheng@mediatek.com> - 2017-08-16 06:10 +0200
    Re: [PATCH 0/5] Add clk and scpsys support for MT6755 Yingjoe Chen <yingjoe.chen@mediatek.com> - 2017-08-17 04:50 +0200
      Re: [PATCH 0/5] Add clk and scpsys support for MT6755 Matthias Brugger <matthias.bgg@gmail.com> - 2017-08-17 12:30 +0200
        Re: [PATCH 0/5] Add clk and scpsys support for MT6755 Mars Cheng <mars.cheng@mediatek.com> - 2017-08-19 10:20 +0200

#1712653 — Re: [PATCH 0/5] Add clk and scpsys support for MT6755

FromMars Cheng <mars.cheng@mediatek.com>
Date2017-08-16 06:10 +0200
SubjectRe: [PATCH 0/5] Add clk and scpsys support for MT6755
Message-ID<ueXOx-2cs-9@gated-at.bofh.it>
Hi Rob, Stephen, Matthias

gentle ping.

Thanks.

On Tue, 2017-08-08 at 16:13 +0800, Mars Cheng wrote:
> Mars Cheng (3):
>   clk: mediatek: add mt6755 clock ID
>   clk: mediatek: add clk support for MT6755
>   soc: mediatek: add MT6755 scpsys support
> 
> wendell.lin (2):
>   dt-bindings: mediatek: add MT6755 power dt-bindings
>   dt-bindings: arm: mediatek: document clk bindings for MT6755
> 
>  .../bindings/arm/mediatek/mediatek,apmixedsys.txt  |    1 +
>  .../bindings/arm/mediatek/mediatek,imgsys.txt      |    1 +
>  .../bindings/arm/mediatek/mediatek,infracfg.txt    |    1 +
>  .../bindings/arm/mediatek/mediatek,mmsys.txt       |    1 +
>  .../bindings/arm/mediatek/mediatek,topckgen.txt    |    1 +
>  .../bindings/arm/mediatek/mediatek,vdecsys.txt     |    1 +
>  .../bindings/arm/mediatek/mediatek,vencsys.txt     |    1 +
>  .../devicetree/bindings/soc/mediatek/scpsys.txt    |    3 +
>  drivers/clk/mediatek/Kconfig                       |   32 +
>  drivers/clk/mediatek/Makefile                      |    5 +
>  drivers/clk/mediatek/clk-mt6755-img.c              |   81 +++
>  drivers/clk/mediatek/clk-mt6755-mm.c               |  148 +++++
>  drivers/clk/mediatek/clk-mt6755-vdec.c             |   91 +++
>  drivers/clk/mediatek/clk-mt6755-venc.c             |   78 +++
>  drivers/clk/mediatek/clk-mt6755.c                  |  666 ++++++++++++++++++++
>  drivers/soc/mediatek/mtk-scpsys.c                  |  116 ++++
>  include/dt-bindings/clock/mt6755-clk.h             |  293 +++++++++
>  include/dt-bindings/power/mt6755-power.h           |   26 +
>  18 files changed, 1546 insertions(+)
>  create mode 100644 drivers/clk/mediatek/clk-mt6755-img.c
>  create mode 100644 drivers/clk/mediatek/clk-mt6755-mm.c
>  create mode 100644 drivers/clk/mediatek/clk-mt6755-vdec.c
>  create mode 100644 drivers/clk/mediatek/clk-mt6755-venc.c
>  create mode 100644 drivers/clk/mediatek/clk-mt6755.c
>  create mode 100644 include/dt-bindings/clock/mt6755-clk.h
>  create mode 100644 include/dt-bindings/power/mt6755-power.h
> 
> 

[toc] | [next] | [standalone]


#1713488

FromYingjoe Chen <yingjoe.chen@mediatek.com>
Date2017-08-17 04:50 +0200
Message-ID<ufj2F-6Ye-3@gated-at.bofh.it>
In reply to#1712653

On Wed, 2017-08-16 at 11:59 +0800, Mars Cheng wrote:
> Hi Rob, Stephen, Matthias
> 
> gentle ping.
> 
> Thanks.
> 
> On Tue, 2017-08-08 at 16:13 +0800, Mars Cheng wrote:
> > Mars Cheng (3):
> >   clk: mediatek: add mt6755 clock ID
> >   clk: mediatek: add clk support for MT6755
> >   soc: mediatek: add MT6755 scpsys support

Hi Mars,

Sean reworked the scpsys driver to remove code duplication, see:
http://lists.infradead.org/pipermail/linux-mediatek/2017-August/009687.html
http://lists.infradead.org/pipermail/linux-mediatek/2017-August/009820.html

I think current driver will have conflict and can't merge as-is, you'll
need to rebase to Matthias' for-next branch.

Joe.C

[toc] | [prev] | [next] | [standalone]


#1713792

FromMatthias Brugger <matthias.bgg@gmail.com>
Date2017-08-17 12:30 +0200
Message-ID<ufqdR-3w2-49@gated-at.bofh.it>
In reply to#1713488

On 08/17/2017 04:47 AM, Yingjoe Chen wrote:
> 
> 
> On Wed, 2017-08-16 at 11:59 +0800, Mars Cheng wrote:
>> Hi Rob, Stephen, Matthias
>>
>> gentle ping.
>>
>> Thanks.
>>
>> On Tue, 2017-08-08 at 16:13 +0800, Mars Cheng wrote:
>>> Mars Cheng (3):
>>>    clk: mediatek: add mt6755 clock ID
>>>    clk: mediatek: add clk support for MT6755
>>>    soc: mediatek: add MT6755 scpsys support
> 
> Hi Mars,
> 
> Sean reworked the scpsys driver to remove code duplication, see:
> http://lists.infradead.org/pipermail/linux-mediatek/2017-August/009687.html
> http://lists.infradead.org/pipermail/linux-mediatek/2017-August/009820.html
> 
> I think current driver will have conflict and can't merge as-is, you'll
> need to rebase to Matthias' for-next branch.
> 

Yes, please rebase, which should be trivial. Other then that the scpsys driver 
looks good.

Regards,
Matthias

[toc] | [prev] | [next] | [standalone]


#1715585

FromMars Cheng <mars.cheng@mediatek.com>
Date2017-08-19 10:20 +0200
Message-ID<ug798-7h3-3@gated-at.bofh.it>
In reply to#1713792
Hi Matthias, Yingjoe

On Thu, 2017-08-17 at 12:19 +0200, Matthias Brugger wrote:
> 
...
> > Hi Mars,
> > 
> > Sean reworked the scpsys driver to remove code duplication, see:
> > http://lists.infradead.org/pipermail/linux-mediatek/2017-August/009687.html
> > http://lists.infradead.org/pipermail/linux-mediatek/2017-August/009820.html
> > 
> > I think current driver will have conflict and can't merge as-is, you'll
> > need to rebase to Matthias' for-next branch.
> > 
> 
> Yes, please rebase, which should be trivial. Other then that the scpsys driver 
> looks good.
> 

Thanks for your review. I will rebase it and send the patch again soon.

Regards,
Mars

> Regards,
> Matthias

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web