Path: blob/master/Documentation/devicetree/bindings/i2c/i2c-mxs.yaml
26307 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/i2c/i2c-mxs.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Freescale MXS Inter IC (I2C) Controller78maintainers:9- Shawn Guo <shawnguo@kernel.org>1011allOf:12- $ref: /schemas/i2c/i2c-controller.yaml#1314properties:15compatible:16enum:17- fsl,imx23-i2c18- fsl,imx28-i2c1920reg:21maxItems: 12223interrupts:24maxItems: 12526clock-frequency:27enum: [ 100000, 400000 ]2829dmas:30maxItems: 13132dma-names:33const: rx-tx3435required:36- compatible37- reg38- interrupts39- dmas40- dma-names4142unevaluatedProperties: false4344examples:45- |46i2c@80058000 {47compatible = "fsl,imx28-i2c";48reg = <0x80058000 2000>;49interrupts = <111>;50clock-frequency = <100000>;51dmas = <&dma_apbx 6>;52dma-names = "rx-tx";53};545556