]> git.ipfire.org Git - thirdparty/u-boot.git/blame - dts/Kconfig
Merge patch series "boot: fdt: Change type of env_get_bootm_low() to phys_addr_t"
[thirdparty/u-boot.git] / dts / Kconfig
CommitLineData
783e6a72
MY
1#
2# Device Tree Control
3#
783e6a72
MY
4
5config SUPPORT_OF_CONTROL
6 bool
7
d6a0c78a
MY
8config PYLIBFDT
9 bool
10
11config DTOC
12 bool
13 select PYLIBFDT
14
15config BINMAN
16 bool
17 select DTOC
18
783e6a72 19menu "Device Tree Control"
783e6a72
MY
20 depends on SUPPORT_OF_CONTROL
21
22config OF_CONTROL
23 bool "Run-time configuration via Device Tree"
d727ace9
SG
24 select OF_LIBFDT
25 select OF_REAL
783e6a72
MY
26 help
27 This feature provides for run-time configuration of U-Boot
28 via a flattened device tree.
29
eaad01a3 30config OF_REAL
414cc151 31 bool
eaad01a3
SG
32 help
33 Indicates that a real devicetree is available which can be accessed
34 at runtime. This means that dev_read_...() functions can be used to
35 read data from the devicetree for each device. This is true if
36 OF_CONTROL is enabled in U-Boot proper.
37
2a792753 38config OF_BOARD_FIXUP
39 bool "Board-specific manipulation of Device Tree"
40 help
41 In certain circumstances it is necessary to be able to modify
42 U-Boot's device tree (e.g. to delete device from it). This option
43 make the Device Tree writeable and provides a board-specific
44 "board_fix_fdt" callback (called during pre-relocation time), which
45 enables the board initialization to modifiy the Device Tree. The
46 modified copy is subsequently used by U-Boot after relocation.
47
dffb86e4
MY
48config SPL_OF_CONTROL
49 bool "Enable run-time configuration via Device Tree in SPL"
50 depends on SPL && OF_CONTROL
327bb3bc 51 select SPL_OF_LIBFDT if !SPL_OF_PLATDATA
eaad01a3 52 select SPL_OF_REAL if !SPL_OF_PLATDATA
2860f03b
SG
53 help
54 Some boards use device tree in U-Boot but only have 4KB of SRAM
c9acae33 55 which is not enough to support device tree. Disable this option to
2860f03b
SG
56 allow such boards to be supported by U-Boot SPL.
57
f291ce12
PT
58config TPL_OF_CONTROL
59 bool "Enable run-time configuration via Device Tree in TPL"
60 depends on TPL && OF_CONTROL
327bb3bc 61 select TPL_OF_LIBFDT if !TPL_OF_PLATDATA
eaad01a3 62 select TPL_OF_REAL if !TPL_OF_PLATDATA
f291ce12
PT
63 help
64 Some boards use device tree in U-Boot but only have 4KB of SRAM
65 which is not enough to support device tree. Enable this option to
66 allow such boards to be supported by U-Boot TPL.
67
747093dd
SG
68config VPL_OF_CONTROL
69 bool "Enable run-time configuration via Device Tree in VPL"
70 depends on VPL && OF_CONTROL
71 default y if SPL_OF_CONTROL
72 help
73 Some boards use device tree in U-Boot but only have 4KB of SRAM
74 which is not enough to support device tree. Enable this option to
75 allow such boards to be supported by U-Boot VPL.
76
5e060d8b
SG
77config OF_LIVE
78 bool "Enable use of a live tree"
ced4c31e 79 depends on DM && OF_CONTROL
5e060d8b
SG
80 help
81 Normally U-Boot uses a flat device tree which saves space and
82 avoids the need to unpack the tree before use. However a flat
4adc6605 83 tree does not support modification from within U-Boot since it
5e060d8b
SG
84 can invalidate driver-model device tree offsets. This option
85 enables a live tree which is available after relocation,
86 and can be adjusted as needed.
87
e3a9829c
SG
88config OF_UPSTREAM
89 bool "Enable use of devicetree imported from Linux kernel release"
90 help
91 Traditionally, U-Boot platforms used to have their custom devicetree
92 files or copy devicetree files from Linux kernel which are hard to
93 maintain and can usually get out-of-sync from Linux kernel. This
94 option enables platforms to migrate to devicetree-rebasing repo where
95 a regular sync will be maintained every major Linux kernel release
96 cycle. However, platforms can still have some custom u-boot specific
97 bits maintained as part of *-u-boot.dtsi files.
98
99 Note: This option should be set in Kconfig, for the SoC as a whole.
100 However, newer boards whose devicetree source files haven't landed in
101 the dts/upstream subtree, they can override this option to have the
102 DT build from existing U-Boot tree location instead.
103
783e6a72
MY
104choice
105 prompt "Provider of DTB for DT control"
106 depends on OF_CONTROL
107
108config OF_SEPARATE
109 bool "Separate DTB for DT control"
783e6a72
MY
110 help
111 If this option is enabled, the device tree will be built and
112 placed as a separate u-boot.dtb file alongside the U-Boot image.
113
114config OF_EMBED
115 bool "Embedded DTB for DT control"
116 help
117 If this option is enabled, the device tree will be picked up and
3d3f60cb
SG
118 built into the U-Boot image. This is suitable for local debugging
119 and development only and is not recommended for production devices.
120 Boards in the mainline U-Boot tree should not use it.
783e6a72 121
836eac7c
SG
122endchoice
123
82f766d1 124config OF_BOARD
2e8d2f88 125 bool "Provided by the board (e.g a previous loader) at runtime"
275b4832 126 default y if SANDBOX || OF_HAS_PRIOR_STAGE
82f766d1 127 help
275b4832
SG
128 If this option is enabled, the device tree is provided at runtime by
129 a custom function called board_fdt_blob_setup(). The board must
130 implement this function if it wishes to provide special behaviour.
82f766d1 131
275b4832
SG
132 With this option, the device tree build by U-Boot may be overridden or
133 ignored. See OF_HAS_PRIOR_STAGE.
134
135 Note: Boards which use this to handle a device tree passed from an
136 earlier stage should enable OF_HAS_PRIOR_STAGE.
137
138config OF_HAS_PRIOR_STAGE
139 bool
2b714706 140 depends on !BLOBLIST
275b4832
SG
141 help
142 Indicates that a prior stage of the firmware (before U-Boot proper)
143 makes use of device tree and this board normally boots with that prior
144 stage, that provides a devicetree to U-Boot.
145
146 This means that the device tree built in U-Boot should not be packaged
147 in the firmware image. Instead, the prior stage's device tree should
148 be so packaged. At runtime, the prior stage reads this, does any
149 necessary fix-ups, then passes it to U-Boot. See OF_BOARD.
150
151 This option does not preclude using the U-Boot device tree, e.g. for
152 development purposes, but it is not recommended, and likely will not
153 even work, for production systems.
154
155 Note: This option must be set in Kconfig and cannot be enabled or
156 disabled in the board's defconfig file.
783e6a72 157
b7d8e85b
SG
158config OF_OMIT_DTB
159 bool "Omit the device tree output when building"
160 default y if OF_HAS_PRIOR_STAGE && !BINMAN
161 help
162 As a special case, avoid writing a device tree file u-boot.dtb when
163 building. Also don't include that file in u-boot.bin
164
165 This is used for boards which normally provide a devicetree via a
166 runtime mechanism (such as OF_BOARD), to avoid confusion.
167
f1ef2b62
MY
168config DEFAULT_DEVICE_TREE
169 string "Default Device Tree for DT control"
70d41093 170 depends on OF_CONTROL
f1ef2b62
MY
171 help
172 This option specifies the default Device Tree used for DT control.
5699ea6d 173 It can be overridden from the command line:
f1ef2b62
MY
174 $ make DEVICE_TREE=<device-tree-name>
175
a77f4680
RV
176config DEVICE_TREE_INCLUDES
177 string "Extra .dtsi files to include when building DT control"
178 depends on OF_CONTROL
179 help
180 U-Boot's control .dtb is usually built from an in-tree .dts
181 file, plus (if available) an in-tree U-Boot-specific .dtsi
182 file. This option specifies a space-separated list of extra
183 .dtsi files that will also be used.
184
cdf17246 185config OF_LIST
3609e1dc
RV
186 string "List of device tree files to include for DT control" if SPL_LOAD_FIT || MULTI_DTB_FIT
187 depends on OF_CONTROL
c409bd01 188 default DEFAULT_DEVICE_TREE
cdf17246
SG
189 help
190 This option specifies a list of device tree files to use for DT
1be82afa 191 control. These will be packaged into a FIT. At run-time, U-Boot
d9797409
CJF
192 or SPL will select the correct DT to use by examining the
193 hardware (e.g. reading a board ID value). This is a list of
194 device tree files (without the directory or .dtb suffix)
195 separated by <space>.
cdf17246 196
557bc97f
JJH
197config OF_OVERLAY_LIST
198 string "List of device tree overlays to include for DT control"
199 depends on SPL_LOAD_FIT_APPLY_OVERLAY
200 help
201 This option specifies a list of device tree overlays to use for DT
202 control. This option can then be used by a FIT generator to include
203 the overlays in the FIT image.
204
95f4bbd5 205choice
574e3861 206 prompt "OF LIST compression"
95f4bbd5
MV
207 depends on MULTI_DTB_FIT
208 default MULTI_DTB_FIT_NO_COMPRESSION
209
210config MULTI_DTB_FIT_LZO
211 bool "LZO"
212 depends on SYS_MALLOC_F
213 select LZO
214 help
215 Compress the FIT image containing the DTBs available for the SPL
216 using LZO compression. (requires lzop on host).
217
218config MULTI_DTB_FIT_GZIP
219 bool "GZIP"
220 depends on SYS_MALLOC_F
221 select GZIP
222 help
223 Compress the FIT image containing the DTBs available for the SPL
224 using GZIP compression. (requires gzip on host)
225
226config MULTI_DTB_FIT_NO_COMPRESSION
227 bool "No compression"
228 help
229 Do not compress the FIT image containing the DTBs available for the SPL.
230 Use this options only if LZO is not available and the DTBs are very small.
231endchoice
232
233choice
234 prompt "Location of uncompressed DTBs"
235 depends on (MULTI_DTB_FIT_GZIP || MULTI_DTB_FIT_LZO)
236 default MULTI_DTB_FIT_DYN_ALLOC if SYS_MALLOC_F
237
238config MULTI_DTB_FIT_DYN_ALLOC
239 bool "Dynamically allocate the memory"
240 depends on SYS_MALLOC_F
241
242config MULTI_DTB_FIT_USER_DEFINED_AREA
243 bool "User-defined location"
244endchoice
245
246config MULTI_DTB_FIT_UNCOMPRESS_SZ
247 hex "Size of memory reserved to uncompress the DTBs"
95f4bbd5
MV
248 default 0x8000
249 help
250 This is the size of this area where the DTBs are uncompressed.
251 If this area is dynamically allocated, make sure that
252 SYS_MALLOC_F_LEN is big enough to contain it.
253
254config MULTI_DTB_FIT_USER_DEF_ADDR
255 hex "Address of memory where dtbs are uncompressed"
256 depends on MULTI_DTB_FIT_USER_DEFINED_AREA
257 help
258 the FIT image containing the DTBs is uncompressed in an area defined
259 at compilation time. This is the address of this area. It must be
260 aligned on 2-byte boundary.
11955590
JJH
261
262config DTB_RESELECT
263 bool "Support swapping dtbs at a later point in boot"
264 depends on MULTI_DTB_FIT
265 help
266 It is possible during initial boot you may need to use a generic
267 dtb until you can fully determine the board your running on. This
268 config allows boards to implement a function at a later point
269 during boot to switch to the "correct" dtb.
270
271config MULTI_DTB_FIT
272 bool "Support embedding several DTBs in a FIT image for u-boot"
273 help
1be82afa 274 This option provides hooks to allow U-Boot to parse an
11955590
JJH
275 appended FIT image and enable board specific code to then select
276 the correct DTB to be used. Use this if you need to support
277 multiple DTBs but don't use the SPL.
278
2f57c951
JJH
279
280config SPL_MULTI_DTB_FIT
eaad01a3 281 depends on SPL_LOAD_FIT && SPL_OF_REAL
2f57c951
JJH
282 bool "Support embedding several DTBs in a FIT image for the SPL"
283 help
284 This option provides the SPL with the ability to select its own
285 DTB at runtime from an appended FIT image containing several DTBs.
286 This allows using the same SPL binary on multiple platforms.
287 The primary purpose is to handle different versions of
288 the same platform without tweaking the platform code if the
289 differences can be expressed in the DTBs (common examples are: bus
290 capabilities, pad configurations).
291
292config SPL_OF_LIST
3609e1dc
RV
293 string "List of device tree files to include for DT control in SPL" if SPL_MULTI_DTB_FIT
294 depends on SPL_OF_CONTROL
2f57c951
JJH
295 default OF_LIST
296 help
297 This option specifies a list of device tree files to use for DT
298 control in the SPL. These will be packaged into a FIT. At run-time,
299 the SPL will select the correct DT to use by examining the
300 hardware (e.g. reading a board ID value). This is a list of
301 device tree files (without the directory or .dtb suffix)
302 separated by <space>.
303
304choice
305 prompt "SPL OF LIST compression"
306 depends on SPL_MULTI_DTB_FIT
307 default SPL_MULTI_DTB_FIT_LZO
308
309config SPL_MULTI_DTB_FIT_LZO
310 bool "LZO"
311 depends on SYS_MALLOC_F
312 select SPL_LZO
313 help
314 Compress the FIT image containing the DTBs available for the SPL
315 using LZO compression. (requires lzop on host).
316
317config SPL_MULTI_DTB_FIT_GZIP
318 bool "GZIP"
319 depends on SYS_MALLOC_F
320 select SPL_GZIP
321 help
322 Compress the FIT image containing the DTBs available for the SPL
323 using GZIP compression. (requires gzip on host)
324
325config SPL_MULTI_DTB_FIT_NO_COMPRESSION
326 bool "No compression"
327 help
328 Do not compress the FIT image containing the DTBs available for the SPL.
329 Use this options only if LZO is not available and the DTBs are very small.
330endchoice
331
332choice
b8448051 333 prompt "Location of uncompressed DTBs"
2f57c951
JJH
334 depends on (SPL_MULTI_DTB_FIT_GZIP || SPL_MULTI_DTB_FIT_LZO)
335 default SPL_MULTI_DTB_FIT_DYN_ALLOC if SYS_MALLOC_F
336
337config SPL_MULTI_DTB_FIT_DYN_ALLOC
338 bool "Dynamically allocate the memory"
339 depends on SYS_MALLOC_F
340
341config SPL_MULTI_DTB_FIT_USER_DEFINED_AREA
342 bool "User-defined location"
343endchoice
344
345config SPL_MULTI_DTB_FIT_UNCOMPRESS_SZ
346 hex "Size of memory reserved to uncompress the DTBs"
347 depends on (SPL_MULTI_DTB_FIT_GZIP || SPL_MULTI_DTB_FIT_LZO)
348 default 0x8000
349 help
350 This is the size of this area where the DTBs are uncompressed.
351 If this area is dynamically allocated, make sure that
352 SPL_SYS_MALLOC_F_LEN is big enough to contain it.
353
354config SPL_MULTI_DTB_FIT_USER_DEF_ADDR
355 hex "Address of memory where dtbs are uncompressed"
356 depends on SPL_MULTI_DTB_FIT_USER_DEFINED_AREA
357 help
358 the FIT image containing the DTBs is uncompressed in an area defined
359 at compilation time. This is the address of this area. It must be
360 aligned on 2-byte boundary.
361
c74e0341
SG
362config OF_TAG_MIGRATE
363 bool "Ease migration from old device trees with u-boot,dm- tags"
364 default y
365 help
366 U-Boot moved over to use new tags to mark device tree nodes which need
367 to be processed in SPL, before relocation, etc. Enable this option to
368 detect old tags and handle them.
369
370 Note: This option will be removed after the 2023.07 release.
371
fa78e0a3
SG
372config OF_SPL_REMOVE_PROPS
373 string "List of device tree properties to drop for SPL"
897705ec 374 depends on SPL_OF_CONTROL
f00d89fd
MS
375 default "interrupt-parent interrupts" if SPL_PINCTRL && SPL_CLK
376 default "clocks clock-names interrupt-parent interrupts" if SPL_PINCTRL
377 default "pinctrl-0 pinctrl-names interrupt-parent interrupts" if SPL_CLK
378 default "pinctrl-0 pinctrl-names clocks clock-names interrupt-parent interrupts"
fa78e0a3
SG
379 help
380 Since SPL normally runs in a reduced memory space, the device tree
381 is cut down to only what is needed to load and start U-Boot. Only
e316fbab 382 nodes marked with the property "bootph-all" will be
fa78e0a3
SG
383 included. In addition, some properties are not used by U-Boot and
384 can be discarded. This option defines the list of properties to
385 discard.
386
43b6e38b
AG
387config OF_DTB_PROPS_REMOVE
388 bool "Enable removal of device tree properties"
389 depends on OF_CONTROL
390 help
391 Some boards have restricted amount of storage for U-Boot image.
392 If the generated binary doesn't fit into available image storage,
393 the built-in device tree could probably be cut down by removing
394 some not required device tree properties to reduce the image size.
395 Enable this option and define the properties to be removed in the
396 CONFIG_OF_REMOVE_PROPS list. Do not enable this option if you must
397 pass the built-in DTB directly to the kernel!
398
399config OF_REMOVE_PROPS
400 string "List of device tree properties to drop"
401 depends on OF_DTB_PROPS_REMOVE
402 default "interrupt-parent interrupts" if PINCTRL
403 help
404 Some properties are not used by U-Boot and can be discarded.
405 This option defines the list of properties to discard.
406
2789ddb9
SG
407config SPL_OF_PLATDATA
408 bool "Generate platform data for use in SPL"
409 depends on SPL_OF_CONTROL
d6a0c78a 410 select DTOC
ab933d80 411 select SPL_OF_PLATDATA_DRIVER_RT if !SPL_OF_PLATDATA_INST
2789ddb9
SG
412 help
413 For very constrained SPL environments the overhead of decoding
414 device tree nodes and converting their contents into platform data
415 is too large. This overhead includes libfdt code as well as the
416 device tree contents itself. The latter is fairly compact, but the
417 former can add 3KB or more to a Thumb 2 Image.
418
419 This option enables generation of platform data from the device
20e442ab 420 tree as C code. This code creates devices using U_BOOT_DRVINFO()
2789ddb9
SG
421 declarations. The benefit is that it allows driver code to access
422 the platform data directly in C structures, avoidin the libfdt
423 overhead.
424
425 This option works by generating C structure declarations for each
20e442ab 426 compatible string, then adding platform data and U_BOOT_DRVINFO
3600b461 427 declarations for each node. See of-plat.txt for more information.
2789ddb9 428
eaad01a3 429config SPL_OF_REAL
eaf73855
SA
430 bool "Support a real devicetree in SPL" if SANDBOX
431 depends on SPL_OF_CONTROL
432 select SPL_OF_LIBFDT
eaad01a3
SG
433 help
434 Indicates that a real devicetree is available which can be accessed
435 at runtime. This means that dev_read_...() functions can be used to
eaf73855
SA
436 read data from the devicetree for each device. You do not need to
437 enable this option if you have enabled SPL_OF_PLATDATA.
eaad01a3 438
5a1b25c2
SG
439if SPL_OF_PLATDATA
440
e41651ff
SG
441config SPL_OF_PLATDATA_PARENT
442 bool "Support parent information in devices"
e41651ff
SG
443 default y
444 help
445 Generally it is useful to be able to access the parent of a device
446 with of-platdata. To save space this can be disabled, but in that
447 case dev_get_parent() will always return NULL;
448
5a1b25c2
SG
449config SPL_OF_PLATDATA_INST
450 bool "Declare devices at build time"
451 help
452 Declare devices as udevice instances so that they do not need to be
453 bound when U-Boot starts. This can save time and code space.
454
1ef3af3b
SG
455config SPL_OF_PLATDATA_NO_BIND
456 bool "Don't allow run-time binding of devices"
457 depends on SPL_OF_PLATDATA_INST
458 default y
459 help
460 This removes the ability to bind devices at run time, thus saving
461 some code space in U-Boot. This can be disabled if binding is needed,
462 at the code of some code size increase.
463
95a5825f
SG
464config SPL_OF_PLATDATA_RT
465 bool "Use a separate struct for device runtime data"
466 depends on SPL_OF_PLATDATA_INST
467 default y
468 help
469 For systems running SPL from read-only memory it is convenient to
470 separate out the runtime information, so that the devices don't need
471 to be copied before being used. This moves the read-write parts of
472 struct udevice (at present just the flags) into a separate struct,
473 which is allocated at runtime.
474
ab933d80
SG
475config SPL_OF_PLATDATA_DRIVER_RT
476 bool
477 help
478 Use a separate struct for driver runtime data.
479
480 This enables the driver_rt information, used with of-platdata when
481 of-platdata-inst is not used. It allows finding devices by their
482 driver data.
483
5a1b25c2
SG
484endif
485
eaad01a3
SG
486config TPL_OF_REAL
487 bool
488 help
489 Indicates that a real devicetree is available which can be accessed
490 at runtime. This means that dev_read_...() functions can be used to
491 read data from the devicetree for each device. This is true if
492 TPL_OF_CONTROL is enabled and not TPL_OF_PLATDATA
493
f291ce12
PT
494config TPL_OF_PLATDATA
495 bool "Generate platform data for use in TPL"
496 depends on TPL_OF_CONTROL
d6a0c78a 497 select DTOC
ab933d80 498 select TPL_OF_PLATDATA_DRIVER_RT if !TPL_OF_PLATDATA_INST
f291ce12
PT
499 help
500 For very constrained SPL environments the overhead of decoding
501 device tree nodes and converting their contents into platform data
502 is too large. This overhead includes libfdt code as well as the
503 device tree contents itself. The latter is fairly compact, but the
504 former can add 3KB or more to a Thumb 2 Image.
505
506 This option enables generation of platform data from the device
20e442ab 507 tree as C code. This code creates devices using U_BOOT_DRVINFO()
f291ce12
PT
508 declarations. The benefit is that it allows driver code to access
509 the platform data directly in C structures, avoidin the libfdt
510 overhead.
511
512 This option works by generating C structure declarations for each
20e442ab 513 compatible string, then adding platform data and U_BOOT_DRVINFO
3600b461 514 declarations for each node. See of-plat.txt for more information.
f291ce12 515
5a1b25c2
SG
516if TPL_OF_PLATDATA
517
e41651ff
SG
518config TPL_OF_PLATDATA_PARENT
519 bool "Support parent information in devices"
e41651ff
SG
520 default y
521 help
522 Generally it is useful to be able to access the parent of a device
523 with of-platdata. To save space this can be disabled, but in that
524 case dev_get_parent() will always return NULL;
525
5a1b25c2
SG
526config TPL_OF_PLATDATA_INST
527 bool "Declare devices at build time"
528
529 help
530 Declare devices as udevice instances so that they do not need to be
531 bound when U-Boot starts. This can save time and code space.
532
1ef3af3b
SG
533config TPL_OF_PLATDATA_NO_BIND
534 bool "Don't allow run-time binding of devices"
535 depends on TPL_OF_PLATDATA_INST
536 default y
537 help
538 This removes the ability to bind devices at run time, thus saving
539 some code space in U-Boot. This can be disabled if binding is needed,
540 at the code of some code size increase.
541
95a5825f
SG
542config TPL_OF_PLATDATA_RT
543 bool "Use a separate struct for device runtime data"
544 depends on TPL_OF_PLATDATA_INST
545 default y
546 help
547 For systems running TPL from read-only memory it is convenient to
548 separate out the runtime information, so that the devices don't need
549 to be copied before being used. This moves the read-write parts of
550 struct udevice (at present just the flags) into a separate struct,
551 which is allocated at runtime.
552
ab933d80
SG
553config TPL_OF_PLATDATA_DRIVER_RT
554 bool
555 help
556 Use a separate struct for driver runtime data.
557
558 This enables the driver_rt information, used with of-platdata when
559 of-platdata-inst is not used. It allows finding devices by their
560 driver data.
561
5a1b25c2
SG
562endif
563
747093dd
SG
564config VPL_OF_REAL
565 def_bool y
13ce351b 566 depends on VPL
747093dd
SG
567 help
568 Indicates that a real devicetree is available which can be accessed
569 at runtime. This means that dev_read_...() functions can be used to
570 read data from the devicetree for each device. This is true if
571 TPL_OF_CONTROL is enabled and not TPL_OF_PLATDATA
572
783e6a72 573endmenu