summaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-05-18 13:09:59 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-05-23 09:19:49 +0200
commit4699fa44a80e007e1a43d636e43350c9033a9dba (patch)
treec1ebcd49cb72f1bc241112f00f0a90669dbc5f11 /Documentation/devicetree
parentd79515b91f195f074083f2acb57e0fa327403130 (diff)
downloadbarebox-4699fa44a80e007e1a43d636e43350c9033a9dba.tar.gz
barebox-4699fa44a80e007e1a43d636e43350c9033a9dba.tar.xz
ARM: i.MX: iim: Add devicetree probe support
Only adds the dt ids. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r--Documentation/devicetree/bindings/README6
-rw-r--r--Documentation/devicetree/bindings/misc/fsl,imx-iim.txt20
2 files changed, 26 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/README b/Documentation/devicetree/bindings/README
new file mode 100644
index 0000000000..b818ee8243
--- /dev/null
+++ b/Documentation/devicetree/bindings/README
@@ -0,0 +1,6 @@
+
+barebox uses the same devicetree bindings as the kernel. For
+the bindings derived from the kernel look in the kernel sources
+for reference.
+
+barebox specific bindings are documented here.
diff --git a/Documentation/devicetree/bindings/misc/fsl,imx-iim.txt b/Documentation/devicetree/bindings/misc/fsl,imx-iim.txt
new file mode 100644
index 0000000000..ed3efcc313
--- /dev/null
+++ b/Documentation/devicetree/bindings/misc/fsl,imx-iim.txt
@@ -0,0 +1,20 @@
+Freescale i.MX IIM (Ic Identification Module)
+
+Required properties:
+
+- compatible: fsl,imx-iim
+- reg: physical register base and size
+
+Optional properties:
+
+- barebox,provide-mac-address: Provide MAC addresses for ethernet devices. This
+ can be multiple entries in the form <&phandle bankno fuseofs> to specify a MAC
+ address to a ethernet device.
+
+Example:
+
+iim: iim@83f98000 {
+ compatible = "fsl,imx51-iim", "fsl,imx-iim";
+ reg = <0x83f98000 0x4000>;
+ barebox,provide-mac-address = <&fec 1 9>;
+};