Path: blob/master/Documentation/devicetree/bindings/i2c/i2c-img-scb.txt
26307 views
IMG Serial Control Bus (SCB) I2C Controller12Required Properties:3- compatible: "img,scb-i2c"4- reg: Physical base address and length of controller registers5- interrupts: Interrupt number used by the controller6- clocks : Should contain a clock specifier for each entry in clock-names7- clock-names : Should contain the following entries:8"scb", for the SCB core clock.9"sys", for the system clock.10- clock-frequency: The I2C bus frequency in Hz11- #address-cells: Should be <1>12- #size-cells: Should be <0>1314Example:1516i2c@18100000 {17compatible = "img,scb-i2c";18reg = <0x18100000 0x200>;19interrupts = <GIC_SHARED 2 IRQ_TYPE_LEVEL_HIGH>;20clocks = <&i2c0_clk>, <&system_clk>;21clock-names = "scb", "sys";22clock-frequency = <400000>;23#address-cells = <1>;24#size-cells = <0>;25};262728