Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

usb: renesas_usbhs: Add support for RZ/T2H SoC

Add support for the Renesas RZ/T2H (r9a09g077) SoC by adding a compatible
string to the usbhs_of_match table. The USBHS controller on the RZ/T2H is
functionally similar to the one found on the RZ/G2L. While there are minor
differences in register fields (for example, the AWAIT[8:13] bits in
SYSCFG1 register), the current driver does not configure these, allowing
reuse of the existing usbhs_rzg2l_plat_info for the RZ/T2H.

Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Link: https://lore.kernel.org/r/20250805114730.2491238-3-prabhakar.mahadev-lad.rj@bp.renesas.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Lad Prabhakar and committed by
Greg Kroah-Hartman
01570974 e58ebd14

+4
+4
drivers/usb/renesas_usbhs/common.c
··· 580 580 .data = &usbhs_rzg2l_plat_info, 581 581 }, 582 582 { 583 + .compatible = "renesas,usbhs-r9a09g077", 584 + .data = &usbhs_rzg2l_plat_info, 585 + }, 586 + { 583 587 .compatible = "renesas,rcar-gen2-usbhs", 584 588 .data = &usbhs_rcar_gen2_plat_info, 585 589 },