Path: blob/main/sys/contrib/device-tree/Bindings/i3c/snps,dw-i3c-master.txt
48376 views
Bindings for Synopsys DesignWare I3C master block1=================================================23Required properties:4--------------------5- compatible: shall be "snps,dw-i3c-master-1.00a"6- clocks: shall reference the core_clk7- interrupts: the interrupt line connected to this I3C master8- reg: Offset and length of I3C master registers910Mandatory properties defined by the generic binding (see11Documentation/devicetree/bindings/i3c/i3c.yaml for more details):1213- #address-cells: shall be set to 314- #size-cells: shall be set to 01516Optional properties defined by the generic binding (see17Documentation/devicetree/bindings/i3c/i3c.yaml for more details):1819- i2c-scl-hz20- i3c-scl-hz2122I3C device connected on the bus follow the generic description (see23Documentation/devicetree/bindings/i3c/i3c.yaml for more details).2425Example:2627i3c-master@2000 {28compatible = "snps,dw-i3c-master-1.00a";29#address-cells = <3>;30#size-cells = <0>;31reg = <0x02000 0x1000>;32interrupts = <0>;33clocks = <&i3cclk>;3435eeprom@57{36compatible = "atmel,24c01";37reg = <0x57 0x0 0x10>;38pagesize = <0x8>;39};40};414243