summaryrefslogtreecommitdiff
path: root/zephyr/Kconfig.ioex
blob: e9bb8065e1d669ca10b8b58246d9c9c2a7943eb9 (plain)
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
49
50
51
# Copyright 2021 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

menuconfig PLATFORM_EC_IOEX_CROS_DRV
	bool "IO expander support"
	depends on I2C
	help
	  Enable support for CrOS EC ioex drivers.

if PLATFORM_EC_IOEX_CROS_DRV

config PLATFORM_EC_IOEX_INIT_PRIORITY
	int "IO expander init priority"
	range 0 99
	default 50
	help
	  Sets the priority of function that initializes
	  the IO expander subsystem

config PLATFORM_EC_IOEX_CCGXXF
	bool "Cypress CCGXXF"
	help
	  Enables driver for Cypress CCGXXF IO expander (built inside PD chip)

config PLATFORM_EC_IOEX_IT8801
	bool "IT8801"
	help
	  Enables support for IT8801 IO expander with keyboard matrix controller

config PLATFORM_EC_IOEX_NCT38XX
	bool "Nuvoton NCT38xx"
	help
	  Enables support for IO expander built inside Nuvoton NCT38xx TCPC

config PLATFORM_EC_IOEX_PCA9675
	bool "NXP PCA9675PW"
	help
	  Enables support for NXP PCA9675PW IO expander

config PLATFORM_EC_IOEX_PCAL6408
	bool "NXP PCA(L)6408"
	help
	  Enables support for NXP PCA(L)6408 IO expander

config PLATFORM_EC_IOEX_TCA64XXA
	bool "TI TCA64xA"
	help
	  Enables support for Texas Instruments TCA64xxA IO expanders family

endif