summaryrefslogtreecommitdiff
path: root/Documentation/devicetree
diff options
context:
space:
mode:
authorGao Pan <pandy.gao@nxp.com>2018-01-19 15:50:51 +0800
committerLeonard Crestez <leonard.crestez@nxp.com>2018-08-24 12:41:33 +0300
commit3d1e102fefea0cb9e6946255f2a6940393deadb3 (patch)
tree8ae5fcfc0e000c3470cb01a2d29020faeb4c8590 /Documentation/devicetree
parente28c141798b327febf6d1250686455bc4b777391 (diff)
MLK-17429-2 Documentation: add doc for EMVSIM
add devicetree binding doc for add for EMVSIM Signed-off-by: Gao Pan <pandy.gao@nxp.com> Reviewed-by: Andy Duan <fugang.duan@nxp.com>
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r--Documentation/devicetree/bindings/sim/imx_emvsim.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/sim/imx_emvsim.txt b/Documentation/devicetree/bindings/sim/imx_emvsim.txt
new file mode 100644
index 000000000000..29efb4a956ff
--- /dev/null
+++ b/Documentation/devicetree/bindings/sim/imx_emvsim.txt
@@ -0,0 +1,22 @@
+* NXP EMVSIM for i.MX8
+
+Required properties:
+- compatible :
+ - "fsl,imx8-emvsim" for EMVSIM compatible with the one integrated on i.MX8 soc
+- reg : address and length of EMVSIM registers
+- interrupt : core interrupt controller
+- clocks : EMVSIM clock specifier
+- power-domains : power domain for EMVSIM
+
+Examples:
+
+emvsim0: sim0@5a0d0000 {
+ compatible = "fsl,imx8-emvsim";
+ reg = <0x0 0x5a0d0000 0x0 0x10000>;
+ interrupts = <GIC_SPI 230 IRQ_TYPE_LEVEL_HIGH>;
+ clocks = <&clk IMX8QM_EMVSIM0_CLK>,
+ <&clk IMX8QM_EMVSIM0_IPG_CLK>;
+ clock-names = "sim", "ipg";
+ power-domains = <&pd_ldo1_sim>;
+ status = "disabled";
+};