]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm/nvidia/as3722_rtc.c
MFV: zlib 1.3
[FreeBSD/FreeBSD.git] / sys / arm / nvidia / as3722_rtc.c
1 /*-
2  * Copyright (c) 2016 Michal Meloun <mmel@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26
27 #include <sys/cdefs.h>
28 #include <sys/param.h>
29 #include <sys/systm.h>
30 #include <sys/bus.h>
31 #include <sys/clock.h>
32 #include <sys/kernel.h>
33
34 #include <dev/ofw/ofw_bus.h>
35
36 #include "clock_if.h"
37 #include "as3722.h"
38
39 #define AS3722_RTC_START_YEAR   2000
40
41 int
42 as3722_rtc_gettime(device_t dev, struct timespec *ts)
43 {
44         struct as3722_softc *sc;
45         struct clocktime ct;
46         uint8_t buf[6];
47         int rv;
48
49         sc = device_get_softc(dev);
50
51         rv = as3722_read_buf(sc, AS3722_RTC_SECOND, buf, 6);
52         if (rv != 0) {
53                 device_printf(sc->dev, "Failed to read RTC data\n");
54                 return (rv);
55         }
56         ct.nsec = 0;
57         ct.sec = bcd2bin(buf[0] & 0x7F);
58         ct.min = bcd2bin(buf[1] & 0x7F);
59         ct.hour = bcd2bin(buf[2] & 0x3F);
60         ct.day = bcd2bin(buf[3] & 0x3F);
61         ct.mon = bcd2bin(buf[4] & 0x1F);
62         ct.year = bcd2bin(buf[5] & 0x7F) + AS3722_RTC_START_YEAR;
63         ct.dow = -1;
64
65         return clock_ct_to_ts(&ct, ts);
66 }
67
68 int
69 as3722_rtc_settime(device_t dev, struct timespec *ts)
70 {
71         struct as3722_softc *sc;
72         struct clocktime ct;
73         uint8_t buf[6];
74         int rv;
75
76         sc = device_get_softc(dev);
77         clock_ts_to_ct(ts, &ct);
78
79         if (ct.year < AS3722_RTC_START_YEAR)
80                 return (EINVAL);
81
82         buf[0] = bin2bcd(ct.sec);
83         buf[1] = bin2bcd(ct.min);
84         buf[2] = bin2bcd(ct.hour);
85         buf[3] = bin2bcd(ct.day);
86         buf[4] = bin2bcd(ct.mon);
87         buf[5] = bin2bcd(ct.year - AS3722_RTC_START_YEAR);
88
89         rv = as3722_write_buf(sc, AS3722_RTC_SECOND, buf, 6);
90         if (rv != 0) {
91                 device_printf(sc->dev, "Failed to write RTC data\n");
92                 return (rv);
93         }
94         return (0);
95 }
96
97 int
98 as3722_rtc_attach(struct as3722_softc *sc, phandle_t node)
99 {
100         int rv;
101
102         /* Enable RTC, set 24 hours mode  and alarms */
103         rv = RM1(sc, AS3722_RTC_CONTROL,
104             AS3722_RTC_ON | AS3722_RTC_ALARM_WAKEUP_EN | AS3722_RTC_AM_PM_MODE,
105             AS3722_RTC_ON | AS3722_RTC_ALARM_WAKEUP_EN);
106         if (rv < 0) {
107                 device_printf(sc->dev, "Failed to initialize RTC controller\n");
108                 return (ENXIO);
109         }
110         clock_register(sc->dev, 1000000);
111
112         return (0);
113 }