Home | History | Annotate | Line # | Download | only in i2c
pcf8563.c revision 1.15
      1  1.15   thorpej /*	$NetBSD: pcf8563.c,v 1.15 2021/01/27 02:29:48 thorpej Exp $	*/
      2   1.1  jakllsch 
      3   1.1  jakllsch /*
      4   1.1  jakllsch  * Copyright (c) 2011 Jonathan A. Kollasch
      5   1.1  jakllsch  * All rights reserved.
      6   1.1  jakllsch  *
      7   1.1  jakllsch  * Redistribution and use in source and binary forms, with or without
      8   1.1  jakllsch  * modification, are permitted provided that the following conditions
      9   1.1  jakllsch  * are met:
     10   1.1  jakllsch  * 1. Redistributions of source code must retain the above copyright
     11   1.1  jakllsch  *    notice, this list of conditions and the following disclaimer.
     12   1.1  jakllsch  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1  jakllsch  *    notice, this list of conditions and the following disclaimer in the
     14   1.1  jakllsch  *    documentation and/or other materials provided with the distribution.
     15   1.1  jakllsch  *
     16   1.1  jakllsch  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     17   1.1  jakllsch  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     18   1.1  jakllsch  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     19   1.1  jakllsch  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
     20   1.1  jakllsch  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
     21   1.1  jakllsch  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     22   1.1  jakllsch  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
     23   1.1  jakllsch  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
     24   1.1  jakllsch  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
     25   1.1  jakllsch  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
     26   1.1  jakllsch  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27   1.1  jakllsch  */
     28   1.1  jakllsch 
     29   1.8  jmcneill /* XXX */
     30   1.8  jmcneill #if defined(__arm__) || defined(__aarch64__)
     31   1.8  jmcneill #include "opt_fdt.h"
     32   1.8  jmcneill #endif
     33   1.8  jmcneill 
     34   1.1  jakllsch #include <sys/cdefs.h>
     35  1.15   thorpej __KERNEL_RCSID(0, "$NetBSD: pcf8563.c,v 1.15 2021/01/27 02:29:48 thorpej Exp $");
     36   1.1  jakllsch 
     37   1.1  jakllsch #include <sys/param.h>
     38   1.1  jakllsch #include <sys/systm.h>
     39   1.1  jakllsch #include <sys/device.h>
     40   1.1  jakllsch #include <sys/kernel.h>
     41   1.1  jakllsch 
     42   1.1  jakllsch #include <dev/clock_subr.h>
     43   1.1  jakllsch 
     44   1.1  jakllsch #include <dev/i2c/i2cvar.h>
     45   1.1  jakllsch #include <dev/i2c/pcf8563reg.h>
     46   1.1  jakllsch 
     47   1.8  jmcneill #ifdef FDT
     48   1.8  jmcneill #include <dev/fdt/fdtvar.h>
     49   1.8  jmcneill #endif
     50   1.8  jmcneill 
     51  1.11   thorpej static const struct device_compatible_entry compat_data[] = {
     52  1.13   thorpej 	{ .compat = "nxp,pcf8563" },
     53  1.13   thorpej 	{ .compat = "pcf8563rtc" },
     54  1.15   thorpej 	DEVICE_COMPAT_EOL
     55  1.10   thorpej };
     56  1.10   thorpej 
     57   1.1  jakllsch struct pcf8563rtc_softc {
     58   1.1  jakllsch 	device_t sc_dev;
     59   1.1  jakllsch 	i2c_tag_t sc_tag;
     60   1.1  jakllsch 	int sc_addr;
     61   1.1  jakllsch 	struct todr_chip_handle sc_todr;
     62   1.1  jakllsch };
     63   1.1  jakllsch 
     64   1.1  jakllsch static int pcf8563rtc_match(device_t, cfdata_t, void *);
     65   1.1  jakllsch static void pcf8563rtc_attach(device_t, device_t, void *);
     66   1.1  jakllsch 
     67   1.1  jakllsch CFATTACH_DECL_NEW(pcf8563rtc, sizeof(struct pcf8563rtc_softc),
     68   1.1  jakllsch     pcf8563rtc_match, pcf8563rtc_attach, NULL, NULL);
     69   1.1  jakllsch 
     70   1.1  jakllsch static int pcf8563rtc_clock_read(struct pcf8563rtc_softc *, struct clock_ymdhms *);
     71   1.1  jakllsch static int pcf8563rtc_clock_write(struct pcf8563rtc_softc *, struct clock_ymdhms *);
     72   1.2  jakllsch static int pcf8563rtc_gettime(struct todr_chip_handle *, struct clock_ymdhms *);
     73   1.2  jakllsch static int pcf8563rtc_settime(struct todr_chip_handle *, struct clock_ymdhms *);
     74   1.1  jakllsch 
     75   1.1  jakllsch static int
     76   1.1  jakllsch pcf8563rtc_match(device_t parent, cfdata_t cf, void *aux)
     77   1.1  jakllsch {
     78   1.1  jakllsch 	struct i2c_attach_args *ia = aux;
     79   1.9   thorpej 	int match_result;
     80   1.9   thorpej 
     81  1.11   thorpej 	if (iic_use_direct_match(ia, cf, compat_data, &match_result))
     82   1.9   thorpej 		return match_result;
     83   1.9   thorpej 
     84   1.9   thorpej 	/* indirect config - check typical address */
     85   1.9   thorpej 	if (ia->ia_addr == PCF8563_ADDR)
     86   1.9   thorpej 		return I2C_MATCH_ADDRESS_ONLY;
     87   1.1  jakllsch 
     88   1.1  jakllsch 	return 0;
     89   1.1  jakllsch }
     90   1.1  jakllsch 
     91   1.1  jakllsch static void
     92   1.1  jakllsch pcf8563rtc_attach(device_t parent, device_t self, void *aux)
     93   1.1  jakllsch {
     94   1.1  jakllsch 	struct pcf8563rtc_softc *sc = device_private(self);
     95   1.1  jakllsch 	struct i2c_attach_args *ia = aux;
     96  1.12   thorpej 	int error;
     97   1.1  jakllsch 
     98   1.1  jakllsch 	aprint_naive(": Real-time Clock\n");
     99   1.1  jakllsch 	aprint_normal(": NXP PCF8563 Real-time Clock\n");
    100   1.1  jakllsch 
    101   1.1  jakllsch 	sc->sc_dev = self;
    102   1.1  jakllsch 	sc->sc_tag = ia->ia_tag;
    103   1.1  jakllsch 	sc->sc_addr = ia->ia_addr;
    104   1.1  jakllsch 	sc->sc_todr.cookie = sc;
    105   1.2  jakllsch 	sc->sc_todr.todr_gettime_ymdhms = pcf8563rtc_gettime;
    106   1.2  jakllsch 	sc->sc_todr.todr_settime_ymdhms = pcf8563rtc_settime;
    107   1.1  jakllsch 	sc->sc_todr.todr_setwen = NULL;
    108   1.1  jakllsch 
    109  1.12   thorpej 	if ((error = iic_acquire_bus(sc->sc_tag, 0)) != 0) {
    110  1.12   thorpej 		aprint_error_dev(sc->sc_dev,
    111  1.12   thorpej 		    "failed to acquire bus for attach\n");
    112  1.12   thorpej 		return;
    113  1.12   thorpej 	}
    114  1.12   thorpej 	if ((error = iic_smbus_write_byte(sc->sc_tag, sc->sc_addr,
    115  1.12   thorpej 					  PCF8563_R_CS1, 0, 0)) == 0) {
    116  1.12   thorpej 		error = iic_smbus_write_byte(sc->sc_tag, sc->sc_addr,
    117  1.12   thorpej 					     PCF8563_R_CS2, 0, 0);
    118  1.12   thorpej 	}
    119  1.12   thorpej 	iic_release_bus(sc->sc_tag, 0);
    120  1.12   thorpej 	if (error) {
    121  1.12   thorpej 		aprint_error_dev(sc->sc_dev, "failed to initialize RTC\n");
    122  1.12   thorpej 		return;
    123  1.12   thorpej 	}
    124   1.5  jmcneill 
    125   1.8  jmcneill #ifdef FDT
    126   1.8  jmcneill 	fdtbus_todr_attach(self, ia->ia_cookie, &sc->sc_todr);
    127   1.8  jmcneill #else
    128   1.1  jakllsch 	todr_attach(&sc->sc_todr);
    129   1.8  jmcneill #endif
    130   1.1  jakllsch }
    131   1.1  jakllsch 
    132   1.1  jakllsch static int
    133   1.2  jakllsch pcf8563rtc_gettime(struct todr_chip_handle *ch, struct clock_ymdhms *dt)
    134   1.1  jakllsch {
    135   1.1  jakllsch 	struct pcf8563rtc_softc *sc = ch->cookie;
    136   1.1  jakllsch 
    137  1.12   thorpej 	return pcf8563rtc_clock_read(sc, dt);
    138   1.1  jakllsch }
    139   1.1  jakllsch 
    140   1.1  jakllsch static int
    141   1.2  jakllsch pcf8563rtc_settime(struct todr_chip_handle *ch, struct clock_ymdhms *dt)
    142   1.1  jakllsch {
    143   1.1  jakllsch         struct pcf8563rtc_softc *sc = ch->cookie;
    144   1.1  jakllsch 
    145  1.12   thorpej 	return pcf8563rtc_clock_write(sc, dt);
    146   1.1  jakllsch }
    147   1.1  jakllsch 
    148   1.1  jakllsch static int
    149   1.1  jakllsch pcf8563rtc_clock_read(struct pcf8563rtc_softc *sc, struct clock_ymdhms *dt)
    150   1.1  jakllsch {
    151   1.1  jakllsch 	uint8_t bcd[PCF8563_NREGS];
    152   1.6  jmcneill 	uint8_t reg = PCF8563_R_SECOND;
    153  1.12   thorpej 	int error;
    154   1.1  jakllsch 
    155  1.12   thorpej 	if ((error = iic_acquire_bus(sc->sc_tag, 0)) != 0) {
    156   1.1  jakllsch 		device_printf(sc->sc_dev, "acquire bus for read failed\n");
    157  1.12   thorpej 		return error;
    158   1.1  jakllsch 	}
    159   1.1  jakllsch 
    160  1.12   thorpej 	if ((error = iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP, sc->sc_addr,
    161  1.12   thorpej 			      &reg, 1, &bcd[reg], PCF8563_R_YEAR - reg + 1,
    162  1.12   thorpej 			      0)) != 0) {
    163  1.12   thorpej 		iic_release_bus(sc->sc_tag, 0);
    164   1.1  jakllsch 		device_printf(sc->sc_dev, "read failed\n");
    165  1.12   thorpej 		return error;
    166   1.1  jakllsch 	}
    167   1.1  jakllsch 
    168  1.12   thorpej 	iic_release_bus(sc->sc_tag, 0);
    169   1.1  jakllsch 
    170   1.5  jmcneill 	if (bcd[PCF8563_R_SECOND] & PCF8563_M_VL)
    171  1.12   thorpej 		return EIO;
    172   1.5  jmcneill 
    173   1.4  christos 	dt->dt_sec = bcdtobin(bcd[PCF8563_R_SECOND] & PCF8563_M_SECOND);
    174   1.4  christos 	dt->dt_min = bcdtobin(bcd[PCF8563_R_MINUTE] & PCF8563_M_MINUTE);
    175   1.4  christos 	dt->dt_hour = bcdtobin(bcd[PCF8563_R_HOUR] & PCF8563_M_HOUR);
    176   1.4  christos 	dt->dt_day = bcdtobin(bcd[PCF8563_R_DAY] & PCF8563_M_DAY);
    177   1.6  jmcneill 	dt->dt_wday = bcdtobin(bcd[PCF8563_R_WEEKDAY] & PCF8563_M_WEEKDAY);
    178   1.4  christos 	dt->dt_mon = bcdtobin(bcd[PCF8563_R_MONTH] & PCF8563_M_MONTH);
    179   1.5  jmcneill 	dt->dt_year = 1900 +
    180   1.5  jmcneill 	    (bcdtobin(bcd[PCF8563_R_YEAR] & PCF8563_M_YEAR) % 100);
    181   1.6  jmcneill 	if ((bcd[PCF8563_R_MONTH] & PCF8563_M_CENTURY) == 0)
    182   1.5  jmcneill 		dt->dt_year += 100;
    183   1.1  jakllsch 
    184  1.12   thorpej 	return error;
    185   1.1  jakllsch }
    186   1.1  jakllsch 
    187   1.1  jakllsch static int
    188   1.1  jakllsch pcf8563rtc_clock_write(struct pcf8563rtc_softc *sc, struct clock_ymdhms *dt)
    189   1.1  jakllsch {
    190   1.1  jakllsch 	uint8_t bcd[PCF8563_NREGS];
    191   1.1  jakllsch 	uint8_t reg = PCF8563_R_SECOND;
    192  1.12   thorpej 	int error;
    193   1.1  jakllsch 
    194   1.4  christos 	bcd[PCF8563_R_SECOND] = bintobcd(dt->dt_sec);
    195   1.4  christos 	bcd[PCF8563_R_MINUTE] = bintobcd(dt->dt_min);
    196   1.4  christos 	bcd[PCF8563_R_HOUR] = bintobcd(dt->dt_hour);
    197   1.4  christos 	bcd[PCF8563_R_DAY] = bintobcd(dt->dt_day);
    198   1.4  christos 	bcd[PCF8563_R_WEEKDAY] = bintobcd(dt->dt_wday);
    199   1.4  christos 	bcd[PCF8563_R_MONTH] = bintobcd(dt->dt_mon);
    200   1.4  christos 	bcd[PCF8563_R_YEAR] = bintobcd(dt->dt_year % 100);
    201   1.6  jmcneill 	if (dt->dt_year < 2000)
    202   1.5  jmcneill 		bcd[PCF8563_R_MONTH] |= PCF8563_M_CENTURY;
    203   1.1  jakllsch 
    204  1.12   thorpej 	if ((error = iic_acquire_bus(sc->sc_tag, 0)) != 0) {
    205   1.1  jakllsch 		device_printf(sc->sc_dev, "acquire bus for write failed\n");
    206  1.12   thorpej 		return error;
    207   1.1  jakllsch 	}
    208   1.1  jakllsch 
    209  1.12   thorpej 	if ((error = iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP, sc->sc_addr, &reg, 1, &bcd[reg], PCF8563_R_YEAR - reg + 1, 0)) != 0) {
    210  1.12   thorpej 		iic_release_bus(sc->sc_tag, 0);
    211   1.1  jakllsch 		device_printf(sc->sc_dev, "write failed\n");
    212  1.12   thorpej 		return error;
    213   1.1  jakllsch 	}
    214   1.1  jakllsch 
    215  1.12   thorpej 	iic_release_bus(sc->sc_tag, 0);
    216   1.1  jakllsch 
    217  1.12   thorpej 	return error;
    218   1.1  jakllsch }
    219