#include <linux/mfd/max8907.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
#define ALARM_1SEC (1 << 7)
#define HOUR_AM_PM (1 << 5)
#define ALARM0_IRQ (1 << 3)
#define ALARM1_IRQ (1 << 2)
#define ALARM0_STATUS (1 << 2)
#define ALARM1_STATUS (1 << 1)
struct rtc_device *rtc_dev;
static irqreturn_t max8907_irq_handler(int irq, void *data)
struct max8907_rtc *rtc = data;
regmap_write(rtc->regmap, MAX8907_REG_ALARM0_CNTL, 0);
rtc_update_irq(rtc->rtc_dev, 1, RTC_IRQF | RTC_AF);
static void regs_to_tm(u8 *regs, struct rtc_time *tm)
tm->tm_year = bcd2bin(regs[RTC_YEAR2]) * 100 +