-
Notifications
You must be signed in to change notification settings - Fork 33
/
sama7d65_curiosity.its
164 lines (147 loc) · 3.23 KB
/
sama7d65_curiosity.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
* Flattened Image Tree file for SAMA7D65-CURIOSITY board
*
* Copyright (C) 2024 Microchip Technology Inc. and its subsidiaries
*
* Author: Romain Sioen <romain.sioen@microchip.com>
*/
/dts-v1/;
/ {
description = "Microchip SAMA7D65-CURIOSITY FIT Image";
#address-cells = <1>;
images {
kernel {
description = "Linux4SAM Linux kernel";
data = /incbin/("./zImage");
type = "kernel";
arch = "arm";
os = "linux";
compression = "none";
load = <0x62000000>;
entry = <0x62000000>;
hash-1 {
algo = "crc32";
};
hash-2 {
algo = "sha1";
};
};
base_fdt {
description = "SAMA7D65-CURIOSITY Flattened Device Tree blob";
data = /incbin/("./at91-sama7d65_curiosity.dtb");
type = "flat_dt";
arch = "arm";
compression = "none";
load = <0x61000000>;
hash-1 {
algo = "crc32";
};
hash-2 {
algo = "sha1";
};
};
fdt_spi_click1 {
description = "Device Tree blob at25ff321a spi flash clickboard overlay";
data = /incbin/("./sama7d65_curiosity/sama7d65_curiosity_at25ff321a_click1.dtbo");
type = "flat_dt";
arch = "arm";
compression = "none";
load = <0x61100000>;
hash-1 {
algo = "crc32";
};
hash-2 {
algo = "sha1";
};
};
fdt_pwm {
description = "Device Tree blob pwm overlay";
data = /incbin/("./sama7d65_curiosity/sama7d65_curiosity_pwm.dtbo");
type = "flat_dt";
arch = "arm";
compression = "none";
load = <0x61200000>;
hash-1 {
algo = "crc32";
};
hash-2 {
algo = "sha1";
};
};
fdt_mipi {
description = "Device Tree blob mipi display overlay";
data = /incbin/("./sama7d65_curiosity/sama7d65_curiosity_mipi.dtbo");
type = "flat_dt";
arch = "arm";
compression = "none";
load = <0x61300000>;
hash-1 {
algo = "crc32";
};
hash-2 {
algo = "sha1";
};
};
fdt_lvds {
description = "Device Tree blob lvds display overlay";
data = /incbin/("./sama7d65_curiosity/sama7d65_curiosity_lvds.dtbo");
type = "flat_dt";
arch = "arm";
compression = "none";
load = <0x61300000>;
hash-1 {
algo = "crc32";
};
hash-2 {
algo = "sha1";
};
};
fdt_tcb_pwm {
description = "Device Tree blob tcb pwm overlay";
data = /incbin/("./sama7d65_curiosity/sama7d65_curiosity_tcb_pwm.dtbo");
type = "flat_dt";
arch = "arm";
compression = "none";
load = <0x61400000>;
hash-1 {
algo = "crc32";
};
hash-2 {
algo = "sha1";
};
};
};
configurations {
default = "kernel_dtb";
kernel_dtb {
description = "Linux kernel and base FDT blob for SAMA7D65-CURIOSITY board";
kernel = "kernel";
fdt = "base_fdt";
};
base_dtb {
description = "Base FDT blob for SAMA7D65-CURIOSITY board";
fdt = "base_fdt";
};
spi_click1 {
description = "FDT overlay blob for at25ff321a spi flash clickboard (1)";
fdt = "fdt_spi_click1";
};
pwm {
description = "FDT overlay blob for pwms";
fdt = "fdt_pwm";
};
mipi {
description = "FDT overlay blob for mipi display";
fdt = "fdt_mipi";
};
lvds {
description = "FDT overlay blob for lvds display";
fdt = "fdt_lvds";
};
tcb_pwm {
description = "FDT overlay blob for tcb pwm";
fdt = "fdt_tcb_pwm";
};
};
};