summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorRobby Cai <R63905@freescale.com>2013-08-12 15:07:18 +0800
committerJason Liu <r64343@freescale.com>2013-10-30 09:54:36 +0800
commit4c92408a94011fcb9bcb9ee1af10375b29da0df3 (patch)
tree14c9c0899524ea2c4ed2369078a443b2ed62bebe /Documentation
parent0731ecea58be742048e891fd68ee8541192df646 (diff)
ENGR00274412-2 ARM: dts: enable ePxP for imx6dl_sd and imx6sl_evk
Enable ePxP in DTS for imx6 duallite sabresd and imx6 sololite evk board. Signed-off-by: Robby Cai <R63905@freescale.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/devicetree/bindings/video/fsl,pxp.txt30
1 files changed, 30 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/video/fsl,pxp.txt b/Documentation/devicetree/bindings/video/fsl,pxp.txt
new file mode 100644
index 000000000000..5b9ea4032e89
--- /dev/null
+++ b/Documentation/devicetree/bindings/video/fsl,pxp.txt
@@ -0,0 +1,30 @@
+* Freescale PxP Controller for i.MX6DL, i.MX6SL
+
+Required properties for PxP controller:
+- compatible: should be "fsl,<soc>-pxp-dma"
+- reg: <base addr, range> contains pxp register base address and range
+- interrupts: <type num flag> where type is an interrupt type, num is the
+ interrupt number and flag is a field that level/trigger information for
+ the interrupt.
+- clocks: the clock sources that pxp depends on.
+- clock-names: the name is related to the clock source
+
+Required properties for pxp on specified board:
+- status: should be set to "okay" if want to use PxP
+
+Examples:
+for SOC imx6dl.dtsi:
+ pxp@020f0000 {
+ compatible = "fsl,imx6dl-pxp-dma";
+ reg = <0x020f0000 0x4000>;
+ interrupts = <0 98 0x04>;
+ clocks = <&clks 133>;
+ clock-names = "pxp-axi";
+ status = "disabled";
+ };
+
+
+for board imx6dl-sabresd.dts:
+ &pxp {
+ status = "okay";
+ };