1 /* $NetBSD: max6900.c,v 1.11 2008/06/08 03:49:26 tsutsui Exp $ */
4 * Copyright (c) 2003 Wasabi Systems, Inc.
7 * Written by Steve C. Woodford and Jason R. Thorpe for Wasabi Systems, Inc.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed for the NetBSD Project by
20 * Wasabi Systems, Inc.
21 * 4. The name of Wasabi Systems, Inc. may not be used to endorse
22 * or promote products derived from this software without specific prior
25 * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
29 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
38 #include <sys/cdefs.h>
39 __KERNEL_RCSID(0, "$NetBSD: max6900.c,v 1.11 2008/06/08 03:49:26 tsutsui Exp $");
41 #include <sys/param.h>
42 #include <sys/systm.h>
43 #include <sys/device.h>
44 #include <sys/kernel.h>
45 #include <sys/fcntl.h>
48 #include <sys/event.h>
50 #include <dev/clock_subr.h>
52 #include <dev/i2c/i2cvar.h>
53 #include <dev/i2c/max6900reg.h>
60 struct todr_chip_handle sc_todr
;
63 static int maxrtc_match(device_t
, cfdata_t
, void *);
64 static void maxrtc_attach(device_t
, device_t
, void *);
66 CFATTACH_DECL_NEW(maxrtc
, sizeof(struct maxrtc_softc
),
67 maxrtc_match
, maxrtc_attach
, NULL
, NULL
);
68 extern struct cfdriver maxrtc_cd
;
70 dev_type_open(maxrtc_open
);
71 dev_type_close(maxrtc_close
);
72 dev_type_read(maxrtc_read
);
73 dev_type_write(maxrtc_write
);
75 const struct cdevsw maxrtc_cdevsw
= {
76 maxrtc_open
, maxrtc_close
, maxrtc_read
, maxrtc_write
, noioctl
,
77 nostop
, notty
, nopoll
, nommap
, nokqfilter
, D_OTHER
80 static int maxrtc_clock_read(struct maxrtc_softc
*, struct clock_ymdhms
*);
81 static int maxrtc_clock_write(struct maxrtc_softc
*, struct clock_ymdhms
*);
82 static int maxrtc_gettime(struct todr_chip_handle
*, struct timeval
*);
83 static int maxrtc_settime(struct todr_chip_handle
*, struct timeval
*);
86 maxrtc_match(device_t parent
, cfdata_t cf
, void *aux
)
88 struct i2c_attach_args
*ia
= aux
;
90 if ((ia
->ia_addr
& MAX6900_ADDRMASK
) == MAX6900_ADDR
)
97 maxrtc_attach(device_t parent
, device_t self
, void *aux
)
99 struct maxrtc_softc
*sc
= device_private(self
);
100 struct i2c_attach_args
*ia
= aux
;
102 sc
->sc_tag
= ia
->ia_tag
;
103 sc
->sc_address
= ia
->ia_addr
;
106 aprint_naive(": Real-time Clock/NVRAM\n");
107 aprint_normal(": MAX6900 Real-time Clock/NVRAM\n");
111 sc
->sc_todr
.cookie
= sc
;
112 sc
->sc_todr
.todr_gettime
= maxrtc_gettime
;
113 sc
->sc_todr
.todr_settime
= maxrtc_settime
;
114 sc
->sc_todr
.todr_setwen
= NULL
;
116 todr_attach(&sc
->sc_todr
);
121 maxrtc_open(dev_t dev
, int flag
, int fmt
, struct lwp
*l
)
123 struct maxrtc_softc
*sc
;
125 if ((sc
= device_lookup_private(&maxrtc_cd
, minor(dev
))) == NULL
)
139 maxrtc_close(dev_t dev
, int flag
, int fmt
, struct lwp
*l
)
141 struct maxrtc_softc
*sc
;
143 if ((sc
= device_lookup_private(&maxrtc_cd
, minor(dev
))) == NULL
)
152 maxrtc_read(dev_t dev
, struct uio
*uio
, int flags
)
154 struct maxrtc_softc
*sc
;
155 u_int8_t ch
, cmdbuf
[1];
158 if ((sc
= device_lookup_private(&maxrtc_cd
, minor(dev
))) == NULL
)
161 if (uio
->uio_offset
>= MAX6900_RAM_BYTES
)
164 if ((error
= iic_acquire_bus(sc
->sc_tag
, 0)) != 0)
167 while (uio
->uio_resid
&& uio
->uio_offset
< MAX6900_RAM_BYTES
) {
168 a
= (int)uio
->uio_offset
;
169 cmdbuf
[0] = MAX6900_REG_RAM(a
) | MAX6900_CMD_READ
;
170 if ((error
= iic_exec(sc
->sc_tag
, I2C_OP_READ_WITH_STOP
,
171 sc
->sc_address
, cmdbuf
, 1,
173 iic_release_bus(sc
->sc_tag
, 0);
174 aprint_error_dev(sc
->sc_dev
,
175 "maxrtc_read: read failed at 0x%x\n", a
);
178 if ((error
= uiomove(&ch
, 1, uio
)) != 0) {
179 iic_release_bus(sc
->sc_tag
, 0);
184 iic_release_bus(sc
->sc_tag
, 0);
191 maxrtc_write(dev_t dev
, struct uio
*uio
, int flags
)
193 struct maxrtc_softc
*sc
;
195 int a
, error
, sverror
;
197 if ((sc
= device_lookup_private(&maxrtc_cd
, minor(dev
))) == NULL
)
200 if (uio
->uio_offset
>= MAX6900_RAM_BYTES
)
203 if ((error
= iic_acquire_bus(sc
->sc_tag
, 0)) != 0)
206 /* Start by clearing the control register's write-protect bit. */
207 cmdbuf
[0] = MAX6900_REG_CONTROL
| MAX6900_CMD_WRITE
;
210 if ((error
= iic_exec(sc
->sc_tag
, I2C_OP_WRITE
, sc
->sc_address
,
211 cmdbuf
, 1, &cmdbuf
[1], 1, 0)) != 0) {
212 iic_release_bus(sc
->sc_tag
, 0);
213 aprint_error_dev(sc
->sc_dev
,
214 "maxrtc_write: failed to clear WP bit\n");
218 while (uio
->uio_resid
&& uio
->uio_offset
< MAX6900_RAM_BYTES
) {
219 a
= (int)uio
->uio_offset
;
221 cmdbuf
[0] = MAX6900_REG_RAM(a
) | MAX6900_CMD_WRITE
;
222 if ((error
= uiomove(&cmdbuf
[1], 1, uio
)) != 0)
225 if ((error
= iic_exec(sc
->sc_tag
, I2C_OP_WRITE
, sc
->sc_address
,
226 cmdbuf
, 1, &cmdbuf
[1], 1, 0)) != 0) {
227 aprint_error_dev(sc
->sc_dev
,
228 "maxrtc_write: write failed at 0x%x\n", a
);
233 /* Set the write-protect bit again. */
234 cmdbuf
[0] = MAX6900_REG_CONTROL
| MAX6900_CMD_WRITE
;
235 cmdbuf
[1] = MAX6900_CONTROL_WP
;
238 if ((error
= iic_exec(sc
->sc_tag
, I2C_OP_WRITE_WITH_STOP
,
239 sc
->sc_address
, cmdbuf
, 1,
240 &cmdbuf
[1], 1, 0)) != 0) {
243 aprint_error_dev(sc
->sc_dev
,
244 "maxrtc_write: failed to set WP bit\n");
247 iic_release_bus(sc
->sc_tag
, 0);
253 maxrtc_gettime(struct todr_chip_handle
*ch
, struct timeval
*tv
)
255 struct maxrtc_softc
*sc
= ch
->cookie
;
256 struct clock_ymdhms dt
;
258 if (maxrtc_clock_read(sc
, &dt
) == 0)
261 tv
->tv_sec
= clock_ymdhms_to_secs(&dt
);
268 maxrtc_settime(struct todr_chip_handle
*ch
, struct timeval
*tv
)
270 struct maxrtc_softc
*sc
= ch
->cookie
;
271 struct clock_ymdhms dt
;
273 clock_secs_to_ymdhms(tv
->tv_sec
, &dt
);
275 if (maxrtc_clock_write(sc
, &dt
) == 0)
282 * While the MAX6900 has a nice Clock Burst Read/Write command,
283 * we can't use it, since some I2C controllers do not support
284 * anything other than single-byte transfers.
286 static int max6900_rtc_offset
[] = {
294 MAX6900_REG_CENTURY
, /* control, if burst */
298 maxrtc_clock_read(struct maxrtc_softc
*sc
, struct clock_ymdhms
*dt
)
300 u_int8_t bcd
[MAX6900_BURST_LEN
], cmdbuf
[1];
303 if (iic_acquire_bus(sc
->sc_tag
, I2C_F_POLL
)) {
304 aprint_error_dev(sc
->sc_dev
,
305 "maxrtc_clock_read: failed to acquire I2C bus\n");
309 /* Read each timekeeping register in order. */
310 for (i
= 0; i
< MAX6900_BURST_LEN
; i
++) {
311 cmdbuf
[0] = max6900_rtc_offset
[i
] | MAX6900_CMD_READ
;
313 if (iic_exec(sc
->sc_tag
, I2C_OP_READ_WITH_STOP
,
314 sc
->sc_address
, cmdbuf
, 1,
315 &bcd
[i
], 1, I2C_F_POLL
)) {
316 iic_release_bus(sc
->sc_tag
, I2C_F_POLL
);
317 aprint_error_dev(sc
->sc_dev
,
318 "maxrtc_clock_read: failed to read rtc "
320 max6900_rtc_offset
[i
]);
326 iic_release_bus(sc
->sc_tag
, I2C_F_POLL
);
329 * Convert the MAX6900's register values into something useable
331 dt
->dt_sec
= FROMBCD(bcd
[MAX6900_BURST_SECOND
] & MAX6900_SECOND_MASK
);
332 dt
->dt_min
= FROMBCD(bcd
[MAX6900_BURST_MINUTE
] & MAX6900_MINUTE_MASK
);
334 if (bcd
[MAX6900_BURST_HOUR
] & MAX6900_HOUR_12HRS
) {
335 dt
->dt_hour
= FROMBCD(bcd
[MAX6900_BURST_HOUR
] &
336 MAX6900_HOUR_12MASK
);
337 if (bcd
[MAX6900_BURST_HOUR
] & MAX6900_HOUR_12HRS_PM
)
340 dt
->dt_hour
= FROMBCD(bcd
[MAX6900_BURST_HOUR
] &
341 MAX6900_HOUR_24MASK
);
344 dt
->dt_day
= FROMBCD(bcd
[MAX6900_BURST_DATE
] & MAX6900_DATE_MASK
);
345 dt
->dt_mon
= FROMBCD(bcd
[MAX6900_BURST_MONTH
] & MAX6900_MONTH_MASK
);
346 dt
->dt_year
= FROMBCD(bcd
[MAX6900_BURST_YEAR
]);
347 /* century in the burst control slot */
348 dt
->dt_year
+= (int)FROMBCD(bcd
[MAX6900_BURST_CONTROL
]) * 100;
354 maxrtc_clock_write(struct maxrtc_softc
*sc
, struct clock_ymdhms
*dt
)
356 uint8_t bcd
[MAX6900_BURST_LEN
], cmdbuf
[2];
357 uint8_t init_seconds
, final_seconds
;
361 * Convert our time representation into something the MAX6900
364 bcd
[MAX6900_BURST_SECOND
] = TOBCD(dt
->dt_sec
);
365 bcd
[MAX6900_BURST_MINUTE
] = TOBCD(dt
->dt_min
);
366 bcd
[MAX6900_BURST_HOUR
] = TOBCD(dt
->dt_hour
) & MAX6900_HOUR_24MASK
;
367 bcd
[MAX6900_BURST_DATE
] = TOBCD(dt
->dt_day
);
368 bcd
[MAX6900_BURST_WDAY
] = TOBCD(dt
->dt_wday
);
369 bcd
[MAX6900_BURST_MONTH
] = TOBCD(dt
->dt_mon
);
370 bcd
[MAX6900_BURST_YEAR
] = TOBCD(dt
->dt_year
% 100);
371 /* century in control slot */
372 bcd
[MAX6900_BURST_CONTROL
] = TOBCD(dt
->dt_year
/ 100);
374 if (iic_acquire_bus(sc
->sc_tag
, I2C_F_POLL
)) {
375 aprint_error_dev(sc
->sc_dev
,
376 "maxrtc_clock_write: failed to acquire I2C bus\n");
380 /* Start by clearing the control register's write-protect bit. */
381 cmdbuf
[0] = MAX6900_REG_CONTROL
| MAX6900_CMD_WRITE
;
384 if (iic_exec(sc
->sc_tag
, I2C_OP_WRITE
, sc
->sc_address
,
385 cmdbuf
, 1, &cmdbuf
[1], 1, I2C_F_POLL
)) {
386 iic_release_bus(sc
->sc_tag
, I2C_F_POLL
);
387 aprint_error_dev(sc
->sc_dev
,
388 "maxrtc_clock_write: failed to clear WP bit\n");
393 * The MAX6900 RTC manual recommends ensuring "atomicity" of
394 * a non-burst write by:
397 * - reading back SECONDS, remembering it as "initial seconds"
398 * - write the remaing RTC registers
399 * - read back SECONDS as "final seconds"
400 * - if "initial seconds" == 59, ensure "final seconds" == 59
401 * - else, ensure "final seconds" is no more than one second
402 * beyond "initial seconds".
405 cmdbuf
[0] = MAX6900_REG_SECOND
| MAX6900_CMD_WRITE
;
406 if (iic_exec(sc
->sc_tag
, I2C_OP_WRITE
, sc
->sc_address
,
407 cmdbuf
, 1, &bcd
[MAX6900_BURST_SECOND
], 1, I2C_F_POLL
)) {
408 iic_release_bus(sc
->sc_tag
, I2C_F_POLL
);
409 aprint_error_dev(sc
->sc_dev
,
410 "maxrtc_clock_write: failed to write SECONDS\n");
414 cmdbuf
[0] = MAX6900_REG_SECOND
| MAX6900_CMD_READ
;
415 if (iic_exec(sc
->sc_tag
, I2C_OP_READ
, sc
->sc_address
,
416 cmdbuf
, 1, &init_seconds
, 1, I2C_F_POLL
)) {
417 iic_release_bus(sc
->sc_tag
, I2C_F_POLL
);
418 aprint_error_dev(sc
->sc_dev
,
419 "maxrtc_clock_write: failed to read "
420 "INITIAL SECONDS\n");
424 for (i
= 1; i
< MAX6900_BURST_LEN
; i
++) {
425 cmdbuf
[0] = max6900_rtc_offset
[i
] | MAX6900_CMD_WRITE
;
426 if (iic_exec(sc
->sc_tag
,
427 i
!= MAX6900_BURST_LEN
- 1 ? I2C_OP_WRITE
:
428 I2C_OP_WRITE_WITH_STOP
, sc
->sc_address
,
429 cmdbuf
, 1, &bcd
[i
], 1, I2C_F_POLL
)) {
430 iic_release_bus(sc
->sc_tag
, I2C_F_POLL
);
431 aprint_error_dev(sc
->sc_dev
,
432 "maxrtc_clock_write: failed to write rtc "
434 max6900_rtc_offset
[i
]);
439 cmdbuf
[0] = MAX6900_REG_SECOND
| MAX6900_CMD_READ
;
440 if (iic_exec(sc
->sc_tag
, I2C_OP_READ_WITH_STOP
, sc
->sc_address
,
441 cmdbuf
, 1, &final_seconds
, 1, I2C_F_POLL
)) {
442 iic_release_bus(sc
->sc_tag
, I2C_F_POLL
);
443 aprint_error_dev(sc
->sc_dev
,
444 "maxrtc_clock_write: failed to read "
449 if ((init_seconds
== 59 && final_seconds
!= 59) ||
450 (init_seconds
!= 59 && final_seconds
!= init_seconds
+ 1)) {
452 printf("%s: maxrtc_clock_write: init %d, final %d, try again\n",
453 device_xname(sc
->sc_dev
), init_seconds
, final_seconds
);
458 /* Finish by setting the control register's write-protect bit. */
459 cmdbuf
[0] = MAX6900_REG_CONTROL
| MAX6900_CMD_WRITE
;
460 cmdbuf
[1] = MAX6900_CONTROL_WP
;
462 if (iic_exec(sc
->sc_tag
, I2C_OP_WRITE_WITH_STOP
, sc
->sc_address
,
463 cmdbuf
, 1, &cmdbuf
[1], 1, I2C_F_POLL
)) {
464 iic_release_bus(sc
->sc_tag
, I2C_F_POLL
);
465 aprint_error_dev(sc
->sc_dev
,
466 "maxrtc_clock_write: failed to set WP bit\n");
470 iic_release_bus(sc
->sc_tag
, I2C_F_POLL
);