mbox series

clk: visconti: Initial support Visconti SoC for v5.15

Message ID 20210826070336.wr3gskwsgeuwii5d@toshiba.co.jp
State New
Headers show
Series clk: visconti: Initial support Visconti SoC for v5.15 | expand

Pull-request

https://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git tags/clk-visconti-5.15

Message

Nobuhiro Iwamatsu Aug. 26, 2021, 7:03 a.m. UTC
The following changes since commit e73f0f0ee7541171d89f2e2491130c7771ba58d3:

  Linux 5.14-rc1 (2021-07-11 15:07:40 -0700)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
tags/clk-visconti-5.15

for you to fetch changes up to a2bb51ea38e5551dcc84695aaf6e1b5a3aea9efa:

  MAINTAINERS: Add entries for Toshiba Visconti PLL and clock controller (2021-08-26 15:23:16 +0900)

----------------------------------------------------------------
Visconti clock changes for 5.15:

- Add DT bindings for PLL of Toshiba Visconti TMPV770x SoC
- Add DT bindings for SMU of Toshiba Visconti TMPV770x SoC
- Add support common clock driver and reset driver
- Add entries for Toshiba Visconti PLL and clock controller

----------------------------------------------------------------
Nobuhiro Iwamatsu (4):
      dt-bindings: clock: Add DT bindings for PLL of Toshiba Visconti TMPV770x SoC
      dt-bindings: clock: Add DT bindings for SMU of Toshiba Visconti TMPV770x SoC
      clk: visconti: Add support common clock driver and reset driver
      MAINTAINERS: Add entries for Toshiba Visconti PLL and clock controller

 .../bindings/clock/toshiba,tmpv770x-pipllct.yaml   |  57 ++++
 .../bindings/clock/toshiba,tmpv770x-pismu.yaml     |  50 +++
 MAINTAINERS                                        |   3 +
 drivers/clk/Makefile                               |   1 +
 drivers/clk/visconti/Makefile                      |   5 +
 drivers/clk/visconti/clkc-tmpv770x.c               | 232 +++++++++++++
 drivers/clk/visconti/clkc.c                        | 220 ++++++++++++
 drivers/clk/visconti/clkc.h                        |  75 +++++
 drivers/clk/visconti/pll-tmpv770x.c                |  85 +++++
 drivers/clk/visconti/pll.c                         | 369 +++++++++++++++++++++
 drivers/clk/visconti/pll.h                         |  63 ++++
 drivers/clk/visconti/reset.c                       | 111 +++++++
 drivers/clk/visconti/reset.h                       |  35 ++
 include/dt-bindings/clock/toshiba,tmpv770x.h       | 181 ++++++++++
 include/dt-bindings/reset/toshiba,tmpv770x.h       |  41 +++
 15 files changed, 1528 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
 create mode 100644 Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
 create mode 100644 drivers/clk/visconti/Makefile
 create mode 100644 drivers/clk/visconti/clkc-tmpv770x.c
 create mode 100644 drivers/clk/visconti/clkc.c
 create mode 100644 drivers/clk/visconti/clkc.h
 create mode 100644 drivers/clk/visconti/pll-tmpv770x.c
 create mode 100644 drivers/clk/visconti/pll.c
 create mode 100644 drivers/clk/visconti/pll.h
 create mode 100644 drivers/clk/visconti/reset.c
 create mode 100644 drivers/clk/visconti/reset.h
 create mode 100644 include/dt-bindings/clock/toshiba,tmpv770x.h
 create mode 100644 include/dt-bindings/reset/toshiba,tmpv770x.h

Comments

Stephen Boyd Aug. 29, 2021, 5:10 a.m. UTC | #1
Quoting Nobuhiro Iwamatsu (2021-08-26 00:03:36)
> The following changes since commit e73f0f0ee7541171d89f2e2491130c7771ba58d3:
> 
>   Linux 5.14-rc1 (2021-07-11 15:07:40 -0700)
> 
> are available in the Git repository at:
> 
>   https://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
> tags/clk-visconti-5.15

I reviewed the patches on the list. Seems that nobody else did.