Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/i3c/silvaco,i3c-master.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Silvaco I3C master
0008 
0009 maintainers:
0010   - Conor Culhane <conor.culhane@silvaco.com>
0011 
0012 allOf:
0013   - $ref: "i3c.yaml#"
0014 
0015 properties:
0016   compatible:
0017     const: silvaco,i3c-master-v1
0018 
0019   reg:
0020     maxItems: 1
0021 
0022   interrupts:
0023     maxItems: 1
0024 
0025   clocks:
0026     items:
0027       - description: system clock
0028       - description: bus clock
0029       - description: other (slower) events clock
0030 
0031   clock-names:
0032     items:
0033       - const: pclk
0034       - const: fast_clk
0035       - const: slow_clk
0036 
0037   resets:
0038     maxItems: 1
0039 
0040 required:
0041   - compatible
0042   - reg
0043   - interrupts
0044   - clock-names
0045   - clocks
0046 
0047 additionalProperties: true
0048 
0049 examples:
0050   - |
0051     i3c-master@a0000000 {
0052         compatible = "silvaco,i3c-master-v1";
0053         clocks = <&zynqmp_clk 71>, <&fclk>, <&sclk>;
0054         clock-names = "pclk", "fast_clk", "slow_clk";
0055         interrupt-parent = <&gic>;
0056         interrupts = <0 89 4>;
0057         reg = <0xa0000000 0x1000>;
0058         #address-cells = <3>;
0059         #size-cells = <0>;
0060     };