Searched +full:r7s9210 +full:- +full:pinctrl (Results 1 – 6 of 6) sorted by relevance
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/pinctrl/ |
| H A D | renesas,rza2-pinctrl.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/pinctrl/renesas,rza2-pinctrl.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Chris Brandt <chris.brandt@renesas.com> 11 - Geert Uytterhoeven <geert+renesas@glider.be> 16 Pin multiplexing and GPIO configuration is performed on a per-pin basis. 23 const: "renesas,r7s9210-pinctrl" # RZ/A2M 28 gpio-controller: true 30 '#gpio-cells': [all …]
|
| /OK3568_Linux_fs/kernel/arch/arm/boot/dts/ |
| H A D | r7s9210.dtsi | 1 // SPDX-License-Identifier: GPL-2.0 3 * Device Tree Source for the R7S9210 SoC 9 #include <dt-bindings/interrupt-controller/arm-gic.h> 10 #include <dt-bindings/clock/r7s9210-cpg-mssr.h> 13 compatible = "renesas,r7s9210"; 14 interrupt-parent = <&gic>; 15 #address-cells = <1>; 16 #size-cells = <1>; 20 #clock-cells = <0>; 21 compatible = "fixed-clock"; [all …]
|
| H A D | r7s9210-rza2mevb.dts | 1 // SPDX-License-Identifier: GPL-2.0 9 /dts-v1/; 10 #include "r7s9210.dtsi" 11 #include <dt-bindings/gpio/gpio.h> 12 #include <dt-bindings/input/input.h> 13 #include <dt-bindings/pinctrl/r7s9210-pinctrl.h> 17 compatible = "renesas,rza2mevb", "renesas,r7s9210"; 27 stdout-path = "serial0:115200n8"; 31 compatible = "gpio-keys"; 33 pinctrl-names = "default"; [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/i2c/ |
| H A D | renesas,riic.txt | 4 - compatible : 5 "renesas,riic-r7s72100" if the device is a part of a R7S72100 SoC. 6 "renesas,riic-r7s9210" if the device is a part of a R7S9210 SoC. 7 "renesas,riic-rz" for a generic RZ/A compatible device. 8 - reg : address start and address range size of device 9 - interrupts : 8 interrupts (TEI, RI, TI, SPI, STI, NAKI, ALI, TMOI) 10 - clock-frequency : frequency of bus clock in Hz 11 - #address-cells : should be <1> 12 - #size-cells : should be <0> 14 Pinctrl properties might be needed, too. See there. [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/mmc/ |
| H A D | renesas,sdhi.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: "http://devicetree.org/meta-schemas/core.yaml#" 10 - Wolfram Sang <wsa+renesas@sang-engineering.com> 13 - $ref: "mmc-controller.yaml" 18 - items: 19 - const: renesas,sdhi-sh73a0 # R-Mobile APE6 20 - items: 21 - const: renesas,sdhi-r7s72100 # RZ/A1H 22 - items: [all …]
|
| /OK3568_Linux_fs/kernel/drivers/pinctrl/renesas/ |
| H A D | pinctrl-rza2.c | 1 // SPDX-License-Identifier: GPL-2.0 3 * Combined GPIO and pin controller support for Renesas RZ/A2 (R7S9210) SoC 18 #include <linux/pinctrl/pinmux.h> 23 #define DRIVER_NAME "pinctrl-rza2" 51 #define RZA2_PDR(port) (0x0000 + (port) * 2) /* Direction 16-bit */ 52 #define RZA2_PODR(port) (0x0040 + (port)) /* Output Data 8-bit */ 53 #define RZA2_PIDR(port) (0x0060 + (port)) /* Input Data 8-bit */ 54 #define RZA2_PMR(port) (0x0080 + (port)) /* Mode 8-bit */ 55 #define RZA2_DSCR(port) (0x0140 + (port) * 2) /* Drive 16-bit */ 56 #define RZA2_PFS(port, pin) (0x0200 + ((port) * 8) + (pin)) /* Fnct 8-bit */ [all …]
|