#include <linux/clk.h>
#include <linux/delay.h>
#include <linux/init.h>
#include <linux/io.h>
#include <linux/irq.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/mod_devicetable.h>
#include <linux/platform_device.h>
#include <linux/pm.h>
#include <linux/rtc.h>
#include <linux/slab.h>
#define TEGRA_RTC_REG_BUSY …
#define TEGRA_RTC_REG_SECONDS …
#define TEGRA_RTC_REG_SHADOW_SECONDS …
#define TEGRA_RTC_REG_MILLI_SECONDS …
#define TEGRA_RTC_REG_SECONDS_ALARM0 …
#define TEGRA_RTC_REG_SECONDS_ALARM1 …
#define TEGRA_RTC_REG_MILLI_SECONDS_ALARM0 …
#define TEGRA_RTC_REG_INTR_MASK …
#define TEGRA_RTC_REG_INTR_STATUS …
#define TEGRA_RTC_INTR_MASK_MSEC_CDN_ALARM …
#define TEGRA_RTC_INTR_MASK_SEC_CDN_ALARM …
#define TEGRA_RTC_INTR_MASK_MSEC_ALARM …
#define TEGRA_RTC_INTR_MASK_SEC_ALARM1 …
#define TEGRA_RTC_INTR_MASK_SEC_ALARM0 …
#define TEGRA_RTC_INTR_STATUS_MSEC_CDN_ALARM …
#define TEGRA_RTC_INTR_STATUS_SEC_CDN_ALARM …
#define TEGRA_RTC_INTR_STATUS_MSEC_ALARM …
#define TEGRA_RTC_INTR_STATUS_SEC_ALARM1 …
#define TEGRA_RTC_INTR_STATUS_SEC_ALARM0 …
struct tegra_rtc_info { … };
static inline u32 tegra_rtc_check_busy(struct tegra_rtc_info *info)
{ … }
static int tegra_rtc_wait_while_busy(struct device *dev)
{ … }
static int tegra_rtc_read_time(struct device *dev, struct rtc_time *tm)
{ … }
static int tegra_rtc_set_time(struct device *dev, struct rtc_time *tm)
{ … }
static int tegra_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alarm)
{ … }
static int tegra_rtc_alarm_irq_enable(struct device *dev, unsigned int enabled)
{ … }
static int tegra_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alarm)
{ … }
static int tegra_rtc_proc(struct device *dev, struct seq_file *seq)
{ … }
static irqreturn_t tegra_rtc_irq_handler(int irq, void *data)
{ … }
static const struct rtc_class_ops tegra_rtc_ops = …;
static const struct of_device_id tegra_rtc_dt_match[] = …;
MODULE_DEVICE_TABLE(of, tegra_rtc_dt_match);
static int tegra_rtc_probe(struct platform_device *pdev)
{ … }
static void tegra_rtc_remove(struct platform_device *pdev)
{ … }
#ifdef CONFIG_PM_SLEEP
static int tegra_rtc_suspend(struct device *dev)
{ … }
static int tegra_rtc_resume(struct device *dev)
{ … }
#endif
static SIMPLE_DEV_PM_OPS(tegra_rtc_pm_ops, tegra_rtc_suspend, tegra_rtc_resume);
static void tegra_rtc_shutdown(struct platform_device *pdev)
{ … }
static struct platform_driver tegra_rtc_driver = …;
module_platform_driver(…) …;
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;