diff options
author | Simon Glass <sjg@chromium.org> | 2015-02-05 21:41:38 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-02-12 10:35:34 -0700 |
commit | f058f154a9cad41b8cc97ce85b9308051ff297b9 (patch) | |
tree | 67d730a48e4503da87a1d75b81801a979dac207e /common | |
parent | 1967982a959609d663a1c25e4473a3209671e3aa (diff) | |
download | u-boot-imx-f058f154a9cad41b8cc97ce85b9308051ff297b9.zip u-boot-imx-f058f154a9cad41b8cc97ce85b9308051ff297b9.tar.gz u-boot-imx-f058f154a9cad41b8cc97ce85b9308051ff297b9.tar.bz2 |
dm: Add CMD_DM and CMD_DEMO to Kconfig
Add Kconfig settings for these two options.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/Kconfig | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig index fd84fa0..2ca002d 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -153,6 +153,29 @@ endmenu menu "Device access commands" +config CMD_DM + bool "dm - Access to driver model information" + depends on DM + default y + help + Provides access to driver model data structures and information, + such as a list of devices, list of uclasses and the state of each + device (e.g. activated). This is not required for operation, but + can be useful to see the state of driver model for debugging or + interest. + +config CMD_DEMO + bool "demo - Demonstration commands for driver model" + depends on DM + help + Provides a 'demo' command which can be used to play around with + driver model. To use this properly you will need to enable one or + both of the demo devices (DM_DEMO_SHAPE and DM_DEMO_SIMPLE). + Otherwise you will always get an empty list of devices. The demo + devices are defined in the sandbox device tree, so the easiest + option is to use sandbox and pass the -d point to sandbox's + u-boot.dtb file. + config CMD_LOADB bool "loadb" help |