Masahiro Yamada | 783e6a7 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 1 | # |
| 2 | # Device Tree Control |
| 3 | # |
Masahiro Yamada | 783e6a7 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 4 | |
| 5 | config SUPPORT_OF_CONTROL |
| 6 | bool |
| 7 | |
Masahiro Yamada | d6a0c78 | 2017-10-17 13:42:44 +0900 | [diff] [blame] | 8 | config PYLIBFDT |
| 9 | bool |
| 10 | |
| 11 | config DTOC |
| 12 | bool |
| 13 | select PYLIBFDT |
| 14 | |
| 15 | config BINMAN |
| 16 | bool |
| 17 | select DTOC |
| 18 | |
Masahiro Yamada | 783e6a7 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 19 | menu "Device Tree Control" |
Masahiro Yamada | 783e6a7 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 20 | depends on SUPPORT_OF_CONTROL |
| 21 | |
| 22 | config OF_CONTROL |
| 23 | bool "Run-time configuration via Device Tree" |
Sean Anderson | 327bb3b | 2019-12-17 21:40:09 -0500 | [diff] [blame] | 24 | select OF_LIBFDT if !OF_PLATDATA |
Simon Glass | 414cc15 | 2021-08-07 07:24:03 -0600 | [diff] [blame] | 25 | select OF_REAL if !OF_PLATDATA |
Masahiro Yamada | 783e6a7 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 26 | help |
| 27 | This feature provides for run-time configuration of U-Boot |
| 28 | via a flattened device tree. |
| 29 | |
Simon Glass | eaad01a | 2021-08-07 07:24:02 -0600 | [diff] [blame] | 30 | config OF_REAL |
Simon Glass | 414cc15 | 2021-08-07 07:24:03 -0600 | [diff] [blame] | 31 | bool |
Simon Glass | eaad01a | 2021-08-07 07:24:02 -0600 | [diff] [blame] | 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 | |
mario.six@gdsys.cc | 2a79275 | 2017-02-22 16:07:22 +0100 | [diff] [blame] | 38 | config 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 | |
Masahiro Yamada | dffb86e | 2015-08-12 07:31:54 +0900 | [diff] [blame] | 48 | config SPL_OF_CONTROL |
| 49 | bool "Enable run-time configuration via Device Tree in SPL" |
| 50 | depends on SPL && OF_CONTROL |
Sean Anderson | 327bb3b | 2019-12-17 21:40:09 -0500 | [diff] [blame] | 51 | select SPL_OF_LIBFDT if !SPL_OF_PLATDATA |
Simon Glass | eaad01a | 2021-08-07 07:24:02 -0600 | [diff] [blame] | 52 | select SPL_OF_REAL if !SPL_OF_PLATDATA |
Simon Glass | 2860f03 | 2015-02-27 22:06:38 -0700 | [diff] [blame] | 53 | help |
| 54 | Some boards use device tree in U-Boot but only have 4KB of SRAM |
Walter Lozano | c9acae3 | 2019-10-22 11:50:19 -0300 | [diff] [blame] | 55 | which is not enough to support device tree. Disable this option to |
Simon Glass | 2860f03 | 2015-02-27 22:06:38 -0700 | [diff] [blame] | 56 | allow such boards to be supported by U-Boot SPL. |
| 57 | |
Philipp Tomsich | f291ce1 | 2017-06-29 11:11:21 +0200 | [diff] [blame] | 58 | config TPL_OF_CONTROL |
| 59 | bool "Enable run-time configuration via Device Tree in TPL" |
| 60 | depends on TPL && OF_CONTROL |
Sean Anderson | 327bb3b | 2019-12-17 21:40:09 -0500 | [diff] [blame] | 61 | select TPL_OF_LIBFDT if !TPL_OF_PLATDATA |
Simon Glass | eaad01a | 2021-08-07 07:24:02 -0600 | [diff] [blame] | 62 | select TPL_OF_REAL if !TPL_OF_PLATDATA |
Philipp Tomsich | f291ce1 | 2017-06-29 11:11:21 +0200 | [diff] [blame] | 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 | |
Simon Glass | 747093d | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 68 | config 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 | |
Simon Glass | 5e060d8 | 2017-05-18 20:08:53 -0600 | [diff] [blame] | 77 | config OF_LIVE |
| 78 | bool "Enable use of a live tree" |
Bin Meng | ced4c31 | 2021-02-03 21:20:03 +0800 | [diff] [blame] | 79 | depends on DM && OF_CONTROL |
Simon Glass | 5e060d8 | 2017-05-18 20:08:53 -0600 | [diff] [blame] | 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 |
Michal Simek | 4adc660 | 2018-08-17 10:16:36 +0200 | [diff] [blame] | 83 | tree does not support modification from within U-Boot since it |
Simon Glass | 5e060d8 | 2017-05-18 20:08:53 -0600 | [diff] [blame] | 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 | |
Masahiro Yamada | 783e6a7 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 88 | choice |
| 89 | prompt "Provider of DTB for DT control" |
| 90 | depends on OF_CONTROL |
| 91 | |
| 92 | config OF_SEPARATE |
| 93 | bool "Separate DTB for DT control" |
Masahiro Yamada | 783e6a7 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 94 | help |
| 95 | If this option is enabled, the device tree will be built and |
| 96 | placed as a separate u-boot.dtb file alongside the U-Boot image. |
| 97 | |
| 98 | config OF_EMBED |
| 99 | bool "Embedded DTB for DT control" |
| 100 | help |
| 101 | If this option is enabled, the device tree will be picked up and |
Simon Glass | 3d3f60c | 2015-08-31 18:47:52 -0600 | [diff] [blame] | 102 | built into the U-Boot image. This is suitable for local debugging |
| 103 | and development only and is not recommended for production devices. |
| 104 | Boards in the mainline U-Boot tree should not use it. |
Masahiro Yamada | 783e6a7 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 105 | |
Simon Glass | 836eac7 | 2021-12-16 20:59:21 -0700 | [diff] [blame] | 106 | endchoice |
| 107 | |
Alex Deymo | 82f766d | 2017-04-02 01:25:20 -0700 | [diff] [blame] | 108 | config OF_BOARD |
Ilias Apalodimas | 2e8d2f8 | 2021-10-12 00:00:13 +0300 | [diff] [blame] | 109 | bool "Provided by the board (e.g a previous loader) at runtime" |
Simon Glass | 275b483 | 2021-12-16 20:59:35 -0700 | [diff] [blame] | 110 | default y if SANDBOX || OF_HAS_PRIOR_STAGE |
Alex Deymo | 82f766d | 2017-04-02 01:25:20 -0700 | [diff] [blame] | 111 | help |
Simon Glass | 275b483 | 2021-12-16 20:59:35 -0700 | [diff] [blame] | 112 | If this option is enabled, the device tree is provided at runtime by |
| 113 | a custom function called board_fdt_blob_setup(). The board must |
| 114 | implement this function if it wishes to provide special behaviour. |
Alex Deymo | 82f766d | 2017-04-02 01:25:20 -0700 | [diff] [blame] | 115 | |
Simon Glass | 275b483 | 2021-12-16 20:59:35 -0700 | [diff] [blame] | 116 | With this option, the device tree build by U-Boot may be overridden or |
| 117 | ignored. See OF_HAS_PRIOR_STAGE. |
| 118 | |
| 119 | Note: Boards which use this to handle a device tree passed from an |
| 120 | earlier stage should enable OF_HAS_PRIOR_STAGE. |
| 121 | |
| 122 | config OF_HAS_PRIOR_STAGE |
| 123 | bool |
| 124 | help |
| 125 | Indicates that a prior stage of the firmware (before U-Boot proper) |
| 126 | makes use of device tree and this board normally boots with that prior |
| 127 | stage, that provides a devicetree to U-Boot. |
| 128 | |
| 129 | This means that the device tree built in U-Boot should not be packaged |
| 130 | in the firmware image. Instead, the prior stage's device tree should |
| 131 | be so packaged. At runtime, the prior stage reads this, does any |
| 132 | necessary fix-ups, then passes it to U-Boot. See OF_BOARD. |
| 133 | |
| 134 | This option does not preclude using the U-Boot device tree, e.g. for |
| 135 | development purposes, but it is not recommended, and likely will not |
| 136 | even work, for production systems. |
| 137 | |
| 138 | Note: This option must be set in Kconfig and cannot be enabled or |
| 139 | disabled in the board's defconfig file. |
Masahiro Yamada | 783e6a7 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 140 | |
Simon Glass | b7d8e85 | 2021-12-16 20:59:38 -0700 | [diff] [blame] | 141 | config OF_OMIT_DTB |
| 142 | bool "Omit the device tree output when building" |
| 143 | default y if OF_HAS_PRIOR_STAGE && !BINMAN |
| 144 | help |
| 145 | As a special case, avoid writing a device tree file u-boot.dtb when |
| 146 | building. Also don't include that file in u-boot.bin |
| 147 | |
| 148 | This is used for boards which normally provide a devicetree via a |
| 149 | runtime mechanism (such as OF_BOARD), to avoid confusion. |
| 150 | |
Masahiro Yamada | f1ef2b6 | 2014-09-22 19:59:06 +0900 | [diff] [blame] | 151 | config DEFAULT_DEVICE_TREE |
| 152 | string "Default Device Tree for DT control" |
Simon Glass | 70d4109 | 2016-02-22 22:55:44 -0700 | [diff] [blame] | 153 | depends on OF_CONTROL |
Masahiro Yamada | f1ef2b6 | 2014-09-22 19:59:06 +0900 | [diff] [blame] | 154 | help |
| 155 | This option specifies the default Device Tree used for DT control. |
Robert P. J. Day | 5699ea6 | 2014-10-21 16:44:32 -0400 | [diff] [blame] | 156 | It can be overridden from the command line: |
Masahiro Yamada | f1ef2b6 | 2014-09-22 19:59:06 +0900 | [diff] [blame] | 157 | $ make DEVICE_TREE=<device-tree-name> |
| 158 | |
Rasmus Villemoes | a77f468 | 2021-11-21 14:52:51 +0100 | [diff] [blame] | 159 | config DEVICE_TREE_INCLUDES |
| 160 | string "Extra .dtsi files to include when building DT control" |
| 161 | depends on OF_CONTROL |
| 162 | help |
| 163 | U-Boot's control .dtb is usually built from an in-tree .dts |
| 164 | file, plus (if available) an in-tree U-Boot-specific .dtsi |
| 165 | file. This option specifies a space-separated list of extra |
| 166 | .dtsi files that will also be used. |
| 167 | |
Simon Glass | cdf1724 | 2016-02-22 22:55:57 -0700 | [diff] [blame] | 168 | config OF_LIST |
Rasmus Villemoes | 3609e1d | 2022-01-10 14:34:41 +0100 | [diff] [blame] | 169 | string "List of device tree files to include for DT control" if SPL_LOAD_FIT || MULTI_DTB_FIT |
| 170 | depends on OF_CONTROL |
Michal Simek | c409bd0 | 2016-05-04 15:14:11 +0200 | [diff] [blame] | 171 | default DEFAULT_DEVICE_TREE |
Simon Glass | cdf1724 | 2016-02-22 22:55:57 -0700 | [diff] [blame] | 172 | help |
| 173 | This option specifies a list of device tree files to use for DT |
Cooper Jr., Franklin | d979740 | 2017-06-16 17:25:09 -0500 | [diff] [blame] | 174 | control. These will be packaged into a FIT. At run-time, U-boot |
| 175 | or SPL will select the correct DT to use by examining the |
| 176 | hardware (e.g. reading a board ID value). This is a list of |
| 177 | device tree files (without the directory or .dtb suffix) |
| 178 | separated by <space>. |
Simon Glass | cdf1724 | 2016-02-22 22:55:57 -0700 | [diff] [blame] | 179 | |
Jean-Jacques Hiblot | 557bc97 | 2019-10-22 16:39:21 +0200 | [diff] [blame] | 180 | config OF_OVERLAY_LIST |
| 181 | string "List of device tree overlays to include for DT control" |
| 182 | depends on SPL_LOAD_FIT_APPLY_OVERLAY |
| 183 | help |
| 184 | This option specifies a list of device tree overlays to use for DT |
| 185 | control. This option can then be used by a FIT generator to include |
| 186 | the overlays in the FIT image. |
| 187 | |
Marek Vasut | 95f4bbd | 2019-03-08 16:06:55 +0100 | [diff] [blame] | 188 | choice |
Baruch Siach | 574e386 | 2019-10-07 15:05:47 +0300 | [diff] [blame] | 189 | prompt "OF LIST compression" |
Marek Vasut | 95f4bbd | 2019-03-08 16:06:55 +0100 | [diff] [blame] | 190 | depends on MULTI_DTB_FIT |
| 191 | default MULTI_DTB_FIT_NO_COMPRESSION |
| 192 | |
| 193 | config MULTI_DTB_FIT_LZO |
| 194 | bool "LZO" |
| 195 | depends on SYS_MALLOC_F |
| 196 | select LZO |
| 197 | help |
| 198 | Compress the FIT image containing the DTBs available for the SPL |
| 199 | using LZO compression. (requires lzop on host). |
| 200 | |
| 201 | config MULTI_DTB_FIT_GZIP |
| 202 | bool "GZIP" |
| 203 | depends on SYS_MALLOC_F |
| 204 | select GZIP |
| 205 | help |
| 206 | Compress the FIT image containing the DTBs available for the SPL |
| 207 | using GZIP compression. (requires gzip on host) |
| 208 | |
| 209 | config MULTI_DTB_FIT_NO_COMPRESSION |
| 210 | bool "No compression" |
| 211 | help |
| 212 | Do not compress the FIT image containing the DTBs available for the SPL. |
| 213 | Use this options only if LZO is not available and the DTBs are very small. |
| 214 | endchoice |
| 215 | |
| 216 | choice |
| 217 | prompt "Location of uncompressed DTBs" |
| 218 | depends on (MULTI_DTB_FIT_GZIP || MULTI_DTB_FIT_LZO) |
| 219 | default MULTI_DTB_FIT_DYN_ALLOC if SYS_MALLOC_F |
| 220 | |
| 221 | config MULTI_DTB_FIT_DYN_ALLOC |
| 222 | bool "Dynamically allocate the memory" |
| 223 | depends on SYS_MALLOC_F |
| 224 | |
| 225 | config MULTI_DTB_FIT_USER_DEFINED_AREA |
| 226 | bool "User-defined location" |
| 227 | endchoice |
| 228 | |
| 229 | config MULTI_DTB_FIT_UNCOMPRESS_SZ |
| 230 | hex "Size of memory reserved to uncompress the DTBs" |
Marek Vasut | 95f4bbd | 2019-03-08 16:06:55 +0100 | [diff] [blame] | 231 | default 0x8000 |
| 232 | help |
| 233 | This is the size of this area where the DTBs are uncompressed. |
| 234 | If this area is dynamically allocated, make sure that |
| 235 | SYS_MALLOC_F_LEN is big enough to contain it. |
| 236 | |
| 237 | config MULTI_DTB_FIT_USER_DEF_ADDR |
| 238 | hex "Address of memory where dtbs are uncompressed" |
| 239 | depends on MULTI_DTB_FIT_USER_DEFINED_AREA |
| 240 | help |
| 241 | the FIT image containing the DTBs is uncompressed in an area defined |
| 242 | at compilation time. This is the address of this area. It must be |
| 243 | aligned on 2-byte boundary. |
Jean-Jacques Hiblot | 1195559 | 2017-09-15 12:57:24 +0200 | [diff] [blame] | 244 | |
| 245 | config DTB_RESELECT |
| 246 | bool "Support swapping dtbs at a later point in boot" |
| 247 | depends on MULTI_DTB_FIT |
| 248 | help |
| 249 | It is possible during initial boot you may need to use a generic |
| 250 | dtb until you can fully determine the board your running on. This |
| 251 | config allows boards to implement a function at a later point |
| 252 | during boot to switch to the "correct" dtb. |
| 253 | |
| 254 | config MULTI_DTB_FIT |
| 255 | bool "Support embedding several DTBs in a FIT image for u-boot" |
| 256 | help |
| 257 | This option provides hooks to allow U-boot to parse an |
| 258 | appended FIT image and enable board specific code to then select |
| 259 | the correct DTB to be used. Use this if you need to support |
| 260 | multiple DTBs but don't use the SPL. |
| 261 | |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 262 | |
| 263 | config SPL_MULTI_DTB_FIT |
Simon Glass | eaad01a | 2021-08-07 07:24:02 -0600 | [diff] [blame] | 264 | depends on SPL_LOAD_FIT && SPL_OF_REAL |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 265 | bool "Support embedding several DTBs in a FIT image for the SPL" |
| 266 | help |
| 267 | This option provides the SPL with the ability to select its own |
| 268 | DTB at runtime from an appended FIT image containing several DTBs. |
| 269 | This allows using the same SPL binary on multiple platforms. |
| 270 | The primary purpose is to handle different versions of |
| 271 | the same platform without tweaking the platform code if the |
| 272 | differences can be expressed in the DTBs (common examples are: bus |
| 273 | capabilities, pad configurations). |
| 274 | |
| 275 | config SPL_OF_LIST |
Rasmus Villemoes | 3609e1d | 2022-01-10 14:34:41 +0100 | [diff] [blame] | 276 | string "List of device tree files to include for DT control in SPL" if SPL_MULTI_DTB_FIT |
| 277 | depends on SPL_OF_CONTROL |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 278 | default OF_LIST |
| 279 | help |
| 280 | This option specifies a list of device tree files to use for DT |
| 281 | control in the SPL. These will be packaged into a FIT. At run-time, |
| 282 | the SPL will select the correct DT to use by examining the |
| 283 | hardware (e.g. reading a board ID value). This is a list of |
| 284 | device tree files (without the directory or .dtb suffix) |
| 285 | separated by <space>. |
| 286 | |
| 287 | choice |
| 288 | prompt "SPL OF LIST compression" |
| 289 | depends on SPL_MULTI_DTB_FIT |
| 290 | default SPL_MULTI_DTB_FIT_LZO |
| 291 | |
| 292 | config SPL_MULTI_DTB_FIT_LZO |
| 293 | bool "LZO" |
| 294 | depends on SYS_MALLOC_F |
| 295 | select SPL_LZO |
| 296 | help |
| 297 | Compress the FIT image containing the DTBs available for the SPL |
| 298 | using LZO compression. (requires lzop on host). |
| 299 | |
| 300 | config SPL_MULTI_DTB_FIT_GZIP |
| 301 | bool "GZIP" |
| 302 | depends on SYS_MALLOC_F |
| 303 | select SPL_GZIP |
| 304 | help |
| 305 | Compress the FIT image containing the DTBs available for the SPL |
| 306 | using GZIP compression. (requires gzip on host) |
| 307 | |
| 308 | config SPL_MULTI_DTB_FIT_NO_COMPRESSION |
| 309 | bool "No compression" |
| 310 | help |
| 311 | Do not compress the FIT image containing the DTBs available for the SPL. |
| 312 | Use this options only if LZO is not available and the DTBs are very small. |
| 313 | endchoice |
| 314 | |
| 315 | choice |
Michal Simek | b844805 | 2018-07-23 08:38:56 +0200 | [diff] [blame] | 316 | prompt "Location of uncompressed DTBs" |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 317 | depends on (SPL_MULTI_DTB_FIT_GZIP || SPL_MULTI_DTB_FIT_LZO) |
| 318 | default SPL_MULTI_DTB_FIT_DYN_ALLOC if SYS_MALLOC_F |
| 319 | |
| 320 | config SPL_MULTI_DTB_FIT_DYN_ALLOC |
| 321 | bool "Dynamically allocate the memory" |
| 322 | depends on SYS_MALLOC_F |
| 323 | |
| 324 | config SPL_MULTI_DTB_FIT_USER_DEFINED_AREA |
| 325 | bool "User-defined location" |
| 326 | endchoice |
| 327 | |
| 328 | config SPL_MULTI_DTB_FIT_UNCOMPRESS_SZ |
| 329 | hex "Size of memory reserved to uncompress the DTBs" |
| 330 | depends on (SPL_MULTI_DTB_FIT_GZIP || SPL_MULTI_DTB_FIT_LZO) |
| 331 | default 0x8000 |
| 332 | help |
| 333 | This is the size of this area where the DTBs are uncompressed. |
| 334 | If this area is dynamically allocated, make sure that |
| 335 | SPL_SYS_MALLOC_F_LEN is big enough to contain it. |
| 336 | |
| 337 | config SPL_MULTI_DTB_FIT_USER_DEF_ADDR |
| 338 | hex "Address of memory where dtbs are uncompressed" |
| 339 | depends on SPL_MULTI_DTB_FIT_USER_DEFINED_AREA |
| 340 | help |
| 341 | the FIT image containing the DTBs is uncompressed in an area defined |
| 342 | at compilation time. This is the address of this area. It must be |
| 343 | aligned on 2-byte boundary. |
| 344 | |
Simon Glass | fa78e0a | 2015-06-23 15:38:29 -0600 | [diff] [blame] | 345 | config OF_SPL_REMOVE_PROPS |
| 346 | string "List of device tree properties to drop for SPL" |
Masahiro Yamada | 897705e | 2015-08-28 20:28:42 +0900 | [diff] [blame] | 347 | depends on SPL_OF_CONTROL |
Michal Simek | f00d89f | 2019-02-22 10:50:23 +0100 | [diff] [blame] | 348 | default "interrupt-parent interrupts" if SPL_PINCTRL && SPL_CLK |
| 349 | default "clocks clock-names interrupt-parent interrupts" if SPL_PINCTRL |
| 350 | default "pinctrl-0 pinctrl-names interrupt-parent interrupts" if SPL_CLK |
| 351 | default "pinctrl-0 pinctrl-names clocks clock-names interrupt-parent interrupts" |
Simon Glass | fa78e0a | 2015-06-23 15:38:29 -0600 | [diff] [blame] | 352 | help |
| 353 | Since SPL normally runs in a reduced memory space, the device tree |
| 354 | is cut down to only what is needed to load and start U-Boot. Only |
| 355 | nodes marked with the property "u-boot,dm-pre-reloc" will be |
| 356 | included. In addition, some properties are not used by U-Boot and |
| 357 | can be discarded. This option defines the list of properties to |
| 358 | discard. |
| 359 | |
Anatolij Gustschin | 43b6e38 | 2020-01-12 15:57:42 +0100 | [diff] [blame] | 360 | config OF_DTB_PROPS_REMOVE |
| 361 | bool "Enable removal of device tree properties" |
| 362 | depends on OF_CONTROL |
| 363 | help |
| 364 | Some boards have restricted amount of storage for U-Boot image. |
| 365 | If the generated binary doesn't fit into available image storage, |
| 366 | the built-in device tree could probably be cut down by removing |
| 367 | some not required device tree properties to reduce the image size. |
| 368 | Enable this option and define the properties to be removed in the |
| 369 | CONFIG_OF_REMOVE_PROPS list. Do not enable this option if you must |
| 370 | pass the built-in DTB directly to the kernel! |
| 371 | |
| 372 | config OF_REMOVE_PROPS |
| 373 | string "List of device tree properties to drop" |
| 374 | depends on OF_DTB_PROPS_REMOVE |
| 375 | default "interrupt-parent interrupts" if PINCTRL |
| 376 | help |
| 377 | Some properties are not used by U-Boot and can be discarded. |
| 378 | This option defines the list of properties to discard. |
| 379 | |
Simon Glass | 2789ddb | 2016-07-04 11:58:06 -0600 | [diff] [blame] | 380 | config SPL_OF_PLATDATA |
| 381 | bool "Generate platform data for use in SPL" |
| 382 | depends on SPL_OF_CONTROL |
Masahiro Yamada | d6a0c78 | 2017-10-17 13:42:44 +0900 | [diff] [blame] | 383 | select DTOC |
Simon Glass | ab933d8 | 2021-03-15 17:25:36 +1300 | [diff] [blame] | 384 | select SPL_OF_PLATDATA_DRIVER_RT if !SPL_OF_PLATDATA_INST |
Simon Glass | 2789ddb | 2016-07-04 11:58:06 -0600 | [diff] [blame] | 385 | help |
| 386 | For very constrained SPL environments the overhead of decoding |
| 387 | device tree nodes and converting their contents into platform data |
| 388 | is too large. This overhead includes libfdt code as well as the |
| 389 | device tree contents itself. The latter is fairly compact, but the |
| 390 | former can add 3KB or more to a Thumb 2 Image. |
| 391 | |
| 392 | This option enables generation of platform data from the device |
Simon Glass | 20e442a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 393 | tree as C code. This code creates devices using U_BOOT_DRVINFO() |
Simon Glass | 2789ddb | 2016-07-04 11:58:06 -0600 | [diff] [blame] | 394 | declarations. The benefit is that it allows driver code to access |
| 395 | the platform data directly in C structures, avoidin the libfdt |
| 396 | overhead. |
| 397 | |
| 398 | This option works by generating C structure declarations for each |
Simon Glass | 20e442a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 399 | compatible string, then adding platform data and U_BOOT_DRVINFO |
Simon Goldschmidt | 3600b46 | 2019-01-16 20:40:18 +0100 | [diff] [blame] | 400 | declarations for each node. See of-plat.txt for more information. |
Simon Glass | 2789ddb | 2016-07-04 11:58:06 -0600 | [diff] [blame] | 401 | |
Simon Glass | eaad01a | 2021-08-07 07:24:02 -0600 | [diff] [blame] | 402 | config SPL_OF_REAL |
| 403 | bool |
| 404 | help |
| 405 | Indicates that a real devicetree is available which can be accessed |
| 406 | at runtime. This means that dev_read_...() functions can be used to |
| 407 | read data from the devicetree for each device. This is true if |
| 408 | SPL_OF_CONTROL is enabled and not SPL_OF_PLATDATA |
| 409 | |
Simon Glass | 5a1b25c | 2021-02-03 06:01:13 -0700 | [diff] [blame] | 410 | if SPL_OF_PLATDATA |
| 411 | |
Simon Glass | e41651f | 2020-10-03 11:31:35 -0600 | [diff] [blame] | 412 | config SPL_OF_PLATDATA_PARENT |
| 413 | bool "Support parent information in devices" |
Simon Glass | e41651f | 2020-10-03 11:31:35 -0600 | [diff] [blame] | 414 | default y |
| 415 | help |
| 416 | Generally it is useful to be able to access the parent of a device |
| 417 | with of-platdata. To save space this can be disabled, but in that |
| 418 | case dev_get_parent() will always return NULL; |
| 419 | |
Simon Glass | 5a1b25c | 2021-02-03 06:01:13 -0700 | [diff] [blame] | 420 | config SPL_OF_PLATDATA_INST |
| 421 | bool "Declare devices at build time" |
| 422 | help |
| 423 | Declare devices as udevice instances so that they do not need to be |
| 424 | bound when U-Boot starts. This can save time and code space. |
| 425 | |
Simon Glass | 1ef3af3 | 2021-03-15 17:25:15 +1300 | [diff] [blame] | 426 | config SPL_OF_PLATDATA_NO_BIND |
| 427 | bool "Don't allow run-time binding of devices" |
| 428 | depends on SPL_OF_PLATDATA_INST |
| 429 | default y |
| 430 | help |
| 431 | This removes the ability to bind devices at run time, thus saving |
| 432 | some code space in U-Boot. This can be disabled if binding is needed, |
| 433 | at the code of some code size increase. |
| 434 | |
Simon Glass | 95a5825 | 2021-03-15 17:25:35 +1300 | [diff] [blame] | 435 | config SPL_OF_PLATDATA_RT |
| 436 | bool "Use a separate struct for device runtime data" |
| 437 | depends on SPL_OF_PLATDATA_INST |
| 438 | default y |
| 439 | help |
| 440 | For systems running SPL from read-only memory it is convenient to |
| 441 | separate out the runtime information, so that the devices don't need |
| 442 | to be copied before being used. This moves the read-write parts of |
| 443 | struct udevice (at present just the flags) into a separate struct, |
| 444 | which is allocated at runtime. |
| 445 | |
Simon Glass | ab933d8 | 2021-03-15 17:25:36 +1300 | [diff] [blame] | 446 | config SPL_OF_PLATDATA_DRIVER_RT |
| 447 | bool |
| 448 | help |
| 449 | Use a separate struct for driver runtime data. |
| 450 | |
| 451 | This enables the driver_rt information, used with of-platdata when |
| 452 | of-platdata-inst is not used. It allows finding devices by their |
| 453 | driver data. |
| 454 | |
Simon Glass | 5a1b25c | 2021-02-03 06:01:13 -0700 | [diff] [blame] | 455 | endif |
| 456 | |
Simon Glass | eaad01a | 2021-08-07 07:24:02 -0600 | [diff] [blame] | 457 | config TPL_OF_REAL |
| 458 | bool |
| 459 | help |
| 460 | Indicates that a real devicetree is available which can be accessed |
| 461 | at runtime. This means that dev_read_...() functions can be used to |
| 462 | read data from the devicetree for each device. This is true if |
| 463 | TPL_OF_CONTROL is enabled and not TPL_OF_PLATDATA |
| 464 | |
Philipp Tomsich | f291ce1 | 2017-06-29 11:11:21 +0200 | [diff] [blame] | 465 | config TPL_OF_PLATDATA |
| 466 | bool "Generate platform data for use in TPL" |
| 467 | depends on TPL_OF_CONTROL |
Masahiro Yamada | d6a0c78 | 2017-10-17 13:42:44 +0900 | [diff] [blame] | 468 | select DTOC |
Simon Glass | ab933d8 | 2021-03-15 17:25:36 +1300 | [diff] [blame] | 469 | select TPL_OF_PLATDATA_DRIVER_RT if !TPL_OF_PLATDATA_INST |
Philipp Tomsich | f291ce1 | 2017-06-29 11:11:21 +0200 | [diff] [blame] | 470 | help |
| 471 | For very constrained SPL environments the overhead of decoding |
| 472 | device tree nodes and converting their contents into platform data |
| 473 | is too large. This overhead includes libfdt code as well as the |
| 474 | device tree contents itself. The latter is fairly compact, but the |
| 475 | former can add 3KB or more to a Thumb 2 Image. |
| 476 | |
| 477 | This option enables generation of platform data from the device |
Simon Glass | 20e442a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 478 | tree as C code. This code creates devices using U_BOOT_DRVINFO() |
Philipp Tomsich | f291ce1 | 2017-06-29 11:11:21 +0200 | [diff] [blame] | 479 | declarations. The benefit is that it allows driver code to access |
| 480 | the platform data directly in C structures, avoidin the libfdt |
| 481 | overhead. |
| 482 | |
| 483 | This option works by generating C structure declarations for each |
Simon Glass | 20e442a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 484 | compatible string, then adding platform data and U_BOOT_DRVINFO |
Simon Goldschmidt | 3600b46 | 2019-01-16 20:40:18 +0100 | [diff] [blame] | 485 | declarations for each node. See of-plat.txt for more information. |
Philipp Tomsich | f291ce1 | 2017-06-29 11:11:21 +0200 | [diff] [blame] | 486 | |
Simon Glass | 5a1b25c | 2021-02-03 06:01:13 -0700 | [diff] [blame] | 487 | if TPL_OF_PLATDATA |
| 488 | |
Simon Glass | e41651f | 2020-10-03 11:31:35 -0600 | [diff] [blame] | 489 | config TPL_OF_PLATDATA_PARENT |
| 490 | bool "Support parent information in devices" |
Simon Glass | e41651f | 2020-10-03 11:31:35 -0600 | [diff] [blame] | 491 | default y |
| 492 | help |
| 493 | Generally it is useful to be able to access the parent of a device |
| 494 | with of-platdata. To save space this can be disabled, but in that |
| 495 | case dev_get_parent() will always return NULL; |
| 496 | |
Simon Glass | 5a1b25c | 2021-02-03 06:01:13 -0700 | [diff] [blame] | 497 | config TPL_OF_PLATDATA_INST |
| 498 | bool "Declare devices at build time" |
| 499 | |
| 500 | help |
| 501 | Declare devices as udevice instances so that they do not need to be |
| 502 | bound when U-Boot starts. This can save time and code space. |
| 503 | |
Simon Glass | 1ef3af3 | 2021-03-15 17:25:15 +1300 | [diff] [blame] | 504 | config TPL_OF_PLATDATA_NO_BIND |
| 505 | bool "Don't allow run-time binding of devices" |
| 506 | depends on TPL_OF_PLATDATA_INST |
| 507 | default y |
| 508 | help |
| 509 | This removes the ability to bind devices at run time, thus saving |
| 510 | some code space in U-Boot. This can be disabled if binding is needed, |
| 511 | at the code of some code size increase. |
| 512 | |
Simon Glass | 95a5825 | 2021-03-15 17:25:35 +1300 | [diff] [blame] | 513 | config TPL_OF_PLATDATA_RT |
| 514 | bool "Use a separate struct for device runtime data" |
| 515 | depends on TPL_OF_PLATDATA_INST |
| 516 | default y |
| 517 | help |
| 518 | For systems running TPL from read-only memory it is convenient to |
| 519 | separate out the runtime information, so that the devices don't need |
| 520 | to be copied before being used. This moves the read-write parts of |
| 521 | struct udevice (at present just the flags) into a separate struct, |
| 522 | which is allocated at runtime. |
| 523 | |
Simon Glass | ab933d8 | 2021-03-15 17:25:36 +1300 | [diff] [blame] | 524 | config TPL_OF_PLATDATA_DRIVER_RT |
| 525 | bool |
| 526 | help |
| 527 | Use a separate struct for driver runtime data. |
| 528 | |
| 529 | This enables the driver_rt information, used with of-platdata when |
| 530 | of-platdata-inst is not used. It allows finding devices by their |
| 531 | driver data. |
| 532 | |
Simon Glass | 5a1b25c | 2021-02-03 06:01:13 -0700 | [diff] [blame] | 533 | endif |
| 534 | |
Simon Glass | 747093d | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 535 | config VPL_OF_REAL |
| 536 | def_bool y |
Tom Rini | 13ce351 | 2022-06-08 08:24:40 -0400 | [diff] [blame] | 537 | depends on VPL |
Simon Glass | 747093d | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 538 | help |
| 539 | Indicates that a real devicetree is available which can be accessed |
| 540 | at runtime. This means that dev_read_...() functions can be used to |
| 541 | read data from the devicetree for each device. This is true if |
| 542 | TPL_OF_CONTROL is enabled and not TPL_OF_PLATDATA |
| 543 | |
Masahiro Yamada | 783e6a7 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 544 | endmenu |