-
Notifications
You must be signed in to change notification settings - Fork 33
/
mpfs_video.its
89 lines (81 loc) · 1.83 KB
/
mpfs_video.its
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
* Flattened Image Tree file for Mpfs Video Kit
*
* Copyright (C) 2022 Microchip Technology Inc. and its subsidiaries.
* Author: shravan chippa <shravan.chippa@microchip.com>
*
*/
/dts-v1/;
/ {
description = "U-Boot fitImage for the MPFS";
#address-cells = <2>;
images {
kernel {
description = "Linux kernel";
data = /incbin/("./Image.gz");
type = "kernel";
arch = "riscv";
os = "linux";
compression = "gzip";
load = <0x80200000>;
entry = <0x80200000>;
hash-1 {
algo = "sha256";
};
};
base_fdt {
description = "Flattened Device Tree blob";
data = /incbin/("./dts/microchip/mpfs-video-kit.dtb");
type = "flat_dt";
arch = "riscv";
compression = "none";
load = <0x8a000000>;
hash-1 {
algo = "sha256";
};
};
fdt_h_264 {
description = "Device Tree mpfs_h264 dtbo";
data = /incbin/("./mpfs_video/mpfs_h264.dtbo");
type = "flat_dt";
arch = "riscv";
compression = "none";
load = <0x8a080000>;
hash-1 {
algo = "sha256";
};
};
fdt_mpfs_video_bayer {
description = "Device Tree mpfs video bayer dtbo";
data = /incbin/("./mpfs_video/mpfs_video_bayer.dtbo");
type = "flat_dt";
arch = "riscv";
compression = "none";
load = <0x8a090000>;
hash-1 {
algo = "sha256";
};
};
};
configurations {
default = "kernel_dtb";
kernel_dtb {
description = "1 Linux kernel, FDT blob";
kernel = "kernel";
fdt = "base_fdt";
};
base_dtb {
description = "Base FDT blob for MPFS Video board";
fdt = "base_fdt";
};
h_264 {
description = "FDT overlay blob for H.264";
fdt = "fdt_h_264";
};
mpfs_video_bayer {
description = "FDT overlay blob for video bayer";
fdt = "fdt_mpfs_video_bayer";
};
};
};