devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCHv4 0/5] clk: agilex: add clock driver
@ 2020-03-20 17:02 Dinh Nguyen
  2020-03-20 17:02 ` [PATCHv4 1/5] clk: socfpga: stratix10: use new parent data scheme Dinh Nguyen
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Dinh Nguyen @ 2020-03-20 17:02 UTC (permalink / raw)
  To: linux-clk
  Cc: dinguyen, linux-kernel, devicetree, sboyd, mturquette, robh+dt,
	mark.rutland

Hi,

This is version 4 of the patchset to add a clock driver to the Agilex
platform.

The change from v3 is fixing the build of the dt-bindings file.

Thanks,


Dinh Nguyen (5):
  clk: socfpga: stratix10: use new parent data scheme
  clk: socfpga: remove clk_ops enable/disable methods
  clk: socfpga: add const to _ops data structures
  dt-bindings: documentation: add clock bindings information for Agilex
  clk: socfpga: agilex: add clock driver for the Agilex platform

 .../bindings/clock/intel,agilex.yaml          |  36 ++
 drivers/clk/Makefile                          |   3 +-
 drivers/clk/socfpga/Makefile                  |   2 +
 drivers/clk/socfpga/clk-agilex.c              | 454 ++++++++++++++++++
 drivers/clk/socfpga/clk-gate-s10.c            |   5 +-
 drivers/clk/socfpga/clk-periph-s10.c          |  10 +-
 drivers/clk/socfpga/clk-pll-a10.c             |   4 +-
 drivers/clk/socfpga/clk-pll-s10.c             |  78 ++-
 drivers/clk/socfpga/clk-pll.c                 |   4 +-
 drivers/clk/socfpga/clk-s10.c                 | 160 ++++--
 drivers/clk/socfpga/stratix10-clk.h           |  10 +-
 include/dt-bindings/clock/agilex-clock.h      |  70 +++
 12 files changed, 784 insertions(+), 52 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/intel,agilex.yaml
 create mode 100644 drivers/clk/socfpga/clk-agilex.c
 create mode 100644 include/dt-bindings/clock/agilex-clock.h

-- 
2.25.1


^ permalink raw reply	[flat|nested] 9+ messages in thread
* [PATCHv3 0/5] clk: agilex: add clock driver
@ 2020-03-17 16:10 Dinh Nguyen
  2020-03-17 16:10 ` [PATCH 2/5] clk: socfpga: remove clk_ops enable/disable methods Dinh Nguyen
  0 siblings, 1 reply; 9+ messages in thread
From: Dinh Nguyen @ 2020-03-17 16:10 UTC (permalink / raw)
  To: linux-clk
  Cc: dinguyen, linux-kernel, devicetree, sboyd, mturquette, robh+dt,
	mark.rutland

Hi,

This is version 3 of the patchset to add a clock driver to the Agilex
platform.

This version adds 2 new patches that was a result from comments received
in v2.

Patch 2/5: clk: socfpga: remove clk_ops enable/disable methods
Patch 3/5: clk: socfpga: add const to _ops data structures

Thanks,
Dinh


Dinh Nguyen (5):
  clk: socfpga: stratix10: use new parent data scheme
  clk: socfpga: remove clk_ops enable/disable methods
  clk: socfpga: add const to _ops data structures
  dt-bindings: documentation: add clock bindings information for Agilex
  clk: socfpga: agilex: add clock driver for the Agilex platform

 .../bindings/clock/intel,agilex.yaml          |  36 ++
 drivers/clk/Makefile                          |   3 +-
 drivers/clk/socfpga/Makefile                  |   2 +
 drivers/clk/socfpga/clk-agilex.c              | 454 ++++++++++++++++++
 drivers/clk/socfpga/clk-gate-s10.c            |   5 +-
 drivers/clk/socfpga/clk-periph-s10.c          |  10 +-
 drivers/clk/socfpga/clk-pll-a10.c             |   4 +-
 drivers/clk/socfpga/clk-pll-s10.c             |  78 ++-
 drivers/clk/socfpga/clk-pll.c                 |   4 +-
 drivers/clk/socfpga/clk-s10.c                 | 160 ++++--
 drivers/clk/socfpga/stratix10-clk.h           |  10 +-
 include/dt-bindings/clock/agilex-clock.h      |  70 +++
 12 files changed, 784 insertions(+), 52 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/intel,agilex.yaml
 create mode 100644 drivers/clk/socfpga/clk-agilex.c
 create mode 100644 include/dt-bindings/clock/agilex-clock.h

-- 
2.25.1


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

end of thread, other threads:[~2020-03-31 21:56 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-20 17:02 [PATCHv4 0/5] clk: agilex: add clock driver Dinh Nguyen
2020-03-20 17:02 ` [PATCHv4 1/5] clk: socfpga: stratix10: use new parent data scheme Dinh Nguyen
2020-03-20 17:02 ` [PATCH 2/5] clk: socfpga: remove clk_ops enable/disable methods Dinh Nguyen
2020-03-20 17:02 ` [PATCH 3/5] clk: socfpga: add const to _ops data structures Dinh Nguyen
2020-03-20 17:02 ` [PATCH 4/5] dt-bindings: documentation: add clock bindings information for Agilex Dinh Nguyen
2020-03-31 17:23   ` Rob Herring
2020-03-31 21:56     ` Dinh Nguyen
2020-03-20 17:02 ` [PATCH 5/5] clk: socfpga: agilex: add clock driver for the Agilex platform Dinh Nguyen
  -- strict thread matches above, loose matches on Subject: below --
2020-03-17 16:10 [PATCHv3 0/5] clk: agilex: add clock driver Dinh Nguyen
2020-03-17 16:10 ` [PATCH 2/5] clk: socfpga: remove clk_ops enable/disable methods Dinh Nguyen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).