1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
|
/* $OpenBSD: rs5c313.c,v 1.3 2008/06/27 06:03:08 ray Exp $ */
/* $NetBSD: rs5c313.c,v 1.1 2006/09/07 01:12:00 uwe Exp $ */
/* $NetBSD: rs5c313_landisk.c,v 1.1 2006/09/07 01:55:03 uwe Exp $ */
/*-
* Copyright (c) 2002 The NetBSD Foundation, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
/*
* RICOH RS5C313 Real Time Clock
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/kernel.h>
#include <dev/clock_subr.h>
#include <sh/clock.h>
#include <sh/devreg.h>
#include <sh/dev/scireg.h>
#include <landisk/dev/rs5c313reg.h>
#include <landisk/landisk/landiskreg.h>
struct rs5c313_softc {
struct device sc_dev;
int sc_valid; /* oscillation halt sensing on init */
};
/* chip access methods */
void rtc_begin(struct rs5c313_softc *);
void rtc_ce(struct rs5c313_softc *, int);
void rtc_dir(struct rs5c313_softc *, int);
void rtc_clk(struct rs5c313_softc *, int);
int rtc_read(struct rs5c313_softc *);
void rtc_write(struct rs5c313_softc *, int);
int rs5c313_init(struct rs5c313_softc *);
int rs5c313_read_reg(struct rs5c313_softc *, int);
void rs5c313_write_reg(struct rs5c313_softc *, int, int);
void rs5c313_gettime(void *, time_t, struct clock_ymdhms *);
void rs5c313_settime(void *, struct clock_ymdhms *);
int
rs5c313_init(struct rs5c313_softc *sc)
{
int status = 0;
int retry;
rtc_ce(sc, 0);
rtc_begin(sc);
rtc_ce(sc, 1);
if ((rs5c313_read_reg(sc, RS5C313_CTRL) & CTRL_XSTP) == 0) {
sc->sc_valid = 1;
goto done;
}
sc->sc_valid = 0;
printf("%s: time not valid\n", sc->sc_dev.dv_xname);
rs5c313_write_reg(sc, RS5C313_TINT, 0);
rs5c313_write_reg(sc, RS5C313_CTRL, (CTRL_BASE | CTRL_ADJ));
for (retry = 1000; retry > 0; --retry) {
if (rs5c313_read_reg(sc, RS5C313_CTRL) & CTRL_BSY)
delay(1);
else
break;
}
if (retry == 0) {
status = EIO;
goto done;
}
rs5c313_write_reg(sc, RS5C313_CTRL, CTRL_BASE);
done:
rtc_ce(sc, 0);
return status;
}
int
rs5c313_read_reg(struct rs5c313_softc *sc, int addr)
{
int data;
/* output */
rtc_dir(sc, 1);
/* control */
rtc_write(sc, 1); /* ignored */
rtc_write(sc, 1); /* R/#W = 1(READ) */
rtc_write(sc, 1); /* AD = 1 */
rtc_write(sc, 0); /* DT = 0 */
/* address */
rtc_write(sc, addr & 0x8); /* A3 */
rtc_write(sc, addr & 0x4); /* A2 */
rtc_write(sc, addr & 0x2); /* A1 */
rtc_write(sc, addr & 0x1); /* A0 */
/* input */
rtc_dir(sc, 0);
/* ignore */
(void)rtc_read(sc);
(void)rtc_read(sc);
(void)rtc_read(sc);
(void)rtc_read(sc);
/* data */
data = rtc_read(sc); /* D3 */
data <<= 1;
data |= rtc_read(sc); /* D2 */
data <<= 1;
data |= rtc_read(sc); /* D1 */
data <<= 1;
data |= rtc_read(sc); /* D0 */
return data;
}
void
rs5c313_write_reg(struct rs5c313_softc *sc, int addr, int data)
{
/* output */
rtc_dir(sc, 1);
/* control */
rtc_write(sc, 1); /* ignored */
rtc_write(sc, 0); /* R/#W = 0 (WRITE) */
rtc_write(sc, 1); /* AD = 1 */
rtc_write(sc, 0); /* DT = 0 */
/* address */
rtc_write(sc, addr & 0x8); /* A3 */
rtc_write(sc, addr & 0x4); /* A2 */
rtc_write(sc, addr & 0x2); /* A1 */
rtc_write(sc, addr & 0x1); /* A0 */
/* control */
rtc_write(sc, 1); /* ignored */
rtc_write(sc, 0); /* R/#W = 0(WRITE) */
rtc_write(sc, 0); /* AD = 0 */
rtc_write(sc, 1); /* DT = 1 */
/* data */
rtc_write(sc, data & 0x8); /* D3 */
rtc_write(sc, data & 0x4); /* D2 */
rtc_write(sc, data & 0x2); /* D1 */
rtc_write(sc, data & 0x1); /* D0 */
}
void
rs5c313_gettime(void *cookie, time_t base, struct clock_ymdhms *dt)
{
struct rs5c313_softc *sc = cookie;
int retry;
int s;
/*
* If chip had invalid data on init, don't bother reading
* bogus values.
*/
if (sc->sc_valid == 0)
return;
s = splhigh();
rtc_begin(sc);
for (retry = 10; retry > 0; --retry) {
rtc_ce(sc, 1);
rs5c313_write_reg(sc, RS5C313_CTRL, CTRL_BASE);
if ((rs5c313_read_reg(sc, RS5C313_CTRL) & CTRL_BSY) == 0)
break;
rtc_ce(sc, 0);
delay(1);
}
if (retry == 0) {
splx(s);
return;
}
#define RTCGET(x, y) \
do { \
int ones = rs5c313_read_reg(sc, RS5C313_ ## y ## 1); \
int tens = rs5c313_read_reg(sc, RS5C313_ ## y ## 10); \
dt->dt_ ## x = tens * 10 + ones; \
} while (/* CONSTCOND */0)
RTCGET(sec, SEC);
RTCGET(min, MIN);
RTCGET(hour, HOUR);
RTCGET(day, DAY);
RTCGET(mon, MON);
RTCGET(year, YEAR);
#undef RTCGET
dt->dt_wday = rs5c313_read_reg(sc, RS5C313_WDAY);
rtc_ce(sc, 0);
splx(s);
dt->dt_year = (dt->dt_year % 100) + 1900;
if (dt->dt_year < 1970) {
dt->dt_year += 100;
}
}
void
rs5c313_settime(void *cookie, struct clock_ymdhms *dt)
{
struct rs5c313_softc *sc = cookie;
int retry;
int t;
int s;
s = splhigh();
rtc_begin(sc);
for (retry = 10; retry > 0; --retry) {
rtc_ce(sc, 1);
rs5c313_write_reg(sc, RS5C313_CTRL, CTRL_BASE);
if ((rs5c313_read_reg(sc, RS5C313_CTRL) & CTRL_BSY) == 0)
break;
rtc_ce(sc, 0);
delay(1);
}
if (retry == 0) {
splx(s);
return;
}
#define RTCSET(x, y) \
do { \
t = TOBCD(dt->dt_ ## y) & 0xff; \
rs5c313_write_reg(sc, RS5C313_ ## x ## 1, t & 0x0f); \
rs5c313_write_reg(sc, RS5C313_ ## x ## 10, (t >> 4) & 0x0f); \
} while (/* CONSTCOND */0)
RTCSET(SEC, sec);
RTCSET(MIN, min);
RTCSET(HOUR, hour);
RTCSET(DAY, day);
RTCSET(MON, mon);
#undef RTCSET
t = dt->dt_year % 100;
t = TOBCD(t);
rs5c313_write_reg(sc, RS5C313_YEAR1, t & 0x0f);
rs5c313_write_reg(sc, RS5C313_YEAR10, (t >> 4) & 0x0f);
rs5c313_write_reg(sc, RS5C313_WDAY, dt->dt_wday);
rtc_ce(sc, 0);
splx(s);
sc->sc_valid = 1;
}
struct rtc_ops rs5c313_ops = {
NULL,
NULL, /* not used */
rs5c313_gettime,
rs5c313_settime
};
void
rtc_begin(struct rs5c313_softc *sc)
{
SHREG_SCSPTR = SCSPTR_SPB1IO | SCSPTR_SPB1DT
| SCSPTR_SPB0IO | SCSPTR_SPB0DT;
delay(100);
}
/*
* CE pin
*/
void
rtc_ce(struct rs5c313_softc *sc, int onoff)
{
if (onoff)
_reg_write_1(LANDISK_PWRMNG, PWRMNG_RTC_CE);
else
_reg_write_1(LANDISK_PWRMNG, 0);
delay(600);
}
/*
* SCLK pin is connnected to SPB0DT.
* SPB0DT is always in output mode, we set SPB0IO in rtc_begin.
*/
void
rtc_clk(struct rs5c313_softc *sc, int onoff)
{
uint8_t r = SHREG_SCSPTR;
if (onoff)
r |= SCSPTR_SPB0DT;
else
r &= ~SCSPTR_SPB0DT;
SHREG_SCSPTR = r;
}
/*
* SIO pin is connected to SPB1DT.
* SPB1DT is output when SPB1IO is set.
*/
void
rtc_dir(struct rs5c313_softc *sc, int output)
{
uint8_t r = SHREG_SCSPTR;
if (output)
r |= SCSPTR_SPB1IO;
else
r &= ~SCSPTR_SPB1IO;
SHREG_SCSPTR = r;
}
/*
* Read bit from SPB1DT pin.
*/
int
rtc_read(struct rs5c313_softc *sc)
{
int bit;
delay(300);
bit = (SHREG_SCSPTR & SCSPTR_SPB1DT) ? 1 : 0;
rtc_clk(sc, 0);
delay(300);
rtc_clk(sc, 1);
return bit;
}
/*
* Write bit via SPB1DT pin.
*/
void
rtc_write(struct rs5c313_softc *sc, int bit)
{
uint8_t r = SHREG_SCSPTR;
if (bit)
r |= SCSPTR_SPB1DT;
else
r &= ~SCSPTR_SPB1DT;
SHREG_SCSPTR = r;
delay(300);
rtc_clk(sc, 0);
delay(300);
rtc_clk(sc, 1);
}
/* autoconf glue */
int rs5c313_landisk_match(struct device *, void *, void *);
void rs5c313_landisk_attach(struct device *, struct device *, void *);
const struct cfattach rsclock_ca = {
sizeof (struct rs5c313_softc),
rs5c313_landisk_match, rs5c313_landisk_attach
};
struct cfdriver rsclock_cd = {
0, "rsclock", DV_DULL
};
int
rs5c313_landisk_match(struct device *parent, void *vcf, void *aux)
{
static int matched = 0;
if (matched)
return (0);
return (matched = 1);
}
void
rs5c313_landisk_attach(struct device *parent, struct device *self, void *aux)
{
struct rs5c313_softc *sc = (void *)self;
printf(": RS5C313 real time clock\n");
if (rs5c313_init(sc) != 0) {
printf("%s: init failed\n", self->dv_xname);
return;
}
rs5c313_ops._cookie = sc;
sh_clock_init(SH_CLOCK_NORTC, &rs5c313_ops);
}
|