Masahiro Yamada | 0b11dbf | 2015-07-26 02:46:26 +0900 | [diff] [blame] | 1 | menu "Generic Driver Options" |
| 2 | |
Masahiro Yamada | da333ae | 2014-10-23 22:26:09 +0900 | [diff] [blame] | 3 | config DM |
| 4 | bool "Enable Driver Model" |
Masahiro Yamada | da333ae | 2014-10-23 22:26:09 +0900 | [diff] [blame] | 5 | help |
Simon Glass | f94a1be | 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 | 91a91ff | 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, |
| 18 | consider using CONFIG_SYS_MALLOC_SIMPLE. In that case you |
Andy Yan | f1896c4 | 2017-07-24 17:43:34 +0800 | [diff] [blame] | 19 | must provide CONFIG_SPL_SYS_MALLOC_F_LEN to set the size. |
Simon Glass | 91a91ff | 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 | f1896c4 | 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 | 91a91ff | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 23 | |
Simon Glass | 5a6f06f | 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, |
| 31 | consider using CONFIG_SYS_MALLOC_SIMPLE. In that case you |
Andy Yan | f1896c4 | 2017-07-24 17:43:34 +0800 | [diff] [blame] | 32 | must provide CONFIG_SPL_SYS_MALLOC_F_LEN to set the size. |
Simon Glass | 5a6f06f | 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 | f1896c4 | 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 | 5a6f06f | 2017-04-02 09:50:31 -0600 | [diff] [blame] | 36 | Disable this for very small implementations. |
| 37 | |
Simon Glass | 91a91ff | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 38 | config DM_WARN |
| 39 | bool "Enable warnings in driver model" |
Masahiro Yamada | d648964 | 2015-02-24 22:26:21 +0900 | [diff] [blame] | 40 | depends on DM |
| 41 | default y |
Simon Glass | 91a91ff | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 42 | help |
| 43 | The dm_warn() function can use up quite a bit of space for its |
| 44 | strings. By default this is disabled for SPL builds to save space. |
| 45 | This will cause dm_warn() to be compiled out - it will do nothing |
| 46 | when called. |
Simon Glass | 91a91ff | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 47 | |
| 48 | config DM_DEVICE_REMOVE |
| 49 | bool "Support device removal" |
Masahiro Yamada | d648964 | 2015-02-24 22:26:21 +0900 | [diff] [blame] | 50 | depends on DM |
| 51 | default y |
Simon Glass | 91a91ff | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 52 | help |
| 53 | We can save some code space by dropping support for removing a |
| 54 | device. This is not normally required in SPL, so by default this |
| 55 | option is disabled for SPL. |
Simon Glass | 91a91ff | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 56 | |
Hans de Goede | e5c4564 | 2015-07-01 20:52:59 +0200 | [diff] [blame] | 57 | Note that this may have undesirable results in the USB subsystem as |
| 58 | it causes unplugged devices to linger around in the dm-tree, and it |
| 59 | causes USB host controllers to not be stopped when booting the OS. |
| 60 | |
Simon Glass | 91a91ff | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 61 | config DM_STDIO |
| 62 | bool "Support stdio registration" |
Masahiro Yamada | d648964 | 2015-02-24 22:26:21 +0900 | [diff] [blame] | 63 | depends on DM |
| 64 | default y |
Simon Glass | 91a91ff | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 65 | help |
| 66 | Normally serial drivers register with stdio so that they can be used |
| 67 | as normal output devices. In SPL we don't normally use stdio, so |
| 68 | we can omit this feature. |
Simon Glass | 36fa61d | 2015-02-27 22:06:30 -0700 | [diff] [blame] | 69 | |
| 70 | config DM_SEQ_ALIAS |
| 71 | bool "Support numbered aliases in device tree" |
| 72 | depends on DM |
| 73 | default y |
| 74 | help |
| 75 | Most boards will have a '/aliases' node containing the path to |
| 76 | numbered devices (e.g. serial0 = &serial0). This feature can be |
Nathan Rossi | 4f627c5 | 2016-01-08 03:00:45 +1000 | [diff] [blame] | 77 | disabled if it is not required. |
| 78 | |
| 79 | config SPL_DM_SEQ_ALIAS |
| 80 | bool "Support numbered aliases in device tree in SPL" |
| 81 | depends on DM |
| 82 | default n |
| 83 | help |
| 84 | Most boards will have a '/aliases' node containing the path to |
| 85 | numbered devices (e.g. serial0 = &serial0). This feature can be |
Simon Glass | 36fa61d | 2015-02-27 22:06:30 -0700 | [diff] [blame] | 86 | disabled if it is not required, to save code space in SPL. |
Simon Glass | 12dc8e7 | 2015-07-17 09:22:07 -0600 | [diff] [blame] | 87 | |
| 88 | config REGMAP |
| 89 | bool "Support register maps" |
| 90 | depends on DM |
| 91 | help |
| 92 | Hardware peripherals tend to have one or more sets of registers |
| 93 | which can be accessed to control the hardware. A register map |
| 94 | models this with a simple read/write interface. It can in principle |
| 95 | support any bus type (I2C, SPI) but so far this only supports |
| 96 | direct memory access. |
| 97 | |
huang lin | 41c7f66 | 2015-11-17 14:20:13 +0800 | [diff] [blame] | 98 | config SPL_REGMAP |
| 99 | bool "Support register maps in SPL" |
Philipp Tomsich | 9c44737 | 2017-06-29 01:37:10 +0200 | [diff] [blame^] | 100 | depends on SPL_DM |
huang lin | 41c7f66 | 2015-11-17 14:20:13 +0800 | [diff] [blame] | 101 | help |
| 102 | Hardware peripherals tend to have one or more sets of registers |
| 103 | which can be accessed to control the hardware. A register map |
| 104 | models this with a simple read/write interface. It can in principle |
| 105 | support any bus type (I2C, SPI) but so far this only supports |
| 106 | direct memory access. |
| 107 | |
Simon Glass | 12dc8e7 | 2015-07-17 09:22:07 -0600 | [diff] [blame] | 108 | config SYSCON |
| 109 | bool "Support system controllers" |
| 110 | depends on REGMAP |
| 111 | help |
| 112 | Many SoCs have a number of system controllers which are dealt with |
| 113 | as a group by a single driver. Some common functionality is provided |
| 114 | by this uclass, including accessing registers via regmap and |
| 115 | assigning a unique number to each. |
Masahiro Yamada | 608f26c | 2015-07-25 21:52:35 +0900 | [diff] [blame] | 116 | |
huang lin | 41c7f66 | 2015-11-17 14:20:13 +0800 | [diff] [blame] | 117 | config SPL_SYSCON |
| 118 | bool "Support system controllers in SPL" |
Philipp Tomsich | 9c44737 | 2017-06-29 01:37:10 +0200 | [diff] [blame^] | 119 | depends on SPL_REGMAP |
huang lin | 41c7f66 | 2015-11-17 14:20:13 +0800 | [diff] [blame] | 120 | help |
| 121 | Many SoCs have a number of system controllers which are dealt with |
| 122 | as a group by a single driver. Some common functionality is provided |
| 123 | by this uclass, including accessing registers via regmap and |
| 124 | assigning a unique number to each. |
| 125 | |
Masahiro Yamada | e2282d7 | 2015-07-25 21:52:37 +0900 | [diff] [blame] | 126 | config DEVRES |
| 127 | bool "Managed device resources" |
| 128 | depends on DM |
| 129 | help |
| 130 | This option enables the Managed device resources core support. |
| 131 | Device resources managed by the devres framework are automatically |
| 132 | released whether initialization fails half-way or the device gets |
| 133 | detached. |
| 134 | |
| 135 | If this option is disabled, devres functions fall back to |
| 136 | non-managed variants. For example, devres_alloc() to kzalloc(), |
| 137 | devm_kmalloc() to kmalloc(), etc. |
| 138 | |
Masahiro Yamada | 608f26c | 2015-07-25 21:52:35 +0900 | [diff] [blame] | 139 | config DEBUG_DEVRES |
Masahiro Yamada | 40b6f2d | 2015-07-25 21:52:38 +0900 | [diff] [blame] | 140 | bool "Managed device resources debugging functions" |
Masahiro Yamada | e2282d7 | 2015-07-25 21:52:37 +0900 | [diff] [blame] | 141 | depends on DEVRES |
Masahiro Yamada | 608f26c | 2015-07-25 21:52:35 +0900 | [diff] [blame] | 142 | help |
| 143 | If this option is enabled, devres debug messages are printed. |
Masahiro Yamada | 40b6f2d | 2015-07-25 21:52:38 +0900 | [diff] [blame] | 144 | Also, a function is available to dump a list of device resources. |
Masahiro Yamada | 608f26c | 2015-07-25 21:52:35 +0900 | [diff] [blame] | 145 | Select this if you are having a problem with devres or want to |
| 146 | debug resource management for a managed device. |
| 147 | |
| 148 | If you are unsure about this, Say N here. |
Masahiro Yamada | 0b11dbf | 2015-07-26 02:46:26 +0900 | [diff] [blame] | 149 | |
Marek Vasut | 628d792 | 2015-08-03 01:15:48 +0200 | [diff] [blame] | 150 | config SIMPLE_BUS |
| 151 | bool "Support simple-bus driver" |
| 152 | depends on DM && OF_CONTROL |
| 153 | default y |
| 154 | help |
| 155 | Supports the 'simple-bus' driver, which is used on some systems. |
| 156 | |
| 157 | config SPL_SIMPLE_BUS |
| 158 | bool "Support simple-bus driver in SPL" |
| 159 | depends on SPL_DM && SPL_OF_CONTROL |
Michal Simek | 8bebf03 | 2015-12-01 08:37:16 +0100 | [diff] [blame] | 160 | default y |
Marek Vasut | 628d792 | 2015-08-03 01:15:48 +0200 | [diff] [blame] | 161 | help |
| 162 | Supports the 'simple-bus' driver, which is used on some systems |
| 163 | in SPL. |
| 164 | |
Stefan Roese | ef5cd33 | 2015-09-02 07:41:12 +0200 | [diff] [blame] | 165 | config OF_TRANSLATE |
| 166 | bool "Translate addresses using fdt_translate_address" |
| 167 | depends on DM && OF_CONTROL |
| 168 | default y |
| 169 | help |
| 170 | If this option is enabled, the reg property will be translated |
| 171 | using the fdt_translate_address() function. This is necessary |
| 172 | on some platforms (e.g. MVEBU) using complex "ranges" |
| 173 | properties in many nodes. As this translation is not handled |
| 174 | correctly in the default simple_bus_translate() function. |
| 175 | |
| 176 | If this option is not enabled, simple_bus_translate() will be |
| 177 | used for the address translation. This function is faster and |
| 178 | smaller in size than fdt_translate_address(). |
| 179 | |
| 180 | config SPL_OF_TRANSLATE |
Stefan Roese | 7b98a3b | 2015-11-26 13:38:01 +0100 | [diff] [blame] | 181 | bool "Translate addresses using fdt_translate_address in SPL" |
Stefan Roese | ef5cd33 | 2015-09-02 07:41:12 +0200 | [diff] [blame] | 182 | depends on SPL_DM && SPL_OF_CONTROL |
| 183 | default n |
| 184 | help |
| 185 | If this option is enabled, the reg property will be translated |
| 186 | using the fdt_translate_address() function. This is necessary |
| 187 | on some platforms (e.g. MVEBU) using complex "ranges" |
| 188 | properties in many nodes. As this translation is not handled |
| 189 | correctly in the default simple_bus_translate() function. |
| 190 | |
| 191 | If this option is not enabled, simple_bus_translate() will be |
| 192 | used for the address translation. This function is faster and |
| 193 | smaller in size than fdt_translate_address(). |
| 194 | |
Paul Burton | 0a222d5 | 2016-05-17 07:43:24 +0100 | [diff] [blame] | 195 | config OF_ISA_BUS |
| 196 | bool |
| 197 | depends on OF_TRANSLATE |
| 198 | help |
| 199 | Is this option is enabled then support for the ISA bus will |
| 200 | be included for addresses read from DT. This is something that |
| 201 | should be known to be required or not based upon the board |
| 202 | being targetted, and whether or not it makes use of an ISA bus. |
| 203 | |
| 204 | The bus is matched based upon its node name equalling "isa". The |
| 205 | busses #address-cells should equal 2, with the first cell being |
| 206 | used to hold flags & flag 0x1 indicating that the address range |
| 207 | should be accessed using I/O port in/out accessors. The second |
| 208 | cell holds the offset into ISA bus address space. The #size-cells |
| 209 | property should equal 1, and of course holds the size of the |
| 210 | address range used by a device. |
| 211 | |
| 212 | If this option is not enabled then support for the ISA bus is |
| 213 | not included and any such busses used in DT will be treated as |
| 214 | typical simple-bus compatible busses. This will lead to |
| 215 | mistranslation of device addresses, so ensure that this is |
| 216 | enabled if your board does include an ISA bus. |
| 217 | |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 218 | config DM_DEV_READ_INLINE |
| 219 | bool |
| 220 | default y if !OF_LIVE |
| 221 | |
Masahiro Yamada | 0b11dbf | 2015-07-26 02:46:26 +0900 | [diff] [blame] | 222 | endmenu |