All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] Rockchip clock changes for 6.1 #1
@ 2022-11-23 14:01 ` Heiko Stuebner
  0 siblings, 0 replies; 8+ messages in thread
From: Heiko Stuebner @ 2022-11-23 14:01 UTC (permalink / raw)
  To: mturquette, Stephen Boyd; +Cc: linux-clk, linux-rockchip

Hi Mike, Stephen,

please find below a pull-request with some Rockchip stuff.

Mainly the support for the clock-controller for the new and shiny rk3588,

Please pull.

Thanks
Heiko

The following changes since commit 9abf2313adc1ca1b6180c508c25f22f9395cc780:

  Linux 6.1-rc1 (2022-10-16 15:36:24 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git tags/v6.2-rockchip-clk-1

for you to fetch changes up to 739a6a6bbdb793bd57938cb24aa5a6df89983546:

  clk: rockchip: Fix memory leak in rockchip_clk_register_pll() (2022-11-23 14:51:30 +0100)

----------------------------------------------------------------
Support for the clock and reset unit of the rk3588, as well as a fix
for a possible memory leak in the error path of PLL creation.

----------------------------------------------------------------
Corentin Labbe (1):
      clk: rockchip: use proper crypto0 name on rk3399

Elaine Zhang (5):
      dt-bindings: clock: add rk3588 cru bindings
      clk: rockchip: add register offset of the cores select parent
      clk: rockchip: add pll type for RK3588
      clk: rockchip: allow additional mux options for cpu-clock frequency changes
      clk: rockchip: add clock controller for the RK3588

Heiko Stuebner (1):
      Merge branch 'v6.2-shared/clockids' into v6.2-clk/next

Sebastian Reichel (4):
      dt-bindings: clock: add rk3588 clock definitions
      dt-bindings: reset: add rk3588 reset definitions
      clk: rockchip: simplify rockchip_clk_add_lookup
      clk: rockchip: add lookup table support

Xiu Jianfeng (1):
      clk: rockchip: Fix memory leak in rockchip_clk_register_pll()

 .../bindings/clock/rockchip,rk3588-cru.yaml        |   71 +
 drivers/clk/rockchip/Kconfig                       |    8 +
 drivers/clk/rockchip/Makefile                      |    1 +
 drivers/clk/rockchip/clk-cpu.c                     |   69 +-
 drivers/clk/rockchip/clk-pll.c                     |  219 +-
 drivers/clk/rockchip/clk-rk3588.c                  | 2533 ++++++++++++++++++++
 drivers/clk/rockchip/clk.c                         |   14 +-
 drivers/clk/rockchip/clk.h                         |   95 +-
 drivers/clk/rockchip/rst-rk3588.c                  |  857 +++++++
 drivers/clk/rockchip/softrst.c                     |   34 +-
 include/dt-bindings/clock/rk3399-cru.h             |    6 +-
 include/dt-bindings/clock/rockchip,rk3588-cru.h    |  766 ++++++
 include/dt-bindings/reset/rockchip,rk3588-cru.h    |  754 ++++++
 13 files changed, 5389 insertions(+), 38 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/rockchip,rk3588-cru.yaml
 create mode 100644 drivers/clk/rockchip/clk-rk3588.c
 create mode 100644 drivers/clk/rockchip/rst-rk3588.c
 create mode 100644 include/dt-bindings/clock/rockchip,rk3588-cru.h
 create mode 100644 include/dt-bindings/reset/rockchip,rk3588-cru.h




_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [GIT PULL] Rockchip clock changes for 6.1 #1
@ 2022-11-23 14:01 ` Heiko Stuebner
  0 siblings, 0 replies; 8+ messages in thread
From: Heiko Stuebner @ 2022-11-23 14:01 UTC (permalink / raw)
  To: mturquette, Stephen Boyd; +Cc: linux-clk, linux-rockchip

Hi Mike, Stephen,

please find below a pull-request with some Rockchip stuff.

Mainly the support for the clock-controller for the new and shiny rk3588,

Please pull.

Thanks
Heiko

The following changes since commit 9abf2313adc1ca1b6180c508c25f22f9395cc780:

  Linux 6.1-rc1 (2022-10-16 15:36:24 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git tags/v6.2-rockchip-clk-1

for you to fetch changes up to 739a6a6bbdb793bd57938cb24aa5a6df89983546:

  clk: rockchip: Fix memory leak in rockchip_clk_register_pll() (2022-11-23 14:51:30 +0100)

----------------------------------------------------------------
Support for the clock and reset unit of the rk3588, as well as a fix
for a possible memory leak in the error path of PLL creation.

----------------------------------------------------------------
Corentin Labbe (1):
      clk: rockchip: use proper crypto0 name on rk3399

Elaine Zhang (5):
      dt-bindings: clock: add rk3588 cru bindings
      clk: rockchip: add register offset of the cores select parent
      clk: rockchip: add pll type for RK3588
      clk: rockchip: allow additional mux options for cpu-clock frequency changes
      clk: rockchip: add clock controller for the RK3588

Heiko Stuebner (1):
      Merge branch 'v6.2-shared/clockids' into v6.2-clk/next

Sebastian Reichel (4):
      dt-bindings: clock: add rk3588 clock definitions
      dt-bindings: reset: add rk3588 reset definitions
      clk: rockchip: simplify rockchip_clk_add_lookup
      clk: rockchip: add lookup table support

Xiu Jianfeng (1):
      clk: rockchip: Fix memory leak in rockchip_clk_register_pll()

 .../bindings/clock/rockchip,rk3588-cru.yaml        |   71 +
 drivers/clk/rockchip/Kconfig                       |    8 +
 drivers/clk/rockchip/Makefile                      |    1 +
 drivers/clk/rockchip/clk-cpu.c                     |   69 +-
 drivers/clk/rockchip/clk-pll.c                     |  219 +-
 drivers/clk/rockchip/clk-rk3588.c                  | 2533 ++++++++++++++++++++
 drivers/clk/rockchip/clk.c                         |   14 +-
 drivers/clk/rockchip/clk.h                         |   95 +-
 drivers/clk/rockchip/rst-rk3588.c                  |  857 +++++++
 drivers/clk/rockchip/softrst.c                     |   34 +-
 include/dt-bindings/clock/rk3399-cru.h             |    6 +-
 include/dt-bindings/clock/rockchip,rk3588-cru.h    |  766 ++++++
 include/dt-bindings/reset/rockchip,rk3588-cru.h    |  754 ++++++
 13 files changed, 5389 insertions(+), 38 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/rockchip,rk3588-cru.yaml
 create mode 100644 drivers/clk/rockchip/clk-rk3588.c
 create mode 100644 drivers/clk/rockchip/rst-rk3588.c
 create mode 100644 include/dt-bindings/clock/rockchip,rk3588-cru.h
 create mode 100644 include/dt-bindings/reset/rockchip,rk3588-cru.h




^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [GIT PULL] Rockchip clock changes for 6.1 #1
  2022-11-23 14:01 ` Heiko Stuebner
@ 2022-11-29 20:00   ` Stephen Boyd
  -1 siblings, 0 replies; 8+ messages in thread
From: Stephen Boyd @ 2022-11-29 20:00 UTC (permalink / raw)
  To: Heiko Stuebner, mturquette; +Cc: linux-clk, linux-rockchip

Quoting Heiko Stuebner (2022-11-23 06:01:01)
> Hi Mike, Stephen,
> 
> please find below a pull-request with some Rockchip stuff.
> 
> Mainly the support for the clock-controller for the new and shiny rk3588,
> 
> Please pull.
> 
> Thanks
> Heiko
> 
> The following changes since commit 9abf2313adc1ca1b6180c508c25f22f9395cc780:
> 
>   Linux 6.1-rc1 (2022-10-16 15:36:24 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git tags/v6.2-rockchip-clk-1
> 
> for you to fetch changes up to 739a6a6bbdb793bd57938cb24aa5a6df89983546:
> 
>   clk: rockchip: Fix memory leak in rockchip_clk_register_pll() (2022-11-23 14:51:30 +0100)
> 
> ----------------------------------------------------------------

Thanks. Pulled into clk-next

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [GIT PULL] Rockchip clock changes for 6.1 #1
@ 2022-11-29 20:00   ` Stephen Boyd
  0 siblings, 0 replies; 8+ messages in thread
From: Stephen Boyd @ 2022-11-29 20:00 UTC (permalink / raw)
  To: Heiko Stuebner, mturquette; +Cc: linux-clk, linux-rockchip

Quoting Heiko Stuebner (2022-11-23 06:01:01)
> Hi Mike, Stephen,
> 
> please find below a pull-request with some Rockchip stuff.
> 
> Mainly the support for the clock-controller for the new and shiny rk3588,
> 
> Please pull.
> 
> Thanks
> Heiko
> 
> The following changes since commit 9abf2313adc1ca1b6180c508c25f22f9395cc780:
> 
>   Linux 6.1-rc1 (2022-10-16 15:36:24 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git tags/v6.2-rockchip-clk-1
> 
> for you to fetch changes up to 739a6a6bbdb793bd57938cb24aa5a6df89983546:
> 
>   clk: rockchip: Fix memory leak in rockchip_clk_register_pll() (2022-11-23 14:51:30 +0100)
> 
> ----------------------------------------------------------------

Thanks. Pulled into clk-next

_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [GIT PULL] Rockchip clock changes for 6.1 #1
  2022-09-24 11:17 ` Heiko Stuebner
@ 2022-09-28 22:55   ` Stephen Boyd
  -1 siblings, 0 replies; 8+ messages in thread
From: Stephen Boyd @ 2022-09-28 22:55 UTC (permalink / raw)
  To: Heiko Stuebner, mturquette; +Cc: linux-clk, linux-rockchip

Quoting Heiko Stuebner (2022-09-24 04:17:18)
> Hi Mike, Stephen,
> 
> please find below a pull-request with some Rockchip stuff.
> 
> Mainly the support for the clock-controller for the rv1126,
> another yaml conversion and relicensing the bindings to
> gpl2+MIT following DT guidelines.
> 
> Please pull.
> 
> Thanks
> Heiko
> 
> 
> The following changes since commit 1c23f9e627a7b412978b4e852793c5e3c3efc555:
> 
>   Linux 6.0-rc2 (2022-08-21 17:32:54 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git tags/v6.1-rockchip-clock1
> 
> for you to fetch changes up to fffa0fa4d029c10406d417dd33f630bee4b12c02:
> 
>   dt-bindings: clock: rockchip: change SPDX-License-Identifier (2022-09-23 20:48:01 +0200)
> 
> ----------------------------------------------------------------

Thanks. Pulled into clk-next

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [GIT PULL] Rockchip clock changes for 6.1 #1
@ 2022-09-28 22:55   ` Stephen Boyd
  0 siblings, 0 replies; 8+ messages in thread
From: Stephen Boyd @ 2022-09-28 22:55 UTC (permalink / raw)
  To: Heiko Stuebner, mturquette; +Cc: linux-clk, linux-rockchip

Quoting Heiko Stuebner (2022-09-24 04:17:18)
> Hi Mike, Stephen,
> 
> please find below a pull-request with some Rockchip stuff.
> 
> Mainly the support for the clock-controller for the rv1126,
> another yaml conversion and relicensing the bindings to
> gpl2+MIT following DT guidelines.
> 
> Please pull.
> 
> Thanks
> Heiko
> 
> 
> The following changes since commit 1c23f9e627a7b412978b4e852793c5e3c3efc555:
> 
>   Linux 6.0-rc2 (2022-08-21 17:32:54 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git tags/v6.1-rockchip-clock1
> 
> for you to fetch changes up to fffa0fa4d029c10406d417dd33f630bee4b12c02:
> 
>   dt-bindings: clock: rockchip: change SPDX-License-Identifier (2022-09-23 20:48:01 +0200)
> 
> ----------------------------------------------------------------

Thanks. Pulled into clk-next

_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [GIT PULL] Rockchip clock changes for 6.1 #1
@ 2022-09-24 11:17 ` Heiko Stuebner
  0 siblings, 0 replies; 8+ messages in thread
From: Heiko Stuebner @ 2022-09-24 11:17 UTC (permalink / raw)
  To: mturquette, Stephen Boyd; +Cc: linux-clk, linux-rockchip

Hi Mike, Stephen,

please find below a pull-request with some Rockchip stuff.

Mainly the support for the clock-controller for the rv1126,
another yaml conversion and relicensing the bindings to
gpl2+MIT following DT guidelines.

Please pull.

Thanks
Heiko


The following changes since commit 1c23f9e627a7b412978b4e852793c5e3c3efc555:

  Linux 6.0-rc2 (2022-08-21 17:32:54 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git tags/v6.1-rockchip-clock1

for you to fetch changes up to fffa0fa4d029c10406d417dd33f630bee4b12c02:

  dt-bindings: clock: rockchip: change SPDX-License-Identifier (2022-09-23 20:48:01 +0200)

----------------------------------------------------------------
A mux-variant clock using the table variant to select parents, clock
controller for the rv1126 soc, conversion of rk3128 to yaml and relicensing
of the yaml bindings to gpl2+MIT (following dt-binding guildelines)

----------------------------------------------------------------
Elaine Zhang (1):
      clk: rockchip: Add MUXTBL variant

Heiko Stuebner (1):
      Merge branch 'v6.1-shared/clkids' into v6.1-clock/next

Jagan Teki (3):
      clk: rockchip: Add dt-binding header for RV1126
      dt-bindings: clock: rockchip: Document RV1126 CRU
      clk: rockchip: Add clock controller support for RV1126 SoC

Johan Jonker (2):
      dt-bindings: clock: convert rockchip,rk3128-cru.txt to YAML
      dt-bindings: clock: rockchip: change SPDX-License-Identifier

 .../bindings/clock/rockchip,px30-cru.yaml          |    2 +-
 .../bindings/clock/rockchip,rk3036-cru.yaml        |    2 +-
 .../bindings/clock/rockchip,rk3128-cru.txt         |   58 -
 .../bindings/clock/rockchip,rk3128-cru.yaml        |   76 ++
 .../bindings/clock/rockchip,rk3228-cru.yaml        |    2 +-
 .../bindings/clock/rockchip,rk3288-cru.yaml        |    2 +-
 .../bindings/clock/rockchip,rk3308-cru.yaml        |    2 +-
 .../bindings/clock/rockchip,rk3368-cru.yaml        |    2 +-
 .../bindings/clock/rockchip,rk3399-cru.yaml        |    2 +-
 .../bindings/clock/rockchip,rv1108-cru.yaml        |    2 +-
 .../bindings/clock/rockchip,rv1126-cru.yaml        |   62 ++
 drivers/clk/rockchip/Kconfig                       |    7 +
 drivers/clk/rockchip/Makefile                      |    1 +
 drivers/clk/rockchip/clk-rv1126.c                  | 1138 ++++++++++++++++++++
 drivers/clk/rockchip/clk.c                         |   27 +-
 drivers/clk/rockchip/clk.h                         |   36 +
 include/dt-bindings/clock/rockchip,rv1126-cru.h    |  632 +++++++++++
 17 files changed, 1981 insertions(+), 72 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/clock/rockchip,rk3128-cru.txt
 create mode 100644 Documentation/devicetree/bindings/clock/rockchip,rk3128-cru.yaml
 create mode 100644 Documentation/devicetree/bindings/clock/rockchip,rv1126-cru.yaml
 create mode 100644 drivers/clk/rockchip/clk-rv1126.c
 create mode 100644 include/dt-bindings/clock/rockchip,rv1126-cru.h




^ permalink raw reply	[flat|nested] 8+ messages in thread

* [GIT PULL] Rockchip clock changes for 6.1 #1
@ 2022-09-24 11:17 ` Heiko Stuebner
  0 siblings, 0 replies; 8+ messages in thread
From: Heiko Stuebner @ 2022-09-24 11:17 UTC (permalink / raw)
  To: mturquette, Stephen Boyd; +Cc: linux-clk, linux-rockchip

Hi Mike, Stephen,

please find below a pull-request with some Rockchip stuff.

Mainly the support for the clock-controller for the rv1126,
another yaml conversion and relicensing the bindings to
gpl2+MIT following DT guidelines.

Please pull.

Thanks
Heiko


The following changes since commit 1c23f9e627a7b412978b4e852793c5e3c3efc555:

  Linux 6.0-rc2 (2022-08-21 17:32:54 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git tags/v6.1-rockchip-clock1

for you to fetch changes up to fffa0fa4d029c10406d417dd33f630bee4b12c02:

  dt-bindings: clock: rockchip: change SPDX-License-Identifier (2022-09-23 20:48:01 +0200)

----------------------------------------------------------------
A mux-variant clock using the table variant to select parents, clock
controller for the rv1126 soc, conversion of rk3128 to yaml and relicensing
of the yaml bindings to gpl2+MIT (following dt-binding guildelines)

----------------------------------------------------------------
Elaine Zhang (1):
      clk: rockchip: Add MUXTBL variant

Heiko Stuebner (1):
      Merge branch 'v6.1-shared/clkids' into v6.1-clock/next

Jagan Teki (3):
      clk: rockchip: Add dt-binding header for RV1126
      dt-bindings: clock: rockchip: Document RV1126 CRU
      clk: rockchip: Add clock controller support for RV1126 SoC

Johan Jonker (2):
      dt-bindings: clock: convert rockchip,rk3128-cru.txt to YAML
      dt-bindings: clock: rockchip: change SPDX-License-Identifier

 .../bindings/clock/rockchip,px30-cru.yaml          |    2 +-
 .../bindings/clock/rockchip,rk3036-cru.yaml        |    2 +-
 .../bindings/clock/rockchip,rk3128-cru.txt         |   58 -
 .../bindings/clock/rockchip,rk3128-cru.yaml        |   76 ++
 .../bindings/clock/rockchip,rk3228-cru.yaml        |    2 +-
 .../bindings/clock/rockchip,rk3288-cru.yaml        |    2 +-
 .../bindings/clock/rockchip,rk3308-cru.yaml        |    2 +-
 .../bindings/clock/rockchip,rk3368-cru.yaml        |    2 +-
 .../bindings/clock/rockchip,rk3399-cru.yaml        |    2 +-
 .../bindings/clock/rockchip,rv1108-cru.yaml        |    2 +-
 .../bindings/clock/rockchip,rv1126-cru.yaml        |   62 ++
 drivers/clk/rockchip/Kconfig                       |    7 +
 drivers/clk/rockchip/Makefile                      |    1 +
 drivers/clk/rockchip/clk-rv1126.c                  | 1138 ++++++++++++++++++++
 drivers/clk/rockchip/clk.c                         |   27 +-
 drivers/clk/rockchip/clk.h                         |   36 +
 include/dt-bindings/clock/rockchip,rv1126-cru.h    |  632 +++++++++++
 17 files changed, 1981 insertions(+), 72 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/clock/rockchip,rk3128-cru.txt
 create mode 100644 Documentation/devicetree/bindings/clock/rockchip,rk3128-cru.yaml
 create mode 100644 Documentation/devicetree/bindings/clock/rockchip,rv1126-cru.yaml
 create mode 100644 drivers/clk/rockchip/clk-rv1126.c
 create mode 100644 include/dt-bindings/clock/rockchip,rv1126-cru.h




_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2022-11-29 20:01 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-23 14:01 [GIT PULL] Rockchip clock changes for 6.1 #1 Heiko Stuebner
2022-11-23 14:01 ` Heiko Stuebner
2022-11-29 20:00 ` Stephen Boyd
2022-11-29 20:00   ` Stephen Boyd
  -- strict thread matches above, loose matches on Subject: below --
2022-09-24 11:17 Heiko Stuebner
2022-09-24 11:17 ` Heiko Stuebner
2022-09-28 22:55 ` Stephen Boyd
2022-09-28 22:55   ` Stephen Boyd

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.