#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/mod_devicetable.h>
#include <linux/regmap.h>
#include <linux/platform_device.h>
#define DRV_NAME "rtc-r7301"
#define RTC7301_1_SEC 0x0
#define RTC7301_10_SEC 0x1
#define RTC7301_AE BIT(3)
#define RTC7301_1_MIN 0x2
#define RTC7301_10_MIN 0x3
#define RTC7301_1_HOUR 0x4
#define RTC7301_10_HOUR 0x5
#define RTC7301_DAY_OF_WEEK 0x6
#define RTC7301_1_DAY 0x7
#define RTC7301_10_DAY 0x8
#define RTC7301_1_MONTH 0x9
#define RTC7301_10_MONTH 0xa
#define RTC7301_1_YEAR 0xb
#define RTC7301_10_YEAR 0xc
#define RTC7301_100_YEAR 0xd
#define RTC7301_1000_YEAR 0xe
#define RTC7301_ALARM_CONTROL 0xe
#define RTC7301_ALARM_CONTROL_AIE BIT(0)
#define RTC7301_ALARM_CONTROL_AF BIT(1)
#define RTC7301_TIMER_CONTROL 0xe
#define RTC7301_TIMER_CONTROL_TIE BIT(0)
#define RTC7301_TIMER_CONTROL_TF BIT(1)
#define RTC7301_CONTROL 0xf
#define RTC7301_CONTROL_BUSY BIT(0)
#define RTC7301_CONTROL_STOP BIT(1)
#define RTC7301_CONTROL_BANK_SEL_0 BIT(2)
#define RTC7301_CONTROL_BANK_SEL_1 BIT(3)
static const struct regmap_config rtc7301_regmap_config = {
static u8 rtc7301_read(struct rtc7301_priv *priv, unsigned int reg)