2 * Freescale i.MX28 RTC Driver
4 * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
5 * on behalf of DENX Software Engineering GmbH
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include <asm/arch/imx-regs.h>
27 #include <asm/arch/sys_proto.h>
29 #define MXS_RTC_MAX_TIMEOUT 1000000
31 /* Set time in seconds since 1970-01-01 */
32 int mxs_rtc_set_time(uint32_t secs)
34 struct mxs_rtc_regs *rtc_regs = (struct mxs_rtc_regs *)MXS_RTC_BASE;
37 writel(secs, &rtc_regs->hw_rtc_seconds);
40 * The 0x80 here means seconds were copied to analog. This information
41 * is taken from the linux kernel driver for the STMP37xx RTC since
42 * documentation doesn't mention it.
44 ret = mxs_wait_mask_clr(&rtc_regs->hw_rtc_stat_reg,
45 0x80 << RTC_STAT_STALE_REGS_OFFSET, MXS_RTC_MAX_TIMEOUT);
48 printf("MXS RTC: Timeout waiting for update\n");
53 int rtc_get(struct rtc_time *time)
55 struct mxs_rtc_regs *rtc_regs = (struct mxs_rtc_regs *)MXS_RTC_BASE;
58 secs = readl(&rtc_regs->hw_rtc_seconds);
64 int rtc_set(struct rtc_time *time)
68 secs = mktime(time->tm_year, time->tm_mon, time->tm_mday,
69 time->tm_hour, time->tm_min, time->tm_sec);
71 return mxs_rtc_set_time(secs);
76 struct mxs_rtc_regs *rtc_regs = (struct mxs_rtc_regs *)MXS_RTC_BASE;
79 /* Set time to 1970-01-01 */
82 /* Reset the RTC block */
83 ret = mxs_reset_block(&rtc_regs->hw_rtc_ctrl_reg);
85 printf("MXS RTC: Block reset timeout\n");