blob: 9b9a7148a1a48457c9d0996a7461f484ff41221e [file] [log] [blame]
Masahiro Yamadacc85b7b2015-07-26 02:46:26 +09001menu "Generic Driver Options"
2
Masahiro Yamada57ad8ee2014-10-23 22:26:09 +09003config DM
4 bool "Enable Driver Model"
Masahiro Yamada57ad8ee2014-10-23 22:26:09 +09005 help
Simon Glassd8b771d2015-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 Glass93e414d2015-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,
Tom Rinie7d67a42022-05-20 12:36:05 -040018 consider using CONFIG_SPL_SYS_MALLOC_SIMPLE. In that case you
Andy Yan1fa20e4d2017-07-24 17:43:34 +080019 must provide CONFIG_SPL_SYS_MALLOC_F_LEN to set the size.
Simon Glass93e414d2015-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 Yan1fa20e4d2017-07-24 17:43:34 +080022 CONFIG_SPL_SYS_MALLOC_F_LEN for more details on how to enable it.
Simon Glass93e414d2015-02-05 21:41:36 -070023
Simon Glassc833c002017-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,
Tom Rinie7d67a42022-05-20 12:36:05 -040031 consider using CONFIG_TPL_SYS_MALLOC_SIMPLE. In that case you
Andy Yan1fa20e4d2017-07-24 17:43:34 +080032 must provide CONFIG_SPL_SYS_MALLOC_F_LEN to set the size.
Simon Glassc833c002017-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 Yan1fa20e4d2017-07-24 17:43:34 +080035 CONFIG_SPL_SYS_MALLOC_F_LEN for more details on how to enable it.
Simon Glassc833c002017-04-02 09:50:31 -060036 Disable this for very small implementations.
37
Simon Glasse7ca7da2022-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,
Tom Rinie7d67a42022-05-20 12:36:05 -040046 consider using CONFIG_SPL_SYS_MALLOC_SIMPLE.
Simon Glasse7ca7da2022-04-30 00:56:53 -060047
Simon Glass93e414d2015-02-05 21:41:36 -070048config DM_WARN
49 bool "Enable warnings in driver model"
Masahiro Yamadacfc2f7d2015-02-24 22:26:21 +090050 depends on DM
51 default y
Simon Glass93e414d2015-02-05 21:41:36 -070052 help
Simon Glass85bf4f22020-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 Glass93e414d2015-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 Glass85bf4f22020-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 Glass93e414d2015-02-05 21:41:36 -070071
Masahiro Yamadaf70f39f2017-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 Glass93e414d2015-02-05 21:41:36 -070078config DM_DEVICE_REMOVE
79 bool "Support device removal"
Masahiro Yamadacfc2f7d2015-02-24 22:26:21 +090080 depends on DM
81 default y
Simon Glass93e414d2015-02-05 21:41:36 -070082 help
83 We can save some code space by dropping support for removing a
Jean-Jacques Hiblot00b29882018-12-07 14:50:53 +010084 device.
Simon Glass93e414d2015-02-05 21:41:36 -070085
Hans de Goede246ba262015-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 Glass3ee337a2022-03-04 08:43:03 -070090config DM_EVENT
91 bool "Support events with driver model"
Heinrich Schuchardtc95a50e2022-05-07 22:39:01 +020092 depends on DM && EVENT
Simon Glass3ee337a2022-03-04 08:43:03 -070093 default y if SANDBOX
94 help
95 This enables support for generating events related to driver model
96 operations, such as prbing or removing a device. Subsystems can
97 register a 'spy' function that is called when the event occurs.
98
Jean-Jacques Hiblot00b29882018-12-07 14:50:53 +010099config SPL_DM_DEVICE_REMOVE
100 bool "Support device removal in SPL"
101 depends on SPL_DM
Jean-Jacques Hiblot00b29882018-12-07 14:50:53 +0100102 help
103 We can save some code space by dropping support for removing a
104 device. This is not normally required in SPL, so by default this
105 option is disabled for SPL.
106
Simon Glass93e414d2015-02-05 21:41:36 -0700107config DM_STDIO
108 bool "Support stdio registration"
Masahiro Yamadacfc2f7d2015-02-24 22:26:21 +0900109 depends on DM
110 default y
Simon Glass93e414d2015-02-05 21:41:36 -0700111 help
112 Normally serial drivers register with stdio so that they can be used
113 as normal output devices. In SPL we don't normally use stdio, so
114 we can omit this feature.
Simon Glass1bd3deb2015-02-27 22:06:30 -0700115
116config DM_SEQ_ALIAS
117 bool "Support numbered aliases in device tree"
118 depends on DM
119 default y
120 help
121 Most boards will have a '/aliases' node containing the path to
122 numbered devices (e.g. serial0 = &serial0). This feature can be
Nathan Rossi7fa6ff42016-01-08 03:00:45 +1000123 disabled if it is not required.
124
125config SPL_DM_SEQ_ALIAS
126 bool "Support numbered aliases in device tree in SPL"
Adam Fordac4d80e2019-08-24 13:50:34 -0500127 depends on SPL_DM
Nathan Rossi7fa6ff42016-01-08 03:00:45 +1000128 help
129 Most boards will have a '/aliases' node containing the path to
130 numbered devices (e.g. serial0 = &serial0). This feature can be
Simon Glass1bd3deb2015-02-27 22:06:30 -0700131 disabled if it is not required, to save code space in SPL.
Simon Glass8e5efa02015-07-17 09:22:07 -0600132
Simon Glasse7ca7da2022-04-30 00:56:53 -0600133config VPL_DM_SEQ_ALIAS
134 bool "Support numbered aliases in device tree in VPL"
135 depends on VPL_DM
136 default y
137 help
138 Most boards will have a '/aliases' node containing the path to
139 numbered devices (e.g. serial0 = &serial0). This feature can be
140 disabled if it is not required, to save code space in VPL.
141
Simon Glass39f1d282020-12-16 17:25:06 -0700142config SPL_DM_INLINE_OFNODE
143 bool "Inline some ofnode functions which are seldom used in SPL"
144 depends on SPL_DM
145 default y
146 help
147 This applies to several ofnode functions (see ofnode.h) which are
148 seldom used. Inlining them can help reduce code size.
149
150config TPL_DM_INLINE_OFNODE
151 bool "Inline some ofnode functions which are seldom used in TPL"
152 depends on TPL_DM
153 default y
154 help
155 This applies to several ofnode functions (see ofnode.h) which are
156 seldom used. Inlining them can help reduce code size.
157
Nicolas Saenz Juliennea2c7ead2021-01-12 13:55:24 +0100158config DM_DMA
159 bool "Support per-device DMA constraints"
160 depends on DM
Nicolas Saenz Juliennea2c7ead2021-01-12 13:55:24 +0100161 help
162 Enable this to extract per-device DMA constraints, only supported on
163 device-tree systems for now. This is needed in order translate
164 addresses on systems where different buses have different views of
165 the physical address space.
166
Simon Glass8e5efa02015-07-17 09:22:07 -0600167config REGMAP
168 bool "Support register maps"
169 depends on DM
170 help
171 Hardware peripherals tend to have one or more sets of registers
172 which can be accessed to control the hardware. A register map
173 models this with a simple read/write interface. It can in principle
174 support any bus type (I2C, SPI) but so far this only supports
175 direct memory access.
176
huang lindd8515e2015-11-17 14:20:13 +0800177config SPL_REGMAP
178 bool "Support register maps in SPL"
Philipp Tomsichcdda3492017-06-29 01:37:10 +0200179 depends on SPL_DM
huang lindd8515e2015-11-17 14:20:13 +0800180 help
181 Hardware peripherals tend to have one or more sets of registers
182 which can be accessed to control the hardware. A register map
183 models this with a simple read/write interface. It can in principle
184 support any bus type (I2C, SPI) but so far this only supports
185 direct memory access.
186
Philipp Tomsich03cdf692017-06-29 01:38:49 +0200187config TPL_REGMAP
188 bool "Support register maps in TPL"
189 depends on TPL_DM
190 help
191 Hardware peripherals tend to have one or more sets of registers
192 which can be accessed to control the hardware. A register map
193 models this with a simple read/write interface. It can in principle
194 support any bus type (I2C, SPI) but so far this only supports
195 direct memory access.
196
Simon Glasse7ca7da2022-04-30 00:56:53 -0600197config VPL_REGMAP
198 bool "Support register maps in VPL"
199 depends on VPL_DM
200 help
201 Hardware peripherals tend to have one or more sets of registers
202 which can be accessed to control the hardware. A register map
203 models this with a simple read/write interface. It can in principle
204 support any bus type (I2C, SPI) but so far this only supports
205 direct memory access.
206
Simon Glass8e5efa02015-07-17 09:22:07 -0600207config SYSCON
208 bool "Support system controllers"
209 depends on REGMAP
210 help
211 Many SoCs have a number of system controllers which are dealt with
212 as a group by a single driver. Some common functionality is provided
213 by this uclass, including accessing registers via regmap and
214 assigning a unique number to each.
Masahiro Yamada8b15b162015-07-25 21:52:35 +0900215
huang lindd8515e2015-11-17 14:20:13 +0800216config SPL_SYSCON
217 bool "Support system controllers in SPL"
Philipp Tomsichcdda3492017-06-29 01:37:10 +0200218 depends on SPL_REGMAP
huang lindd8515e2015-11-17 14:20:13 +0800219 help
220 Many SoCs have a number of system controllers which are dealt with
221 as a group by a single driver. Some common functionality is provided
222 by this uclass, including accessing registers via regmap and
223 assigning a unique number to each.
224
Philipp Tomsich03cdf692017-06-29 01:38:49 +0200225config TPL_SYSCON
226 bool "Support system controllers in TPL"
Simon Glasse7ca7da2022-04-30 00:56:53 -0600227 depends on SPL_REGMAP
Philipp Tomsich03cdf692017-06-29 01:38:49 +0200228 help
229 Many SoCs have a number of system controllers which are dealt with
230 as a group by a single driver. Some common functionality is provided
231 by this uclass, including accessing registers via regmap and
232 assigning a unique number to each.
233
Simon Glasse7ca7da2022-04-30 00:56:53 -0600234config VPL_SYSCON
235 bool "Support system controllers in VPL"
236 depends on VPL_REGMAP
237 help
238 Many SoCs have a number of system controllers which are dealt with
239 as a group by a single driver. Some common functionality is provided
240 by this uclass, including accessing registers via regmap and
241 assigning a unique number to each.
242
Masahiro Yamada029bfca2015-07-25 21:52:37 +0900243config DEVRES
244 bool "Managed device resources"
245 depends on DM
246 help
247 This option enables the Managed device resources core support.
248 Device resources managed by the devres framework are automatically
249 released whether initialization fails half-way or the device gets
250 detached.
251
252 If this option is disabled, devres functions fall back to
253 non-managed variants. For example, devres_alloc() to kzalloc(),
254 devm_kmalloc() to kmalloc(), etc.
255
Masahiro Yamada8b15b162015-07-25 21:52:35 +0900256config DEBUG_DEVRES
Masahiro Yamadaf929c0b2015-07-25 21:52:38 +0900257 bool "Managed device resources debugging functions"
Masahiro Yamada029bfca2015-07-25 21:52:37 +0900258 depends on DEVRES
Masahiro Yamada8b15b162015-07-25 21:52:35 +0900259 help
260 If this option is enabled, devres debug messages are printed.
Masahiro Yamadaf929c0b2015-07-25 21:52:38 +0900261 Also, a function is available to dump a list of device resources.
Masahiro Yamada8b15b162015-07-25 21:52:35 +0900262 Select this if you are having a problem with devres or want to
263 debug resource management for a managed device.
264
265 If you are unsure about this, Say N here.
Masahiro Yamadacc85b7b2015-07-26 02:46:26 +0900266
Marek Vasut298e6082015-08-03 01:15:48 +0200267config SIMPLE_BUS
268 bool "Support simple-bus driver"
269 depends on DM && OF_CONTROL
270 default y
271 help
272 Supports the 'simple-bus' driver, which is used on some systems.
273
274config SPL_SIMPLE_BUS
275 bool "Support simple-bus driver in SPL"
276 depends on SPL_DM && SPL_OF_CONTROL
Michal Simekb32467f2015-12-01 08:37:16 +0100277 default y
Marek Vasut298e6082015-08-03 01:15:48 +0200278 help
279 Supports the 'simple-bus' driver, which is used on some systems
280 in SPL.
281
Bin Meng1a43b232021-03-14 20:15:02 +0800282config SIMPLE_BUS_CORRECT_RANGE
283 bool "Decode the 'simple-bus' <range> by honoring the #address-cells and #size-cells"
284 depends on SIMPLE_BUS
Bin Meng524a92c2021-03-14 20:15:03 +0800285 default y if SANDBOX
Bin Meng1a43b232021-03-14 20:15:02 +0800286 help
287 Decoding the 'simple-bus' <range> by honoring the #address-cells
288 and #size-cells of parent/child bus. If unset, #address-cells of
289 parent bus is assumed to be 1, #address-cells and #size-cells of
290 child bus is also assumed to be 1, to save some spaces of using
291 an advanced API to decode the <range>, which benefits SPL image
292 builds that have size limits.
293
294 If you are unsure about this, Say N here.
295
Sean Andersonb7860542020-06-24 06:41:12 -0400296config SIMPLE_PM_BUS
297 bool "Support simple-pm-bus driver"
298 depends on DM && OF_CONTROL && CLK && POWER_DOMAIN
299 help
300 Supports the 'simple-pm-bus' driver, which is used for busses that
301 have power domains and/or clocks which need to be enabled before use.
302
Stefan Roeseadc09052015-09-02 07:41:12 +0200303config OF_TRANSLATE
304 bool "Translate addresses using fdt_translate_address"
305 depends on DM && OF_CONTROL
306 default y
307 help
308 If this option is enabled, the reg property will be translated
309 using the fdt_translate_address() function. This is necessary
310 on some platforms (e.g. MVEBU) using complex "ranges"
311 properties in many nodes. As this translation is not handled
312 correctly in the default simple_bus_translate() function.
313
314 If this option is not enabled, simple_bus_translate() will be
315 used for the address translation. This function is faster and
316 smaller in size than fdt_translate_address().
317
318config SPL_OF_TRANSLATE
Stefan Roesef05eeb22015-11-26 13:38:01 +0100319 bool "Translate addresses using fdt_translate_address in SPL"
Stefan Roeseadc09052015-09-02 07:41:12 +0200320 depends on SPL_DM && SPL_OF_CONTROL
Stefan Roeseadc09052015-09-02 07:41:12 +0200321 help
322 If this option is enabled, the reg property will be translated
323 using the fdt_translate_address() function. This is necessary
324 on some platforms (e.g. MVEBU) using complex "ranges"
325 properties in many nodes. As this translation is not handled
326 correctly in the default simple_bus_translate() function.
327
328 If this option is not enabled, simple_bus_translate() will be
329 used for the address translation. This function is faster and
330 smaller in size than fdt_translate_address().
331
Simon Glasse7ca7da2022-04-30 00:56:53 -0600332config VPL_OF_TRANSLATE
333 bool "Translate addresses using fdt_translate_address in SPL"
334 depends on SPL_DM && VPL_OF_CONTROL
335 help
336 If this option is enabled, the reg property will be translated
337 using the fdt_translate_address() function. This is necessary
338 on some platforms (e.g. MVEBU) using complex "ranges"
339 properties in many nodes. As this translation is not handled
340 correctly in the default simple_bus_translate() function.
341
342 If this option is not enabled, simple_bus_translate() will be
343 used for the address translation. This function is faster and
344 smaller in size than fdt_translate_address().
345
Stefan Roese85bddff2019-04-12 16:42:28 +0200346config TRANSLATION_OFFSET
347 bool "Platforms specific translation offset"
348 depends on DM && OF_CONTROL
349 help
350 Some platforms need a special address translation. Those
351 platforms (e.g. mvebu in SPL) can configure a translation
352 offset by enabling this option and setting the translation_offset
353 variable in the GD in their platform- / board-specific code.
354
Paul Burtondbef2f02016-05-17 07:43:24 +0100355config OF_ISA_BUS
356 bool
357 depends on OF_TRANSLATE
358 help
359 Is this option is enabled then support for the ISA bus will
360 be included for addresses read from DT. This is something that
361 should be known to be required or not based upon the board
Chris Packham3b6b4622019-01-13 22:13:24 +1300362 being targeted, and whether or not it makes use of an ISA bus.
Paul Burtondbef2f02016-05-17 07:43:24 +0100363
364 The bus is matched based upon its node name equalling "isa". The
365 busses #address-cells should equal 2, with the first cell being
366 used to hold flags & flag 0x1 indicating that the address range
367 should be accessed using I/O port in/out accessors. The second
368 cell holds the offset into ISA bus address space. The #size-cells
369 property should equal 1, and of course holds the size of the
370 address range used by a device.
371
372 If this option is not enabled then support for the ISA bus is
373 not included and any such busses used in DT will be treated as
374 typical simple-bus compatible busses. This will lead to
375 mistranslation of device addresses, so ensure that this is
376 enabled if your board does include an ISA bus.
377
Simon Glass34ef0c22017-05-18 20:09:03 -0600378config DM_DEV_READ_INLINE
379 bool
380 default y if !OF_LIVE
381
Simon Glass9fb9e9b2020-04-09 10:27:38 -0600382config ACPIGEN
383 bool "Support ACPI table generation in driver model"
Simon Glass55f3cde2020-07-16 21:22:39 -0600384 default y if SANDBOX || (GENERATE_ACPI_TABLE && !QEMU)
Simon Glass335fe512021-07-02 12:36:15 -0600385 select LIB_UUID
Simon Glass9fb9e9b2020-04-09 10:27:38 -0600386 help
387 This option enables generation of ACPI tables using driver-model
388 devices. It adds a new operation struct to each driver, to support
389 things like generating device-specific tables and returning the ACPI
390 name of a device.
391
Simon Glass5f78ee72020-09-10 20:21:25 -0600392config BOUNCE_BUFFER
393 bool "Include bounce buffer API"
394 help
395 Some peripherals support DMA from a subset of physically
396 addressable memory only. To support such peripherals, the
397 bounce buffer API uses a temporary buffer: it copies data
398 to/from DMA regions while managing cache operations.
399
400 A second possible use of bounce buffers is their ability to
401 provide aligned buffers for DMA operations.
402
Masahiro Yamadacc85b7b2015-07-26 02:46:26 +0900403endmenu