summaryrefslogtreecommitdiff
path: root/tools/binman/test/114_cbfs_offset.dts
blob: 7aa9d9d4bf34451a2c7f116134b6976067f4ef1e (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
// SPDX-License-Identifier: GPL-2.0+

/dts-v1/;

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

	binman {
		sort-by-offset;
		end-at-4gb;
		size = <0x200>;
		cbfs {
			size = <0x200>;
			offset = <0xfffffe00>;
			u-boot {
				cbfs-offset = <0x40>;
				cbfs-type = "raw";
			};
			u-boot-dtb {
				cbfs-offset = <0x140>;
				cbfs-type = "raw";
			};
		};
	};
};