Masahiro Yamada | cc85b7b | 2015-07-26 02:46:26 +0900 | [diff] [blame] | 1 | menu "Generic Driver Options" |
| 2 | |
Masahiro Yamada | 57ad8ee | 2014-10-23 22:26:09 +0900 | [diff] [blame] | 3 | config DM |
| 4 | bool "Enable Driver Model" |
Masahiro Yamada | 57ad8ee | 2014-10-23 22:26:09 +0900 | [diff] [blame] | 5 | help |
Simon Glass | d8b771d | 2015-02-05 21:41:35 -0700 | [diff] [blame] | 6 | This config option enables Driver Model. This brings in the core |
| 7 | support, including scanning of platform data on start-up. If |
| 8 | CONFIG_OF_CONTROL is enabled, the device tree will be scanned also |
| 9 | when available. |
Simon Glass | 93e414d | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 10 | |
| 11 | config SPL_DM |
| 12 | bool "Enable Driver Model for SPL" |
| 13 | depends on DM && SPL |
| 14 | help |
| 15 | Enable driver model in SPL. You will need to provide a |
| 16 | suitable malloc() implementation. If you are not using the |
| 17 | full malloc() enabled by CONFIG_SYS_SPL_MALLOC_START, |
Tom Rini | e7d67a4 | 2022-05-20 12:36:05 -0400 | [diff] [blame] | 18 | consider using CONFIG_SPL_SYS_MALLOC_SIMPLE. In that case you |
Andy Yan | 1fa20e4d | 2017-07-24 17:43:34 +0800 | [diff] [blame] | 19 | must provide CONFIG_SPL_SYS_MALLOC_F_LEN to set the size. |
Simon Glass | 93e414d | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 20 | In most cases driver model will only allocate a few uclasses |
| 21 | and devices in SPL, so 1KB should be enable. See |
Andy Yan | 1fa20e4d | 2017-07-24 17:43:34 +0800 | [diff] [blame] | 22 | CONFIG_SPL_SYS_MALLOC_F_LEN for more details on how to enable it. |
Simon Glass | 93e414d | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 23 | |
Simon Glass | c833c00 | 2017-04-02 09:50:31 -0600 | [diff] [blame] | 24 | config TPL_DM |
| 25 | bool "Enable Driver Model for TPL" |
| 26 | depends on DM && TPL |
| 27 | help |
| 28 | Enable driver model in TPL. You will need to provide a |
| 29 | suitable malloc() implementation. If you are not using the |
| 30 | full malloc() enabled by CONFIG_SYS_SPL_MALLOC_START, |
Tom Rini | e7d67a4 | 2022-05-20 12:36:05 -0400 | [diff] [blame] | 31 | consider using CONFIG_TPL_SYS_MALLOC_SIMPLE. In that case you |
Andy Yan | 1fa20e4d | 2017-07-24 17:43:34 +0800 | [diff] [blame] | 32 | must provide CONFIG_SPL_SYS_MALLOC_F_LEN to set the size. |
Simon Glass | c833c00 | 2017-04-02 09:50:31 -0600 | [diff] [blame] | 33 | In most cases driver model will only allocate a few uclasses |
| 34 | and devices in SPL, so 1KB should be enough. See |
Andy Yan | 1fa20e4d | 2017-07-24 17:43:34 +0800 | [diff] [blame] | 35 | CONFIG_SPL_SYS_MALLOC_F_LEN for more details on how to enable it. |
Simon Glass | c833c00 | 2017-04-02 09:50:31 -0600 | [diff] [blame] | 36 | Disable this for very small implementations. |
| 37 | |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 38 | config VPL_DM |
| 39 | bool "Enable Driver Model for VPL" |
| 40 | depends on DM && VPL |
| 41 | default y if SPL_DM |
| 42 | help |
| 43 | Enable driver model in VPL. You will need to provide a |
| 44 | suitable malloc() implementation. If you are not using the |
| 45 | full malloc() enabled by CONFIG_SYS_SPL_MALLOC_START, |
Tom Rini | e7d67a4 | 2022-05-20 12:36:05 -0400 | [diff] [blame] | 46 | consider using CONFIG_SPL_SYS_MALLOC_SIMPLE. |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 47 | |
Simon Glass | 93e414d | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 48 | config DM_WARN |
| 49 | bool "Enable warnings in driver model" |
Masahiro Yamada | cfc2f7d | 2015-02-24 22:26:21 +0900 | [diff] [blame] | 50 | depends on DM |
| 51 | default y |
Simon Glass | 93e414d | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 52 | help |
Simon Glass | 85bf4f2 | 2020-10-03 11:31:26 -0600 | [diff] [blame] | 53 | Enable this to see warnings related to driver model. |
| 54 | |
| 55 | Warnings may help with debugging, such as when expected devices do |
| 56 | not bind correctly. If the option is disabled, dm_warn() is compiled |
| 57 | out - it will do nothing when called. |
| 58 | |
| 59 | config SPL_DM_WARN |
| 60 | bool "Enable warnings in driver model wuth SPL" |
| 61 | depends on SPL_DM |
| 62 | help |
| 63 | Enable this to see warnings related to driver model in SPL |
| 64 | |
Simon Glass | 93e414d | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 65 | The dm_warn() function can use up quite a bit of space for its |
| 66 | strings. By default this is disabled for SPL builds to save space. |
Simon Glass | 85bf4f2 | 2020-10-03 11:31:26 -0600 | [diff] [blame] | 67 | |
| 68 | Warnings may help with debugging, such as when expected devices do |
| 69 | not bind correctly. If the option is disabled, dm_warn() is compiled |
| 70 | out - it will do nothing when called. |
Simon Glass | 93e414d | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 71 | |
Masahiro Yamada | f70f39f | 2017-09-29 12:31:20 +0900 | [diff] [blame] | 72 | config DM_DEBUG |
| 73 | bool "Enable debug messages in driver model core" |
| 74 | depends on DM |
| 75 | help |
| 76 | Say Y here if you want to compile in debug messages in DM core. |
| 77 | |
Simon Glass | c8b5e22 | 2022-05-08 04:39:26 -0600 | [diff] [blame^] | 78 | config DM_STATS |
| 79 | bool "Collect and show driver model stats" |
| 80 | depends on DM |
| 81 | default y if SANDBOX |
| 82 | help |
| 83 | Enable this to collect and display memory statistics about driver |
| 84 | model. This can help to figure out where all the memory is going and |
| 85 | to find optimisations. |
| 86 | |
| 87 | To display the memory stats, use the 'dm mem' command. |
| 88 | |
Simon Glass | 93e414d | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 89 | config DM_DEVICE_REMOVE |
| 90 | bool "Support device removal" |
Masahiro Yamada | cfc2f7d | 2015-02-24 22:26:21 +0900 | [diff] [blame] | 91 | depends on DM |
| 92 | default y |
Simon Glass | 93e414d | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 93 | help |
| 94 | We can save some code space by dropping support for removing a |
Jean-Jacques Hiblot | 00b2988 | 2018-12-07 14:50:53 +0100 | [diff] [blame] | 95 | device. |
Simon Glass | 93e414d | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 96 | |
Hans de Goede | 246ba26 | 2015-07-01 20:52:59 +0200 | [diff] [blame] | 97 | Note that this may have undesirable results in the USB subsystem as |
| 98 | it causes unplugged devices to linger around in the dm-tree, and it |
| 99 | causes USB host controllers to not be stopped when booting the OS. |
| 100 | |
Simon Glass | 3ee337a | 2022-03-04 08:43:03 -0700 | [diff] [blame] | 101 | config DM_EVENT |
| 102 | bool "Support events with driver model" |
Heinrich Schuchardt | c95a50e | 2022-05-07 22:39:01 +0200 | [diff] [blame] | 103 | depends on DM && EVENT |
Simon Glass | 3ee337a | 2022-03-04 08:43:03 -0700 | [diff] [blame] | 104 | default y if SANDBOX |
| 105 | help |
| 106 | This enables support for generating events related to driver model |
| 107 | operations, such as prbing or removing a device. Subsystems can |
| 108 | register a 'spy' function that is called when the event occurs. |
| 109 | |
Jean-Jacques Hiblot | 00b2988 | 2018-12-07 14:50:53 +0100 | [diff] [blame] | 110 | config SPL_DM_DEVICE_REMOVE |
| 111 | bool "Support device removal in SPL" |
| 112 | depends on SPL_DM |
Jean-Jacques Hiblot | 00b2988 | 2018-12-07 14:50:53 +0100 | [diff] [blame] | 113 | help |
| 114 | We can save some code space by dropping support for removing a |
| 115 | device. This is not normally required in SPL, so by default this |
| 116 | option is disabled for SPL. |
| 117 | |
Simon Glass | 93e414d | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 118 | config DM_STDIO |
| 119 | bool "Support stdio registration" |
Masahiro Yamada | cfc2f7d | 2015-02-24 22:26:21 +0900 | [diff] [blame] | 120 | depends on DM |
| 121 | default y |
Simon Glass | 93e414d | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 122 | help |
| 123 | Normally serial drivers register with stdio so that they can be used |
| 124 | as normal output devices. In SPL we don't normally use stdio, so |
| 125 | we can omit this feature. |
Simon Glass | 1bd3deb | 2015-02-27 22:06:30 -0700 | [diff] [blame] | 126 | |
| 127 | config DM_SEQ_ALIAS |
| 128 | bool "Support numbered aliases in device tree" |
| 129 | depends on DM |
| 130 | default y |
| 131 | help |
| 132 | Most boards will have a '/aliases' node containing the path to |
| 133 | numbered devices (e.g. serial0 = &serial0). This feature can be |
Nathan Rossi | 7fa6ff4 | 2016-01-08 03:00:45 +1000 | [diff] [blame] | 134 | disabled if it is not required. |
| 135 | |
| 136 | config SPL_DM_SEQ_ALIAS |
| 137 | bool "Support numbered aliases in device tree in SPL" |
Adam Ford | ac4d80e | 2019-08-24 13:50:34 -0500 | [diff] [blame] | 138 | depends on SPL_DM |
Nathan Rossi | 7fa6ff4 | 2016-01-08 03:00:45 +1000 | [diff] [blame] | 139 | help |
| 140 | Most boards will have a '/aliases' node containing the path to |
| 141 | numbered devices (e.g. serial0 = &serial0). This feature can be |
Simon Glass | 1bd3deb | 2015-02-27 22:06:30 -0700 | [diff] [blame] | 142 | disabled if it is not required, to save code space in SPL. |
Simon Glass | 8e5efa0 | 2015-07-17 09:22:07 -0600 | [diff] [blame] | 143 | |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 144 | config VPL_DM_SEQ_ALIAS |
| 145 | bool "Support numbered aliases in device tree in VPL" |
| 146 | depends on VPL_DM |
| 147 | default y |
| 148 | help |
| 149 | Most boards will have a '/aliases' node containing the path to |
| 150 | numbered devices (e.g. serial0 = &serial0). This feature can be |
| 151 | disabled if it is not required, to save code space in VPL. |
| 152 | |
Simon Glass | 39f1d28 | 2020-12-16 17:25:06 -0700 | [diff] [blame] | 153 | config SPL_DM_INLINE_OFNODE |
| 154 | bool "Inline some ofnode functions which are seldom used in SPL" |
| 155 | depends on SPL_DM |
| 156 | default y |
| 157 | help |
| 158 | This applies to several ofnode functions (see ofnode.h) which are |
| 159 | seldom used. Inlining them can help reduce code size. |
| 160 | |
| 161 | config TPL_DM_INLINE_OFNODE |
| 162 | bool "Inline some ofnode functions which are seldom used in TPL" |
| 163 | depends on TPL_DM |
| 164 | default y |
| 165 | help |
| 166 | This applies to several ofnode functions (see ofnode.h) which are |
| 167 | seldom used. Inlining them can help reduce code size. |
| 168 | |
Nicolas Saenz Julienne | a2c7ead | 2021-01-12 13:55:24 +0100 | [diff] [blame] | 169 | config DM_DMA |
| 170 | bool "Support per-device DMA constraints" |
| 171 | depends on DM |
Nicolas Saenz Julienne | a2c7ead | 2021-01-12 13:55:24 +0100 | [diff] [blame] | 172 | help |
| 173 | Enable this to extract per-device DMA constraints, only supported on |
| 174 | device-tree systems for now. This is needed in order translate |
| 175 | addresses on systems where different buses have different views of |
| 176 | the physical address space. |
| 177 | |
Simon Glass | 8e5efa0 | 2015-07-17 09:22:07 -0600 | [diff] [blame] | 178 | config REGMAP |
| 179 | bool "Support register maps" |
| 180 | depends on DM |
| 181 | help |
| 182 | Hardware peripherals tend to have one or more sets of registers |
| 183 | which can be accessed to control the hardware. A register map |
| 184 | models this with a simple read/write interface. It can in principle |
| 185 | support any bus type (I2C, SPI) but so far this only supports |
| 186 | direct memory access. |
| 187 | |
huang lin | dd8515e | 2015-11-17 14:20:13 +0800 | [diff] [blame] | 188 | config SPL_REGMAP |
| 189 | bool "Support register maps in SPL" |
Philipp Tomsich | cdda349 | 2017-06-29 01:37:10 +0200 | [diff] [blame] | 190 | depends on SPL_DM |
huang lin | dd8515e | 2015-11-17 14:20:13 +0800 | [diff] [blame] | 191 | help |
| 192 | Hardware peripherals tend to have one or more sets of registers |
| 193 | which can be accessed to control the hardware. A register map |
| 194 | models this with a simple read/write interface. It can in principle |
| 195 | support any bus type (I2C, SPI) but so far this only supports |
| 196 | direct memory access. |
| 197 | |
Philipp Tomsich | 03cdf69 | 2017-06-29 01:38:49 +0200 | [diff] [blame] | 198 | config TPL_REGMAP |
| 199 | bool "Support register maps in TPL" |
| 200 | depends on TPL_DM |
| 201 | help |
| 202 | Hardware peripherals tend to have one or more sets of registers |
| 203 | which can be accessed to control the hardware. A register map |
| 204 | models this with a simple read/write interface. It can in principle |
| 205 | support any bus type (I2C, SPI) but so far this only supports |
| 206 | direct memory access. |
| 207 | |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 208 | config VPL_REGMAP |
| 209 | bool "Support register maps in VPL" |
| 210 | depends on VPL_DM |
| 211 | help |
| 212 | Hardware peripherals tend to have one or more sets of registers |
| 213 | which can be accessed to control the hardware. A register map |
| 214 | models this with a simple read/write interface. It can in principle |
| 215 | support any bus type (I2C, SPI) but so far this only supports |
| 216 | direct memory access. |
| 217 | |
Simon Glass | 8e5efa0 | 2015-07-17 09:22:07 -0600 | [diff] [blame] | 218 | config SYSCON |
| 219 | bool "Support system controllers" |
| 220 | depends on REGMAP |
| 221 | help |
| 222 | Many SoCs have a number of system controllers which are dealt with |
| 223 | as a group by a single driver. Some common functionality is provided |
| 224 | by this uclass, including accessing registers via regmap and |
| 225 | assigning a unique number to each. |
Masahiro Yamada | 8b15b16 | 2015-07-25 21:52:35 +0900 | [diff] [blame] | 226 | |
huang lin | dd8515e | 2015-11-17 14:20:13 +0800 | [diff] [blame] | 227 | config SPL_SYSCON |
| 228 | bool "Support system controllers in SPL" |
Philipp Tomsich | cdda349 | 2017-06-29 01:37:10 +0200 | [diff] [blame] | 229 | depends on SPL_REGMAP |
huang lin | dd8515e | 2015-11-17 14:20:13 +0800 | [diff] [blame] | 230 | help |
| 231 | Many SoCs have a number of system controllers which are dealt with |
| 232 | as a group by a single driver. Some common functionality is provided |
| 233 | by this uclass, including accessing registers via regmap and |
| 234 | assigning a unique number to each. |
| 235 | |
Philipp Tomsich | 03cdf69 | 2017-06-29 01:38:49 +0200 | [diff] [blame] | 236 | config TPL_SYSCON |
| 237 | bool "Support system controllers in TPL" |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 238 | depends on SPL_REGMAP |
Philipp Tomsich | 03cdf69 | 2017-06-29 01:38:49 +0200 | [diff] [blame] | 239 | help |
| 240 | Many SoCs have a number of system controllers which are dealt with |
| 241 | as a group by a single driver. Some common functionality is provided |
| 242 | by this uclass, including accessing registers via regmap and |
| 243 | assigning a unique number to each. |
| 244 | |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 245 | config VPL_SYSCON |
| 246 | bool "Support system controllers in VPL" |
| 247 | depends on VPL_REGMAP |
| 248 | help |
| 249 | Many SoCs have a number of system controllers which are dealt with |
| 250 | as a group by a single driver. Some common functionality is provided |
| 251 | by this uclass, including accessing registers via regmap and |
| 252 | assigning a unique number to each. |
| 253 | |
Masahiro Yamada | 029bfca | 2015-07-25 21:52:37 +0900 | [diff] [blame] | 254 | config DEVRES |
| 255 | bool "Managed device resources" |
| 256 | depends on DM |
| 257 | help |
| 258 | This option enables the Managed device resources core support. |
| 259 | Device resources managed by the devres framework are automatically |
| 260 | released whether initialization fails half-way or the device gets |
| 261 | detached. |
| 262 | |
| 263 | If this option is disabled, devres functions fall back to |
| 264 | non-managed variants. For example, devres_alloc() to kzalloc(), |
| 265 | devm_kmalloc() to kmalloc(), etc. |
| 266 | |
Masahiro Yamada | 8b15b16 | 2015-07-25 21:52:35 +0900 | [diff] [blame] | 267 | config DEBUG_DEVRES |
Masahiro Yamada | f929c0b | 2015-07-25 21:52:38 +0900 | [diff] [blame] | 268 | bool "Managed device resources debugging functions" |
Masahiro Yamada | 029bfca | 2015-07-25 21:52:37 +0900 | [diff] [blame] | 269 | depends on DEVRES |
Masahiro Yamada | 8b15b16 | 2015-07-25 21:52:35 +0900 | [diff] [blame] | 270 | help |
| 271 | If this option is enabled, devres debug messages are printed. |
Masahiro Yamada | f929c0b | 2015-07-25 21:52:38 +0900 | [diff] [blame] | 272 | Also, a function is available to dump a list of device resources. |
Masahiro Yamada | 8b15b16 | 2015-07-25 21:52:35 +0900 | [diff] [blame] | 273 | Select this if you are having a problem with devres or want to |
| 274 | debug resource management for a managed device. |
| 275 | |
| 276 | If you are unsure about this, Say N here. |
Masahiro Yamada | cc85b7b | 2015-07-26 02:46:26 +0900 | [diff] [blame] | 277 | |
Marek Vasut | 298e608 | 2015-08-03 01:15:48 +0200 | [diff] [blame] | 278 | config SIMPLE_BUS |
| 279 | bool "Support simple-bus driver" |
| 280 | depends on DM && OF_CONTROL |
| 281 | default y |
| 282 | help |
| 283 | Supports the 'simple-bus' driver, which is used on some systems. |
| 284 | |
| 285 | config SPL_SIMPLE_BUS |
| 286 | bool "Support simple-bus driver in SPL" |
| 287 | depends on SPL_DM && SPL_OF_CONTROL |
Michal Simek | b32467f | 2015-12-01 08:37:16 +0100 | [diff] [blame] | 288 | default y |
Marek Vasut | 298e608 | 2015-08-03 01:15:48 +0200 | [diff] [blame] | 289 | help |
| 290 | Supports the 'simple-bus' driver, which is used on some systems |
| 291 | in SPL. |
| 292 | |
Bin Meng | 1a43b23 | 2021-03-14 20:15:02 +0800 | [diff] [blame] | 293 | config SIMPLE_BUS_CORRECT_RANGE |
| 294 | bool "Decode the 'simple-bus' <range> by honoring the #address-cells and #size-cells" |
| 295 | depends on SIMPLE_BUS |
Bin Meng | 524a92c | 2021-03-14 20:15:03 +0800 | [diff] [blame] | 296 | default y if SANDBOX |
Bin Meng | 1a43b23 | 2021-03-14 20:15:02 +0800 | [diff] [blame] | 297 | help |
| 298 | Decoding the 'simple-bus' <range> by honoring the #address-cells |
| 299 | and #size-cells of parent/child bus. If unset, #address-cells of |
| 300 | parent bus is assumed to be 1, #address-cells and #size-cells of |
| 301 | child bus is also assumed to be 1, to save some spaces of using |
| 302 | an advanced API to decode the <range>, which benefits SPL image |
| 303 | builds that have size limits. |
| 304 | |
| 305 | If you are unsure about this, Say N here. |
| 306 | |
Sean Anderson | b786054 | 2020-06-24 06:41:12 -0400 | [diff] [blame] | 307 | config SIMPLE_PM_BUS |
| 308 | bool "Support simple-pm-bus driver" |
| 309 | depends on DM && OF_CONTROL && CLK && POWER_DOMAIN |
| 310 | help |
| 311 | Supports the 'simple-pm-bus' driver, which is used for busses that |
| 312 | have power domains and/or clocks which need to be enabled before use. |
| 313 | |
Stefan Roese | adc0905 | 2015-09-02 07:41:12 +0200 | [diff] [blame] | 314 | config OF_TRANSLATE |
| 315 | bool "Translate addresses using fdt_translate_address" |
| 316 | depends on DM && OF_CONTROL |
| 317 | default y |
| 318 | help |
| 319 | If this option is enabled, the reg property will be translated |
| 320 | using the fdt_translate_address() function. This is necessary |
| 321 | on some platforms (e.g. MVEBU) using complex "ranges" |
| 322 | properties in many nodes. As this translation is not handled |
| 323 | correctly in the default simple_bus_translate() function. |
| 324 | |
| 325 | If this option is not enabled, simple_bus_translate() will be |
| 326 | used for the address translation. This function is faster and |
| 327 | smaller in size than fdt_translate_address(). |
| 328 | |
| 329 | config SPL_OF_TRANSLATE |
Stefan Roese | f05eeb2 | 2015-11-26 13:38:01 +0100 | [diff] [blame] | 330 | bool "Translate addresses using fdt_translate_address in SPL" |
Stefan Roese | adc0905 | 2015-09-02 07:41:12 +0200 | [diff] [blame] | 331 | depends on SPL_DM && SPL_OF_CONTROL |
Stefan Roese | adc0905 | 2015-09-02 07:41:12 +0200 | [diff] [blame] | 332 | help |
| 333 | If this option is enabled, the reg property will be translated |
| 334 | using the fdt_translate_address() function. This is necessary |
| 335 | on some platforms (e.g. MVEBU) using complex "ranges" |
| 336 | properties in many nodes. As this translation is not handled |
| 337 | correctly in the default simple_bus_translate() function. |
| 338 | |
| 339 | If this option is not enabled, simple_bus_translate() will be |
| 340 | used for the address translation. This function is faster and |
| 341 | smaller in size than fdt_translate_address(). |
| 342 | |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 343 | config VPL_OF_TRANSLATE |
| 344 | bool "Translate addresses using fdt_translate_address in SPL" |
| 345 | depends on SPL_DM && VPL_OF_CONTROL |
| 346 | help |
| 347 | If this option is enabled, the reg property will be translated |
| 348 | using the fdt_translate_address() function. This is necessary |
| 349 | on some platforms (e.g. MVEBU) using complex "ranges" |
| 350 | properties in many nodes. As this translation is not handled |
| 351 | correctly in the default simple_bus_translate() function. |
| 352 | |
| 353 | If this option is not enabled, simple_bus_translate() will be |
| 354 | used for the address translation. This function is faster and |
| 355 | smaller in size than fdt_translate_address(). |
| 356 | |
Stefan Roese | 85bddff | 2019-04-12 16:42:28 +0200 | [diff] [blame] | 357 | config TRANSLATION_OFFSET |
| 358 | bool "Platforms specific translation offset" |
| 359 | depends on DM && OF_CONTROL |
| 360 | help |
| 361 | Some platforms need a special address translation. Those |
| 362 | platforms (e.g. mvebu in SPL) can configure a translation |
| 363 | offset by enabling this option and setting the translation_offset |
| 364 | variable in the GD in their platform- / board-specific code. |
| 365 | |
Paul Burton | dbef2f0 | 2016-05-17 07:43:24 +0100 | [diff] [blame] | 366 | config OF_ISA_BUS |
| 367 | bool |
| 368 | depends on OF_TRANSLATE |
| 369 | help |
| 370 | Is this option is enabled then support for the ISA bus will |
| 371 | be included for addresses read from DT. This is something that |
| 372 | should be known to be required or not based upon the board |
Chris Packham | 3b6b462 | 2019-01-13 22:13:24 +1300 | [diff] [blame] | 373 | being targeted, and whether or not it makes use of an ISA bus. |
Paul Burton | dbef2f0 | 2016-05-17 07:43:24 +0100 | [diff] [blame] | 374 | |
| 375 | The bus is matched based upon its node name equalling "isa". The |
| 376 | busses #address-cells should equal 2, with the first cell being |
| 377 | used to hold flags & flag 0x1 indicating that the address range |
| 378 | should be accessed using I/O port in/out accessors. The second |
| 379 | cell holds the offset into ISA bus address space. The #size-cells |
| 380 | property should equal 1, and of course holds the size of the |
| 381 | address range used by a device. |
| 382 | |
| 383 | If this option is not enabled then support for the ISA bus is |
| 384 | not included and any such busses used in DT will be treated as |
| 385 | typical simple-bus compatible busses. This will lead to |
| 386 | mistranslation of device addresses, so ensure that this is |
| 387 | enabled if your board does include an ISA bus. |
| 388 | |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 389 | config DM_DEV_READ_INLINE |
| 390 | bool |
| 391 | default y if !OF_LIVE |
| 392 | |
Simon Glass | 9fb9e9b | 2020-04-09 10:27:38 -0600 | [diff] [blame] | 393 | config ACPIGEN |
| 394 | bool "Support ACPI table generation in driver model" |
Simon Glass | 55f3cde | 2020-07-16 21:22:39 -0600 | [diff] [blame] | 395 | default y if SANDBOX || (GENERATE_ACPI_TABLE && !QEMU) |
Simon Glass | 335fe51 | 2021-07-02 12:36:15 -0600 | [diff] [blame] | 396 | select LIB_UUID |
Simon Glass | 9fb9e9b | 2020-04-09 10:27:38 -0600 | [diff] [blame] | 397 | help |
| 398 | This option enables generation of ACPI tables using driver-model |
| 399 | devices. It adds a new operation struct to each driver, to support |
| 400 | things like generating device-specific tables and returning the ACPI |
| 401 | name of a device. |
| 402 | |
Simon Glass | 5f78ee7 | 2020-09-10 20:21:25 -0600 | [diff] [blame] | 403 | config BOUNCE_BUFFER |
| 404 | bool "Include bounce buffer API" |
| 405 | help |
| 406 | Some peripherals support DMA from a subset of physically |
| 407 | addressable memory only. To support such peripherals, the |
| 408 | bounce buffer API uses a temporary buffer: it copies data |
| 409 | to/from DMA regions while managing cache operations. |
| 410 | |
| 411 | A second possible use of bounce buffers is their ability to |
| 412 | provide aligned buffers for DMA operations. |
| 413 | |
Masahiro Yamada | cc85b7b | 2015-07-26 02:46:26 +0900 | [diff] [blame] | 414 | endmenu |