summaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2014-06-17 10:35:53 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2014-06-26 10:12:04 +0200
commit7e65163b9165bccca780da91fad247c0e4ac7f9f (patch)
tree62bbdf6f9e44f54e534a1fa684db4519aa1b612f /Documentation/devicetree
parentfb619a75fda1d16ddd9d90e70ef36a5e62eebd08 (diff)
downloadbarebox-7e65163b9165bccca780da91fad247c0e4ac7f9f.tar.gz
barebox-7e65163b9165bccca780da91fad247c0e4ac7f9f.tar.xz
Documentation: remove devicetree docs
Remove the barebox devicetree documentation. It will be replaced with sphinx based documentation later. 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/barebox.txt10
-rw-r--r--Documentation/devicetree/bindings/barebox/barebox,environment.txt25
-rw-r--r--Documentation/devicetree/bindings/leds/common.txt8
-rw-r--r--Documentation/devicetree/bindings/misc/fsl,imx-iim.txt20
-rw-r--r--Documentation/devicetree/bindings/misc/fsl,imx-ocotp.txt20
6 files changed, 0 insertions, 89 deletions
diff --git a/Documentation/devicetree/bindings/README b/Documentation/devicetree/bindings/README
deleted file mode 100644
index b818ee8243..0000000000
--- a/Documentation/devicetree/bindings/README
+++ /dev/null
@@ -1,6 +0,0 @@
-
-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/barebox.txt b/Documentation/devicetree/bindings/barebox.txt
deleted file mode 100644
index 5e8d461733..0000000000
--- a/Documentation/devicetree/bindings/barebox.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-barebox specific devicetree bindings
-====================================
-
-barebox uses some barebox specific devicetree bindings. All of these
-are under the /chosen/ hierarchy in the devicetree.
-
-The bindings have the form of a device with regular 'compatible' properties.
-drivers matching these devices do not handle physical devices but instead
-influence / configure certain behaviours of barebox like the place where to
-find the persistent environment.
diff --git a/Documentation/devicetree/bindings/barebox/barebox,environment.txt b/Documentation/devicetree/bindings/barebox/barebox,environment.txt
deleted file mode 100644
index 5a8bf9c13b..0000000000
--- a/Documentation/devicetree/bindings/barebox/barebox,environment.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-barebox environment
-===================
-
-This driver provides an environment for barebox from the devicetree.
-
-Required properties:
-- compatible: should be "barebox,environment"
-- device-path: path to the environment
-
-The device-path is a multistring property. The first string should be a
-nodepath to the node containing the physical device of the environment.
-The subsequent strings are of the form <type>:<options> to further describe
-the path to the environment. Supported values for <type>:
-
-partname:<partname> This describes a partition on a device. <partname> can
- be the label for mtd partitions, the number for DOS
- partitions (beginning with 0) or the name for GPT
- partitions
-
-Example:
-
-environment@0 {
- compatible = "barebox,environment";
- device-path = &flash, "partname:barebox-environment";
-};
diff --git a/Documentation/devicetree/bindings/leds/common.txt b/Documentation/devicetree/bindings/leds/common.txt
deleted file mode 100644
index db264b332f..0000000000
--- a/Documentation/devicetree/bindings/leds/common.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-Common leds properties.
-
-- linux,default-trigger barebox,default-trigger: This parameter, if present, is a
- string defining the trigger assigned to the LED. Current triggers are:
- "heartbeat" - LED flashes at a constant rate
- "panic" - LED turns on when barebox panics
- "net" - LED indicates network activity
-
diff --git a/Documentation/devicetree/bindings/misc/fsl,imx-iim.txt b/Documentation/devicetree/bindings/misc/fsl,imx-iim.txt
deleted file mode 100644
index 9759210ba2..0000000000
--- a/Documentation/devicetree/bindings/misc/fsl,imx-iim.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-Freescale i.MX IIM (Ic Identification Module)
-
-Required properties:
-
-- compatible: fsl,imx27-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,imx27-iim";
- reg = <0x83f98000 0x4000>;
- barebox,provide-mac-address = <&fec 1 9>;
-};
diff --git a/Documentation/devicetree/bindings/misc/fsl,imx-ocotp.txt b/Documentation/devicetree/bindings/misc/fsl,imx-ocotp.txt
deleted file mode 100644
index b7a3ee5b15..0000000000
--- a/Documentation/devicetree/bindings/misc/fsl,imx-ocotp.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-Freescale i.MX OCOTP (On-Chip OTP)
-
-Required properties:
-
-- compatible: fsl,imx6q-ocotp
-- 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 regofs> to specify a MAC
- address to a ethernet device.
-
-Example:
-
-ocotp1: ocotp@021bc000 {
- compatible = "fsl,imx6q-ocotp";
- reg = <0x021bc000 0x4000>;
- barebox,provide-mac-address = <&fec 0x620>;
-};