1*ae5de77eSEmmanuel Vadot# SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause 2*ae5de77eSEmmanuel Vadot%YAML 1.2 3*ae5de77eSEmmanuel Vadot--- 4*ae5de77eSEmmanuel Vadot$id: http://devicetree.org/schemas/i2c/wm,wm8505-i2c.yaml# 5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*ae5de77eSEmmanuel Vadot 7*ae5de77eSEmmanuel Vadottitle: I2C Controller on WonderMedia WM8505 and related SoCs 8*ae5de77eSEmmanuel Vadot 9*ae5de77eSEmmanuel Vadotmaintainers: 10*ae5de77eSEmmanuel Vadot - Alexey Charkov <alchark@gmail.com> 11*ae5de77eSEmmanuel Vadot 12*ae5de77eSEmmanuel VadotallOf: 13*ae5de77eSEmmanuel Vadot - $ref: /schemas/i2c/i2c-controller.yaml# 14*ae5de77eSEmmanuel Vadot 15*ae5de77eSEmmanuel Vadotproperties: 16*ae5de77eSEmmanuel Vadot compatible: 17*ae5de77eSEmmanuel Vadot const: wm,wm8505-i2c 18*ae5de77eSEmmanuel Vadot 19*ae5de77eSEmmanuel Vadot reg: 20*ae5de77eSEmmanuel Vadot maxItems: 1 21*ae5de77eSEmmanuel Vadot 22*ae5de77eSEmmanuel Vadot interrupts: 23*ae5de77eSEmmanuel Vadot maxItems: 1 24*ae5de77eSEmmanuel Vadot 25*ae5de77eSEmmanuel Vadot clocks: 26*ae5de77eSEmmanuel Vadot maxItems: 1 27*ae5de77eSEmmanuel Vadot 28*ae5de77eSEmmanuel Vadot clock-frequency: 29*ae5de77eSEmmanuel Vadot enum: [100000, 400000] 30*ae5de77eSEmmanuel Vadot 31*ae5de77eSEmmanuel Vadotrequired: 32*ae5de77eSEmmanuel Vadot - compatible 33*ae5de77eSEmmanuel Vadot - reg 34*ae5de77eSEmmanuel Vadot - interrupts 35*ae5de77eSEmmanuel Vadot - clocks 36*ae5de77eSEmmanuel Vadot 37*ae5de77eSEmmanuel VadotunevaluatedProperties: false 38*ae5de77eSEmmanuel Vadot 39*ae5de77eSEmmanuel Vadotexamples: 40*ae5de77eSEmmanuel Vadot - | 41*ae5de77eSEmmanuel Vadot i2c_0: i2c@d8280000 { 42*ae5de77eSEmmanuel Vadot compatible = "wm,wm8505-i2c"; 43*ae5de77eSEmmanuel Vadot reg = <0xd8280000 0x1000>; 44*ae5de77eSEmmanuel Vadot interrupts = <19>; 45*ae5de77eSEmmanuel Vadot clocks = <&clki2c0>; 46*ae5de77eSEmmanuel Vadot clock-frequency = <400000>; 47*ae5de77eSEmmanuel Vadot }; 48