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
|
/* $OpenBSD: plrtc.c,v 1.1 2017/01/25 10:14:40 jsg Exp $ */
/*
* Copyright (c) 2015 Jonathan Gray <jsg@openbsd.org>
*
* 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.
*/
#include <sys/param.h>
#include <sys/device.h>
#include <sys/malloc.h>
#include <sys/systm.h>
#include <machine/bus.h>
#include <machine/fdt.h>
#include <dev/clock_subr.h>
#include <dev/ofw/openfirm.h>
#include <dev/ofw/fdt.h>
#define RTCDR 0x00
#define RTCMR 0x04
#define RTCLR 0x08
#define RTCCR 0x0c
#define RTCIMSC 0x10
#define RTCRIS 0x14
#define RTCMIS 0x18
#define RTCICR 0x1c
#define RTCCR_START (1 << 0)
extern todr_chip_handle_t todr_handle;
struct plrtc_softc {
struct device sc_dev;
bus_space_tag_t sc_iot;
bus_space_handle_t sc_ioh;
};
int plrtc_match(struct device *, void *, void *);
void plrtc_attach(struct device *, struct device *, void *);
int plrtc_gettime(struct todr_chip_handle *, struct timeval *);
int plrtc_settime(struct todr_chip_handle *, struct timeval *);
struct cfattach plrtc_ca = {
sizeof(struct plrtc_softc), plrtc_match, plrtc_attach
};
struct cfdriver plrtc_cd = {
NULL, "plrtc", DV_DULL
};
int
plrtc_gettime(todr_chip_handle_t handle, struct timeval *tv)
{
struct plrtc_softc *sc = handle->cookie;
uint32_t tod;
tod = bus_space_read_4(sc->sc_iot, sc->sc_ioh, RTCDR);
tv->tv_sec = tod;
tv->tv_usec = 0;
return (0);
}
int
plrtc_settime(todr_chip_handle_t handle, struct timeval *tv)
{
struct plrtc_softc *sc = handle->cookie;
bus_space_write_4(sc->sc_iot, sc->sc_ioh, RTCLR, tv->tv_sec);
return (0);
}
int
plrtc_match(struct device *parent, void *match, void *aux)
{
struct fdt_attach_args *faa = aux;
return (OF_is_compatible(faa->fa_node, "arm,pl031"));
}
void
plrtc_attach(struct device *parent, struct device *self, void *aux)
{
struct fdt_attach_args *faa = aux;
struct plrtc_softc *sc = (struct plrtc_softc *) self;
todr_chip_handle_t handle;
if (faa->fa_nreg < 1) {
printf(": no register data\n");
return;
}
sc->sc_iot = faa->fa_iot;
if (bus_space_map(sc->sc_iot, faa->fa_reg[0].addr,
faa->fa_reg[0].size, 0, &sc->sc_ioh)) {
printf(": failed to map mem space\n");
return;
}
handle = malloc(sizeof(struct todr_chip_handle), M_DEVBUF,
M_NOWAIT | M_ZERO);
if (handle == NULL)
panic("couldn't allocate todr_handle");
handle->cookie = sc;
handle->todr_gettime = plrtc_gettime;
handle->todr_settime = plrtc_settime;
todr_handle = handle;
/* enable the rtc */
bus_space_write_4(sc->sc_iot, sc->sc_ioh, RTCCR, RTCCR_START);
printf("\n");
}
|