Blame view

drivers/mxc/Kconfig 1.06 KB
81f7e3824   Eric Lee   Initial Release, ...
1
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
  # drivers/mxc/Kconfig
  
  if ARCH_MXC || ARCH_MXC_ARM64
  
  menu "MXC support drivers"
  
  # drivers common to MXC and MX8 go here:
  source "drivers/mxc/gpu-viv/Kconfig"
  source "drivers/mxc/hantro/Kconfig"
  source "drivers/mxc/mlb/Kconfig"
  source "drivers/mxc/hdp/Kconfig"
  source "drivers/mxc/hdp-cec/Kconfig"
  
  config MXC_SIM
          tristate "MXC SIM support"
          default n
          ---help---
          Say Y to get MXC SIM support.
  
  source "drivers/mxc/sim/Kconfig"
  
  if ARCH_MXC_ARM64
  source "drivers/mxc/hantro_845/Kconfig"
  source "drivers/mxc/hantro_845_h1/Kconfig"
  source "drivers/mxc/vpu_legacy/Kconfig"
  source "drivers/mxc/vpu_malone/Kconfig"
  source "drivers/mxc/vpu_windsor/Kconfig"
  endif
  
  if ARCH_MXC
  config MXC_IPU
  	bool "Image Processing Unit Driver"
  	select MXC_IPU_V3
  	help
  	  If you plan to use the Image Processing unit, say
  	  Y here. IPU is needed by Framebuffer and V4L2 drivers.
  
  source "drivers/mxc/ipu3/Kconfig"
  source "drivers/mxc/mipi/Kconfig"
  source "drivers/mxc/vpu/Kconfig"
  source "drivers/mxc/hdmi-cec/Kconfig"
  endif
  
  source "drivers/mxc/vehicle/Kconfig"
  
  endmenu
  
  endif