mcclock_mace.c revision 1.5 1 1.5 rumble /* $NetBSD: mcclock_mace.c,v 1.5 2006/09/05 01:38:59 rumble Exp $ */
2 1.1 sekiya
3 1.1 sekiya /*
4 1.1 sekiya * Copyright (c) 2001 Antti Kantee. All Rights Reserved.
5 1.1 sekiya *
6 1.1 sekiya * Redistribution and use in source and binary forms, with or without
7 1.1 sekiya * modification, are permitted provided that the following conditions
8 1.1 sekiya * are met:
9 1.1 sekiya * 1. Redistributions of source code must retain the above copyright
10 1.1 sekiya * notice, this list of conditions and the following disclaimer.
11 1.1 sekiya * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 sekiya * notice, this list of conditions and the following disclaimer in the
13 1.1 sekiya * documentation and/or other materials provided with the distribution.
14 1.1 sekiya * 3. All advertising materials mentioning features or use of this software
15 1.1 sekiya * must display the following acknowledgement:
16 1.1 sekiya * This product includes software developed by the NetBSD
17 1.1 sekiya * Foundation, Inc. and its contributors.
18 1.1 sekiya * 4. The name of the company nor the name of the author may be used to
19 1.1 sekiya * endorse or promote products derived from this software without specific
20 1.1 sekiya * prior written permission.
21 1.1 sekiya *
22 1.1 sekiya * THIS SOFTWARE IS PROVIDED BY CAUASLITY LIMITED ``AS IS'' AND ANY EXPRESS
23 1.1 sekiya * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
24 1.1 sekiya * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25 1.1 sekiya * DISCLAIMED. IN NO EVENT SHALL CAUSALITY LIMITED OR CONTRIBUTORS BE LIABLE
26 1.1 sekiya * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.1 sekiya * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28 1.1 sekiya * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.1 sekiya * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.1 sekiya * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.1 sekiya * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.1 sekiya * SUCH DAMAGE.
33 1.1 sekiya */
34 1.1 sekiya
35 1.1 sekiya /*
36 1.1 sekiya * Copyright (c) 1998 Mark Brinicombe.
37 1.1 sekiya * Copyright (c) 1998 Causality Limited.
38 1.1 sekiya * All rights reserved.
39 1.1 sekiya *
40 1.1 sekiya * Written by Mark Brinicombe, Causality Limited
41 1.1 sekiya *
42 1.1 sekiya * Redistribution and use in source and binary forms, with or without
43 1.1 sekiya * modification, are permitted provided that the following conditions
44 1.1 sekiya * are met:
45 1.1 sekiya * 1. Redistributions of source code must retain the above copyright
46 1.1 sekiya * notice, this list of conditions and the following disclaimer.
47 1.1 sekiya * 2. Redistributions in binary form must reproduce the above copyright
48 1.1 sekiya * notice, this list of conditions and the following disclaimer in the
49 1.1 sekiya * documentation and/or other materials provided with the distribution.
50 1.1 sekiya * 3. All advertising materials mentioning features or use of this software
51 1.1 sekiya * must display the following acknowledgement:
52 1.1 sekiya * This product includes software developed by Mark Brinicombe
53 1.1 sekiya * for the NetBSD Project.
54 1.1 sekiya * 4. The name of the company nor the name of the author may be used to
55 1.1 sekiya * endorse or promote products derived from this software without specific
56 1.1 sekiya * prior written permission.
57 1.1 sekiya *
58 1.1 sekiya * THIS SOFTWARE IS PROVIDED BY CAUASLITY LIMITED ``AS IS'' AND ANY EXPRESS
59 1.1 sekiya * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
60 1.1 sekiya * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
61 1.1 sekiya * DISCLAIMED. IN NO EVENT SHALL CAUSALITY LIMITED OR CONTRIBUTORS BE LIABLE
62 1.1 sekiya * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
63 1.1 sekiya * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
64 1.1 sekiya * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
65 1.1 sekiya * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
66 1.1 sekiya * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
67 1.1 sekiya * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
68 1.1 sekiya * SUCH DAMAGE.
69 1.1 sekiya */
70 1.1 sekiya
71 1.1 sekiya #include <sys/cdefs.h>
72 1.5 rumble __KERNEL_RCSID(0, "$NetBSD: mcclock_mace.c,v 1.5 2006/09/05 01:38:59 rumble Exp $");
73 1.1 sekiya
74 1.1 sekiya #include <sys/param.h>
75 1.1 sekiya #include <sys/systm.h>
76 1.1 sekiya
77 1.1 sekiya #include <machine/cpu.h>
78 1.1 sekiya #include <machine/autoconf.h>
79 1.1 sekiya #include <machine/bus.h>
80 1.1 sekiya #include <machine/machtype.h>
81 1.1 sekiya
82 1.1 sekiya #include <dev/clock_subr.h>
83 1.1 sekiya #include <dev/ic/ds1687reg.h>
84 1.1 sekiya
85 1.1 sekiya #include <sgimips/mace/macevar.h>
86 1.1 sekiya
87 1.1 sekiya #include <sgimips/sgimips/clockvar.h>
88 1.1 sekiya
89 1.1 sekiya struct mcclock_mace_softc {
90 1.1 sekiya struct device sc_dev;
91 1.1 sekiya
92 1.5 rumble struct todr_chip_handle sc_todrch;
93 1.5 rumble
94 1.1 sekiya bus_space_tag_t sc_st;
95 1.1 sekiya bus_space_handle_t sc_sh;
96 1.1 sekiya };
97 1.1 sekiya
98 1.1 sekiya static int mcclock_mace_match(struct device *, struct cfdata *, void *);
99 1.1 sekiya static void mcclock_mace_attach(struct device*, struct device *, void *);
100 1.1 sekiya
101 1.5 rumble static int mcclock_mace_gettime(struct todr_chip_handle *,
102 1.5 rumble volatile struct timeval *);
103 1.5 rumble static int mcclock_mace_settime(struct todr_chip_handle *,
104 1.5 rumble volatile struct timeval *);
105 1.1 sekiya
106 1.1 sekiya unsigned int ds1687_read(void *arg, unsigned int addr);
107 1.1 sekiya void ds1687_write(void *arg, unsigned int addr, unsigned int data);
108 1.1 sekiya
109 1.1 sekiya CFATTACH_DECL(mcclock_mace, sizeof(struct mcclock_mace_softc),
110 1.1 sekiya mcclock_mace_match, mcclock_mace_attach, NULL, NULL);
111 1.1 sekiya
112 1.1 sekiya static int
113 1.1 sekiya mcclock_mace_match(struct device *parent, struct cfdata *match, void *aux)
114 1.1 sekiya {
115 1.3 sekiya return 1;
116 1.1 sekiya }
117 1.1 sekiya
118 1.1 sekiya void
119 1.1 sekiya mcclock_mace_attach(struct device *parent, struct device *self, void *aux)
120 1.1 sekiya {
121 1.1 sekiya struct mcclock_mace_softc *sc = (void *)self;
122 1.1 sekiya struct mace_attach_args *maa = aux;
123 1.1 sekiya
124 1.1 sekiya sc->sc_st = maa->maa_st;
125 1.1 sekiya /* XXX should be bus_space_map() */
126 1.1 sekiya if (bus_space_subregion(maa->maa_st, maa->maa_sh,
127 1.1 sekiya maa->maa_offset, 0, &sc->sc_sh))
128 1.1 sekiya panic("mcclock_mace_attach: couldn't map");
129 1.1 sekiya
130 1.1 sekiya /*
131 1.1 sekiya * We want a fixed format: 24-hour, BCD data, so just force the
132 1.1 sekiya * RTC to this mode; if there was junk there we'll be able to
133 1.1 sekiya * fix things up later when we discover the time read back is
134 1.1 sekiya * no good.
135 1.1 sekiya */
136 1.1 sekiya ds1687_write(sc, DS1687_CONTROLA, DS1687_DV1 | DS1687_BANK1);
137 1.1 sekiya ds1687_write(sc, DS1687_CONTROLB, DS1687_24HRS);
138 1.1 sekiya
139 1.1 sekiya /* XXXrkb: init kickstart/wakeup stuff */
140 1.1 sekiya
141 1.1 sekiya if (!(ds1687_read(sc, DS1687_CONTROLD) & DS1687_VRT))
142 1.1 sekiya printf(": lithium cell is dead, RTC unreliable");
143 1.1 sekiya
144 1.1 sekiya printf("\n");
145 1.5 rumble
146 1.5 rumble sc->sc_todrch.cookie = sc;
147 1.5 rumble sc->sc_todrch.todr_gettime = mcclock_mace_gettime;
148 1.5 rumble sc->sc_todrch.todr_settime = mcclock_mace_settime;
149 1.5 rumble sc->sc_todrch.todr_setwen = NULL;
150 1.5 rumble
151 1.5 rumble todr_attach(&sc->sc_todrch);
152 1.1 sekiya }
153 1.1 sekiya
154 1.1 sekiya /*
155 1.1 sekiya * We need to use the following two functions from
156 1.1 sekiya * DS1687_PUT/GETTOD(). Hence the names.
157 1.1 sekiya */
158 1.1 sekiya unsigned int
159 1.1 sekiya ds1687_read(void *arg, unsigned int addr)
160 1.1 sekiya {
161 1.1 sekiya struct mcclock_mace_softc *sc = (struct mcclock_mace_softc *)arg;
162 1.1 sekiya
163 1.1 sekiya return (bus_space_read_1(sc->sc_st, sc->sc_sh, addr));
164 1.1 sekiya }
165 1.1 sekiya
166 1.1 sekiya void
167 1.1 sekiya ds1687_write(void *arg, unsigned int addr, unsigned int data)
168 1.1 sekiya {
169 1.1 sekiya struct mcclock_mace_softc *sc = (struct mcclock_mace_softc *)arg;
170 1.1 sekiya
171 1.1 sekiya bus_space_write_1(sc->sc_st, sc->sc_sh, addr, data);
172 1.1 sekiya }
173 1.1 sekiya
174 1.5 rumble static int
175 1.5 rumble mcclock_mace_gettime(struct todr_chip_handle *todrch,
176 1.5 rumble volatile struct timeval *tv)
177 1.1 sekiya {
178 1.5 rumble struct mcclock_mace_softc *sc =
179 1.5 rumble (struct mcclock_mace_softc *)todrch->cookie;
180 1.5 rumble struct clock_ymdhms dt;
181 1.1 sekiya ds1687_todregs regs;
182 1.1 sekiya int s;
183 1.1 sekiya
184 1.1 sekiya s = splhigh();
185 1.1 sekiya DS1687_GETTOD(sc, ®s);
186 1.1 sekiya splx(s);
187 1.1 sekiya
188 1.5 rumble dt.dt_sec = FROMBCD(regs[DS1687_SOFT_SEC]);
189 1.5 rumble dt.dt_min = FROMBCD(regs[DS1687_SOFT_MIN]);
190 1.5 rumble dt.dt_hour = FROMBCD(regs[DS1687_SOFT_HOUR]);
191 1.5 rumble dt.dt_wday = FROMBCD(regs[DS1687_SOFT_DOW]);
192 1.5 rumble dt.dt_day = FROMBCD(regs[DS1687_SOFT_DOM]);
193 1.5 rumble dt.dt_mon = FROMBCD(regs[DS1687_SOFT_MONTH]);
194 1.5 rumble dt.dt_year = FROMBCD(regs[DS1687_SOFT_YEAR]) +
195 1.1 sekiya (100 * FROMBCD(regs[DS1687_SOFT_CENTURY]));
196 1.5 rumble
197 1.5 rumble /* simple sanity checks */
198 1.5 rumble if (dt.dt_mon > 12 || dt.dt_day > 31 ||
199 1.5 rumble dt.dt_hour >= 24 || dt.dt_min >= 60 || dt.dt_sec >= 60)
200 1.5 rumble return (EIO);
201 1.5 rumble
202 1.5 rumble tv->tv_sec = (long)clock_ymdhms_to_secs(&dt);
203 1.5 rumble if (tv->tv_sec == -1)
204 1.5 rumble return (ERANGE);
205 1.5 rumble tv->tv_usec = 0;
206 1.5 rumble
207 1.5 rumble return (0);
208 1.1 sekiya }
209 1.1 sekiya
210 1.5 rumble static int
211 1.5 rumble mcclock_mace_settime(struct todr_chip_handle *todrch,
212 1.5 rumble volatile struct timeval *tv)
213 1.1 sekiya {
214 1.5 rumble struct mcclock_mace_softc *sc =
215 1.5 rumble (struct mcclock_mace_softc *)todrch->cookie;
216 1.5 rumble struct clock_ymdhms dt;
217 1.1 sekiya ds1687_todregs regs;
218 1.1 sekiya int s;
219 1.1 sekiya
220 1.5 rumble clock_secs_to_ymdhms((time_t)(tv->tv_sec + (tv->tv_usec > 500000)),&dt);
221 1.5 rumble
222 1.1 sekiya memset(®s, 0, sizeof(regs));
223 1.1 sekiya
224 1.5 rumble regs[DS1687_SOFT_SEC] = TOBCD(dt.dt_sec);
225 1.5 rumble regs[DS1687_SOFT_MIN] = TOBCD(dt.dt_min);
226 1.5 rumble regs[DS1687_SOFT_HOUR] = TOBCD(dt.dt_hour);
227 1.5 rumble regs[DS1687_SOFT_DOW] = TOBCD(dt.dt_wday);
228 1.5 rumble regs[DS1687_SOFT_DOM] = TOBCD(dt.dt_day);
229 1.5 rumble regs[DS1687_SOFT_MONTH] = TOBCD(dt.dt_mon);
230 1.5 rumble regs[DS1687_SOFT_YEAR] = TOBCD(dt.dt_year % 100);
231 1.5 rumble regs[DS1687_SOFT_CENTURY] = TOBCD(dt.dt_year / 100);
232 1.1 sekiya s = splhigh();
233 1.1 sekiya DS1687_PUTTOD(sc, ®s);
234 1.1 sekiya splx(s);
235 1.5 rumble
236 1.5 rumble return (0);
237 1.1 sekiya }
238