Blame view

drivers/rtc/s3c24x0_rtc.c 3.65 KB
83d290c56   Tom Rini   SPDX: Convert all...
1
  // SPDX-License-Identifier: GPL-2.0+
48b42616e   wdenk   * Patches by Davi...
2
3
  /*
   * (C) Copyright 2003
fa82f871c   Albert ARIBAUD   Convert ISO-8859 ...
4
   * David Müller ELSOFT AG Switzerland. d.mueller@elsoft.ch
48b42616e   wdenk   * Patches by Davi...
5
6
7
8
9
10
11
12
   */
  
  /*
   * Date & Time support for the built-in Samsung S3C24X0 RTC
   */
  
  #include <common.h>
  #include <command.h>
ac67804fb   kevin.morfitt@fearnside-systems.co.uk   Add a unified s3c...
13
  #include <asm/arch/s3c24x0_cpu.h>
48b42616e   wdenk   * Patches by Davi...
14
15
  
  #include <rtc.h>
eb0ae7f54   kevin.morfitt@fearnside-systems.co.uk   Clean-up of s3c24...
16
  #include <asm/io.h>
f45e91c44   Anatolij Gustschin   drivers/rtc/s3c24...
17
  #include <linux/compiler.h>
48b42616e   wdenk   * Patches by Davi...
18
19
20
21
22
23
24
25
26
  
  typedef enum {
  	RTC_ENABLE,
  	RTC_DISABLE
  } RTC_ACCESS;
  
  
  static inline void SetRTC_Access(RTC_ACCESS a)
  {
eb0ae7f54   kevin.morfitt@fearnside-systems.co.uk   Clean-up of s3c24...
27
  	struct s3c24x0_rtc *rtc = s3c24x0_get_base_rtc();
48b42616e   wdenk   * Patches by Davi...
28
  	switch (a) {
eb0ae7f54   kevin.morfitt@fearnside-systems.co.uk   Clean-up of s3c24...
29
  	case RTC_ENABLE:
d9abba825   C Nauman   Add generic suppo...
30
  		writeb(readb(&rtc->rtccon) | 0x01, &rtc->rtccon);
eb0ae7f54   kevin.morfitt@fearnside-systems.co.uk   Clean-up of s3c24...
31
  		break;
48b42616e   wdenk   * Patches by Davi...
32

eb0ae7f54   kevin.morfitt@fearnside-systems.co.uk   Clean-up of s3c24...
33
  	case RTC_DISABLE:
d9abba825   C Nauman   Add generic suppo...
34
  		writeb(readb(&rtc->rtccon) & ~0x01, &rtc->rtccon);
eb0ae7f54   kevin.morfitt@fearnside-systems.co.uk   Clean-up of s3c24...
35
  		break;
48b42616e   wdenk   * Patches by Davi...
36
37
  	}
  }
48b42616e   wdenk   * Patches by Davi...
38
  /* ------------------------------------------------------------------------- */
eb0ae7f54   kevin.morfitt@fearnside-systems.co.uk   Clean-up of s3c24...
39
  int rtc_get(struct rtc_time *tmp)
48b42616e   wdenk   * Patches by Davi...
40
  {
eb0ae7f54   kevin.morfitt@fearnside-systems.co.uk   Clean-up of s3c24...
41
  	struct s3c24x0_rtc *rtc = s3c24x0_get_base_rtc();
48b42616e   wdenk   * Patches by Davi...
42
  	uchar sec, min, hour, mday, wday, mon, year;
f45e91c44   Anatolij Gustschin   drivers/rtc/s3c24...
43
44
  	__maybe_unused uchar a_sec, a_min, a_hour, a_date,
  			     a_mon, a_year, a_armed;
48b42616e   wdenk   * Patches by Davi...
45
46
47
48
49
  
  	/* enable access to RTC registers */
  	SetRTC_Access(RTC_ENABLE);
  
  	/* read RTC registers */
531716e17   wdenk   * Patch by David ...
50
  	do {
d9abba825   C Nauman   Add generic suppo...
51
52
53
54
55
56
57
58
  		sec  = readb(&rtc->bcdsec);
  		min  = readb(&rtc->bcdmin);
  		hour = readb(&rtc->bcdhour);
  		mday = readb(&rtc->bcddate);
  		wday = readb(&rtc->bcdday);
  		mon  = readb(&rtc->bcdmon);
  		year = readb(&rtc->bcdyear);
  	} while (sec != readb(&rtc->bcdsec));
48b42616e   wdenk   * Patches by Davi...
59
60
  
  	/* read ALARM registers */
d9abba825   C Nauman   Add generic suppo...
61
62
63
64
65
66
67
  	a_sec   = readb(&rtc->almsec);
  	a_min   = readb(&rtc->almmin);
  	a_hour  = readb(&rtc->almhour);
  	a_date  = readb(&rtc->almdate);
  	a_mon   = readb(&rtc->almmon);
  	a_year  = readb(&rtc->almyear);
  	a_armed = readb(&rtc->rtcalm);
48b42616e   wdenk   * Patches by Davi...
68
69
70
71
72
  
  	/* disable access to RTC registers */
  	SetRTC_Access(RTC_DISABLE);
  
  #ifdef RTC_DEBUG
eb0ae7f54   kevin.morfitt@fearnside-systems.co.uk   Clean-up of s3c24...
73
74
75
76
77
78
79
80
  	printf("Get RTC year: %02x mon/cent: %02x mday: %02x wday: %02x "
  	       "hr: %02x min: %02x sec: %02x
  ",
  	       year, mon, mday, wday, hour, min, sec);
  	printf("Alarms: %02x: year: %02x month: %02x date: %02x hour: "
  	       "%02x min: %02x sec: %02x
  ",
  	       a_armed, a_year, a_mon, a_date, a_hour, a_min, a_sec);
48b42616e   wdenk   * Patches by Davi...
81
  #endif
eb0ae7f54   kevin.morfitt@fearnside-systems.co.uk   Clean-up of s3c24...
82
83
  	tmp->tm_sec  = bcd2bin(sec & 0x7F);
  	tmp->tm_min  = bcd2bin(min & 0x7F);
48b42616e   wdenk   * Patches by Davi...
84
85
86
87
88
  	tmp->tm_hour = bcd2bin(hour & 0x3F);
  	tmp->tm_mday = bcd2bin(mday & 0x3F);
  	tmp->tm_mon  = bcd2bin(mon & 0x1F);
  	tmp->tm_year = bcd2bin(year);
  	tmp->tm_wday = bcd2bin(wday & 0x07);
eb0ae7f54   kevin.morfitt@fearnside-systems.co.uk   Clean-up of s3c24...
89
90
  	if (tmp->tm_year < 70)
  		tmp->tm_year += 2000;
48b42616e   wdenk   * Patches by Davi...
91
  	else
eb0ae7f54   kevin.morfitt@fearnside-systems.co.uk   Clean-up of s3c24...
92
93
94
  		tmp->tm_year += 1900;
  	tmp->tm_yday  = 0;
  	tmp->tm_isdst = 0;
48b42616e   wdenk   * Patches by Davi...
95
  #ifdef RTC_DEBUG
eb0ae7f54   kevin.morfitt@fearnside-systems.co.uk   Clean-up of s3c24...
96
97
98
99
  	printf("Get DATE: %4d-%02d-%02d (wday=%d)  TIME: %2d:%02d:%02d
  ",
  	       tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
  	       tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
48b42616e   wdenk   * Patches by Davi...
100
  #endif
b73a19e16   Yuri Tikhonov   LWMON5: POST RTC fix
101
102
  
  	return 0;
48b42616e   wdenk   * Patches by Davi...
103
  }
eb0ae7f54   kevin.morfitt@fearnside-systems.co.uk   Clean-up of s3c24...
104
  int rtc_set(struct rtc_time *tmp)
48b42616e   wdenk   * Patches by Davi...
105
  {
eb0ae7f54   kevin.morfitt@fearnside-systems.co.uk   Clean-up of s3c24...
106
  	struct s3c24x0_rtc *rtc = s3c24x0_get_base_rtc();
48b42616e   wdenk   * Patches by Davi...
107
108
109
  	uchar sec, min, hour, mday, wday, mon, year;
  
  #ifdef RTC_DEBUG
eb0ae7f54   kevin.morfitt@fearnside-systems.co.uk   Clean-up of s3c24...
110
111
112
113
  	printf("Set DATE: %4d-%02d-%02d (wday=%d)  TIME: %2d:%02d:%02d
  ",
  	       tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
  	       tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
48b42616e   wdenk   * Patches by Davi...
114
  #endif
eb0ae7f54   kevin.morfitt@fearnside-systems.co.uk   Clean-up of s3c24...
115
116
117
118
119
120
121
  	year = bin2bcd(tmp->tm_year % 100);
  	mon  = bin2bcd(tmp->tm_mon);
  	wday = bin2bcd(tmp->tm_wday);
  	mday = bin2bcd(tmp->tm_mday);
  	hour = bin2bcd(tmp->tm_hour);
  	min  = bin2bcd(tmp->tm_min);
  	sec  = bin2bcd(tmp->tm_sec);
48b42616e   wdenk   * Patches by Davi...
122
123
124
125
126
  
  	/* enable access to RTC registers */
  	SetRTC_Access(RTC_ENABLE);
  
  	/* write RTC registers */
d9abba825   C Nauman   Add generic suppo...
127
128
129
130
131
132
133
  	writeb(sec, &rtc->bcdsec);
  	writeb(min, &rtc->bcdmin);
  	writeb(hour, &rtc->bcdhour);
  	writeb(mday, &rtc->bcddate);
  	writeb(wday, &rtc->bcdday);
  	writeb(mon, &rtc->bcdmon);
  	writeb(year, &rtc->bcdyear);
48b42616e   wdenk   * Patches by Davi...
134
135
136
  
  	/* disable access to RTC registers */
  	SetRTC_Access(RTC_DISABLE);
d1e231941   Jean-Christophe PLAGNIOL-VILLARD   rtc: allow rtc_se...
137
138
  
  	return 0;
48b42616e   wdenk   * Patches by Davi...
139
  }
eb0ae7f54   kevin.morfitt@fearnside-systems.co.uk   Clean-up of s3c24...
140
  void rtc_reset(void)
48b42616e   wdenk   * Patches by Davi...
141
  {
eb0ae7f54   kevin.morfitt@fearnside-systems.co.uk   Clean-up of s3c24...
142
  	struct s3c24x0_rtc *rtc = s3c24x0_get_base_rtc();
48b42616e   wdenk   * Patches by Davi...
143

d9abba825   C Nauman   Add generic suppo...
144
145
  	writeb((readb(&rtc->rtccon) & ~0x06) | 0x08, &rtc->rtccon);
  	writeb(readb(&rtc->rtccon) & ~(0x08 | 0x01), &rtc->rtccon);
48b42616e   wdenk   * Patches by Davi...
146
  }