blob: 6b4330fe4ea3e3697cddbbb490a81dcb84c33337 [file] [log] [blame]
Masahiro Yamadacc85b7b2015-07-26 02:46:26 +09001menu "Generic Driver Options"
2
Masahiro Yamada57ad8ee2014-10-23 22:26:09 +09003config DM
Tom Rinid7191992022-10-14 07:50:19 -04004 def_bool y
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
Simon Glass67e3fca2023-09-26 08:14:16 -060017 full malloc() enabled by CFG_SPL_SYS_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
Oleksandr Suvorov736fb232022-07-13 19:42:49 +030021 and devices in SPL, so 1KB should be enough. 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
Simon Glassfba10872023-09-26 08:14:30 -060030 full malloc() enabled by CFG_TPL_SYS_MALLOC_START,
Tom Rinie7d67a42022-05-20 12:36:05 -040031 consider using CONFIG_TPL_SYS_MALLOC_SIMPLE. In that case you
Simon Glassfba10872023-09-26 08:14:30 -060032 must provide CONFIG_TPL_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
Simon Glassfba10872023-09-26 08:14:30 -060034 and devices in TPL, so 1KB should be enough. See
35 CONFIG_TPL_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
Simon Glassfba10872023-09-26 08:14:30 -060045 full malloc() enabled by CFG_TPL_SYS_MALLOC_START,
46 consider using CONFIG_TPL_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
Simon Glass93e414d2015-02-05 21:41:36 -070051 help
Simon Glass85bf4f22020-10-03 11:31:26 -060052 Enable this to see warnings related to driver model.
53
54 Warnings may help with debugging, such as when expected devices do
55 not bind correctly. If the option is disabled, dm_warn() is compiled
56 out - it will do nothing when called.
57
58config SPL_DM_WARN
Quentin Schulza51a69b2024-06-11 15:04:27 +020059 bool "Enable warnings in driver model in SPL"
Simon Glass85bf4f22020-10-03 11:31:26 -060060 depends on SPL_DM
61 help
62 Enable this to see warnings related to driver model in SPL
63
Simon Glass93e414d2015-02-05 21:41:36 -070064 The dm_warn() function can use up quite a bit of space for its
65 strings. By default this is disabled for SPL builds to save space.
Simon Glass85bf4f22020-10-03 11:31:26 -060066
67 Warnings may help with debugging, such as when expected devices do
68 not bind correctly. If the option is disabled, dm_warn() is compiled
69 out - it will do nothing when called.
Simon Glass93e414d2015-02-05 21:41:36 -070070
Masahiro Yamadaf70f39f2017-09-29 12:31:20 +090071config DM_DEBUG
72 bool "Enable debug messages in driver model core"
73 depends on DM
74 help
75 Say Y here if you want to compile in debug messages in DM core.
76
Simon Glassc8b5e222022-05-08 04:39:26 -060077config DM_STATS
78 bool "Collect and show driver model stats"
79 depends on DM
80 default y if SANDBOX
81 help
82 Enable this to collect and display memory statistics about driver
83 model. This can help to figure out where all the memory is going and
84 to find optimisations.
85
86 To display the memory stats, use the 'dm mem' command.
87
Simon Glass099dc1f2022-05-08 04:39:27 -060088config SPL_DM_STATS
89 bool "Collect and show driver model stats in SPL"
Simon Glass0ccddec2023-11-12 13:03:46 -070090 depends on SPL_DM
Simon Glass099dc1f2022-05-08 04:39:27 -060091 help
92 Enable this to collect and display memory statistics about driver
93 model. This can help to figure out where all the memory is going and
94 to find optimisations.
95
96 The stats are displayed just before SPL boots to the next phase.
97
Simon Glass93e414d2015-02-05 21:41:36 -070098config DM_DEVICE_REMOVE
99 bool "Support device removal"
Masahiro Yamadacfc2f7d2015-02-24 22:26:21 +0900100 depends on DM
101 default y
Simon Glass93e414d2015-02-05 21:41:36 -0700102 help
103 We can save some code space by dropping support for removing a
Jean-Jacques Hiblot00b29882018-12-07 14:50:53 +0100104 device.
Simon Glass93e414d2015-02-05 21:41:36 -0700105
Hans de Goede246ba262015-07-01 20:52:59 +0200106 Note that this may have undesirable results in the USB subsystem as
107 it causes unplugged devices to linger around in the dm-tree, and it
108 causes USB host controllers to not be stopped when booting the OS.
109
Simon Glass3ee337a2022-03-04 08:43:03 -0700110config DM_EVENT
Tom Rini7d3684a2023-01-16 15:46:49 -0500111 bool
112 depends on DM
113 select EVENT
Simon Glass3ee337a2022-03-04 08:43:03 -0700114 help
115 This enables support for generating events related to driver model
Heinrich Schuchardtb14f8842024-06-08 06:12:44 +0200116 operations, such as probing or removing a device. Subsystems can
Tom Rini7d3684a2023-01-16 15:46:49 -0500117 register a 'spy' function that is called when the event occurs. Such
118 subsystems must select this option.
Simon Glass3ee337a2022-03-04 08:43:03 -0700119
Jean-Jacques Hiblot00b29882018-12-07 14:50:53 +0100120config SPL_DM_DEVICE_REMOVE
121 bool "Support device removal in SPL"
122 depends on SPL_DM
Jean-Jacques Hiblot00b29882018-12-07 14:50:53 +0100123 help
124 We can save some code space by dropping support for removing a
125 device. This is not normally required in SPL, so by default this
126 option is disabled for SPL.
127
Simon Glass93e414d2015-02-05 21:41:36 -0700128config DM_STDIO
129 bool "Support stdio registration"
Masahiro Yamadacfc2f7d2015-02-24 22:26:21 +0900130 depends on DM
131 default y
Simon Glass93e414d2015-02-05 21:41:36 -0700132 help
133 Normally serial drivers register with stdio so that they can be used
134 as normal output devices. In SPL we don't normally use stdio, so
135 we can omit this feature.
Simon Glass1bd3deb2015-02-27 22:06:30 -0700136
137config DM_SEQ_ALIAS
138 bool "Support numbered aliases in device tree"
139 depends on DM
140 default y
141 help
142 Most boards will have a '/aliases' node containing the path to
143 numbered devices (e.g. serial0 = &serial0). This feature can be
Nathan Rossi7fa6ff42016-01-08 03:00:45 +1000144 disabled if it is not required.
145
146config SPL_DM_SEQ_ALIAS
147 bool "Support numbered aliases in device tree in SPL"
Adam Fordac4d80e2019-08-24 13:50:34 -0500148 depends on SPL_DM
Gaskell, Olivered7bbe72024-08-19 09:43:52 +0000149 select SPL_STRTO
Nathan Rossi7fa6ff42016-01-08 03:00:45 +1000150 help
151 Most boards will have a '/aliases' node containing the path to
152 numbered devices (e.g. serial0 = &serial0). This feature can be
Simon Glass1bd3deb2015-02-27 22:06:30 -0700153 disabled if it is not required, to save code space in SPL.
Simon Glass8e5efa02015-07-17 09:22:07 -0600154
Simon Glassa70253d2024-09-20 09:24:30 +0200155config TPL_DM_SEQ_ALIAS
156 bool "Support numbered aliases in device tree in TPL"
157 depends on TPL_DM
158 help
159 Most boards will have a '/aliases' node containing the path to
160 numbered devices (e.g. serial0 = &serial0). This feature can be
161 disabled if it is not required, to save code space in SPL.
162
Simon Glasse7ca7da2022-04-30 00:56:53 -0600163config VPL_DM_SEQ_ALIAS
164 bool "Support numbered aliases in device tree in VPL"
165 depends on VPL_DM
166 default y
167 help
168 Most boards will have a '/aliases' node containing the path to
169 numbered devices (e.g. serial0 = &serial0). This feature can be
170 disabled if it is not required, to save code space in VPL.
171
Simon Glass39f1d282020-12-16 17:25:06 -0700172config SPL_DM_INLINE_OFNODE
173 bool "Inline some ofnode functions which are seldom used in SPL"
174 depends on SPL_DM
175 default y
176 help
177 This applies to several ofnode functions (see ofnode.h) which are
178 seldom used. Inlining them can help reduce code size.
179
180config TPL_DM_INLINE_OFNODE
181 bool "Inline some ofnode functions which are seldom used in TPL"
182 depends on TPL_DM
183 default y
184 help
185 This applies to several ofnode functions (see ofnode.h) which are
186 seldom used. Inlining them can help reduce code size.
187
Nicolas Saenz Juliennea2c7ead2021-01-12 13:55:24 +0100188config DM_DMA
189 bool "Support per-device DMA constraints"
190 depends on DM
Nicolas Saenz Juliennea2c7ead2021-01-12 13:55:24 +0100191 help
192 Enable this to extract per-device DMA constraints, only supported on
193 device-tree systems for now. This is needed in order translate
194 addresses on systems where different buses have different views of
195 the physical address space.
196
Simon Glass8e5efa02015-07-17 09:22:07 -0600197config REGMAP
198 bool "Support register maps"
199 depends on 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
huang lindd8515e2015-11-17 14:20:13 +0800207config SPL_REGMAP
208 bool "Support register maps in SPL"
Philipp Tomsichcdda3492017-06-29 01:37:10 +0200209 depends on SPL_DM
huang lindd8515e2015-11-17 14:20:13 +0800210 help
211 Hardware peripherals tend to have one or more sets of registers
212 which can be accessed to control the hardware. A register map
213 models this with a simple read/write interface. It can in principle
214 support any bus type (I2C, SPI) but so far this only supports
215 direct memory access.
216
Philipp Tomsich03cdf692017-06-29 01:38:49 +0200217config TPL_REGMAP
218 bool "Support register maps in TPL"
219 depends on TPL_DM
220 help
221 Hardware peripherals tend to have one or more sets of registers
222 which can be accessed to control the hardware. A register map
223 models this with a simple read/write interface. It can in principle
224 support any bus type (I2C, SPI) but so far this only supports
225 direct memory access.
226
Simon Glasse7ca7da2022-04-30 00:56:53 -0600227config VPL_REGMAP
228 bool "Support register maps in VPL"
229 depends on VPL_DM
230 help
231 Hardware peripherals tend to have one or more sets of registers
232 which can be accessed to control the hardware. A register map
233 models this with a simple read/write interface. It can in principle
234 support any bus type (I2C, SPI) but so far this only supports
235 direct memory access.
236
Simon Glass8e5efa02015-07-17 09:22:07 -0600237config SYSCON
238 bool "Support system controllers"
239 depends on REGMAP
240 help
241 Many SoCs have a number of system controllers which are dealt with
242 as a group by a single driver. Some common functionality is provided
243 by this uclass, including accessing registers via regmap and
244 assigning a unique number to each.
Masahiro Yamada8b15b162015-07-25 21:52:35 +0900245
huang lindd8515e2015-11-17 14:20:13 +0800246config SPL_SYSCON
247 bool "Support system controllers in SPL"
Philipp Tomsichcdda3492017-06-29 01:37:10 +0200248 depends on SPL_REGMAP
huang lindd8515e2015-11-17 14:20:13 +0800249 help
250 Many SoCs have a number of system controllers which are dealt with
251 as a group by a single driver. Some common functionality is provided
252 by this uclass, including accessing registers via regmap and
253 assigning a unique number to each.
254
Philipp Tomsich03cdf692017-06-29 01:38:49 +0200255config TPL_SYSCON
256 bool "Support system controllers in TPL"
Tom Rini36a4ca02022-06-08 08:24:39 -0400257 depends on TPL_REGMAP
Philipp Tomsich03cdf692017-06-29 01:38:49 +0200258 help
259 Many SoCs have a number of system controllers which are dealt with
260 as a group by a single driver. Some common functionality is provided
261 by this uclass, including accessing registers via regmap and
262 assigning a unique number to each.
263
Simon Glasse7ca7da2022-04-30 00:56:53 -0600264config VPL_SYSCON
265 bool "Support system controllers in VPL"
266 depends on VPL_REGMAP
267 help
268 Many SoCs have a number of system controllers which are dealt with
269 as a group by a single driver. Some common functionality is provided
270 by this uclass, including accessing registers via regmap and
271 assigning a unique number to each.
272
Masahiro Yamada029bfca2015-07-25 21:52:37 +0900273config DEVRES
274 bool "Managed device resources"
275 depends on DM
276 help
277 This option enables the Managed device resources core support.
278 Device resources managed by the devres framework are automatically
279 released whether initialization fails half-way or the device gets
280 detached.
281
282 If this option is disabled, devres functions fall back to
283 non-managed variants. For example, devres_alloc() to kzalloc(),
284 devm_kmalloc() to kmalloc(), etc.
285
Masahiro Yamada8b15b162015-07-25 21:52:35 +0900286config DEBUG_DEVRES
Masahiro Yamadaf929c0b2015-07-25 21:52:38 +0900287 bool "Managed device resources debugging functions"
Masahiro Yamada029bfca2015-07-25 21:52:37 +0900288 depends on DEVRES
Masahiro Yamada8b15b162015-07-25 21:52:35 +0900289 help
290 If this option is enabled, devres debug messages are printed.
Masahiro Yamadaf929c0b2015-07-25 21:52:38 +0900291 Also, a function is available to dump a list of device resources.
Masahiro Yamada8b15b162015-07-25 21:52:35 +0900292 Select this if you are having a problem with devres or want to
293 debug resource management for a managed device.
294
295 If you are unsure about this, Say N here.
Masahiro Yamadacc85b7b2015-07-26 02:46:26 +0900296
Marek Vasut298e6082015-08-03 01:15:48 +0200297config SIMPLE_BUS
298 bool "Support simple-bus driver"
299 depends on DM && OF_CONTROL
300 default y
301 help
302 Supports the 'simple-bus' driver, which is used on some systems.
303
304config SPL_SIMPLE_BUS
305 bool "Support simple-bus driver in SPL"
306 depends on SPL_DM && SPL_OF_CONTROL
Michal Simekb32467f2015-12-01 08:37:16 +0100307 default y
Marek Vasut298e6082015-08-03 01:15:48 +0200308 help
309 Supports the 'simple-bus' driver, which is used on some systems
310 in SPL.
311
Simon Glass2eb71502023-02-22 09:34:21 -0700312config TPL_SIMPLE_BUS
313 bool "Support simple-bus driver in TPL"
314 depends on TPL_DM && TPL_OF_CONTROL
315 help
316 Supports the 'simple-bus' driver, which is used on some systems
317 in TPL.
318
Bin Meng1a43b232021-03-14 20:15:02 +0800319config SIMPLE_BUS_CORRECT_RANGE
320 bool "Decode the 'simple-bus' <range> by honoring the #address-cells and #size-cells"
321 depends on SIMPLE_BUS
Bin Meng524a92c2021-03-14 20:15:03 +0800322 default y if SANDBOX
Bin Meng1a43b232021-03-14 20:15:02 +0800323 help
324 Decoding the 'simple-bus' <range> by honoring the #address-cells
325 and #size-cells of parent/child bus. If unset, #address-cells of
326 parent bus is assumed to be 1, #address-cells and #size-cells of
327 child bus is also assumed to be 1, to save some spaces of using
328 an advanced API to decode the <range>, which benefits SPL image
329 builds that have size limits.
330
331 If you are unsure about this, Say N here.
332
Sean Andersonb7860542020-06-24 06:41:12 -0400333config SIMPLE_PM_BUS
334 bool "Support simple-pm-bus driver"
335 depends on DM && OF_CONTROL && CLK && POWER_DOMAIN
336 help
337 Supports the 'simple-pm-bus' driver, which is used for busses that
338 have power domains and/or clocks which need to be enabled before use.
339
Stefan Roeseadc09052015-09-02 07:41:12 +0200340config OF_TRANSLATE
341 bool "Translate addresses using fdt_translate_address"
342 depends on DM && OF_CONTROL
343 default y
344 help
345 If this option is enabled, the reg property will be translated
346 using the fdt_translate_address() function. This is necessary
347 on some platforms (e.g. MVEBU) using complex "ranges"
348 properties in many nodes. As this translation is not handled
349 correctly in the default simple_bus_translate() function.
350
351 If this option is not enabled, simple_bus_translate() will be
352 used for the address translation. This function is faster and
353 smaller in size than fdt_translate_address().
354
355config SPL_OF_TRANSLATE
Stefan Roesef05eeb22015-11-26 13:38:01 +0100356 bool "Translate addresses using fdt_translate_address in SPL"
Stefan Roeseadc09052015-09-02 07:41:12 +0200357 depends on SPL_DM && SPL_OF_CONTROL
Stefan Roeseadc09052015-09-02 07:41:12 +0200358 help
359 If this option is enabled, the reg property will be translated
360 using the fdt_translate_address() function. This is necessary
361 on some platforms (e.g. MVEBU) using complex "ranges"
362 properties in many nodes. As this translation is not handled
363 correctly in the default simple_bus_translate() function.
364
365 If this option is not enabled, simple_bus_translate() will be
366 used for the address translation. This function is faster and
367 smaller in size than fdt_translate_address().
368
William Zhangf8c67b72022-10-14 11:04:55 -0700369config TPL_OF_TRANSLATE
370 bool "Translate addresses using fdt_translate_address in TPL"
371 depends on TPL_DM && TPL_OF_CONTROL
372 help
373 If this option is enabled, the reg property will be translated
374 using the fdt_translate_address() function. This is necessary
375 on some platforms (e.g. MVEBU) using complex "ranges"
376 properties in many nodes. As this translation is not handled
377 correctly in the default simple_bus_translate() function.
378
379 If this option is not enabled, simple_bus_translate() will be
380 used for the address translation. This function is faster and
381 smaller in size than fdt_translate_address()
382
Simon Glasse7ca7da2022-04-30 00:56:53 -0600383config VPL_OF_TRANSLATE
384 bool "Translate addresses using fdt_translate_address in SPL"
385 depends on SPL_DM && VPL_OF_CONTROL
386 help
387 If this option is enabled, the reg property will be translated
388 using the fdt_translate_address() function. This is necessary
389 on some platforms (e.g. MVEBU) using complex "ranges"
390 properties in many nodes. As this translation is not handled
391 correctly in the default simple_bus_translate() function.
392
393 If this option is not enabled, simple_bus_translate() will be
394 used for the address translation. This function is faster and
395 smaller in size than fdt_translate_address().
396
Stefan Roese85bddff2019-04-12 16:42:28 +0200397config TRANSLATION_OFFSET
398 bool "Platforms specific translation offset"
399 depends on DM && OF_CONTROL
400 help
401 Some platforms need a special address translation. Those
402 platforms (e.g. mvebu in SPL) can configure a translation
403 offset by enabling this option and setting the translation_offset
404 variable in the GD in their platform- / board-specific code.
405
Paul Burtondbef2f02016-05-17 07:43:24 +0100406config OF_ISA_BUS
407 bool
408 depends on OF_TRANSLATE
409 help
410 Is this option is enabled then support for the ISA bus will
411 be included for addresses read from DT. This is something that
412 should be known to be required or not based upon the board
Chris Packham3b6b4622019-01-13 22:13:24 +1300413 being targeted, and whether or not it makes use of an ISA bus.
Paul Burtondbef2f02016-05-17 07:43:24 +0100414
415 The bus is matched based upon its node name equalling "isa". The
416 busses #address-cells should equal 2, with the first cell being
417 used to hold flags & flag 0x1 indicating that the address range
418 should be accessed using I/O port in/out accessors. The second
419 cell holds the offset into ISA bus address space. The #size-cells
420 property should equal 1, and of course holds the size of the
421 address range used by a device.
422
423 If this option is not enabled then support for the ISA bus is
424 not included and any such busses used in DT will be treated as
425 typical simple-bus compatible busses. This will lead to
426 mistranslation of device addresses, so ensure that this is
427 enabled if your board does include an ISA bus.
428
Simon Glass34ef0c22017-05-18 20:09:03 -0600429config DM_DEV_READ_INLINE
430 bool
431 default y if !OF_LIVE
432
Simon Glassf0077312022-09-06 20:27:25 -0600433config OFNODE_MULTI_TREE
434 bool "Allow the ofnode interface to access any tree"
435 default y if EVENT && !DM_DEV_READ_INLINE && !DM_INLINE_OFNODE
436 help
437 Normally U-Boot makes use of its control FDT, the one used to bind
438 devices and provide options. In some cases, U-Boot must also process
439 a separate FDT, e.g. one provided by the operating system, which
440 needs additions to the /chosen node.
441
442 This works fine with live tree (OF_LIVE), but with flat tree the
443 offset provided in ofnode is only useful with the control FDT. This
444 option adds a 'tree ID' to the offset, so that multiple trees can
445 be used. Call oftree_from_fdt() to register a new tree.
446
447config OFNODE_MULTI_TREE_MAX
448 int "Maximum number of FDTs"
449 range 2 8
450 depends on OFNODE_MULTI_TREE
451 default 4
452 help
453 Sets the maximum number of device trees which can be used with the
454 ofnode interface when using flat trees (OF_LIVE). This is only
455 available in U-Boot proper and only after relocation.
456
Simon Glass9fb9e9b2020-04-09 10:27:38 -0600457config ACPIGEN
458 bool "Support ACPI table generation in driver model"
Simon Glasse264be42023-05-04 16:54:57 -0600459 depends on ACPI
Simon Glass55f3cde2020-07-16 21:22:39 -0600460 default y if SANDBOX || (GENERATE_ACPI_TABLE && !QEMU)
Simon Glass335fe512021-07-02 12:36:15 -0600461 select LIB_UUID
Simon Glass9fb9e9b2020-04-09 10:27:38 -0600462 help
463 This option enables generation of ACPI tables using driver-model
464 devices. It adds a new operation struct to each driver, to support
465 things like generating device-specific tables and returning the ACPI
466 name of a device.
467
Simon Glass5f78ee72020-09-10 20:21:25 -0600468config BOUNCE_BUFFER
469 bool "Include bounce buffer API"
470 help
471 Some peripherals support DMA from a subset of physically
472 addressable memory only. To support such peripherals, the
473 bounce buffer API uses a temporary buffer: it copies data
474 to/from DMA regions while managing cache operations.
475
476 A second possible use of bounce buffers is their ability to
477 provide aligned buffers for DMA operations.
478
Masahiro Yamadacc85b7b2015-07-26 02:46:26 +0900479endmenu