[PATCH V6 0/5] imx: add i.MX93 clk bindings and driver

Peng Fan (OSS) posted 5 patches 4 years, 3 months ago
.../bindings/clock/imx93-clock.yaml           |  62 ++++
drivers/clk/imx/Kconfig                       |   6 +
drivers/clk/imx/Makefile                      |   4 +
drivers/clk/imx/clk-composite-93.c            |  93 +++++
drivers/clk/imx/clk-fracn-gppll.c             | 323 +++++++++++++++++
drivers/clk/imx/clk-imx93.c                   | 338 ++++++++++++++++++
drivers/clk/imx/clk.h                         |  30 ++
include/dt-bindings/clock/imx93-clock.h       | 201 +++++++++++
8 files changed, 1057 insertions(+)
create mode 100644 Documentation/devicetree/bindings/clock/imx93-clock.yaml
create mode 100644 drivers/clk/imx/clk-composite-93.c
create mode 100644 drivers/clk/imx/clk-fracn-gppll.c
create mode 100644 drivers/clk/imx/clk-imx93.c
create mode 100644 include/dt-bindings/clock/imx93-clock.h
[PATCH V6 0/5] imx: add i.MX93 clk bindings and driver
Posted by Peng Fan (OSS) 4 years, 3 months ago
From: Peng Fan <peng.fan@nxp.com>

V6:
 Add R-b
 Address comments from Stephen for patch 4,5 to cleanup header including 
 and static const array, drop unneeded WARN_ON.

V5:
 Add Rob's R-b/A-b tag
 Use FIELD_GET/PREP in patch 4/5 per Sascha's comments

V4:
 Add Abel's R-b and Krzysztof's A-b
 Address Krzysztof's comments
 Address Sascha's comments in patch 4/5
 Typo fix

V3:
 Drop an error included header file in 5/5

V2:
 Split yaml binding and clock header
 apply to Abel's tree

Add i.MX93 clk bindings and clk.

Peng Fan (5):
  dt-bindings: clock: Add imx93 clock support
  dt-bindings: clock: add i.MX93 clock definition
  clk: imx: add i.MX93 composite clk
  clk: imx: support fracn gppll
  clk: imx: add i.MX93 clk

 .../bindings/clock/imx93-clock.yaml           |  62 ++++
 drivers/clk/imx/Kconfig                       |   6 +
 drivers/clk/imx/Makefile                      |   4 +
 drivers/clk/imx/clk-composite-93.c            |  93 +++++
 drivers/clk/imx/clk-fracn-gppll.c             | 323 +++++++++++++++++
 drivers/clk/imx/clk-imx93.c                   | 338 ++++++++++++++++++
 drivers/clk/imx/clk.h                         |  30 ++
 include/dt-bindings/clock/imx93-clock.h       | 201 +++++++++++
 8 files changed, 1057 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/clock/imx93-clock.yaml
 create mode 100644 drivers/clk/imx/clk-composite-93.c
 create mode 100644 drivers/clk/imx/clk-fracn-gppll.c
 create mode 100644 drivers/clk/imx/clk-imx93.c
 create mode 100644 include/dt-bindings/clock/imx93-clock.h

-- 
2.25.1
Re: [PATCH V6 0/5] imx: add i.MX93 clk bindings and driver
Posted by Abel Vesa 4 years, 3 months ago
On 22-02-28 10:09:03, Peng Fan (OSS) wrote:
> From: Peng Fan <peng.fan@nxp.com>
> 

Applied, thanks!

> V6:
>  Add R-b
>  Address comments from Stephen for patch 4,5 to cleanup header including 
>  and static const array, drop unneeded WARN_ON.
> 
> V5:
>  Add Rob's R-b/A-b tag
>  Use FIELD_GET/PREP in patch 4/5 per Sascha's comments
> 
> V4:
>  Add Abel's R-b and Krzysztof's A-b
>  Address Krzysztof's comments
>  Address Sascha's comments in patch 4/5
>  Typo fix
> 
> V3:
>  Drop an error included header file in 5/5
> 
> V2:
>  Split yaml binding and clock header
>  apply to Abel's tree
> 
> Add i.MX93 clk bindings and clk.
> 
> Peng Fan (5):
>   dt-bindings: clock: Add imx93 clock support
>   dt-bindings: clock: add i.MX93 clock definition
>   clk: imx: add i.MX93 composite clk
>   clk: imx: support fracn gppll
>   clk: imx: add i.MX93 clk
> 
>  .../bindings/clock/imx93-clock.yaml           |  62 ++++
>  drivers/clk/imx/Kconfig                       |   6 +
>  drivers/clk/imx/Makefile                      |   4 +
>  drivers/clk/imx/clk-composite-93.c            |  93 +++++
>  drivers/clk/imx/clk-fracn-gppll.c             | 323 +++++++++++++++++
>  drivers/clk/imx/clk-imx93.c                   | 338 ++++++++++++++++++
>  drivers/clk/imx/clk.h                         |  30 ++
>  include/dt-bindings/clock/imx93-clock.h       | 201 +++++++++++
>  8 files changed, 1057 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/clock/imx93-clock.yaml
>  create mode 100644 drivers/clk/imx/clk-composite-93.c
>  create mode 100644 drivers/clk/imx/clk-fracn-gppll.c
>  create mode 100644 drivers/clk/imx/clk-imx93.c
>  create mode 100644 include/dt-bindings/clock/imx93-clock.h
> 
> -- 
> 2.25.1
>
Re: [PATCH V6 0/5] imx: add i.MX93 clk bindings and driver
Posted by Abel Vesa 4 years, 3 months ago
On 22-02-28 10:09:03, Peng Fan (OSS) wrote:
> From: Peng Fan <peng.fan@nxp.com>
> 

Applied, thanks.

> V6:
>  Add R-b
>  Address comments from Stephen for patch 4,5 to cleanup header including 
>  and static const array, drop unneeded WARN_ON.
> 
> V5:
>  Add Rob's R-b/A-b tag
>  Use FIELD_GET/PREP in patch 4/5 per Sascha's comments
> 
> V4:
>  Add Abel's R-b and Krzysztof's A-b
>  Address Krzysztof's comments
>  Address Sascha's comments in patch 4/5
>  Typo fix
> 
> V3:
>  Drop an error included header file in 5/5
> 
> V2:
>  Split yaml binding and clock header
>  apply to Abel's tree
> 
> Add i.MX93 clk bindings and clk.
> 
> Peng Fan (5):
>   dt-bindings: clock: Add imx93 clock support
>   dt-bindings: clock: add i.MX93 clock definition
>   clk: imx: add i.MX93 composite clk
>   clk: imx: support fracn gppll
>   clk: imx: add i.MX93 clk
> 
>  .../bindings/clock/imx93-clock.yaml           |  62 ++++
>  drivers/clk/imx/Kconfig                       |   6 +
>  drivers/clk/imx/Makefile                      |   4 +
>  drivers/clk/imx/clk-composite-93.c            |  93 +++++
>  drivers/clk/imx/clk-fracn-gppll.c             | 323 +++++++++++++++++
>  drivers/clk/imx/clk-imx93.c                   | 338 ++++++++++++++++++
>  drivers/clk/imx/clk.h                         |  30 ++
>  include/dt-bindings/clock/imx93-clock.h       | 201 +++++++++++
>  8 files changed, 1057 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/clock/imx93-clock.yaml
>  create mode 100644 drivers/clk/imx/clk-composite-93.c
>  create mode 100644 drivers/clk/imx/clk-fracn-gppll.c
>  create mode 100644 drivers/clk/imx/clk-imx93.c
>  create mode 100644 include/dt-bindings/clock/imx93-clock.h
> 
> -- 
> 2.25.1
>