summaryrefslogtreecommitdiff
path: root/doc/device-tree-bindings/mailbox/k3-secure-proxy.txt
blob: f3add0d4e7ae5ac804591e2c79d133c6198db2cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Texas Instruments' K3 Secure Proxy
===================================

The Texas Instruments' K3 Secure Proxy is a mailbox controller that has
configurable threads maintained by System power processor. Each thread
has different address space that can be used to send or receive messages.

Secure Proxy Device Node:
===========================
Required properties:
--------------------
- compatible:		Shall be: "ti,am654-secure-proxy"
- reg-names 		data - Map the data region
			scfg - Map the secure configuration region
			rt - Map the Realtime region.
- reg:			Contains the register map per reg-names.
- #mbox-cells		Shall be 1. Contains the thread ID.

Example:
--------

secproxy: secproxy@285b0000 {
	compatible = "ti,am654-secure-proxy";
	reg = <0x2a380000 0x80000>,
		<0x2a400000 0x80000>,
		<0x2a480000 0x80000>;
	reg-names = "rt", "scfg", "data";
	#mbox-cells = <1>;
};

client:

systemcontroller: systemcontroller {
	[...]
	# RX thread ID is 4.
	# TX thread ID is 5.
	mboxes= <&secproxy 4>,
		<&secproxy 5>;
	[...]
};