1# SPDX-License-Identifier: GPL-2.0-only 2# 3# Ethernet Power Sourcing Equipment drivers 4# 5 6menuconfig PSE_CONTROLLER 7 bool "Ethernet Power Sourcing Equipment Support" 8 help 9 Generic Power Sourcing Equipment Controller support. 10 11 If unsure, say no. 12 13if PSE_CONTROLLER 14 15config PSE_REGULATOR 16 tristate "Regulator based PSE controller" 17 depends on REGULATOR || COMPILE_TEST 18 help 19 This module provides support for simple regulator based Ethernet Power 20 Sourcing Equipment without automatic classification support. For 21 example for basic implementation of PoDL (802.3bu) specification. 22 23config PSE_PD692X0 24 tristate "PD692X0 PSE controller" 25 depends on I2C 26 select FW_UPLOAD 27 help 28 This module provides support for PD692x0 regulator based Ethernet 29 Power Sourcing Equipment. 30 31 To compile this driver as a module, choose M here: the 32 module will be called pd692x0. 33 34config PSE_TPS23881 35 tristate "TPS23881 PSE controller" 36 depends on I2C 37 help 38 This module provides support for TPS23881 regulator based Ethernet 39 Power Sourcing Equipment. 40 41 To compile this driver as a module, choose M here: the 42 module will be called tps23881. 43endif 44