Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: f75aef392f869018f78cfedf3c320a6b3fcfda6b authored by Linus Torvalds on 30 August 2020, 23:01:54 UTC
Linux 5.9-rc3
Tip revision: f75aef3
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