summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSuneel Garapati <[email protected]>2020-05-26 14:13:07 +0200
committerHeiko Schocher <[email protected]>2020-07-09 06:02:44 +0200
commit5c2c3e8b44e7fa9bc81e6e367797b3ee2b424168 (patch)
treeb317fc89db507fde6b48d46f6d7d7a5702f68e6d /doc
parent61608f395e7dcb2be6060407a72a1149b046430a (diff)
i2c: octeon_i2c: Add I2C controller driver for Octeon
Add support for I2C controllers found on Octeon II/III and Octeon TX TX2 SoC platforms. Signed-off-by: Aaron Williams <[email protected]> Signed-off-by: Suneel Garapati <[email protected]> Signed-off-by: Stefan Roese <[email protected]> Cc: Heiko Schocher <[email protected]> Cc: Simon Glass <[email protected]> Cc: Daniel Schwierzeck <[email protected]> Cc: Aaron Williams <[email protected]> Cc: Chandrakala Chavva <[email protected]> Reviewed-by: Simon Glass <[email protected]> Reviewed-by: Heiko Schocher <[email protected]> Reviewed-by: Rayagonda Kokatanur <[email protected]>
Diffstat (limited to 'doc')
-rw-r--r--doc/device-tree-bindings/i2c/octeon-i2c.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/device-tree-bindings/i2c/octeon-i2c.txt b/doc/device-tree-bindings/i2c/octeon-i2c.txt
new file mode 100644
index 00000000000..9c1908ec2cc
--- /dev/null
+++ b/doc/device-tree-bindings/i2c/octeon-i2c.txt
@@ -0,0 +1,24 @@
+* I2C controller embedded in Marvell Octeon platforms
+
+Required properties :
+- compatible : Must be "cavium,octeon-7890-twsi" or a compatible string
+- reg : Offset and length of the register set for the device
+- clocks: Must contain the input clock of the I2C instance
+- #address-cells = <1>;
+- #size-cells = <0>;
+
+Optional properties :
+- clock-frequency : Desired I2C bus clock frequency in Hz. If not specified,
+ the default 100 kHz frequency will be used. As only Normal, Fast and Fast+
+ modes are implemented, possible values are 100000, 400000 and 1000000.
+
+Example :
+
+ i2c0: i2c@1180000001000 {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ compatible = "cavium,octeon-7890-twsi";
+ reg = <0x11800 0x00001000 0x0 0x200>;
+ clock-frequency = <100000>;
+ clocks = <&sclk>;
+ };