xref: /openbmc/u-boot/drivers/demo/Kconfig (revision 2a4eeadd)
1*2a4eeaddSSimon Glassconfig DM_DEMO
2*2a4eeaddSSimon Glass	bool "Enable demo uclass support"
3*2a4eeaddSSimon Glass	depends on DM
4*2a4eeaddSSimon Glass	help
5*2a4eeaddSSimon Glass	  This uclass allows you to play around with driver model. It provides
6*2a4eeaddSSimon Glass	  an interface to a couple of demo devices. You can access it using
7*2a4eeaddSSimon Glass	  the 'demo' command or by calling the uclass functions from your
8*2a4eeaddSSimon Glass	  own code.
9*2a4eeaddSSimon Glass
10*2a4eeaddSSimon Glassconfig DM_DEMO_SIMPLE
11*2a4eeaddSSimon Glass	bool "Enable simple demo device for driver model"
12*2a4eeaddSSimon Glass	depends on DM_DEMO
13*2a4eeaddSSimon Glass	help
14*2a4eeaddSSimon Glass	  This device allows you to play around with driver model. It prints
15*2a4eeaddSSimon Glass	  a message when the 'demo hello' command is executed which targets
16*2a4eeaddSSimon Glass	  this device. It can be used to help understand how driver model
17*2a4eeaddSSimon Glass	  works.
18*2a4eeaddSSimon Glass
19*2a4eeaddSSimon Glassconfig DM_DEMO_SHAPE
20*2a4eeaddSSimon Glass	bool "Enable shape demo device for driver model"
21*2a4eeaddSSimon Glass	depends on DM_DEMO
22*2a4eeaddSSimon Glass	help
23*2a4eeaddSSimon Glass	  This device allows you to play around with driver model. It prints
24*2a4eeaddSSimon Glass	  a shape when the 'demo hello' command is executed which targets
25*2a4eeaddSSimon Glass	  this device. It can be used to help understand how driver model
26*2a4eeaddSSimon Glass	  works.
27