Blame view

kernel/linux-rt-4.4.41/drivers/pinctrl/mediatek/Kconfig 831 Bytes
5113f6f70   김현기   kernel add
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
  if ARCH_MEDIATEK || COMPILE_TEST
  
  config PINCTRL_MTK_COMMON
  	bool
  	depends on OF
  	select PINMUX
  	select GENERIC_PINCONF
  	select GPIOLIB
  	select OF_GPIO
  
  # For ARMv7 SoCs
  config PINCTRL_MT8135
  	bool "Mediatek MT8135 pin control" if COMPILE_TEST && !MACH_MT8135
  	depends on OF
  	default MACH_MT8135
  	select PINCTRL_MTK_COMMON
  
  config PINCTRL_MT8127
  	bool "Mediatek MT8127 pin control" if COMPILE_TEST && !MACH_MT8127
  	depends on OF
  	default MACH_MT8127
  	select PINCTRL_MTK_COMMON
  
  # For ARMv8 SoCs
  config PINCTRL_MT8173
  	bool "Mediatek MT8173 pin control"
  	depends on OF
  	depends on ARM64 || COMPILE_TEST
  	default ARM64 && ARCH_MEDIATEK
  	select PINCTRL_MTK_COMMON
  
  # For PMIC
  config PINCTRL_MT6397
  	bool "Mediatek MT6397 pin control" if COMPILE_TEST && !MFD_MT6397
  	depends on OF
  	default MFD_MT6397
  	select PINCTRL_MTK_COMMON
  
  endif