summaryrefslogtreecommitdiff
path: root/tools/binman/test/325_ti_secure_firewall_missing_property.dts
blob: 24a0a9962503deb74fecb1de18729c8ce50f0e27 (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
// SPDX-License-Identifier: GPL-2.0+

/dts-v1/;

/ {
	#address-cells = <1>;
	#size-cells = <1>;

	binman {
		ti-secure {
			content = <&unsecure_binary>;
			auth-in-place = <0xa02>;

			firewall-0-2 {
				// id = <0>;
				// region = <2>;
				control = <0x31a>;
				permissions = <0xc3ffff>;
				start_address = <0x0 0x9e800000>;
				end_address = <0x0 0x9fffffff>;
			};

		};
		unsecure_binary: blob-ext {
			filename = "ti_unsecure.bin";
		};
	};
};