Masahiro Yamada | 9fadbc8 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 1 | # |
| 2 | # Device Tree Control |
| 3 | # |
Masahiro Yamada | 9fadbc8 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 4 | |
| 5 | config SUPPORT_OF_CONTROL |
| 6 | bool |
| 7 | |
Tom Rini | 61d0fac | 2017-09-23 13:00:57 -0400 | [diff] [blame] | 8 | config DTC |
| 9 | bool |
| 10 | |
Masahiro Yamada | 87247af | 2017-10-17 13:42:44 +0900 | [diff] [blame] | 11 | config PYLIBFDT |
| 12 | bool |
| 13 | |
| 14 | config DTOC |
| 15 | bool |
| 16 | select PYLIBFDT |
| 17 | |
| 18 | config BINMAN |
| 19 | bool |
| 20 | select DTOC |
| 21 | |
Bin Meng | d72582f | 2021-05-10 20:23:37 +0800 | [diff] [blame] | 22 | config BINMAN_STANDALONE_FDT |
| 23 | bool |
| 24 | depends on BINMAN |
Ilias Apalodimas | 554f85e | 2021-10-12 00:00:15 +0300 | [diff] [blame^] | 25 | default y if OF_BOARD |
Bin Meng | d72582f | 2021-05-10 20:23:37 +0800 | [diff] [blame] | 26 | help |
| 27 | This option tells U-Boot build system that a standalone device tree |
| 28 | source is explicitly required when using binman to package U-Boot. |
| 29 | |
| 30 | This is not necessary in a common scenario where a device tree source |
| 31 | that contains the binman node is provided in the arch/<arch>/dts |
| 32 | directory for a specific board. Such device tree sources are built for |
| 33 | OF_SEPARATE or OF_EMBED. However for a scenario like the board device |
| 34 | tree blob is not provided in the U-Boot build tree, but fed to U-Boot |
Ilias Apalodimas | 554f85e | 2021-10-12 00:00:15 +0300 | [diff] [blame^] | 35 | in the runtime, e.g.: in the OF_BOARD case that it is passed by |
Bin Meng | d72582f | 2021-05-10 20:23:37 +0800 | [diff] [blame] | 36 | a prior stage bootloader. For such scenario, a standalone device tree |
| 37 | blob containing binman node to describe how to package U-Boot should |
| 38 | be provided explicitly. |
| 39 | |
Masahiro Yamada | 9fadbc8 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 40 | menu "Device Tree Control" |
Masahiro Yamada | 9fadbc8 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 41 | depends on SUPPORT_OF_CONTROL |
| 42 | |
| 43 | config OF_CONTROL |
| 44 | bool "Run-time configuration via Device Tree" |
Tom Rini | 61d0fac | 2017-09-23 13:00:57 -0400 | [diff] [blame] | 45 | select DTC |
Sean Anderson | 08c854a | 2019-12-17 21:40:09 -0500 | [diff] [blame] | 46 | select OF_LIBFDT if !OF_PLATDATA |
Simon Glass | 3580f6d | 2021-08-07 07:24:03 -0600 | [diff] [blame] | 47 | select OF_REAL if !OF_PLATDATA |
Masahiro Yamada | 9fadbc8 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 48 | help |
| 49 | This feature provides for run-time configuration of U-Boot |
| 50 | via a flattened device tree. |
| 51 | |
Simon Glass | 7c4ba16 | 2021-08-07 07:24:02 -0600 | [diff] [blame] | 52 | config OF_REAL |
Simon Glass | 3580f6d | 2021-08-07 07:24:03 -0600 | [diff] [blame] | 53 | bool |
Simon Glass | 7c4ba16 | 2021-08-07 07:24:02 -0600 | [diff] [blame] | 54 | help |
| 55 | Indicates that a real devicetree is available which can be accessed |
| 56 | at runtime. This means that dev_read_...() functions can be used to |
| 57 | read data from the devicetree for each device. This is true if |
| 58 | OF_CONTROL is enabled in U-Boot proper. |
| 59 | |
mario.six@gdsys.cc | 7e9b9d6 | 2017-02-22 16:07:22 +0100 | [diff] [blame] | 60 | config OF_BOARD_FIXUP |
| 61 | bool "Board-specific manipulation of Device Tree" |
| 62 | help |
| 63 | In certain circumstances it is necessary to be able to modify |
| 64 | U-Boot's device tree (e.g. to delete device from it). This option |
| 65 | make the Device Tree writeable and provides a board-specific |
| 66 | "board_fix_fdt" callback (called during pre-relocation time), which |
| 67 | enables the board initialization to modifiy the Device Tree. The |
| 68 | modified copy is subsequently used by U-Boot after relocation. |
| 69 | |
Masahiro Yamada | 1e35f39 | 2015-08-12 07:31:54 +0900 | [diff] [blame] | 70 | config SPL_OF_CONTROL |
| 71 | bool "Enable run-time configuration via Device Tree in SPL" |
| 72 | depends on SPL && OF_CONTROL |
Sean Anderson | 08c854a | 2019-12-17 21:40:09 -0500 | [diff] [blame] | 73 | select SPL_OF_LIBFDT if !SPL_OF_PLATDATA |
Simon Glass | 7c4ba16 | 2021-08-07 07:24:02 -0600 | [diff] [blame] | 74 | select SPL_OF_REAL if !SPL_OF_PLATDATA |
Simon Glass | 400d040 | 2015-02-27 22:06:38 -0700 | [diff] [blame] | 75 | help |
| 76 | Some boards use device tree in U-Boot but only have 4KB of SRAM |
Walter Lozano | 7b3d258 | 2019-10-22 11:50:19 -0300 | [diff] [blame] | 77 | which is not enough to support device tree. Disable this option to |
Simon Glass | 400d040 | 2015-02-27 22:06:38 -0700 | [diff] [blame] | 78 | allow such boards to be supported by U-Boot SPL. |
| 79 | |
Philipp Tomsich | 2341dc6 | 2017-06-29 11:11:21 +0200 | [diff] [blame] | 80 | config TPL_OF_CONTROL |
| 81 | bool "Enable run-time configuration via Device Tree in TPL" |
| 82 | depends on TPL && OF_CONTROL |
Sean Anderson | 08c854a | 2019-12-17 21:40:09 -0500 | [diff] [blame] | 83 | select TPL_OF_LIBFDT if !TPL_OF_PLATDATA |
Simon Glass | 7c4ba16 | 2021-08-07 07:24:02 -0600 | [diff] [blame] | 84 | select TPL_OF_REAL if !TPL_OF_PLATDATA |
Philipp Tomsich | 2341dc6 | 2017-06-29 11:11:21 +0200 | [diff] [blame] | 85 | help |
| 86 | Some boards use device tree in U-Boot but only have 4KB of SRAM |
| 87 | which is not enough to support device tree. Enable this option to |
| 88 | allow such boards to be supported by U-Boot TPL. |
| 89 | |
Simon Glass | a6eedb8 | 2017-05-18 20:08:53 -0600 | [diff] [blame] | 90 | config OF_LIVE |
| 91 | bool "Enable use of a live tree" |
Bin Meng | 85f737b | 2021-02-03 21:20:03 +0800 | [diff] [blame] | 92 | depends on DM && OF_CONTROL |
Simon Glass | a6eedb8 | 2017-05-18 20:08:53 -0600 | [diff] [blame] | 93 | help |
| 94 | Normally U-Boot uses a flat device tree which saves space and |
| 95 | avoids the need to unpack the tree before use. However a flat |
Michal Simek | 97a0e49 | 2018-08-17 10:16:36 +0200 | [diff] [blame] | 96 | tree does not support modification from within U-Boot since it |
Simon Glass | a6eedb8 | 2017-05-18 20:08:53 -0600 | [diff] [blame] | 97 | can invalidate driver-model device tree offsets. This option |
| 98 | enables a live tree which is available after relocation, |
| 99 | and can be adjusted as needed. |
| 100 | |
Masahiro Yamada | 9fadbc8 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 101 | choice |
| 102 | prompt "Provider of DTB for DT control" |
| 103 | depends on OF_CONTROL |
| 104 | |
| 105 | config OF_SEPARATE |
| 106 | bool "Separate DTB for DT control" |
| 107 | depends on !SANDBOX |
| 108 | help |
| 109 | If this option is enabled, the device tree will be built and |
| 110 | placed as a separate u-boot.dtb file alongside the U-Boot image. |
| 111 | |
| 112 | config OF_EMBED |
| 113 | bool "Embedded DTB for DT control" |
| 114 | help |
| 115 | If this option is enabled, the device tree will be picked up and |
Simon Glass | d9b64ea | 2015-08-31 18:47:52 -0600 | [diff] [blame] | 116 | built into the U-Boot image. This is suitable for local debugging |
| 117 | and development only and is not recommended for production devices. |
| 118 | Boards in the mainline U-Boot tree should not use it. |
Masahiro Yamada | 9fadbc8 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 119 | |
Alex Deymo | 5b661ec | 2017-04-02 01:25:20 -0700 | [diff] [blame] | 120 | config OF_BOARD |
Ilias Apalodimas | dc35df4 | 2021-10-12 00:00:13 +0300 | [diff] [blame] | 121 | bool "Provided by the board (e.g a previous loader) at runtime" |
Alex Deymo | 5b661ec | 2017-04-02 01:25:20 -0700 | [diff] [blame] | 122 | depends on !SANDBOX |
| 123 | help |
| 124 | If this option is enabled, the device tree will be provided by |
| 125 | the board at runtime if the board supports it, instead of being |
| 126 | bundled with the image. |
| 127 | |
Masahiro Yamada | 9fadbc8 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 128 | config OF_HOSTFILE |
| 129 | bool "Host filed DTB for DT control" |
| 130 | depends on SANDBOX |
| 131 | help |
| 132 | If this option is enabled, DTB will be read from a file on startup. |
| 133 | This is only useful for Sandbox. Use the -d flag to U-Boot to |
| 134 | specify the file to read. |
| 135 | |
| 136 | endchoice |
| 137 | |
Masahiro Yamada | 8c65b9d | 2014-09-22 19:59:06 +0900 | [diff] [blame] | 138 | config DEFAULT_DEVICE_TREE |
| 139 | string "Default Device Tree for DT control" |
Simon Glass | 644f5bc | 2016-02-22 22:55:44 -0700 | [diff] [blame] | 140 | depends on OF_CONTROL |
Masahiro Yamada | 8c65b9d | 2014-09-22 19:59:06 +0900 | [diff] [blame] | 141 | help |
| 142 | This option specifies the default Device Tree used for DT control. |
Robert P. J. Day | eb61df5 | 2014-10-21 16:44:32 -0400 | [diff] [blame] | 143 | It can be overridden from the command line: |
Masahiro Yamada | 8c65b9d | 2014-09-22 19:59:06 +0900 | [diff] [blame] | 144 | $ make DEVICE_TREE=<device-tree-name> |
| 145 | |
Simon Glass | 963817b | 2016-02-22 22:55:57 -0700 | [diff] [blame] | 146 | config OF_LIST |
| 147 | string "List of device tree files to include for DT control" |
Jean-Jacques Hiblot | 2037fa4 | 2017-09-15 12:57:24 +0200 | [diff] [blame] | 148 | depends on SPL_LOAD_FIT || MULTI_DTB_FIT |
Michal Simek | 9b2e95a | 2016-05-04 15:14:11 +0200 | [diff] [blame] | 149 | default DEFAULT_DEVICE_TREE |
Simon Glass | 963817b | 2016-02-22 22:55:57 -0700 | [diff] [blame] | 150 | help |
| 151 | This option specifies a list of device tree files to use for DT |
Cooper Jr., Franklin | 06c7b62 | 2017-06-16 17:25:09 -0500 | [diff] [blame] | 152 | control. These will be packaged into a FIT. At run-time, U-boot |
| 153 | or SPL will select the correct DT to use by examining the |
| 154 | hardware (e.g. reading a board ID value). This is a list of |
| 155 | device tree files (without the directory or .dtb suffix) |
| 156 | separated by <space>. |
Simon Glass | 963817b | 2016-02-22 22:55:57 -0700 | [diff] [blame] | 157 | |
Jean-Jacques Hiblot | 985cec3 | 2019-10-22 16:39:21 +0200 | [diff] [blame] | 158 | config OF_OVERLAY_LIST |
| 159 | string "List of device tree overlays to include for DT control" |
| 160 | depends on SPL_LOAD_FIT_APPLY_OVERLAY |
| 161 | help |
| 162 | This option specifies a list of device tree overlays to use for DT |
| 163 | control. This option can then be used by a FIT generator to include |
| 164 | the overlays in the FIT image. |
| 165 | |
Marek Vasut | aeaa29d | 2019-03-08 16:06:55 +0100 | [diff] [blame] | 166 | choice |
Baruch Siach | 45508fc | 2019-10-07 15:05:47 +0300 | [diff] [blame] | 167 | prompt "OF LIST compression" |
Marek Vasut | aeaa29d | 2019-03-08 16:06:55 +0100 | [diff] [blame] | 168 | depends on MULTI_DTB_FIT |
| 169 | default MULTI_DTB_FIT_NO_COMPRESSION |
| 170 | |
| 171 | config MULTI_DTB_FIT_LZO |
| 172 | bool "LZO" |
| 173 | depends on SYS_MALLOC_F |
| 174 | select LZO |
| 175 | help |
| 176 | Compress the FIT image containing the DTBs available for the SPL |
| 177 | using LZO compression. (requires lzop on host). |
| 178 | |
| 179 | config MULTI_DTB_FIT_GZIP |
| 180 | bool "GZIP" |
| 181 | depends on SYS_MALLOC_F |
| 182 | select GZIP |
| 183 | help |
| 184 | Compress the FIT image containing the DTBs available for the SPL |
| 185 | using GZIP compression. (requires gzip on host) |
| 186 | |
| 187 | config MULTI_DTB_FIT_NO_COMPRESSION |
| 188 | bool "No compression" |
| 189 | help |
| 190 | Do not compress the FIT image containing the DTBs available for the SPL. |
| 191 | Use this options only if LZO is not available and the DTBs are very small. |
| 192 | endchoice |
| 193 | |
| 194 | choice |
| 195 | prompt "Location of uncompressed DTBs" |
| 196 | depends on (MULTI_DTB_FIT_GZIP || MULTI_DTB_FIT_LZO) |
| 197 | default MULTI_DTB_FIT_DYN_ALLOC if SYS_MALLOC_F |
| 198 | |
| 199 | config MULTI_DTB_FIT_DYN_ALLOC |
| 200 | bool "Dynamically allocate the memory" |
| 201 | depends on SYS_MALLOC_F |
| 202 | |
| 203 | config MULTI_DTB_FIT_USER_DEFINED_AREA |
| 204 | bool "User-defined location" |
| 205 | endchoice |
| 206 | |
| 207 | config MULTI_DTB_FIT_UNCOMPRESS_SZ |
| 208 | hex "Size of memory reserved to uncompress the DTBs" |
| 209 | depends on (MULTI_DTB_FIT_GZIP || MULTI_DTB_FIT_LZO) |
| 210 | default 0x8000 |
| 211 | help |
| 212 | This is the size of this area where the DTBs are uncompressed. |
| 213 | If this area is dynamically allocated, make sure that |
| 214 | SYS_MALLOC_F_LEN is big enough to contain it. |
| 215 | |
| 216 | config MULTI_DTB_FIT_USER_DEF_ADDR |
| 217 | hex "Address of memory where dtbs are uncompressed" |
| 218 | depends on MULTI_DTB_FIT_USER_DEFINED_AREA |
| 219 | help |
| 220 | the FIT image containing the DTBs is uncompressed in an area defined |
| 221 | at compilation time. This is the address of this area. It must be |
| 222 | aligned on 2-byte boundary. |
Jean-Jacques Hiblot | 2037fa4 | 2017-09-15 12:57:24 +0200 | [diff] [blame] | 223 | |
| 224 | config DTB_RESELECT |
| 225 | bool "Support swapping dtbs at a later point in boot" |
| 226 | depends on MULTI_DTB_FIT |
| 227 | help |
| 228 | It is possible during initial boot you may need to use a generic |
| 229 | dtb until you can fully determine the board your running on. This |
| 230 | config allows boards to implement a function at a later point |
| 231 | during boot to switch to the "correct" dtb. |
| 232 | |
| 233 | config MULTI_DTB_FIT |
| 234 | bool "Support embedding several DTBs in a FIT image for u-boot" |
| 235 | help |
| 236 | This option provides hooks to allow U-boot to parse an |
| 237 | appended FIT image and enable board specific code to then select |
| 238 | the correct DTB to be used. Use this if you need to support |
| 239 | multiple DTBs but don't use the SPL. |
| 240 | |
Jean-Jacques Hiblot | a2fee16 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 241 | |
| 242 | config SPL_MULTI_DTB_FIT |
Simon Glass | 7c4ba16 | 2021-08-07 07:24:02 -0600 | [diff] [blame] | 243 | depends on SPL_LOAD_FIT && SPL_OF_REAL |
Jean-Jacques Hiblot | a2fee16 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 244 | bool "Support embedding several DTBs in a FIT image for the SPL" |
| 245 | help |
| 246 | This option provides the SPL with the ability to select its own |
| 247 | DTB at runtime from an appended FIT image containing several DTBs. |
| 248 | This allows using the same SPL binary on multiple platforms. |
| 249 | The primary purpose is to handle different versions of |
| 250 | the same platform without tweaking the platform code if the |
| 251 | differences can be expressed in the DTBs (common examples are: bus |
| 252 | capabilities, pad configurations). |
| 253 | |
| 254 | config SPL_OF_LIST |
| 255 | string "List of device tree files to include for DT control in SPL" |
| 256 | depends on SPL_MULTI_DTB_FIT |
| 257 | default OF_LIST |
| 258 | help |
| 259 | This option specifies a list of device tree files to use for DT |
| 260 | control in the SPL. These will be packaged into a FIT. At run-time, |
| 261 | the SPL will select the correct DT to use by examining the |
| 262 | hardware (e.g. reading a board ID value). This is a list of |
| 263 | device tree files (without the directory or .dtb suffix) |
| 264 | separated by <space>. |
| 265 | |
| 266 | choice |
| 267 | prompt "SPL OF LIST compression" |
| 268 | depends on SPL_MULTI_DTB_FIT |
| 269 | default SPL_MULTI_DTB_FIT_LZO |
| 270 | |
| 271 | config SPL_MULTI_DTB_FIT_LZO |
| 272 | bool "LZO" |
| 273 | depends on SYS_MALLOC_F |
| 274 | select SPL_LZO |
| 275 | help |
| 276 | Compress the FIT image containing the DTBs available for the SPL |
| 277 | using LZO compression. (requires lzop on host). |
| 278 | |
| 279 | config SPL_MULTI_DTB_FIT_GZIP |
| 280 | bool "GZIP" |
| 281 | depends on SYS_MALLOC_F |
| 282 | select SPL_GZIP |
| 283 | help |
| 284 | Compress the FIT image containing the DTBs available for the SPL |
| 285 | using GZIP compression. (requires gzip on host) |
| 286 | |
| 287 | config SPL_MULTI_DTB_FIT_NO_COMPRESSION |
| 288 | bool "No compression" |
| 289 | help |
| 290 | Do not compress the FIT image containing the DTBs available for the SPL. |
| 291 | Use this options only if LZO is not available and the DTBs are very small. |
| 292 | endchoice |
| 293 | |
| 294 | choice |
Michal Simek | c7df3a2 | 2018-07-23 08:38:56 +0200 | [diff] [blame] | 295 | prompt "Location of uncompressed DTBs" |
Jean-Jacques Hiblot | a2fee16 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 296 | depends on (SPL_MULTI_DTB_FIT_GZIP || SPL_MULTI_DTB_FIT_LZO) |
| 297 | default SPL_MULTI_DTB_FIT_DYN_ALLOC if SYS_MALLOC_F |
| 298 | |
| 299 | config SPL_MULTI_DTB_FIT_DYN_ALLOC |
| 300 | bool "Dynamically allocate the memory" |
| 301 | depends on SYS_MALLOC_F |
| 302 | |
| 303 | config SPL_MULTI_DTB_FIT_USER_DEFINED_AREA |
| 304 | bool "User-defined location" |
| 305 | endchoice |
| 306 | |
| 307 | config SPL_MULTI_DTB_FIT_UNCOMPRESS_SZ |
| 308 | hex "Size of memory reserved to uncompress the DTBs" |
| 309 | depends on (SPL_MULTI_DTB_FIT_GZIP || SPL_MULTI_DTB_FIT_LZO) |
| 310 | default 0x8000 |
| 311 | help |
| 312 | This is the size of this area where the DTBs are uncompressed. |
| 313 | If this area is dynamically allocated, make sure that |
| 314 | SPL_SYS_MALLOC_F_LEN is big enough to contain it. |
| 315 | |
| 316 | config SPL_MULTI_DTB_FIT_USER_DEF_ADDR |
| 317 | hex "Address of memory where dtbs are uncompressed" |
| 318 | depends on SPL_MULTI_DTB_FIT_USER_DEFINED_AREA |
| 319 | help |
| 320 | the FIT image containing the DTBs is uncompressed in an area defined |
| 321 | at compilation time. This is the address of this area. It must be |
| 322 | aligned on 2-byte boundary. |
| 323 | |
Simon Glass | 89caf33 | 2015-06-23 15:38:29 -0600 | [diff] [blame] | 324 | config OF_SPL_REMOVE_PROPS |
| 325 | string "List of device tree properties to drop for SPL" |
Masahiro Yamada | ddb9aa97 | 2015-08-28 20:28:42 +0900 | [diff] [blame] | 326 | depends on SPL_OF_CONTROL |
Michal Simek | de21807 | 2019-02-22 10:50:23 +0100 | [diff] [blame] | 327 | default "interrupt-parent interrupts" if SPL_PINCTRL && SPL_CLK |
| 328 | default "clocks clock-names interrupt-parent interrupts" if SPL_PINCTRL |
| 329 | default "pinctrl-0 pinctrl-names interrupt-parent interrupts" if SPL_CLK |
| 330 | default "pinctrl-0 pinctrl-names clocks clock-names interrupt-parent interrupts" |
Simon Glass | 89caf33 | 2015-06-23 15:38:29 -0600 | [diff] [blame] | 331 | help |
| 332 | Since SPL normally runs in a reduced memory space, the device tree |
| 333 | is cut down to only what is needed to load and start U-Boot. Only |
| 334 | nodes marked with the property "u-boot,dm-pre-reloc" will be |
| 335 | included. In addition, some properties are not used by U-Boot and |
| 336 | can be discarded. This option defines the list of properties to |
| 337 | discard. |
| 338 | |
Anatolij Gustschin | 0856834 | 2020-01-12 15:57:42 +0100 | [diff] [blame] | 339 | config OF_DTB_PROPS_REMOVE |
| 340 | bool "Enable removal of device tree properties" |
| 341 | depends on OF_CONTROL |
| 342 | help |
| 343 | Some boards have restricted amount of storage for U-Boot image. |
| 344 | If the generated binary doesn't fit into available image storage, |
| 345 | the built-in device tree could probably be cut down by removing |
| 346 | some not required device tree properties to reduce the image size. |
| 347 | Enable this option and define the properties to be removed in the |
| 348 | CONFIG_OF_REMOVE_PROPS list. Do not enable this option if you must |
| 349 | pass the built-in DTB directly to the kernel! |
| 350 | |
| 351 | config OF_REMOVE_PROPS |
| 352 | string "List of device tree properties to drop" |
| 353 | depends on OF_DTB_PROPS_REMOVE |
| 354 | default "interrupt-parent interrupts" if PINCTRL |
| 355 | help |
| 356 | Some properties are not used by U-Boot and can be discarded. |
| 357 | This option defines the list of properties to discard. |
| 358 | |
Simon Glass | 7bc65f3 | 2016-07-04 11:58:06 -0600 | [diff] [blame] | 359 | config SPL_OF_PLATDATA |
| 360 | bool "Generate platform data for use in SPL" |
| 361 | depends on SPL_OF_CONTROL |
Masahiro Yamada | 87247af | 2017-10-17 13:42:44 +0900 | [diff] [blame] | 362 | select DTOC |
Simon Glass | 8beeb28 | 2021-03-15 17:25:36 +1300 | [diff] [blame] | 363 | select SPL_OF_PLATDATA_DRIVER_RT if !SPL_OF_PLATDATA_INST |
Simon Glass | 7bc65f3 | 2016-07-04 11:58:06 -0600 | [diff] [blame] | 364 | help |
| 365 | For very constrained SPL environments the overhead of decoding |
| 366 | device tree nodes and converting their contents into platform data |
| 367 | is too large. This overhead includes libfdt code as well as the |
| 368 | device tree contents itself. The latter is fairly compact, but the |
| 369 | former can add 3KB or more to a Thumb 2 Image. |
| 370 | |
| 371 | This option enables generation of platform data from the device |
Simon Glass | 1d8364a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 372 | tree as C code. This code creates devices using U_BOOT_DRVINFO() |
Simon Glass | 7bc65f3 | 2016-07-04 11:58:06 -0600 | [diff] [blame] | 373 | declarations. The benefit is that it allows driver code to access |
| 374 | the platform data directly in C structures, avoidin the libfdt |
| 375 | overhead. |
| 376 | |
| 377 | This option works by generating C structure declarations for each |
Simon Glass | 1d8364a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 378 | compatible string, then adding platform data and U_BOOT_DRVINFO |
Simon Goldschmidt | 49ce8ca | 2019-01-16 20:40:18 +0100 | [diff] [blame] | 379 | declarations for each node. See of-plat.txt for more information. |
Simon Glass | 7bc65f3 | 2016-07-04 11:58:06 -0600 | [diff] [blame] | 380 | |
Simon Glass | 7c4ba16 | 2021-08-07 07:24:02 -0600 | [diff] [blame] | 381 | config SPL_OF_REAL |
| 382 | bool |
| 383 | help |
| 384 | Indicates that a real devicetree is available which can be accessed |
| 385 | at runtime. This means that dev_read_...() functions can be used to |
| 386 | read data from the devicetree for each device. This is true if |
| 387 | SPL_OF_CONTROL is enabled and not SPL_OF_PLATDATA |
| 388 | |
Simon Glass | 240d5f6 | 2021-02-03 06:01:13 -0700 | [diff] [blame] | 389 | if SPL_OF_PLATDATA |
| 390 | |
Simon Glass | 36b15e2 | 2020-10-03 11:31:35 -0600 | [diff] [blame] | 391 | config SPL_OF_PLATDATA_PARENT |
| 392 | bool "Support parent information in devices" |
Simon Glass | 36b15e2 | 2020-10-03 11:31:35 -0600 | [diff] [blame] | 393 | default y |
| 394 | help |
| 395 | Generally it is useful to be able to access the parent of a device |
| 396 | with of-platdata. To save space this can be disabled, but in that |
| 397 | case dev_get_parent() will always return NULL; |
| 398 | |
Simon Glass | 240d5f6 | 2021-02-03 06:01:13 -0700 | [diff] [blame] | 399 | config SPL_OF_PLATDATA_INST |
| 400 | bool "Declare devices at build time" |
| 401 | help |
| 402 | Declare devices as udevice instances so that they do not need to be |
| 403 | bound when U-Boot starts. This can save time and code space. |
| 404 | |
Simon Glass | 47fd4a2 | 2021-03-15 17:25:15 +1300 | [diff] [blame] | 405 | config SPL_OF_PLATDATA_NO_BIND |
| 406 | bool "Don't allow run-time binding of devices" |
| 407 | depends on SPL_OF_PLATDATA_INST |
| 408 | default y |
| 409 | help |
| 410 | This removes the ability to bind devices at run time, thus saving |
| 411 | some code space in U-Boot. This can be disabled if binding is needed, |
| 412 | at the code of some code size increase. |
| 413 | |
Simon Glass | 5b21b34 | 2021-03-15 17:25:35 +1300 | [diff] [blame] | 414 | config SPL_OF_PLATDATA_RT |
| 415 | bool "Use a separate struct for device runtime data" |
| 416 | depends on SPL_OF_PLATDATA_INST |
| 417 | default y |
| 418 | help |
| 419 | For systems running SPL from read-only memory it is convenient to |
| 420 | separate out the runtime information, so that the devices don't need |
| 421 | to be copied before being used. This moves the read-write parts of |
| 422 | struct udevice (at present just the flags) into a separate struct, |
| 423 | which is allocated at runtime. |
| 424 | |
Simon Glass | 8beeb28 | 2021-03-15 17:25:36 +1300 | [diff] [blame] | 425 | config SPL_OF_PLATDATA_DRIVER_RT |
| 426 | bool |
| 427 | help |
| 428 | Use a separate struct for driver runtime data. |
| 429 | |
| 430 | This enables the driver_rt information, used with of-platdata when |
| 431 | of-platdata-inst is not used. It allows finding devices by their |
| 432 | driver data. |
| 433 | |
Simon Glass | 240d5f6 | 2021-02-03 06:01:13 -0700 | [diff] [blame] | 434 | endif |
| 435 | |
Simon Glass | 7c4ba16 | 2021-08-07 07:24:02 -0600 | [diff] [blame] | 436 | config TPL_OF_REAL |
| 437 | bool |
| 438 | help |
| 439 | Indicates that a real devicetree is available which can be accessed |
| 440 | at runtime. This means that dev_read_...() functions can be used to |
| 441 | read data from the devicetree for each device. This is true if |
| 442 | TPL_OF_CONTROL is enabled and not TPL_OF_PLATDATA |
| 443 | |
Philipp Tomsich | 2341dc6 | 2017-06-29 11:11:21 +0200 | [diff] [blame] | 444 | config TPL_OF_PLATDATA |
| 445 | bool "Generate platform data for use in TPL" |
| 446 | depends on TPL_OF_CONTROL |
Masahiro Yamada | 87247af | 2017-10-17 13:42:44 +0900 | [diff] [blame] | 447 | select DTOC |
Simon Glass | 8beeb28 | 2021-03-15 17:25:36 +1300 | [diff] [blame] | 448 | select TPL_OF_PLATDATA_DRIVER_RT if !TPL_OF_PLATDATA_INST |
Philipp Tomsich | 2341dc6 | 2017-06-29 11:11:21 +0200 | [diff] [blame] | 449 | help |
| 450 | For very constrained SPL environments the overhead of decoding |
| 451 | device tree nodes and converting their contents into platform data |
| 452 | is too large. This overhead includes libfdt code as well as the |
| 453 | device tree contents itself. The latter is fairly compact, but the |
| 454 | former can add 3KB or more to a Thumb 2 Image. |
| 455 | |
| 456 | This option enables generation of platform data from the device |
Simon Glass | 1d8364a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 457 | tree as C code. This code creates devices using U_BOOT_DRVINFO() |
Philipp Tomsich | 2341dc6 | 2017-06-29 11:11:21 +0200 | [diff] [blame] | 458 | declarations. The benefit is that it allows driver code to access |
| 459 | the platform data directly in C structures, avoidin the libfdt |
| 460 | overhead. |
| 461 | |
| 462 | This option works by generating C structure declarations for each |
Simon Glass | 1d8364a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 463 | compatible string, then adding platform data and U_BOOT_DRVINFO |
Simon Goldschmidt | 49ce8ca | 2019-01-16 20:40:18 +0100 | [diff] [blame] | 464 | declarations for each node. See of-plat.txt for more information. |
Philipp Tomsich | 2341dc6 | 2017-06-29 11:11:21 +0200 | [diff] [blame] | 465 | |
Simon Glass | 240d5f6 | 2021-02-03 06:01:13 -0700 | [diff] [blame] | 466 | if TPL_OF_PLATDATA |
| 467 | |
Simon Glass | 36b15e2 | 2020-10-03 11:31:35 -0600 | [diff] [blame] | 468 | config TPL_OF_PLATDATA_PARENT |
| 469 | bool "Support parent information in devices" |
Simon Glass | 36b15e2 | 2020-10-03 11:31:35 -0600 | [diff] [blame] | 470 | default y |
| 471 | help |
| 472 | Generally it is useful to be able to access the parent of a device |
| 473 | with of-platdata. To save space this can be disabled, but in that |
| 474 | case dev_get_parent() will always return NULL; |
| 475 | |
Simon Glass | 240d5f6 | 2021-02-03 06:01:13 -0700 | [diff] [blame] | 476 | config TPL_OF_PLATDATA_INST |
| 477 | bool "Declare devices at build time" |
| 478 | |
| 479 | help |
| 480 | Declare devices as udevice instances so that they do not need to be |
| 481 | bound when U-Boot starts. This can save time and code space. |
| 482 | |
Simon Glass | 47fd4a2 | 2021-03-15 17:25:15 +1300 | [diff] [blame] | 483 | config TPL_OF_PLATDATA_NO_BIND |
| 484 | bool "Don't allow run-time binding of devices" |
| 485 | depends on TPL_OF_PLATDATA_INST |
| 486 | default y |
| 487 | help |
| 488 | This removes the ability to bind devices at run time, thus saving |
| 489 | some code space in U-Boot. This can be disabled if binding is needed, |
| 490 | at the code of some code size increase. |
| 491 | |
Simon Glass | 5b21b34 | 2021-03-15 17:25:35 +1300 | [diff] [blame] | 492 | config TPL_OF_PLATDATA_RT |
| 493 | bool "Use a separate struct for device runtime data" |
| 494 | depends on TPL_OF_PLATDATA_INST |
| 495 | default y |
| 496 | help |
| 497 | For systems running TPL from read-only memory it is convenient to |
| 498 | separate out the runtime information, so that the devices don't need |
| 499 | to be copied before being used. This moves the read-write parts of |
| 500 | struct udevice (at present just the flags) into a separate struct, |
| 501 | which is allocated at runtime. |
| 502 | |
Simon Glass | 8beeb28 | 2021-03-15 17:25:36 +1300 | [diff] [blame] | 503 | config TPL_OF_PLATDATA_DRIVER_RT |
| 504 | bool |
| 505 | help |
| 506 | Use a separate struct for driver runtime data. |
| 507 | |
| 508 | This enables the driver_rt information, used with of-platdata when |
| 509 | of-platdata-inst is not used. It allows finding devices by their |
| 510 | driver data. |
| 511 | |
Simon Glass | 240d5f6 | 2021-02-03 06:01:13 -0700 | [diff] [blame] | 512 | endif |
| 513 | |
Masahiro Yamada | 9fadbc8 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 514 | endmenu |