45 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# Ethernet Power Sourcing Equipment drivers4#5 6menuconfig PSE_CONTROLLER7 bool "Ethernet Power Sourcing Equipment Support"8 depends on REGULATOR9 help10 Generic Power Sourcing Equipment Controller support.11 12 If unsure, say no.13 14if PSE_CONTROLLER15 16config PSE_REGULATOR17 tristate "Regulator based PSE controller"18 help19 This module provides support for simple regulator based Ethernet Power20 Sourcing Equipment without automatic classification support. For21 example for basic implementation of PoDL (802.3bu) specification.22 23config PSE_PD692X024 tristate "PD692X0 PSE controller"25 depends on I2C26 select FW_LOADER27 select FW_UPLOAD28 help29 This module provides support for PD692x0 regulator based Ethernet30 Power Sourcing Equipment.31 32 To compile this driver as a module, choose M here: the33 module will be called pd692x0.34 35config PSE_TPS2388136 tristate "TPS23881 PSE controller"37 depends on I2C38 help39 This module provides support for TPS23881 regulator based Ethernet40 Power Sourcing Equipment.41 42 To compile this driver as a module, choose M here: the43 module will be called tps23881.44endif45