summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/i2c/i2c-iop3xx.txt
diff options
context:
space:
mode:
authorWolfram Sang <wsa@the-dreams.de>2019-03-22 00:04:19 +0100
committerWolfram Sang <wsa@the-dreams.de>2019-03-27 14:20:20 +0100
commitc4dcd89d20a8fe4009d25660c69396611328cc5e (patch)
tree8eb1bed2bc246a85294158b27fdf10c52f59278c /Documentation/devicetree/bindings/i2c/i2c-iop3xx.txt
parent5cd1c56c42beb6d228cc8d4373fdc5f5ec78a5ad (diff)
i2c: iop3xx: make bindings file name match the driver
If we use the "i2c-" prefix for the binding documentation file name, then it should match the file name of the driver, if possible. It is possible for this driver, so rename it. Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'Documentation/devicetree/bindings/i2c/i2c-iop3xx.txt')
-rw-r--r--Documentation/devicetree/bindings/i2c/i2c-iop3xx.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/i2c/i2c-iop3xx.txt b/Documentation/devicetree/bindings/i2c/i2c-iop3xx.txt
new file mode 100644
index 000000000000..dcc8390e0d24
--- /dev/null
+++ b/Documentation/devicetree/bindings/i2c/i2c-iop3xx.txt
@@ -0,0 +1,20 @@
+i2c Controller on XScale platforms such as IOP3xx and IXP4xx
+
+Required properties:
+- compatible : Must be one of
+ "intel,iop3xx-i2c"
+ "intel,ixp4xx-i2c";
+- reg
+- #address-cells = <1>;
+- #size-cells = <0>;
+
+Optional properties:
+- Child nodes conforming to i2c bus binding
+
+Example:
+
+i2c@c8011000 {
+ compatible = "intel,ixp4xx-i2c";
+ reg = <0xc8011000 0x18>;
+ interrupts = <33 IRQ_TYPE_LEVEL_LOW>;
+};