summaryrefslogtreecommitdiff
path: root/sys/arch/loongson/dev/m41t8xclock.c
blob: 8e216b444595e47e1267dc04a58c8e5d74036290 (plain)
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
/*	$OpenBSD: m41t8xclock.c,v 1.3 2014/01/06 21:38:46 pirofti Exp $	*/

/*
 * Copyright (c) 2010 Miodrag Vallat.
 *
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

/*
 * M41T8x clock connected to an I2C bus
 */

#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/systm.h>
#include <sys/device.h>

#include <dev/i2c/i2cvar.h>

#include <dev/ic/m41t8xreg.h>

#include <mips64/dev/clockvar.h>

struct m41t8xclock_softc {
	struct device	sc_dev;
	i2c_tag_t	sc_tag;
	i2c_addr_t	sc_addr;
};

int	m41t8xclock_match(struct device *, void *, void *);
void	m41t8xclock_attach(struct device *, struct device *, void *);

const struct cfattach mfokclock_ca = {
	sizeof(struct m41t8xclock_softc),
	m41t8xclock_match, m41t8xclock_attach
};

struct cfdriver mfokclock_cd = {
	NULL, "mfokclock", DV_DULL
};

void	m41t8xclock_get(void *, time_t, struct tod_time *);
void	m41t8xclock_set(void *, struct tod_time *);

int
m41t8xclock_match(struct device *parent, void *vcf, void *aux)
{
	struct i2c_attach_args *ia = (struct i2c_attach_args *)aux;
	struct cfdata *cf = (struct cfdata *)vcf;

	return strcmp(ia->ia_name, cf->cf_driver->cd_name) == 0;
}

void
m41t8xclock_attach(struct device *parent, struct device *self, void *aux)
{
	struct m41t8xclock_softc *sc = (struct m41t8xclock_softc *)self;
	struct i2c_attach_args *ia = (struct i2c_attach_args *)aux;

	sc->sc_tag = ia->ia_tag;
	sc->sc_addr = ia->ia_addr;

	sys_tod.tod_cookie = sc;
	sys_tod.tod_get = m41t8xclock_get;
	sys_tod.tod_set = m41t8xclock_set;

	printf("\n");
}

void
m41t8xclock_get(void *cookie, time_t unused, struct tod_time *tt)
{
	struct m41t8xclock_softc *sc = (struct m41t8xclock_softc *)cookie;
	uint8_t regno, data[M41T8X_TOD_LENGTH];
	int s;

	iic_acquire_bus(sc->sc_tag, 0);
	s = splclock();
	for (regno = M41T8X_TOD_START;
	    regno < M41T8X_TOD_START + M41T8X_TOD_LENGTH; regno++)
		iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP, sc->sc_addr,
		    &regno, sizeof regno, data + regno - M41T8X_TOD_START,
		    sizeof data[0], 0);
	splx(s);
	iic_release_bus(sc->sc_tag, 0);

	tt->sec = FROMBCD(data[M41T8X_SEC] & ~M41T8X_STOP);
	tt->min = FROMBCD(data[M41T8X_MIN]);
	tt->hour = FROMBCD(data[M41T8X_HR] & ~(M41T8X_CEB | M41T8X_CB));
	tt->dow = data[M41T8X_DOW];
	tt->day = FROMBCD(data[M41T8X_DAY]);
	tt->mon = FROMBCD(data[M41T8X_MON]);
	tt->year = FROMBCD(data[M41T8X_YEAR]) + 100;
	if (data[M41T8X_HR] & M41T8X_CB)
		tt->year += 100;
}

void
m41t8xclock_set(void *cookie, struct tod_time *tt)
{
	struct m41t8xclock_softc *sc = (struct m41t8xclock_softc *)cookie;
	uint8_t regno, data[M41T8X_TOD_LENGTH];
	int s;

	iic_acquire_bus(sc->sc_tag, 0);
	s = splclock();
	/* read current state */
	for (regno = M41T8X_TOD_START;
	    regno < M41T8X_TOD_START + M41T8X_TOD_LENGTH; regno++)
		iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP, sc->sc_addr,
		    &regno, sizeof regno, data + regno - M41T8X_TOD_START,
		    sizeof data[0], 0);
	/* compute new state */
	data[M41T8X_HSEC] = 0;
	data[M41T8X_SEC] = TOBCD(tt->sec);
	data[M41T8X_MIN] = TOBCD(tt->min);
	data[M41T8X_HR] &= M41T8X_CEB;
	if (tt->year >= 200)
		data[M41T8X_HR] |= M41T8X_CB;
	data[M41T8X_HR] |= TOBCD(tt->hour);
	data[M41T8X_DAY] = TOBCD(tt->day);
	data[M41T8X_MON] = TOBCD(tt->mon);
	if (tt->year >= 200)
		data[M41T8X_YEAR] = TOBCD(tt->year - 200);
	else
		data[M41T8X_YEAR] = TOBCD(tt->year - 100);
	/* write new state */
	for (regno = M41T8X_TOD_START;
	    regno < M41T8X_TOD_START + M41T8X_TOD_LENGTH; regno++)
		iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP, sc->sc_addr,
		    &regno, sizeof regno, data + regno, sizeof data[0], 0);
	splx(s);
	iic_release_bus(sc->sc_tag, 0);
}