linux-usb.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/17] arm64: tegra: Add Tegra210B01 support
@ 2025-07-15  4:02 Aaron Kling via B4 Relay
  2025-07-15  4:02 ` [PATCH 01/17] dt-bindings: arm: tegra: pmc: Document Tegra210B01 Aaron Kling via B4 Relay
                   ` (17 more replies)
  0 siblings, 18 replies; 30+ messages in thread
From: Aaron Kling via B4 Relay @ 2025-07-15  4:02 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Thierry Reding,
	Jonathan Hunter, Vinod Koul, Kishon Vijay Abraham I,
	Greg Kroah-Hartman, Nagarjuna Kristam, JC Kuo, Rafael J. Wysocki,
	Daniel Lezcano, Zhang Rui, Lukasz Luba, Michael Turquette,
	Stephen Boyd, Mathias Nyman, Peter De Schrijver, Prashant Gaikwad
  Cc: devicetree, linux-tegra, linux-kernel, linux-phy, linux-usb,
	Thierry Reding, linux-pm, linux-clk, Aaron Kling, Azkali Manad

Also known as Tegra X1+, the Tegra210B01 has higher CPU and GPU clocks
than the original Tegra210.

This series adds Tegra210B01 support to several drivers, as a slight
extension to the existing Tegra210 support. Then adds a generic soc dtsi
in the same vein as other tegra archs. And finally adds a barebones
device dts to be used for dt checks. Further device support will be
submitted in later series.

Earlier internal revisions of this series included changes to the dfll
driver to support Tegra210B01, but those did not work in testing, thus
was dropped from the series. A bindings update to match is still in the
series so the soc dtsi can declare a separate compatible from Tegra210,
preventing the driver from attempting incorrect initialization on
Tegra210B01.

Signed-off-by: Aaron Kling <webgeek1234@gmail.com>
---
Aaron Kling (16):
      dt-bindings: arm: tegra: pmc: Document Tegra210B01
      dt-bindings: phy: tegra-xusb: Document Tegra210B01
      dt-bindings: usb: tegra-xusb: Document Tegra210B01
      dt-bindings: usb: tegra-xudc: Document Tegra210B01
      dt-bindings: thermal: tegra: Document Tegra210B01
      dt-bindings: clock: tegra: Document Tegra210B01
      dt-bindings: clock: tegra124-dfll: Document Tegra210B01
      dt-bindings: tegra: Document Shield TV 2019
      phy: tegra: xusb: Add Tegra201B01 Support
      usb: xhci: tegra: Add Tegra210B01 support
      usb: gadget: tegra-xudc: Add Tegra210B01 Support
      thermal: tegra: Add Tegra210B01 Support
      clk: tegra: Add Tegra210B01 support
      arm64: tegra: Add BPMP node for Tegra210
      arm64: tegra: Add Tegra210B01 support
      arm64: tegra: Add support for NVIDIA Shield TV Pro 2019

Azkali Manad (1):
      soc/tegra: pmc: Add Tegra210B01 support

 Documentation/devicetree/bindings/arm/tegra.yaml   |    5 +
 .../bindings/clock/nvidia,tegra124-dfll.txt        |    1 +
 .../bindings/clock/nvidia,tegra20-car.yaml         |    1 +
 .../bindings/phy/nvidia,tegra210-xusb-padctl.yaml  |    4 +-
 .../bindings/soc/tegra/nvidia,tegra20-pmc.yaml     |    5 +-
 .../bindings/thermal/nvidia,tegra124-soctherm.yaml |    2 +
 .../devicetree/bindings/usb/nvidia,tegra-xudc.yaml |    2 +
 .../bindings/usb/nvidia,tegra210-xusb.yaml         |    4 +-
 arch/arm64/boot/dts/nvidia/Makefile                |    1 +
 arch/arm64/boot/dts/nvidia/tegra210.dtsi           |   11 +
 .../boot/dts/nvidia/tegra210b01-p2894-0050-a08.dts |   10 +
 arch/arm64/boot/dts/nvidia/tegra210b01-p2894.dtsi  |   70 +
 arch/arm64/boot/dts/nvidia/tegra210b01.dtsi        |   64 +
 drivers/clk/tegra/Makefile                         |    1 +
 drivers/clk/tegra/clk-tegra-periph.c               |    3 +
 drivers/clk/tegra/clk-tegra210b01.c                | 3758 ++++++++++++++++++++
 drivers/clk/tegra/clk-utils.c                      |    5 +-
 drivers/clk/tegra/clk.c                            |   19 +-
 drivers/clk/tegra/clk.h                            |    6 +
 drivers/phy/tegra/xusb-tegra210.c                  |   41 +
 drivers/phy/tegra/xusb.c                           |    4 +
 drivers/phy/tegra/xusb.h                           |    1 +
 drivers/soc/tegra/pmc.c                            |  117 +
 drivers/thermal/tegra/soctherm.c                   |    4 +
 drivers/thermal/tegra/soctherm.h                   |    1 +
 drivers/thermal/tegra/tegra210-soctherm.c          |   78 +
 drivers/usb/gadget/udc/tegra-xudc.c                |   20 +
 drivers/usb/host/xhci-tegra.c                      |   25 +
 include/dt-bindings/clock/tegra210-car.h           |    5 +-
 29 files changed, 4261 insertions(+), 7 deletions(-)
---
base-commit: 347e9f5043c89695b01e66b3ed111755afcf1911
change-id: 20250509-t210b01-c154ca0f8994

Best regards,
-- 
Aaron Kling <webgeek1234@gmail.com>



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

end of thread, other threads:[~2025-07-21 20:17 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-15  4:02 [PATCH 00/17] arm64: tegra: Add Tegra210B01 support Aaron Kling via B4 Relay
2025-07-15  4:02 ` [PATCH 01/17] dt-bindings: arm: tegra: pmc: Document Tegra210B01 Aaron Kling via B4 Relay
2025-07-20 22:24   ` Rob Herring
2025-07-15  4:02 ` [PATCH 02/17] dt-bindings: phy: tegra-xusb: " Aaron Kling via B4 Relay
2025-07-20 22:24   ` Rob Herring (Arm)
2025-07-15  4:02 ` [PATCH 03/17] dt-bindings: usb: " Aaron Kling via B4 Relay
2025-07-20 22:25   ` Rob Herring (Arm)
2025-07-15  4:02 ` [PATCH 04/17] dt-bindings: usb: tegra-xudc: " Aaron Kling via B4 Relay
2025-07-20 22:25   ` Rob Herring (Arm)
2025-07-15  4:02 ` [PATCH 05/17] dt-bindings: thermal: tegra: " Aaron Kling via B4 Relay
2025-07-20 22:25   ` Rob Herring (Arm)
2025-07-21 20:17   ` Daniel Lezcano
2025-07-15  4:02 ` [PATCH 06/17] dt-bindings: clock: " Aaron Kling via B4 Relay
2025-07-20 22:27   ` Rob Herring
2025-07-20 22:27   ` Rob Herring (Arm)
2025-07-15  4:02 ` [PATCH 07/17] dt-bindings: clock: tegra124-dfll: " Aaron Kling via B4 Relay
2025-07-20 22:28   ` Rob Herring (Arm)
2025-07-15  4:02 ` [PATCH 08/17] dt-bindings: tegra: Document Shield TV 2019 Aaron Kling via B4 Relay
2025-07-20 22:30   ` Rob Herring
2025-07-15  4:02 ` [PATCH 09/17] soc/tegra: pmc: Add Tegra210B01 support Aaron Kling via B4 Relay
2025-07-15  4:02 ` [PATCH 10/17] phy: tegra: xusb: Add Tegra201B01 Support Aaron Kling via B4 Relay
2025-07-15  4:02 ` [PATCH 11/17] usb: xhci: tegra: Add Tegra210B01 support Aaron Kling via B4 Relay
2025-07-15  4:02 ` [PATCH 12/17] usb: gadget: tegra-xudc: Add Tegra210B01 Support Aaron Kling via B4 Relay
2025-07-15  4:02 ` [PATCH 13/17] thermal: tegra: " Aaron Kling via B4 Relay
2025-07-15 22:06   ` kernel test robot
2025-07-15  4:02 ` [PATCH 14/17] clk: tegra: Add Tegra210B01 support Aaron Kling via B4 Relay
2025-07-15  4:02 ` [PATCH 15/17] arm64: tegra: Add BPMP node for Tegra210 Aaron Kling via B4 Relay
2025-07-15  4:02 ` [PATCH 16/17] arm64: tegra: Add Tegra210B01 support Aaron Kling via B4 Relay
2025-07-15  4:03 ` [PATCH 17/17] arm64: tegra: Add support for NVIDIA Shield TV Pro 2019 Aaron Kling via B4 Relay
2025-07-15 14:25 ` [PATCH 00/17] arm64: tegra: Add Tegra210B01 support Rob Herring (Arm)

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).