All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/16] Add initial USB support for the Renesas RZ/G3S SoC
@ 2024-08-22 15:27 ` Claudiu
  0 siblings, 0 replies; 196+ messages in thread
From: Claudiu @ 2024-08-22 15:27 UTC (permalink / raw)
  To: vkoul, kishon, robh, krzk+dt, conor+dt, p.zabel, geert+renesas,
	magnus.damm, gregkh, mturquette, sboyd, yoshihiro.shimoda.uh,
	biju.das.jz, ulf.hansson
  Cc: linux-phy, devicetree, linux-kernel, linux-renesas-soc, linux-usb,
	linux-arm-kernel, linux-clk, linux-pm, claudiu.beznea,
	Claudiu Beznea

From: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>

Hi,

Series adds initial USB support for the Renesas RZ/G3S SoC.

Series is split as follows:

- patch 01/16		- add clock reset and power domain support for USB
- patch 02-04/16	- add reset control support for a USB signal
			  that need to be controlled before/after
			  the power to USB area is turned on/off.
			  
			  Philipp, Ulf, Geert, all,
			  
			  I detailed my approach for this in patch
			  04/16, please have a look and let me know
			  your input.
			  
			  Thank you!

- patch 05/16		- moves SoC identification to SYSC driver
- patch 06-08/16	- updates USB PHY control driver for USB
			  support
- patch 09/16		- update documentation for USBHS
- patch 10-12/16	- updates the USB PHY driver for USB support
- patch 13-15/16	- updates the device tree with USB support
- patch 16/16		- enables the reset control driver

Thank you,
Claudiu Beznea

Claudiu Beznea (16):
  clk: renesas: r9a08g045: Add clocks, resets and power domains for USB
  dt-bindings: soc: renesas: renesas,rzg2l-sysc: Add #reset-cells for
    RZ/G3S
  dt-bindings: reset: renesas,r9a08g045-sysc: Add reset IDs for RZ/G3S
    SYSC reset
  soc: renesas: Add SYSC driver for Renesas RZ/G3S
  soc: renesas: sysc: Move RZ/G3S SoC detection on SYSC driver
  dt-bindings: reset: renesas,rzg2l-usbphy-ctrl: Document RZ/G3S SoC
  reset: rzg2l-usbphy-ctrl: Get reset control array
  reset: rzg2l-usbphy-ctrl: Add support for RZ/G3S
  dt-bindings: usb: renesas,usbhs: Document RZ/G3S SoC
  phy: renesas: rcar-gen3-usb2: Add support to initialize the bus
  dt-bindings: phy: renesas,usb2-phy: Document RZ/G3S phy bindings
  phy: renesas: rcar-gen3-usb2: Add support for the RZ/G3S SoC
  arm64: dts: renesas: Add #reset-cells to system controller node
  arm64: dts: renesas: r9a08g045: Add USB support
  arm64: dts: renesas: rzg3s-smarc: Enable USB support
  arm64: defconfig: Enable RZ/G3S SYSC reset driver

 .../bindings/phy/renesas,usb2-phy.yaml        |   4 +-
 .../reset/renesas,rzg2l-usbphy-ctrl.yaml      |  35 +++-
 .../soc/renesas/renesas,rzg2l-sysc.yaml       |  16 ++
 .../bindings/usb/renesas,usbhs.yaml           |   2 +
 arch/arm64/boot/dts/renesas/r9a08g045.dtsi    | 120 +++++++++++++
 arch/arm64/boot/dts/renesas/rzg3s-smarc.dtsi  |  61 +++++++
 arch/arm64/configs/defconfig                  |   1 +
 drivers/clk/renesas/r9a08g045-cpg.c           |  17 ++
 drivers/phy/renesas/phy-rcar-gen3-usb2.c      |  60 ++++++-
 drivers/reset/Kconfig                         |   7 +
 drivers/reset/Makefile                        |   1 +
 drivers/reset/reset-rzg2l-usbphy-ctrl.c       |   3 +-
 drivers/reset/reset-rzg3s-sysc.c              | 140 ++++++++++++++++
 drivers/soc/renesas/Makefile                  |   1 +
 drivers/soc/renesas/renesas-soc.c             |  12 --
 drivers/soc/renesas/rzg3s-sysc.c              | 158 ++++++++++++++++++
 .../reset/renesas,r9a08g045-sysc.h            |  10 ++
 include/linux/soc/renesas/rzg3s-sysc-reset.h  |  24 +++
 18 files changed, 648 insertions(+), 24 deletions(-)
 create mode 100644 drivers/reset/reset-rzg3s-sysc.c
 create mode 100644 drivers/soc/renesas/rzg3s-sysc.c
 create mode 100644 include/dt-bindings/reset/renesas,r9a08g045-sysc.h
 create mode 100644 include/linux/soc/renesas/rzg3s-sysc-reset.h

-- 
2.39.2


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

end of thread, other threads:[~2024-11-07 18:01 UTC | newest]

Thread overview: 196+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-22 15:27 [PATCH 00/16] Add initial USB support for the Renesas RZ/G3S SoC Claudiu
2024-08-22 15:27 ` Claudiu
2024-08-22 15:27 ` [PATCH 01/16] clk: renesas: r9a08g045: Add clocks, resets and power domains for USB Claudiu
2024-08-22 15:27   ` Claudiu
2024-08-29 12:35   ` Geert Uytterhoeven
2024-08-29 12:35     ` Geert Uytterhoeven
2024-08-22 15:27 ` [PATCH 02/16] dt-bindings: soc: renesas: renesas,rzg2l-sysc: Add #reset-cells for RZ/G3S Claudiu
2024-08-22 15:27   ` Claudiu
2024-08-22 16:42   ` Conor Dooley
2024-08-22 16:42     ` Conor Dooley
2024-08-22 16:44     ` Conor Dooley
2024-08-22 16:44       ` Conor Dooley
2024-08-23  7:59       ` claudiu beznea
2024-08-23  7:59         ` claudiu beznea
2024-08-23  7:54     ` claudiu beznea
2024-08-23  7:54       ` claudiu beznea
2024-08-23 16:18       ` Conor Dooley
2024-08-23 16:18         ` Conor Dooley
2024-08-23 16:26         ` claudiu beznea
2024-08-23 16:26           ` claudiu beznea
2024-08-23 16:33           ` Conor Dooley
2024-08-23 16:33             ` Conor Dooley
2024-08-26 10:15             ` claudiu beznea
2024-08-26 10:15               ` claudiu beznea
2024-08-26 17:09               ` Conor Dooley
2024-08-26 17:09                 ` Conor Dooley
2024-10-08 13:24   ` Geert Uytterhoeven
2024-10-08 13:24     ` Geert Uytterhoeven
2024-08-22 15:27 ` [PATCH 03/16] dt-bindings: reset: renesas,r9a08g045-sysc: Add reset IDs for RZ/G3S SYSC reset Claudiu
2024-08-22 15:27   ` Claudiu
2024-08-22 16:45   ` Conor Dooley
2024-08-22 16:45     ` Conor Dooley
2024-10-08 13:25   ` Geert Uytterhoeven
2024-10-08 13:25     ` Geert Uytterhoeven
2024-08-22 15:27 ` [PATCH 04/16] soc: renesas: Add SYSC driver for Renesas RZ/G3S Claudiu
2024-08-22 15:27   ` Claudiu
2024-09-24 11:32   ` Geert Uytterhoeven
2024-09-24 11:32     ` Geert Uytterhoeven
2024-09-25  7:50     ` claudiu beznea
2024-09-25  7:50       ` claudiu beznea
2024-10-08 13:54       ` Geert Uytterhoeven
2024-10-08 13:54         ` Geert Uytterhoeven
2024-08-22 15:27 ` [PATCH 05/16] soc: renesas: sysc: Move RZ/G3S SoC detection on SYSC driver Claudiu
2024-08-22 15:27   ` Claudiu
2024-10-08 13:23   ` Geert Uytterhoeven
2024-10-08 13:23     ` Geert Uytterhoeven
2024-10-09  8:26     ` claudiu beznea
2024-10-09  8:26       ` claudiu beznea
2024-08-22 15:27 ` [PATCH 06/16] dt-bindings: reset: renesas,rzg2l-usbphy-ctrl: Document RZ/G3S SoC Claudiu
2024-08-22 15:27   ` Claudiu
2024-08-22 16:45   ` Conor Dooley
2024-08-22 16:45     ` Conor Dooley
2024-10-08 14:46   ` Geert Uytterhoeven
2024-10-08 14:46     ` Geert Uytterhoeven
2024-08-22 15:27 ` [PATCH 07/16] reset: rzg2l-usbphy-ctrl: Get reset control array Claudiu
2024-08-22 15:27   ` Claudiu
2024-08-23  7:25   ` Biju Das
2024-08-23  7:25     ` Biju Das
2024-08-23  8:05     ` claudiu beznea
2024-08-23  8:05       ` claudiu beznea
2024-08-23  8:17       ` Biju Das
2024-08-23  8:17         ` Biju Das
2024-10-08 14:46   ` Geert Uytterhoeven
2024-10-08 14:46     ` Geert Uytterhoeven
2024-08-22 15:27 ` [PATCH 08/16] reset: rzg2l-usbphy-ctrl: Add support for RZ/G3S Claudiu
2024-08-22 15:27   ` Claudiu
2024-08-22 16:59   ` Biju Das
2024-08-22 16:59     ` Biju Das
2024-08-23  8:40     ` claudiu beznea
2024-08-23  8:40       ` claudiu beznea
2024-08-23  8:46       ` Biju Das
2024-08-23  8:46         ` Biju Das
2024-10-08 14:47   ` Geert Uytterhoeven
2024-10-08 14:47     ` Geert Uytterhoeven
2024-08-22 15:27 ` [PATCH 09/16] dt-bindings: usb: renesas,usbhs: Document RZ/G3S SoC Claudiu
2024-08-22 15:27   ` Claudiu
2024-08-22 16:46   ` Conor Dooley
2024-08-22 16:46     ` Conor Dooley
2024-10-08 14:51   ` Geert Uytterhoeven
2024-10-08 14:51     ` Geert Uytterhoeven
2024-10-09  8:28     ` claudiu beznea
2024-10-09  8:28       ` claudiu beznea
2024-08-22 15:27 ` [PATCH 10/16] phy: renesas: rcar-gen3-usb2: Add support to initialize the bus Claudiu
2024-08-22 15:27   ` Claudiu
2024-08-23  7:35   ` Biju Das
2024-08-23  7:35     ` Biju Das
2024-08-23  8:57     ` claudiu beznea
2024-08-23  8:57       ` claudiu beznea
2024-08-23  9:01       ` Biju Das
2024-08-23  9:01         ` Biju Das
2024-08-30  8:02         ` Vinod Koul
2024-08-30  8:02           ` Vinod Koul
2024-08-30  8:06           ` Biju Das
2024-08-30  8:06             ` Biju Das
2024-10-08 14:57   ` Geert Uytterhoeven
2024-10-08 14:57     ` Geert Uytterhoeven
2024-10-09  8:31     ` claudiu beznea
2024-10-09  8:31       ` claudiu beznea
2024-08-22 15:27 ` [PATCH 11/16] dt-bindings: phy: renesas,usb2-phy: Document RZ/G3S phy bindings Claudiu
2024-08-22 15:27   ` Claudiu
2024-08-22 16:46   ` Conor Dooley
2024-08-22 16:46     ` Conor Dooley
2024-10-08 14:58   ` Geert Uytterhoeven
2024-10-08 14:58     ` Geert Uytterhoeven
2024-08-22 15:27 ` [PATCH 12/16] phy: renesas: rcar-gen3-usb2: Add support for the RZ/G3S SoC Claudiu
2024-08-22 15:27   ` Claudiu
2024-10-08 14:59   ` Geert Uytterhoeven
2024-10-08 14:59     ` Geert Uytterhoeven
2024-08-22 15:27 ` [PATCH 13/16] arm64: dts: renesas: Add #reset-cells to system controller node Claudiu
2024-08-22 15:27   ` Claudiu
2024-10-08 14:59   ` Geert Uytterhoeven
2024-10-08 14:59     ` Geert Uytterhoeven
2024-08-22 15:27 ` [PATCH 14/16] arm64: dts: renesas: r9a08g045: Add USB support Claudiu
2024-08-22 15:27   ` Claudiu
2024-10-08 15:00   ` Geert Uytterhoeven
2024-10-08 15:00     ` Geert Uytterhoeven
2024-08-22 15:28 ` [PATCH 15/16] arm64: dts: renesas: rzg3s-smarc: Enable " Claudiu
2024-08-22 15:28   ` Claudiu
2024-10-08 15:16   ` Geert Uytterhoeven
2024-10-08 15:16     ` Geert Uytterhoeven
2024-10-09  8:42     ` claudiu beznea
2024-10-09  8:42       ` claudiu beznea
2024-08-22 15:28 ` [PATCH 16/16] arm64: defconfig: Enable RZ/G3S SYSC reset driver Claudiu
2024-08-22 15:28   ` Claudiu
2024-10-08 15:17   ` Geert Uytterhoeven
2024-10-08 15:17     ` Geert Uytterhoeven
2024-08-29 15:26 ` [PATCH 00/16] Add initial USB support for the Renesas RZ/G3S SoC Ulf Hansson
2024-08-29 15:26   ` Ulf Hansson
2024-08-30  8:22   ` claudiu beznea
2024-08-30  8:22     ` claudiu beznea
2024-08-30 10:14     ` Ulf Hansson
2024-08-30 10:14       ` Ulf Hansson
2024-08-30 11:32       ` claudiu beznea
2024-08-30 11:32         ` claudiu beznea
2024-08-31 10:32         ` Ulf Hansson
2024-08-31 10:32           ` Ulf Hansson
2024-09-03 10:35           ` Ulf Hansson
2024-09-03 10:35             ` Ulf Hansson
2024-09-03 10:58             ` claudiu beznea
2024-09-03 10:58               ` claudiu beznea
2024-09-03 11:50               ` Ulf Hansson
2024-09-03 11:50                 ` Ulf Hansson
2024-08-31  5:13     ` Biju Das
2024-08-31  5:13       ` Biju Das
2024-09-02  7:54       ` Biju Das
2024-09-02  7:54         ` Biju Das
2024-09-02  8:47         ` claudiu beznea
2024-09-02  8:47           ` claudiu beznea
2024-09-02  8:53           ` Biju Das
2024-09-02  8:53             ` Biju Das
2024-09-02  9:14             ` claudiu beznea
2024-09-02  9:14               ` claudiu beznea
2024-09-02  9:18               ` Biju Das
2024-09-02  9:18                 ` Biju Das
2024-09-02 10:40                 ` claudiu beznea
2024-09-02 10:40                   ` claudiu beznea
2024-09-02 10:47                   ` Biju Das
2024-09-02 10:47                     ` Biju Das
2024-09-03  7:18                     ` Biju Das
2024-09-03  7:18                       ` Biju Das
2024-09-03 10:25                       ` claudiu beznea
2024-09-03 10:25                         ` claudiu beznea
2024-09-03 10:31                         ` Biju Das
2024-09-03 10:31                           ` Biju Das
2024-09-03 11:00                           ` claudiu beznea
2024-09-03 11:00                             ` claudiu beznea
2024-09-03 11:07                             ` Biju Das
2024-09-03 11:07                               ` Biju Das
2024-09-03 12:00                               ` Biju Das
2024-09-03 12:00                                 ` Biju Das
2024-09-03 12:25                                 ` claudiu beznea
2024-09-03 12:25                                   ` claudiu beznea
2024-09-03 12:37                                   ` Biju Das
2024-09-03 12:37                                     ` Biju Das
2024-09-03 12:57                                     ` claudiu beznea
2024-09-03 12:57                                       ` claudiu beznea
2024-09-03 13:09                                       ` Biju Das
2024-09-03 13:09                                         ` Biju Das
2024-09-03 14:46                                         ` claudiu beznea
2024-09-03 14:46                                           ` claudiu beznea
2024-09-03 15:30                                           ` Biju Das
2024-09-03 15:30                                             ` Biju Das
2024-09-03 13:45                                       ` Biju Das
2024-09-03 13:45                                         ` Biju Das
2024-09-03 14:48                                         ` claudiu beznea
2024-09-03 14:48                                           ` claudiu beznea
2024-11-07 10:00                                           ` Claudiu Beznea
2024-11-07 10:00                                             ` Claudiu Beznea
2024-11-07 16:22                                             ` Philipp Zabel
2024-11-07 16:22                                               ` Philipp Zabel
2024-09-03 10:19                     ` claudiu beznea
2024-09-03 10:19                       ` claudiu beznea
2024-09-02  8:28       ` claudiu beznea
2024-09-02  8:28         ` claudiu beznea
2024-08-30  8:10 ` (subset) " Vinod Koul
2024-08-30  8:10   ` Vinod Koul

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.