Home | History | Annotate | Line # | Download | only in i2c
r2025.c revision 1.1.4.3
      1  1.1.4.3  yamt /* $NetBSD: r2025.c,v 1.1.4.3 2006/04/01 12:06:56 yamt Exp $ */
      2  1.1.4.2  yamt 
      3  1.1.4.2  yamt /*-
      4  1.1.4.2  yamt  * Copyright (c) 2006 Shigeyuki Fukushima.
      5  1.1.4.2  yamt  * All rights reserved.
      6  1.1.4.2  yamt  *
      7  1.1.4.2  yamt  * Written by Shigeyuki Fukushima.
      8  1.1.4.2  yamt  *
      9  1.1.4.2  yamt  * Redistribution and use in source and binary forms, with or without
     10  1.1.4.2  yamt  * modification, are permitted provided that the following conditions
     11  1.1.4.2  yamt  * are met:
     12  1.1.4.2  yamt  * 1. Redistributions of source code must retain the above copyright
     13  1.1.4.2  yamt  *    notice, this list of conditions and the following disclaimer.
     14  1.1.4.2  yamt  * 2. Redistributions in binary form must reproduce the above
     15  1.1.4.2  yamt  *    copyright notice, this list of conditions and the following
     16  1.1.4.2  yamt  *    disclaimer in the documentation and/or other materials provided
     17  1.1.4.2  yamt  *    with the distribution.
     18  1.1.4.2  yamt  * 3. The name of the author may not be used to endorse or promote
     19  1.1.4.2  yamt  *    products derived from this software without specific prior
     20  1.1.4.2  yamt  *    written permission.
     21  1.1.4.2  yamt  *
     22  1.1.4.2  yamt  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
     23  1.1.4.2  yamt  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     24  1.1.4.2  yamt  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25  1.1.4.2  yamt  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
     26  1.1.4.2  yamt  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27  1.1.4.2  yamt  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
     28  1.1.4.2  yamt  * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     29  1.1.4.2  yamt  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
     30  1.1.4.2  yamt  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
     31  1.1.4.2  yamt  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
     32  1.1.4.2  yamt  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     33  1.1.4.2  yamt  */
     34  1.1.4.2  yamt 
     35  1.1.4.2  yamt #include <sys/cdefs.h>
     36  1.1.4.3  yamt __KERNEL_RCSID(0, "$NetBSD: r2025.c,v 1.1.4.3 2006/04/01 12:06:56 yamt Exp $");
     37  1.1.4.2  yamt 
     38  1.1.4.2  yamt #include <sys/param.h>
     39  1.1.4.2  yamt #include <sys/systm.h>
     40  1.1.4.2  yamt #include <sys/device.h>
     41  1.1.4.2  yamt #include <sys/kernel.h>
     42  1.1.4.2  yamt #include <sys/fcntl.h>
     43  1.1.4.2  yamt #include <sys/uio.h>
     44  1.1.4.2  yamt #include <sys/conf.h>
     45  1.1.4.2  yamt #include <sys/event.h>
     46  1.1.4.2  yamt 
     47  1.1.4.2  yamt #include <dev/clock_subr.h>
     48  1.1.4.2  yamt 
     49  1.1.4.2  yamt #include <dev/i2c/i2cvar.h>
     50  1.1.4.2  yamt #include <dev/i2c/r2025reg.h>
     51  1.1.4.2  yamt 
     52  1.1.4.2  yamt struct r2025rtc_softc {
     53  1.1.4.2  yamt 	struct device		sc_dev;
     54  1.1.4.2  yamt 	i2c_tag_t		sc_tag;
     55  1.1.4.2  yamt 	int			sc_address;
     56  1.1.4.2  yamt 	int			sc_open;
     57  1.1.4.2  yamt 	struct todr_chip_handle	sc_todr;
     58  1.1.4.2  yamt };
     59  1.1.4.2  yamt 
     60  1.1.4.2  yamt static void	r2025rtc_attach(struct device *, struct device *, void *);
     61  1.1.4.2  yamt static int	r2025rtc_match(struct device *, struct cfdata *, void *);
     62  1.1.4.2  yamt 
     63  1.1.4.2  yamt CFATTACH_DECL(r2025rtc, sizeof(struct r2025rtc_softc),
     64  1.1.4.2  yamt 	r2025rtc_match, r2025rtc_attach, NULL, NULL);
     65  1.1.4.2  yamt 
     66  1.1.4.2  yamt static int	r2025rtc_gettime(struct todr_chip_handle *,
     67  1.1.4.2  yamt 				volatile struct timeval *);
     68  1.1.4.2  yamt static int	r2025rtc_settime(struct todr_chip_handle *,
     69  1.1.4.2  yamt 				volatile struct timeval *);
     70  1.1.4.2  yamt static int	r2025rtc_getcal(struct todr_chip_handle *, int *);
     71  1.1.4.2  yamt static int	r2025rtc_setcal(struct todr_chip_handle *, int);
     72  1.1.4.2  yamt 
     73  1.1.4.2  yamt static int	r2025rtc_reg_write(struct r2025rtc_softc *, int, uint8_t*, int);
     74  1.1.4.2  yamt static int	r2025rtc_reg_read(struct r2025rtc_softc *, int, uint8_t*, int);
     75  1.1.4.2  yamt 
     76  1.1.4.2  yamt 
     77  1.1.4.2  yamt static int
     78  1.1.4.2  yamt r2025rtc_match(struct device *parent, struct cfdata *cf, void *arg)
     79  1.1.4.2  yamt {
     80  1.1.4.2  yamt 	struct i2c_attach_args *ia = arg;
     81  1.1.4.2  yamt 
     82  1.1.4.2  yamt 	/* match only R2025 RTC devices */
     83  1.1.4.2  yamt 	if (ia->ia_addr == R2025_ADDR)
     84  1.1.4.2  yamt 		return 1;
     85  1.1.4.2  yamt 
     86  1.1.4.2  yamt 	return 0;
     87  1.1.4.2  yamt }
     88  1.1.4.2  yamt 
     89  1.1.4.2  yamt static void
     90  1.1.4.2  yamt r2025rtc_attach(struct device *parent, struct device *self, void *arg)
     91  1.1.4.2  yamt {
     92  1.1.4.3  yamt 	struct r2025rtc_softc *sc = device_private(self);
     93  1.1.4.2  yamt 	struct i2c_attach_args *ia = arg;
     94  1.1.4.2  yamt 
     95  1.1.4.2  yamt 	aprint_normal(": RICOH R2025S/D Real-time Clock\n");
     96  1.1.4.2  yamt 
     97  1.1.4.2  yamt 	sc->sc_tag = ia->ia_tag;
     98  1.1.4.2  yamt 	sc->sc_address = ia->ia_addr;
     99  1.1.4.2  yamt 	sc->sc_open = 0;
    100  1.1.4.2  yamt 	sc->sc_todr.cookie = sc;
    101  1.1.4.2  yamt 	sc->sc_todr.todr_gettime = r2025rtc_gettime;
    102  1.1.4.2  yamt 	sc->sc_todr.todr_settime = r2025rtc_settime;
    103  1.1.4.2  yamt 	sc->sc_todr.todr_getcal = r2025rtc_getcal;
    104  1.1.4.2  yamt 	sc->sc_todr.todr_setcal = r2025rtc_setcal;
    105  1.1.4.2  yamt 	sc->sc_todr.todr_setwen = NULL;
    106  1.1.4.2  yamt 
    107  1.1.4.2  yamt 	todr_attach(&sc->sc_todr);
    108  1.1.4.2  yamt }
    109  1.1.4.2  yamt 
    110  1.1.4.2  yamt static int
    111  1.1.4.2  yamt r2025rtc_gettime(struct todr_chip_handle *ch, volatile struct timeval *tv)
    112  1.1.4.2  yamt {
    113  1.1.4.2  yamt 	struct r2025rtc_softc *sc = ch->cookie;
    114  1.1.4.2  yamt 	struct clock_ymdhms dt;
    115  1.1.4.2  yamt 	uint8_t rctrl;
    116  1.1.4.2  yamt 	uint8_t bcd[R2025_CLK_SIZE];
    117  1.1.4.2  yamt 	int hour;
    118  1.1.4.2  yamt 
    119  1.1.4.2  yamt 	memset(&dt, 0, sizeof(dt));
    120  1.1.4.2  yamt 
    121  1.1.4.2  yamt 	if (r2025rtc_reg_read(sc, R2025_REG_CTRL1, &rctrl, 1) != 0) {
    122  1.1.4.2  yamt 		printf("%s: r2025rtc_gettime: failed to read registers.\n",
    123  1.1.4.2  yamt 			sc->sc_dev.dv_xname);
    124  1.1.4.2  yamt 		return -1;
    125  1.1.4.2  yamt 	}
    126  1.1.4.2  yamt 
    127  1.1.4.2  yamt 	if (r2025rtc_reg_read(sc, R2025_REG_SEC, &bcd[0], R2025_CLK_SIZE)
    128  1.1.4.2  yamt 		!= 0) {
    129  1.1.4.2  yamt 		printf("%s: r2025rtc_gettime: failed to read registers.\n",
    130  1.1.4.2  yamt 			sc->sc_dev.dv_xname);
    131  1.1.4.2  yamt 		return -1;
    132  1.1.4.2  yamt 	}
    133  1.1.4.2  yamt 
    134  1.1.4.2  yamt 	dt.dt_sec = FROMBCD(bcd[R2025_REG_SEC] & R2025_REG_SEC_MASK);
    135  1.1.4.2  yamt 	dt.dt_min = FROMBCD(bcd[R2025_REG_MIN] & R2025_REG_MIN_MASK);
    136  1.1.4.2  yamt 	hour = FROMBCD(bcd[R2025_REG_HOUR] & R2025_REG_HOUR_MASK);
    137  1.1.4.2  yamt 	if (rctrl & R2025_REG_CTRL1_H1224) {
    138  1.1.4.2  yamt 		dt.dt_hour = hour;
    139  1.1.4.2  yamt 	} else {
    140  1.1.4.2  yamt 		if (hour == 12) {
    141  1.1.4.2  yamt 			dt.dt_hour = 0;
    142  1.1.4.2  yamt 		} else if (hour == 32) {
    143  1.1.4.2  yamt 			dt.dt_hour = 12;
    144  1.1.4.2  yamt 		} else if (hour > 13) {
    145  1.1.4.2  yamt 			dt.dt_hour = (hour - 8);
    146  1.1.4.2  yamt 		} else { /* (hour < 12) */
    147  1.1.4.2  yamt 			dt.dt_hour = hour;
    148  1.1.4.2  yamt 		}
    149  1.1.4.2  yamt 	}
    150  1.1.4.2  yamt 	dt.dt_wday = FROMBCD(bcd[R2025_REG_WDAY] & R2025_REG_WDAY_MASK);
    151  1.1.4.2  yamt 	dt.dt_day = FROMBCD(bcd[R2025_REG_DAY] & R2025_REG_DAY_MASK);
    152  1.1.4.2  yamt 	dt.dt_mon = FROMBCD(bcd[R2025_REG_MON] & R2025_REG_MON_MASK);
    153  1.1.4.2  yamt 	dt.dt_year = FROMBCD(bcd[R2025_REG_YEAR] & R2025_REG_YEAR_MASK)
    154  1.1.4.2  yamt 		+ ((bcd[R2025_REG_MON] & R2025_REG_MON_Y1920) ? 2000 : 1900);
    155  1.1.4.2  yamt 
    156  1.1.4.2  yamt 	tv->tv_sec = clock_ymdhms_to_secs(&dt);
    157  1.1.4.2  yamt 	tv->tv_usec = 0;
    158  1.1.4.2  yamt 
    159  1.1.4.2  yamt 	return 0;
    160  1.1.4.2  yamt }
    161  1.1.4.2  yamt 
    162  1.1.4.2  yamt static int
    163  1.1.4.2  yamt r2025rtc_settime(struct todr_chip_handle *ch, volatile struct timeval *tv)
    164  1.1.4.2  yamt {
    165  1.1.4.2  yamt 	struct r2025rtc_softc *sc = ch->cookie;
    166  1.1.4.2  yamt 	struct clock_ymdhms dt;
    167  1.1.4.2  yamt 	uint8_t rctrl;
    168  1.1.4.2  yamt 	uint8_t bcd[R2025_CLK_SIZE];
    169  1.1.4.2  yamt 
    170  1.1.4.2  yamt 	clock_secs_to_ymdhms(tv->tv_sec, &dt);
    171  1.1.4.2  yamt 
    172  1.1.4.2  yamt 	/* Y3K problem */
    173  1.1.4.2  yamt 	if (dt.dt_year >= 3000) {
    174  1.1.4.2  yamt 		printf("%s: r2025rtc_settime: "
    175  1.1.4.2  yamt 			"RTC does not support year 3000 or over.\n",
    176  1.1.4.2  yamt 			sc->sc_dev.dv_xname);
    177  1.1.4.2  yamt 		return -1;
    178  1.1.4.2  yamt 	}
    179  1.1.4.2  yamt 
    180  1.1.4.2  yamt 	if (r2025rtc_reg_read(sc, R2025_REG_CTRL1, &rctrl, 1) != 0) {
    181  1.1.4.2  yamt 		printf("%s: r2025rtc_settime: failed to read register.\n",
    182  1.1.4.2  yamt 			sc->sc_dev.dv_xname);
    183  1.1.4.2  yamt 		return -1;
    184  1.1.4.2  yamt 	}
    185  1.1.4.2  yamt 	rctrl |= R2025_REG_CTRL1_H1224;
    186  1.1.4.2  yamt 
    187  1.1.4.2  yamt 	/* setup registers 0x00-0x06 (7 byte) */
    188  1.1.4.2  yamt 	bcd[R2025_REG_SEC] = TOBCD(dt.dt_sec) & R2025_REG_SEC_MASK;
    189  1.1.4.2  yamt 	bcd[R2025_REG_MIN] = TOBCD(dt.dt_min) & R2025_REG_MIN_MASK;
    190  1.1.4.2  yamt 	bcd[R2025_REG_HOUR] = TOBCD(dt.dt_hour) & R2025_REG_HOUR_MASK;
    191  1.1.4.2  yamt 	bcd[R2025_REG_WDAY] = TOBCD(dt.dt_wday) & R2025_REG_WDAY_MASK;
    192  1.1.4.2  yamt 	bcd[R2025_REG_DAY] = TOBCD(dt.dt_day) & R2025_REG_DAY_MASK;
    193  1.1.4.2  yamt 	bcd[R2025_REG_MON] = (TOBCD(dt.dt_mon) & R2025_REG_MON_MASK)
    194  1.1.4.2  yamt 		| ((dt.dt_year >= 2000) ? R2025_REG_MON_Y1920 : 0);
    195  1.1.4.2  yamt 	bcd[R2025_REG_YEAR] = TOBCD(dt.dt_year % 100) & R2025_REG_YEAR_MASK;
    196  1.1.4.2  yamt 
    197  1.1.4.2  yamt 	/* Write RTC register */
    198  1.1.4.2  yamt 	if (r2025rtc_reg_write(sc, R2025_REG_CTRL1, &rctrl, 1) != 0) {
    199  1.1.4.2  yamt 		printf("%s: r2025rtc_settime: failed to write registers.\n",
    200  1.1.4.2  yamt 			sc->sc_dev.dv_xname);
    201  1.1.4.2  yamt 		return -1;
    202  1.1.4.2  yamt 	}
    203  1.1.4.2  yamt 	if (r2025rtc_reg_write(sc, R2025_REG_SEC, bcd, R2025_CLK_SIZE) != 0) {
    204  1.1.4.2  yamt 		printf("%s: r2025rtc_settime: failed to write registers.\n",
    205  1.1.4.2  yamt 			sc->sc_dev.dv_xname);
    206  1.1.4.2  yamt 		return -1;
    207  1.1.4.2  yamt 	}
    208  1.1.4.2  yamt 
    209  1.1.4.2  yamt 	return 0;
    210  1.1.4.2  yamt }
    211  1.1.4.2  yamt 
    212  1.1.4.2  yamt static int
    213  1.1.4.2  yamt r2025rtc_setcal(struct todr_chip_handle *ch, int cal)
    214  1.1.4.2  yamt {
    215  1.1.4.2  yamt 	return EOPNOTSUPP;
    216  1.1.4.2  yamt }
    217  1.1.4.2  yamt 
    218  1.1.4.2  yamt static int
    219  1.1.4.2  yamt r2025rtc_getcal(struct todr_chip_handle *ch, int *cal)
    220  1.1.4.2  yamt {
    221  1.1.4.2  yamt 	return EOPNOTSUPP;
    222  1.1.4.2  yamt }
    223  1.1.4.2  yamt 
    224  1.1.4.2  yamt static int
    225  1.1.4.2  yamt r2025rtc_reg_write(struct r2025rtc_softc *sc, int reg, uint8_t *val, int len)
    226  1.1.4.2  yamt {
    227  1.1.4.2  yamt 	int i;
    228  1.1.4.2  yamt 	uint8_t buf[1];
    229  1.1.4.2  yamt 	uint8_t cmdbuf[1];
    230  1.1.4.2  yamt 
    231  1.1.4.2  yamt 	if (iic_acquire_bus(sc->sc_tag, I2C_F_POLL)) {
    232  1.1.4.2  yamt 		printf("%s: r2025rtc_clock_write: failed to acquire I2C bus\n",
    233  1.1.4.2  yamt 			sc->sc_dev.dv_xname);
    234  1.1.4.2  yamt 		return -1;
    235  1.1.4.2  yamt 	}
    236  1.1.4.2  yamt 
    237  1.1.4.2  yamt 	for (i = 0 ; i < len ; i++) {
    238  1.1.4.2  yamt 		cmdbuf[0] = (((reg + i) << 4) & 0xf0);
    239  1.1.4.2  yamt 		buf[0] = val[i];
    240  1.1.4.2  yamt 		if (iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP, sc->sc_address,
    241  1.1.4.2  yamt 				cmdbuf, 1, buf, 1, I2C_F_POLL)) {
    242  1.1.4.2  yamt 			iic_release_bus(sc->sc_tag, I2C_F_POLL);
    243  1.1.4.2  yamt 			printf("%s: r2025rtc_reg_write: "
    244  1.1.4.2  yamt 				"failed to write registers\n",
    245  1.1.4.2  yamt 				sc->sc_dev.dv_xname);
    246  1.1.4.2  yamt 			return -1;
    247  1.1.4.2  yamt 		}
    248  1.1.4.2  yamt 	}
    249  1.1.4.2  yamt 
    250  1.1.4.2  yamt 	iic_release_bus(sc->sc_tag, I2C_F_POLL);
    251  1.1.4.2  yamt 
    252  1.1.4.2  yamt 	return 0;
    253  1.1.4.2  yamt }
    254  1.1.4.2  yamt 
    255  1.1.4.2  yamt static int
    256  1.1.4.2  yamt r2025rtc_reg_read(struct r2025rtc_softc *sc, int reg, uint8_t *val, int len)
    257  1.1.4.2  yamt {
    258  1.1.4.2  yamt 	int i;
    259  1.1.4.2  yamt 	uint8_t buf[1];
    260  1.1.4.2  yamt 	uint8_t cmdbuf[1];
    261  1.1.4.2  yamt 
    262  1.1.4.2  yamt 	if (iic_acquire_bus(sc->sc_tag, I2C_F_POLL)) {
    263  1.1.4.2  yamt 		printf("%s: r2025rtc_clock_read: failed to acquire I2C bus\n",
    264  1.1.4.2  yamt 			sc->sc_dev.dv_xname);
    265  1.1.4.2  yamt 		return -1;
    266  1.1.4.2  yamt 	}
    267  1.1.4.2  yamt 
    268  1.1.4.2  yamt 	for (i = 0 ; i < len ; i++) {
    269  1.1.4.2  yamt 		cmdbuf[0] = (((reg + i) << 4) & 0xf0);
    270  1.1.4.2  yamt 		buf[0] = 0;
    271  1.1.4.2  yamt 		if (iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP, sc->sc_address,
    272  1.1.4.2  yamt 				cmdbuf, 1, buf, 1, I2C_F_POLL)) {
    273  1.1.4.2  yamt 			iic_release_bus(sc->sc_tag, I2C_F_POLL);
    274  1.1.4.2  yamt 			printf("%s: r2025rtc_reg_read: "
    275  1.1.4.2  yamt 				"failed to write registers\n",
    276  1.1.4.2  yamt 				sc->sc_dev.dv_xname);
    277  1.1.4.2  yamt 			return -1;
    278  1.1.4.2  yamt 		}
    279  1.1.4.2  yamt 
    280  1.1.4.2  yamt 		*(val + i) = buf[0];
    281  1.1.4.2  yamt 	}
    282  1.1.4.2  yamt 
    283  1.1.4.2  yamt 	iic_release_bus(sc->sc_tag, I2C_F_POLL);
    284  1.1.4.2  yamt 
    285  1.1.4.2  yamt 	return 0;
    286  1.1.4.2  yamt }
    287