Blame view

drivers/demo/Kconfig 959 Bytes
0b11dbf70   Masahiro Yamada   drivers: hierarch...
1
  menu "Demo for driver model"
2a4eeadd5   Simon Glass   dm: Add Kconfig f...
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  config DM_DEMO
  	bool "Enable demo uclass support"
  	depends on DM
  	help
  	  This uclass allows you to play around with driver model. It provides
  	  an interface to a couple of demo devices. You can access it using
  	  the 'demo' command or by calling the uclass functions from your
  	  own code.
  
  config DM_DEMO_SIMPLE
  	bool "Enable simple demo device for driver model"
  	depends on DM_DEMO
  	help
  	  This device allows you to play around with driver model. It prints
  	  a message when the 'demo hello' command is executed which targets
  	  this device. It can be used to help understand how driver model
  	  works.
  
  config DM_DEMO_SHAPE
  	bool "Enable shape demo device for driver model"
  	depends on DM_DEMO
  	help
  	  This device allows you to play around with driver model. It prints
  	  a shape when the 'demo hello' command is executed which targets
  	  this device. It can be used to help understand how driver model
  	  works.
0b11dbf70   Masahiro Yamada   drivers: hierarch...
28
29
  
  endmenu