blob: 408a8d8e28b1ea747d9013fa59a71c773fdd16a8 [file] [log] [blame]
Masahiro Yamada0b11dbf2015-07-26 02:46:26 +09001menu "Generic Driver Options"
2
Masahiro Yamadada333ae2014-10-23 22:26:09 +09003config DM
4 bool "Enable Driver Model"
Masahiro Yamadada333ae2014-10-23 22:26:09 +09005 help
Simon Glassf94a1be2015-02-05 21:41:35 -07006 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 Glass91a91ff2015-02-05 21:41:36 -070010
11config 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,
18 consider using CONFIG_SYS_MALLOC_SIMPLE. In that case you
Andy Yanf1896c42017-07-24 17:43:34 +080019 must provide CONFIG_SPL_SYS_MALLOC_F_LEN to set the size.
Simon Glass91a91ff2015-02-05 21:41:36 -070020 In most cases driver model will only allocate a few uclasses
21 and devices in SPL, so 1KB should be enable. See
Andy Yanf1896c42017-07-24 17:43:34 +080022 CONFIG_SPL_SYS_MALLOC_F_LEN for more details on how to enable it.
Simon Glass91a91ff2015-02-05 21:41:36 -070023
Simon Glass5a6f06f2017-04-02 09:50:31 -060024config 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,
31 consider using CONFIG_SYS_MALLOC_SIMPLE. In that case you
Andy Yanf1896c42017-07-24 17:43:34 +080032 must provide CONFIG_SPL_SYS_MALLOC_F_LEN to set the size.
Simon Glass5a6f06f2017-04-02 09:50:31 -060033 In most cases driver model will only allocate a few uclasses
34 and devices in SPL, so 1KB should be enough. See
Andy Yanf1896c42017-07-24 17:43:34 +080035 CONFIG_SPL_SYS_MALLOC_F_LEN for more details on how to enable it.
Simon Glass5a6f06f2017-04-02 09:50:31 -060036 Disable this for very small implementations.
37
Simon Glass747093d2022-04-30 00:56:53 -060038config 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,
46 consider using CONFIG_SYS_MALLOC_SIMPLE.
47
Simon Glass91a91ff2015-02-05 21:41:36 -070048config DM_WARN
49 bool "Enable warnings in driver model"
Masahiro Yamadad6489642015-02-24 22:26:21 +090050 depends on DM
51 default y
Simon Glass91a91ff2015-02-05 21:41:36 -070052 help
Simon Glassabb9cd32020-10-03 11:31:26 -060053 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
59config 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 Glass91a91ff2015-02-05 21:41:36 -070065 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 Glassabb9cd32020-10-03 11:31:26 -060067
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 Glass91a91ff2015-02-05 21:41:36 -070071
Masahiro Yamadaceb91902017-09-29 12:31:20 +090072config 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 Glass91a91ff2015-02-05 21:41:36 -070078config DM_DEVICE_REMOVE
79 bool "Support device removal"
Masahiro Yamadad6489642015-02-24 22:26:21 +090080 depends on DM
81 default y
Simon Glass91a91ff2015-02-05 21:41:36 -070082 help
83 We can save some code space by dropping support for removing a
Jean-Jacques Hiblot85e51be2018-12-07 14:50:53 +010084 device.
Simon Glass91a91ff2015-02-05 21:41:36 -070085
Hans de Goedee5c45642015-07-01 20:52:59 +020086 Note that this may have undesirable results in the USB subsystem as
87 it causes unplugged devices to linger around in the dm-tree, and it
88 causes USB host controllers to not be stopped when booting the OS.
89
Simon Glass5b896ed2022-03-04 08:43:03 -070090config DM_EVENT
91 bool "Support events with driver model"
92 depends on DM
93 imply EVENT
94 default y if SANDBOX
95 help
96 This enables support for generating events related to driver model
97 operations, such as prbing or removing a device. Subsystems can
98 register a 'spy' function that is called when the event occurs.
99
Jean-Jacques Hiblot85e51be2018-12-07 14:50:53 +0100100config SPL_DM_DEVICE_REMOVE
101 bool "Support device removal in SPL"
102 depends on SPL_DM
Jean-Jacques Hiblot85e51be2018-12-07 14:50:53 +0100103 help
104 We can save some code space by dropping support for removing a
105 device. This is not normally required in SPL, so by default this
106 option is disabled for SPL.
107
Simon Glass91a91ff2015-02-05 21:41:36 -0700108config DM_STDIO
109 bool "Support stdio registration"
Masahiro Yamadad6489642015-02-24 22:26:21 +0900110 depends on DM
111 default y
Simon Glass91a91ff2015-02-05 21:41:36 -0700112 help
113 Normally serial drivers register with stdio so that they can be used
114 as normal output devices. In SPL we don't normally use stdio, so
115 we can omit this feature.
Simon Glass36fa61d2015-02-27 22:06:30 -0700116
117config DM_SEQ_ALIAS
118 bool "Support numbered aliases in device tree"
119 depends on DM
120 default y
121 help
122 Most boards will have a '/aliases' node containing the path to
123 numbered devices (e.g. serial0 = &serial0). This feature can be
Nathan Rossi4f627c52016-01-08 03:00:45 +1000124 disabled if it is not required.
125
126config SPL_DM_SEQ_ALIAS
127 bool "Support numbered aliases in device tree in SPL"
Adam Forda0746672019-08-24 13:50:34 -0500128 depends on SPL_DM
Nathan Rossi4f627c52016-01-08 03:00:45 +1000129 help
130 Most boards will have a '/aliases' node containing the path to
131 numbered devices (e.g. serial0 = &serial0). This feature can be
Simon Glass36fa61d2015-02-27 22:06:30 -0700132 disabled if it is not required, to save code space in SPL.
Simon Glass12dc8e72015-07-17 09:22:07 -0600133
Simon Glass747093d2022-04-30 00:56:53 -0600134config VPL_DM_SEQ_ALIAS
135 bool "Support numbered aliases in device tree in VPL"
136 depends on VPL_DM
137 default y
138 help
139 Most boards will have a '/aliases' node containing the path to
140 numbered devices (e.g. serial0 = &serial0). This feature can be
141 disabled if it is not required, to save code space in VPL.
142
Simon Glassec1add12020-12-16 17:25:06 -0700143config SPL_DM_INLINE_OFNODE
144 bool "Inline some ofnode functions which are seldom used in SPL"
145 depends on SPL_DM
146 default y
147 help
148 This applies to several ofnode functions (see ofnode.h) which are
149 seldom used. Inlining them can help reduce code size.
150
151config TPL_DM_INLINE_OFNODE
152 bool "Inline some ofnode functions which are seldom used in TPL"
153 depends on TPL_DM
154 default y
155 help
156 This applies to several ofnode functions (see ofnode.h) which are
157 seldom used. Inlining them can help reduce code size.
158
Nicolas Saenz Julienne4abf68d2021-01-12 13:55:24 +0100159config DM_DMA
160 bool "Support per-device DMA constraints"
161 depends on DM
Nicolas Saenz Julienne4abf68d2021-01-12 13:55:24 +0100162 help
163 Enable this to extract per-device DMA constraints, only supported on
164 device-tree systems for now. This is needed in order translate
165 addresses on systems where different buses have different views of
166 the physical address space.
167
Simon Glass12dc8e72015-07-17 09:22:07 -0600168config REGMAP
169 bool "Support register maps"
170 depends on DM
171 help
172 Hardware peripherals tend to have one or more sets of registers
173 which can be accessed to control the hardware. A register map
174 models this with a simple read/write interface. It can in principle
175 support any bus type (I2C, SPI) but so far this only supports
176 direct memory access.
177
huang lin41c7f662015-11-17 14:20:13 +0800178config SPL_REGMAP
179 bool "Support register maps in SPL"
Philipp Tomsich9c447372017-06-29 01:37:10 +0200180 depends on SPL_DM
huang lin41c7f662015-11-17 14:20:13 +0800181 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
Philipp Tomsichc6ac6c12017-06-29 01:38:49 +0200188config TPL_REGMAP
189 bool "Support register maps in TPL"
190 depends on TPL_DM
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
Simon Glass747093d2022-04-30 00:56:53 -0600198config VPL_REGMAP
199 bool "Support register maps in VPL"
200 depends on VPL_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 Glass12dc8e72015-07-17 09:22:07 -0600208config SYSCON
209 bool "Support system controllers"
210 depends on REGMAP
211 help
212 Many SoCs have a number of system controllers which are dealt with
213 as a group by a single driver. Some common functionality is provided
214 by this uclass, including accessing registers via regmap and
215 assigning a unique number to each.
Masahiro Yamada608f26c2015-07-25 21:52:35 +0900216
huang lin41c7f662015-11-17 14:20:13 +0800217config SPL_SYSCON
218 bool "Support system controllers in SPL"
Philipp Tomsich9c447372017-06-29 01:37:10 +0200219 depends on SPL_REGMAP
huang lin41c7f662015-11-17 14:20:13 +0800220 help
221 Many SoCs have a number of system controllers which are dealt with
222 as a group by a single driver. Some common functionality is provided
223 by this uclass, including accessing registers via regmap and
224 assigning a unique number to each.
225
Philipp Tomsichc6ac6c12017-06-29 01:38:49 +0200226config TPL_SYSCON
227 bool "Support system controllers in TPL"
Simon Glass747093d2022-04-30 00:56:53 -0600228 depends on SPL_REGMAP
229 help
230 Many SoCs have a number of system controllers which are dealt with
231 as a group by a single driver. Some common functionality is provided
232 by this uclass, including accessing registers via regmap and
233 assigning a unique number to each.
234
235config VPL_SYSCON
236 bool "Support system controllers in VPL"
237 depends on VPL_REGMAP
Philipp Tomsichc6ac6c12017-06-29 01:38:49 +0200238 help
239 Many SoCs have a number of system controllers which are dealt with
240 as a group by a single driver. Some common functionality is provided
241 by this uclass, including accessing registers via regmap and
242 assigning a unique number to each.
243
Masahiro Yamadae2282d72015-07-25 21:52:37 +0900244config DEVRES
245 bool "Managed device resources"
246 depends on DM
247 help
248 This option enables the Managed device resources core support.
249 Device resources managed by the devres framework are automatically
250 released whether initialization fails half-way or the device gets
251 detached.
252
253 If this option is disabled, devres functions fall back to
254 non-managed variants. For example, devres_alloc() to kzalloc(),
255 devm_kmalloc() to kmalloc(), etc.
256
Masahiro Yamada608f26c2015-07-25 21:52:35 +0900257config DEBUG_DEVRES
Masahiro Yamada40b6f2d2015-07-25 21:52:38 +0900258 bool "Managed device resources debugging functions"
Masahiro Yamadae2282d72015-07-25 21:52:37 +0900259 depends on DEVRES
Masahiro Yamada608f26c2015-07-25 21:52:35 +0900260 help
261 If this option is enabled, devres debug messages are printed.
Masahiro Yamada40b6f2d2015-07-25 21:52:38 +0900262 Also, a function is available to dump a list of device resources.
Masahiro Yamada608f26c2015-07-25 21:52:35 +0900263 Select this if you are having a problem with devres or want to
264 debug resource management for a managed device.
265
266 If you are unsure about this, Say N here.
Masahiro Yamada0b11dbf2015-07-26 02:46:26 +0900267
Marek Vasut628d7922015-08-03 01:15:48 +0200268config SIMPLE_BUS
269 bool "Support simple-bus driver"
270 depends on DM && OF_CONTROL
271 default y
272 help
273 Supports the 'simple-bus' driver, which is used on some systems.
274
275config SPL_SIMPLE_BUS
276 bool "Support simple-bus driver in SPL"
277 depends on SPL_DM && SPL_OF_CONTROL
Michal Simek8bebf032015-12-01 08:37:16 +0100278 default y
Marek Vasut628d7922015-08-03 01:15:48 +0200279 help
280 Supports the 'simple-bus' driver, which is used on some systems
281 in SPL.
282
Bin Meng80279fa2021-03-14 20:15:02 +0800283config SIMPLE_BUS_CORRECT_RANGE
284 bool "Decode the 'simple-bus' <range> by honoring the #address-cells and #size-cells"
285 depends on SIMPLE_BUS
Bin Mengea8971c2021-03-14 20:15:03 +0800286 default y if SANDBOX
Bin Meng80279fa2021-03-14 20:15:02 +0800287 help
288 Decoding the 'simple-bus' <range> by honoring the #address-cells
289 and #size-cells of parent/child bus. If unset, #address-cells of
290 parent bus is assumed to be 1, #address-cells and #size-cells of
291 child bus is also assumed to be 1, to save some spaces of using
292 an advanced API to decode the <range>, which benefits SPL image
293 builds that have size limits.
294
295 If you are unsure about this, Say N here.
296
Sean Anderson4a3390f2020-06-24 06:41:12 -0400297config SIMPLE_PM_BUS
298 bool "Support simple-pm-bus driver"
299 depends on DM && OF_CONTROL && CLK && POWER_DOMAIN
300 help
301 Supports the 'simple-pm-bus' driver, which is used for busses that
302 have power domains and/or clocks which need to be enabled before use.
303
Stefan Roeseef5cd332015-09-02 07:41:12 +0200304config OF_TRANSLATE
305 bool "Translate addresses using fdt_translate_address"
306 depends on DM && OF_CONTROL
307 default y
308 help
309 If this option is enabled, the reg property will be translated
310 using the fdt_translate_address() function. This is necessary
311 on some platforms (e.g. MVEBU) using complex "ranges"
312 properties in many nodes. As this translation is not handled
313 correctly in the default simple_bus_translate() function.
314
315 If this option is not enabled, simple_bus_translate() will be
316 used for the address translation. This function is faster and
317 smaller in size than fdt_translate_address().
318
319config SPL_OF_TRANSLATE
Stefan Roese7b98a3b2015-11-26 13:38:01 +0100320 bool "Translate addresses using fdt_translate_address in SPL"
Stefan Roeseef5cd332015-09-02 07:41:12 +0200321 depends on SPL_DM && SPL_OF_CONTROL
Stefan Roeseef5cd332015-09-02 07:41:12 +0200322 help
323 If this option is enabled, the reg property will be translated
324 using the fdt_translate_address() function. This is necessary
325 on some platforms (e.g. MVEBU) using complex "ranges"
326 properties in many nodes. As this translation is not handled
327 correctly in the default simple_bus_translate() function.
328
329 If this option is not enabled, simple_bus_translate() will be
330 used for the address translation. This function is faster and
331 smaller in size than fdt_translate_address().
332
Simon Glass747093d2022-04-30 00:56:53 -0600333config VPL_OF_TRANSLATE
334 bool "Translate addresses using fdt_translate_address in SPL"
335 depends on SPL_DM && VPL_OF_CONTROL
336 help
337 If this option is enabled, the reg property will be translated
338 using the fdt_translate_address() function. This is necessary
339 on some platforms (e.g. MVEBU) using complex "ranges"
340 properties in many nodes. As this translation is not handled
341 correctly in the default simple_bus_translate() function.
342
343 If this option is not enabled, simple_bus_translate() will be
344 used for the address translation. This function is faster and
345 smaller in size than fdt_translate_address().
346
Stefan Roesef2100f62019-04-12 16:42:28 +0200347config TRANSLATION_OFFSET
348 bool "Platforms specific translation offset"
349 depends on DM && OF_CONTROL
350 help
351 Some platforms need a special address translation. Those
352 platforms (e.g. mvebu in SPL) can configure a translation
353 offset by enabling this option and setting the translation_offset
354 variable in the GD in their platform- / board-specific code.
355
Paul Burton0a222d52016-05-17 07:43:24 +0100356config OF_ISA_BUS
357 bool
358 depends on OF_TRANSLATE
359 help
360 Is this option is enabled then support for the ISA bus will
361 be included for addresses read from DT. This is something that
362 should be known to be required or not based upon the board
Chris Packham83e7a4d2019-01-13 22:13:24 +1300363 being targeted, and whether or not it makes use of an ISA bus.
Paul Burton0a222d52016-05-17 07:43:24 +0100364
365 The bus is matched based upon its node name equalling "isa". The
366 busses #address-cells should equal 2, with the first cell being
367 used to hold flags & flag 0x1 indicating that the address range
368 should be accessed using I/O port in/out accessors. The second
369 cell holds the offset into ISA bus address space. The #size-cells
370 property should equal 1, and of course holds the size of the
371 address range used by a device.
372
373 If this option is not enabled then support for the ISA bus is
374 not included and any such busses used in DT will be treated as
375 typical simple-bus compatible busses. This will lead to
376 mistranslation of device addresses, so ensure that this is
377 enabled if your board does include an ISA bus.
378
Simon Glassf11c7ab2017-05-18 20:09:03 -0600379config DM_DEV_READ_INLINE
380 bool
381 default y if !OF_LIVE
382
Simon Glass7ca28502020-04-09 10:27:38 -0600383config ACPIGEN
384 bool "Support ACPI table generation in driver model"
Simon Glassd40d2c52020-07-16 21:22:39 -0600385 default y if SANDBOX || (GENERATE_ACPI_TABLE && !QEMU)
Simon Glass8b6ee242021-07-02 12:36:15 -0600386 select LIB_UUID
Simon Glass7ca28502020-04-09 10:27:38 -0600387 help
388 This option enables generation of ACPI tables using driver-model
389 devices. It adds a new operation struct to each driver, to support
390 things like generating device-specific tables and returning the ACPI
391 name of a device.
392
Simon Glassd472d822020-09-10 20:21:25 -0600393config BOUNCE_BUFFER
394 bool "Include bounce buffer API"
395 help
396 Some peripherals support DMA from a subset of physically
397 addressable memory only. To support such peripherals, the
398 bounce buffer API uses a temporary buffer: it copies data
399 to/from DMA regions while managing cache operations.
400
401 A second possible use of bounce buffers is their ability to
402 provide aligned buffers for DMA operations.
403
Masahiro Yamada0b11dbf2015-07-26 02:46:26 +0900404endmenu