0c4a59fed4
Add Texas Instruments TWL92330/Menelaus Power Management chip driver. This includes voltage regulators, Dual slot memory card tranceivers and real-time clock(RTC). The support for RTC is integrated with this driver only; it is not separate module. Passes 'rtctest' on OMAP H4 EVM, other than lack of "periodic" (1/N second) IRQs. System wakeup alarms (from suspend-to-RAM) work too. The battery keeps the RTC active over power off, so once you set clock (rdate/ntpdate/etc, then "hwclock -w") then RTC_HCTOSYS at boot time will behave as expected. Cc: "Jean Delvare" <khali@linux-fr.org> Cc: "Tony Lindgren" <tony@atomide.com> Cc: "David Brownell" <david-b@pacbell.net> Signed-off-by: Trilok Soni <soni.trilok@gmail.com> Acked-by: Alessandro Zummo <alessandro.zummo@towertech.it> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
22 lines
652 B
Makefile
22 lines
652 B
Makefile
#
|
|
# Makefile for miscellaneous I2C chip drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_SENSORS_DS1337) += ds1337.o
|
|
obj-$(CONFIG_SENSORS_DS1374) += ds1374.o
|
|
obj-$(CONFIG_DS1682) += ds1682.o
|
|
obj-$(CONFIG_SENSORS_EEPROM) += eeprom.o
|
|
obj-$(CONFIG_SENSORS_MAX6875) += max6875.o
|
|
obj-$(CONFIG_SENSORS_M41T00) += m41t00.o
|
|
obj-$(CONFIG_SENSORS_PCA9539) += pca9539.o
|
|
obj-$(CONFIG_SENSORS_PCF8574) += pcf8574.o
|
|
obj-$(CONFIG_SENSORS_PCF8591) += pcf8591.o
|
|
obj-$(CONFIG_ISP1301_OMAP) += isp1301_omap.o
|
|
obj-$(CONFIG_TPS65010) += tps65010.o
|
|
obj-$(CONFIG_MENELAUS) += menelaus.o
|
|
obj-$(CONFIG_SENSORS_TSL2550) += tsl2550.o
|
|
|
|
ifeq ($(CONFIG_I2C_DEBUG_CHIP),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|
|
|