Skip to content

Commit 8cd1470

Browse files
Ulrich Hechtlinusw
authored andcommitted
gpio: rcar: Add r8a7795 (R-Car H3) support
R-Car Gen3's GPIO blocks are identical to Gen2's in every respect. Signed-off-by: Ulrich Hecht <[email protected]> Acked-by: Simon Horman <[email protected]> Acked-by: Kuninori Morimoto <[email protected]> Signed-off-by: Linus Walleij <[email protected]>
1 parent 4dbada2 commit 8cd1470

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

Documentation/devicetree/bindings/gpio/renesas,gpio-rcar.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Required Properties:
99
- "renesas,gpio-r8a7791": for R8A7791 (R-Car M2-W) compatible GPIO controller.
1010
- "renesas,gpio-r8a7793": for R8A7793 (R-Car M2-N) compatible GPIO controller.
1111
- "renesas,gpio-r8a7794": for R8A7794 (R-Car E2) compatible GPIO controller.
12+
- "renesas,gpio-r8a7795": for R8A7795 (R-Car H3) compatible GPIO controller.
1213
- "renesas,gpio-rcar": for generic R-Car GPIO controller.
1314

1415
- reg: Base address and length of each memory resource used by the GPIO

drivers/gpio/gpio-rcar.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,10 @@ static const struct of_device_id gpio_rcar_of_table[] = {
341341
}, {
342342
.compatible = "renesas,gpio-r8a7794",
343343
.data = &gpio_rcar_info_gen2,
344+
}, {
345+
.compatible = "renesas,gpio-r8a7795",
346+
/* Gen3 GPIO is identical to Gen2. */
347+
.data = &gpio_rcar_info_gen2,
344348
}, {
345349
.compatible = "renesas,gpio-rcar",
346350
.data = &gpio_rcar_info_gen1,

0 commit comments

Comments
 (0)