blob: da5bb3e2f78785d2fa0deba9c9ca6e9ce900682a [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Reinhard Meyerc7260d12010-07-27 16:22:09 +02002/*
3 * (C) Copyright 2010
4 * Reinhard Meyer, reinhard.meyer@emk-elektronik.de
Reinhard Meyerc7260d12010-07-27 16:22:09 +02005 */
6
7/*
8 * Date & Time support for the internal Real-time Timer
9 * of AT91SAM9260 and compatibles.
10 * Compatible with the LinuX rtc driver workaround:
11 * The RTT cannot be written to, but only reset.
12 * The actual time is the sum of RTT and one of
13 * the four GPBR registers.
14 *
15 * The at91sam9260 has 4 GPBR (0-3).
16 * For their typical use see at91_gpbr.h !
17 *
18 * make sure u-boot and kernel use the same GPBR !
19 */
20
21#include <common.h>
22#include <command.h>
23#include <rtc.h>
Reinhard Meyer86592f62010-11-07 13:26:14 +010024#include <asm/io.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090025#include <linux/errno.h>
Reinhard Meyerc7260d12010-07-27 16:22:09 +020026#include <asm/arch/hardware.h>
Reinhard Meyerc7260d12010-07-27 16:22:09 +020027#include <asm/arch/at91_rtt.h>
28#include <asm/arch/at91_gpbr.h>
29
30#if defined(CONFIG_CMD_DATE)
31
32int rtc_get (struct rtc_time *tmp)
33{
Reinhard Meyer372f2782010-11-03 15:47:20 +010034 at91_rtt_t *rtt = (at91_rtt_t *) ATMEL_BASE_RTT;
35 at91_gpbr_t *gpbr = (at91_gpbr_t *) ATMEL_BASE_GPBR;
Reinhard Meyerc7260d12010-07-27 16:22:09 +020036 ulong tim;
37 ulong tim2;
38 ulong off;
39
40 do {
41 tim = readl(&rtt->vr);
42 tim2 = readl(&rtt->vr);
43 } while (tim!=tim2);
44 off = readl(&gpbr->reg[AT91_GPBR_INDEX_TIMEOFF]);
45 /* off==0 means time is invalid, but we ignore that */
Simon Glass9f9276c2015-04-20 12:37:18 -060046 rtc_to_tm(tim+off, tmp);
Reinhard Meyerc7260d12010-07-27 16:22:09 +020047 return 0;
48}
49
50int rtc_set (struct rtc_time *tmp)
51{
Reinhard Meyer372f2782010-11-03 15:47:20 +010052 at91_rtt_t *rtt = (at91_rtt_t *) ATMEL_BASE_RTT;
53 at91_gpbr_t *gpbr = (at91_gpbr_t *) ATMEL_BASE_GPBR;
Reinhard Meyerc7260d12010-07-27 16:22:09 +020054 ulong tim;
55
Simon Glass71420982015-04-20 12:37:19 -060056 tim = rtc_mktime(tmp);
Reinhard Meyerc7260d12010-07-27 16:22:09 +020057
58 /* clear alarm, set prescaler to 32768, clear counter */
59 writel(32768+AT91_RTT_RTTRST, &rtt->mr);
60 writel(~0, &rtt->ar);
61 writel(tim, &gpbr->reg[AT91_GPBR_INDEX_TIMEOFF]);
62 /* wait for counter clear to happen, takes less than a 1/32768th second */
63 while (readl(&rtt->vr) != 0)
64 ;
65 return 0;
66}
67
68void rtc_reset (void)
69{
Reinhard Meyer372f2782010-11-03 15:47:20 +010070 at91_rtt_t *rtt = (at91_rtt_t *) ATMEL_BASE_RTT;
71 at91_gpbr_t *gpbr = (at91_gpbr_t *) ATMEL_BASE_GPBR;
Reinhard Meyerc7260d12010-07-27 16:22:09 +020072
73 /* clear alarm, set prescaler to 32768, clear counter */
74 writel(32768+AT91_RTT_RTTRST, &rtt->mr);
75 writel(~0, &rtt->ar);
76 writel(0, &gpbr->reg[AT91_GPBR_INDEX_TIMEOFF]);
77 /* wait for counter clear to happen, takes less than a 1/32768th second */
78 while (readl(&rtt->vr) != 0)
79 ;
80}
81
82#endif