hc
2024-01-05 071106ecf68c401173c58808b1cf5f68cc50d390
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
# SPDX-License-Identifier: GPL-2.0
 
config DM_POWER_DELIVERY
   bool "Enable driver model power delivery support"
   depends on DM
   help
     This adds a simple uclass for power delivery.
 
config TYPEC_TCPM
   tristate "USB Type-C Port Controller Manager"
   depends on DM && DM_POWER_DELIVERY
   help
     The Type-C Port Controller Manager provides a USB PD and USB Type-C
     state machine for use with Type-C Port Controllers.
 
config TYPEC_TCPCI
   tristate "Type-C Port Controller Interface driver"
   depends on DM && DM_POWER_DELIVERY && DM_I2C
   help
     Type-C Port Controller driver for TCPCI-compliant controller.
 
if TYPEC_TCPCI
 
config TYPEC_HUSB311
   tristate "Hynetek HUSB311 Type-C chip driver"
   depends on DM && DM_POWER_DELIVERY && DM_I2C
   help
     Hynetek HUSB311 Type-C chip driver that works with
     Type-C Port Controller Manager to provide USB PD and USB
     Type-C functionalities.
 
endif # TYPEC_TCPCI
 
config TYPEC_FUSB302
   tristate "Fairchild FUSB302 Type-C chip driver"
   depends on DM && DM_POWER_DELIVERY && DM_I2C
   help
     The Fairchild FUSB302 Type-C chip driver that works with
     Type-C Port Controller Manager to provide USB PD and USB
     Type-C functionalities.