mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-23 11:04:44 +08:00
1e4063329f
Add pmbus driver support for Maxim MAX15301 InTune Automatically Compensated Digital PoL Controller with Driver and PMBus Telemetry Even though the specification does not specifically mention it, extensive empirical testing has revealed that auto-detection of limit-registers will fail in a random fashion unless the delay parameter is set to above about 80us. The default delay is set to 100us to include some safety margin. This patch is tested on a Flex BMR461 converter module. Signed-off-by: Erik Rosen <erik.rosen@metormote.com> Link: https://lore.kernel.org/r/20210419101251.24840-1-erik.rosen@metormote.com [groeck: Added rationale for delay to driver header] Signed-off-by: Guenter Roeck <linux@roeck-us.net>
42 lines
1.6 KiB
Makefile
42 lines
1.6 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for PMBus chip drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_PMBUS) += pmbus_core.o
|
|
obj-$(CONFIG_SENSORS_PMBUS) += pmbus.o
|
|
obj-$(CONFIG_SENSORS_ADM1266) += adm1266.o
|
|
obj-$(CONFIG_SENSORS_ADM1275) += adm1275.o
|
|
obj-$(CONFIG_SENSORS_BEL_PFE) += bel-pfe.o
|
|
obj-$(CONFIG_SENSORS_BPA_RS600) += bpa-rs600.o
|
|
obj-$(CONFIG_SENSORS_FSP_3Y) += fsp-3y.o
|
|
obj-$(CONFIG_SENSORS_IBM_CFFPS) += ibm-cffps.o
|
|
obj-$(CONFIG_SENSORS_INSPUR_IPSPS) += inspur-ipsps.o
|
|
obj-$(CONFIG_SENSORS_IR35221) += ir35221.o
|
|
obj-$(CONFIG_SENSORS_IR36021) += ir36021.o
|
|
obj-$(CONFIG_SENSORS_IR38064) += ir38064.o
|
|
obj-$(CONFIG_SENSORS_IRPS5401) += irps5401.o
|
|
obj-$(CONFIG_SENSORS_ISL68137) += isl68137.o
|
|
obj-$(CONFIG_SENSORS_LM25066) += lm25066.o
|
|
obj-$(CONFIG_SENSORS_LTC2978) += ltc2978.o
|
|
obj-$(CONFIG_SENSORS_LTC3815) += ltc3815.o
|
|
obj-$(CONFIG_SENSORS_MAX15301) += max15301.o
|
|
obj-$(CONFIG_SENSORS_MAX16064) += max16064.o
|
|
obj-$(CONFIG_SENSORS_MAX16601) += max16601.o
|
|
obj-$(CONFIG_SENSORS_MAX20730) += max20730.o
|
|
obj-$(CONFIG_SENSORS_MAX20751) += max20751.o
|
|
obj-$(CONFIG_SENSORS_MAX31785) += max31785.o
|
|
obj-$(CONFIG_SENSORS_MAX34440) += max34440.o
|
|
obj-$(CONFIG_SENSORS_MAX8688) += max8688.o
|
|
obj-$(CONFIG_SENSORS_MP2975) += mp2975.o
|
|
obj-$(CONFIG_SENSORS_PM6764TR) += pm6764tr.o
|
|
obj-$(CONFIG_SENSORS_PXE1610) += pxe1610.o
|
|
obj-$(CONFIG_SENSORS_Q54SJ108A2) += q54sj108a2.o
|
|
obj-$(CONFIG_SENSORS_STPDDC60) += stpddc60.o
|
|
obj-$(CONFIG_SENSORS_TPS40422) += tps40422.o
|
|
obj-$(CONFIG_SENSORS_TPS53679) += tps53679.o
|
|
obj-$(CONFIG_SENSORS_UCD9000) += ucd9000.o
|
|
obj-$(CONFIG_SENSORS_UCD9200) += ucd9200.o
|
|
obj-$(CONFIG_SENSORS_XDPE122) += xdpe12284.o
|
|
obj-$(CONFIG_SENSORS_ZL6100) += zl6100.o
|