b9a4f52e5a6539d667041327d1a9461b74f5d93e
[oweals/openwrt.git] /
1 From 0557d41d861b8c214b3472749482efdc71363dbb Mon Sep 17 00:00:00 2001
2 From: Phil Elwell <phil@raspberrypi.org>
3 Date: Mon, 29 Oct 2018 14:45:45 +0000
4 Subject: [PATCH] Revert "rtc: pcf8523: properly handle oscillator stop
5  bit"
6
7 This reverts commit ede44c908d44b166a5b6bd7caacd105c2ff5a70f.
8
9 See: https://github.com/raspberrypi/firmware/issues/1065
10
11 Signed-off-by: Phil Elwell <phil@raspberrypi.org>
12 ---
13  drivers/rtc/rtc-pcf8523.c | 25 ++++++++++++++++++++++---
14  1 file changed, 22 insertions(+), 3 deletions(-)
15
16 --- a/drivers/rtc/rtc-pcf8523.c
17 +++ b/drivers/rtc/rtc-pcf8523.c
18 @@ -212,8 +212,28 @@ static int pcf8523_rtc_read_time(struct
19         if (err < 0)
20                 return err;
21  
22 -       if (regs[0] & REG_SECONDS_OS)
23 -               return -EINVAL;
24 +       if (regs[0] & REG_SECONDS_OS) {
25 +               /*
26 +                * If the oscillator was stopped, try to clear the flag. Upon
27 +                * power-up the flag is always set, but if we cannot clear it
28 +                * the oscillator isn't running properly for some reason. The
29 +                * sensible thing therefore is to return an error, signalling
30 +                * that the clock cannot be assumed to be correct.
31 +                */
32 +
33 +               regs[0] &= ~REG_SECONDS_OS;
34 +
35 +               err = pcf8523_write(client, REG_SECONDS, regs[0]);
36 +               if (err < 0)
37 +                       return err;
38 +
39 +               err = pcf8523_read(client, REG_SECONDS, &regs[0]);
40 +               if (err < 0)
41 +                       return err;
42 +
43 +               if (regs[0] & REG_SECONDS_OS)
44 +                       return -EAGAIN;
45 +       }
46  
47         tm->tm_sec = bcd2bin(regs[0] & 0x7f);
48         tm->tm_min = bcd2bin(regs[1] & 0x7f);
49 @@ -249,7 +269,6 @@ static int pcf8523_rtc_set_time(struct d
50                 return err;
51  
52         regs[0] = REG_SECONDS;
53 -       /* This will purposely overwrite REG_SECONDS_OS */
54         regs[1] = bin2bcd(tm->tm_sec);
55         regs[2] = bin2bcd(tm->tm_min);
56         regs[3] = bin2bcd(tm->tm_hour);