Skip to content
Snippets Groups Projects
Commit 458a0700 authored by Simon Glass's avatar Simon Glass
Browse files

pinctrl: Add help text to Kconfig


The pinctrl Kconfig options should have help messages. Add this to a few
options.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent b7e84c93
No related branches found
No related tags found
No related merge requests found
...@@ -47,7 +47,10 @@ config PINMUX ...@@ -47,7 +47,10 @@ config PINMUX
default y default y
help help
This option enables pin multiplexing through the generic pinctrl This option enables pin multiplexing through the generic pinctrl
framework. framework. Most SoCs have their own own multiplexing arrangement
where a single pin can be used for several functions. An SoC pinctrl
driver allows the required function to be selected for each pin.
The driver is typically controlled by the device tree.
config PINCONF config PINCONF
bool "Support pin configuration controllers" bool "Support pin configuration controllers"
...@@ -86,6 +89,12 @@ config SPL_PINMUX ...@@ -86,6 +89,12 @@ config SPL_PINMUX
help help
This option is an SPL-variant of the PINMUX option. This option is an SPL-variant of the PINMUX option.
See the help of PINMUX for details. See the help of PINMUX for details.
The pinctrl subsystem can add a substantial overhead to the SPL
image since it typically requires quite a few tables either in the
driver or in the device tree. If this is acceptable and you need
to adjust pin multiplexing in SPL in order to boot into U-Boot,
enable this option. You will need to enable device tree in SPL
for this to work.
config SPL_PINCONF config SPL_PINCONF
bool "Support pin configuration controllers in SPL" bool "Support pin configuration controllers in SPL"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment