Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: e19b205be43d11bff638cad4487008c48d21c103 authored by Linus Torvalds on 24 September 2017, 23:38:56 UTC
Linux 4.14-rc2
Tip revision: e19b205
fsl-imx-scc.txt
Freescale Security Controller (SCC)

Required properties:
- compatible : Should be "fsl,imx25-scc".
- reg : Should contain register location and length.
- interrupts : Should contain interrupt numbers for SCM IRQ and SMN IRQ.
- interrupt-names : Should specify the names "scm" and "smn" for the
		    SCM IRQ and SMN IRQ.
- clocks: Should contain the clock driving the SCC core.
- clock-names: Should be set to "ipg".

Example:

	scc: crypto@53fac000 {
		compatible = "fsl,imx25-scc";
		reg = <0x53fac000 0x4000>;
		clocks = <&clks 111>;
		clock-names = "ipg";
		interrupts = <49>, <50>;
		interrupt-names = "scm", "smn";
	};
back to top