Skip to content

Commit

Permalink
rtc: rtc-s3c: Add BCD register initialization codes
Browse files Browse the repository at this point in the history
RTC needs to be initialized when BCD registers have invalid value.

Signed-off-by: Taekgyun Ko <taeggyun.ko@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Cc: Ben Dooks <ben-linux@fluff.org>
Acked-by: Alessandro Zummo <a.zummo@towertech.it>
  • Loading branch information
Taekgyun Ko authored and Kukjin Kim committed Aug 5, 2010
1 parent 2f3478f commit 051fe54
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions drivers/rtc/rtc-s3c.c
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,7 @@ static int __devinit s3c_rtc_probe(struct platform_device *pdev)
{
struct rtc_device *rtc;
struct resource *res;
unsigned int tmp, i;
int ret;

pr_debug("%s: probe=%p\n", __func__, pdev);
Expand Down Expand Up @@ -536,6 +537,15 @@ static int __devinit s3c_rtc_probe(struct platform_device *pdev)

s3c_rtc_cpu_type = platform_get_device_id(pdev)->driver_data;

/* Check RTC Time */

for (i = S3C2410_RTCSEC; i <= S3C2410_RTCYEAR; i += 0x4) {
tmp = readb(s3c_rtc_base + i);

if ((tmp & 0xf) > 0x9 || ((tmp >> 4) & 0xf) > 0x9)
writeb(0, s3c_rtc_base + i);
}

if (s3c_rtc_cpu_type == TYPE_S3C64XX)
rtc->max_user_freq = 32768;
else
Expand Down

0 comments on commit 051fe54

Please sign in to comment.