Based on kernel version 6.17
. Page generated on 2025-10-03 10:04 EST
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) %YAML 1.2 --- $id: http://devicetree.org/schemas/i3c/renesas,i3c.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Renesas RZ/G3S and RZ/G3E I3C Bus Interface maintainers: - Wolfram Sang <wsa+renesas@sang-engineering.com> - Tommaso Merciai <tommaso.merciai.xr@bp.renesas.com> properties: compatible: items: - enum: - renesas,r9a08g045-i3c # RZ/G3S - renesas,r9a09g047-i3c # RZ/G3E reg: maxItems: 1 interrupts: items: - description: Non-recoverable internal error interrupt - description: Normal transfer error interrupt - description: Normal transfer abort interrupt - description: Normal response status buffer full interrupt - description: Normal command buffer empty interrupt - description: Normal IBI status buffer full interrupt - description: Normal Rx data buffer full interrupt - description: Normal Tx data buffer empty interrupt - description: Normal receive status buffer full interrupt - description: START condition detection interrupt - description: STOP condition detection interrupt - description: Transmit end interrupt - description: NACK detection interrupt - description: Arbitration lost interrupt - description: Timeout detection interrupt - description: Wake-up condition detection interrupt - description: HDR Exit Pattern detection interrupt minItems: 16 interrupt-names: items: - const: ierr - const: terr - const: abort - const: resp - const: cmd - const: ibi - const: rx - const: tx - const: rcv - const: st - const: sp - const: tend - const: nack - const: al - const: tmo - const: wu - const: exit minItems: 16 clocks: items: - description: APB bus clock - description: transfer clock - description: SFRs clock minItems: 2 clock-names: items: - const: pclk - const: tclk - const: pclkrw minItems: 2 power-domains: maxItems: 1 resets: items: - description: Reset signal - description: APB interface reset signal/SCAN reset signal reset-names: items: - const: presetn - const: tresetn required: - compatible - reg - interrupts - interrupt-names - clock-names - clocks - power-domains - resets - reset-names allOf: - $ref: i3c.yaml# - if: properties: compatible: contains: const: renesas,r9a08g045-i3c then: properties: clocks: maxItems: 2 clock-names: maxItems: 2 interrupts: minItems: 17 interrupt-names: minItems: 17 - if: properties: compatible: contains: const: renesas,r9a09g047-i3c then: properties: clocks: minItems: 3 clock-names: minItems: 3 interrupts: maxItems: 16 interrupt-names: maxItems: 16 unevaluatedProperties: false examples: - | #include <dt-bindings/clock/r9a08g045-cpg.h> #include <dt-bindings/interrupt-controller/arm-gic.h> i3c@1005b000 { compatible = "renesas,r9a08g045-i3c"; reg = <0x1005b000 0x1000>; clocks = <&cpg CPG_MOD R9A08G045_I3C_PCLK>, <&cpg CPG_MOD R9A08G045_I3C_TCLK>; clock-names = "pclk", "tclk"; interrupts = <GIC_SPI 289 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 290 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 293 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 294 IRQ_TYPE_EDGE_RISING>, <GIC_SPI 295 IRQ_TYPE_EDGE_RISING>, <GIC_SPI 296 IRQ_TYPE_EDGE_RISING>, <GIC_SPI 297 IRQ_TYPE_EDGE_RISING>, <GIC_SPI 298 IRQ_TYPE_EDGE_RISING>, <GIC_SPI 299 IRQ_TYPE_EDGE_RISING>, <GIC_SPI 304 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 305 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 307 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 308 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 309 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 310 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 311 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 306 IRQ_TYPE_LEVEL_HIGH>; interrupt-names = "ierr", "terr", "abort", "resp", "cmd", "ibi", "rx", "tx", "rcv", "st", "sp", "tend", "nack", "al", "tmo", "wu", "exit"; resets = <&cpg R9A08G045_I3C_PRESETN>, <&cpg R9A08G045_I3C_TRESETN>; reset-names = "presetn", "tresetn"; power-domains = <&cpg>; #address-cells = <3>; #size-cells = <0>; }; ... |