1*7d0873ebSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*7d0873ebSEmmanuel Vadot%YAML 1.2 3*7d0873ebSEmmanuel Vadot--- 4*7d0873ebSEmmanuel Vadot$id: http://devicetree.org/schemas/i2c/nxp,pnx-i2c.yaml# 5*7d0873ebSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*7d0873ebSEmmanuel Vadot 7*7d0873ebSEmmanuel Vadottitle: NXP PNX I2C Controller 8*7d0873ebSEmmanuel Vadot 9*7d0873ebSEmmanuel Vadotmaintainers: 10*7d0873ebSEmmanuel Vadot - Animesh Agarwal <animeshagarwal28@gmail.com> 11*7d0873ebSEmmanuel Vadot 12*7d0873ebSEmmanuel VadotallOf: 13*7d0873ebSEmmanuel Vadot - $ref: /schemas/i2c/i2c-controller.yaml# 14*7d0873ebSEmmanuel Vadot 15*7d0873ebSEmmanuel Vadotproperties: 16*7d0873ebSEmmanuel Vadot compatible: 17*7d0873ebSEmmanuel Vadot const: nxp,pnx-i2c 18*7d0873ebSEmmanuel Vadot 19*7d0873ebSEmmanuel Vadot reg: 20*7d0873ebSEmmanuel Vadot maxItems: 1 21*7d0873ebSEmmanuel Vadot 22*7d0873ebSEmmanuel Vadot interrupts: 23*7d0873ebSEmmanuel Vadot maxItems: 1 24*7d0873ebSEmmanuel Vadot 25*7d0873ebSEmmanuel Vadot clock-frequency: 26*7d0873ebSEmmanuel Vadot default: 100000 27*7d0873ebSEmmanuel Vadot 28*7d0873ebSEmmanuel Vadotrequired: 29*7d0873ebSEmmanuel Vadot - compatible 30*7d0873ebSEmmanuel Vadot - reg 31*7d0873ebSEmmanuel Vadot - interrupts 32*7d0873ebSEmmanuel Vadot - "#address-cells" 33*7d0873ebSEmmanuel Vadot - "#size-cells" 34*7d0873ebSEmmanuel Vadot 35*7d0873ebSEmmanuel VadotunevaluatedProperties: false 36*7d0873ebSEmmanuel Vadot 37*7d0873ebSEmmanuel Vadotexamples: 38*7d0873ebSEmmanuel Vadot - | 39*7d0873ebSEmmanuel Vadot i2c@400a0000 { 40*7d0873ebSEmmanuel Vadot compatible = "nxp,pnx-i2c"; 41*7d0873ebSEmmanuel Vadot reg = <0x400a0000 0x100>; 42*7d0873ebSEmmanuel Vadot interrupt-parent = <&mic>; 43*7d0873ebSEmmanuel Vadot interrupts = <51 0>; 44*7d0873ebSEmmanuel Vadot #address-cells = <1>; 45*7d0873ebSEmmanuel Vadot #size-cells = <0>; 46*7d0873ebSEmmanuel Vadot }; 47