1 /* $NetBSD: mkclock.c,v 1.9 2009/03/14 15:36:10 dsl Exp $ */
4 * Copyright (c) 2000 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
32 #include <sys/cdefs.h>
33 __KERNEL_RCSID(0, "$NetBSD: mkclock.c,v 1.9 2009/03/14 15:36:10 dsl Exp $");
35 #include <sys/param.h>
36 #include <sys/kernel.h>
37 #include <sys/device.h>
38 #include <sys/systm.h>
40 #include <dev/clock_subr.h>
42 #include <machine/cpu.h>
43 #include <machine/mainboard.h>
44 #include <machine/autoconf.h>
45 #include <machine/sysconf.h>
46 #include <machine/bus.h>
48 #include <mipsco/obio/clockreg.h>
50 struct mkclock_softc
{
52 bus_space_tag_t sc_bst
;
53 bus_space_handle_t sc_bsh
;
54 struct todr_chip_handle sc_todr
;
57 static int mkclock_match (struct device
*, struct cfdata
*, void *);
58 static void mkclock_attach (struct device
*, struct device
*, void *);
60 CFATTACH_DECL(mkclock
, sizeof(struct mkclock_softc
),
61 mkclock_match
, mkclock_attach
, NULL
, NULL
);
63 int mkclock_read (todr_chip_handle_t
, struct clock_ymdhms
*);
64 int mkclock_write (todr_chip_handle_t
, struct clock_ymdhms
*);
66 static int mk_read (struct mkclock_softc
*, int);
67 static void mk_write (struct mkclock_softc
*, int, int);
70 mkclock_match(struct device
*parent
, struct cfdata
*cf
, void *aux
)
76 mkclock_attach(struct device
*parent
, struct device
*self
, void *aux
)
78 struct mkclock_softc
*sc
= (void *)self
;
79 struct confargs
*ca
= aux
;
81 sc
->sc_bst
= ca
->ca_bustag
;
82 if (bus_space_map(ca
->ca_bustag
, ca
->ca_addr
,
86 printf(": cannot map registers\n");
90 sc
->sc_todr
.todr_settime_ymdhms
= mkclock_write
;
91 sc
->sc_todr
.todr_gettime_ymdhms
= mkclock_read
;
92 sc
->sc_todr
.cookie
= sc
;
93 todr_attach(&sc
->sc_todr
);
99 mk_read(struct mkclock_softc
*sc
, int reg
)
103 val
= bus_space_read_1(sc
->sc_bst
, sc
->sc_bsh
, DATA_PORT
+ reg
*4);
108 mk_write(struct mkclock_softc
*sc
, int reg
, int val
)
110 bus_space_write_1(sc
->sc_bst
, sc
->sc_bsh
,
111 DATA_PORT
+ reg
*4, TOBCD(val
));
115 mkclock_read(todr_chip_handle_t tch
, struct clock_ymdhms
*dt
)
117 struct mkclock_softc
*sc
= tch
->cookie
;
120 bus_space_write_1(sc
->sc_bst
, sc
->sc_bsh
, RTC_PORT
, READ_CLOCK
);
121 dt
->dt_sec
= mk_read(sc
, 0);
122 dt
->dt_min
= mk_read(sc
, 1);
123 dt
->dt_hour
= mk_read(sc
, 2);
124 dt
->dt_wday
= mk_read(sc
, 3);
125 dt
->dt_day
= mk_read(sc
, 4);
126 dt
->dt_mon
= mk_read(sc
, 5);
127 dt
->dt_year
= mk_read(sc
, 6);
128 bus_space_write_1(sc
->sc_bst
, sc
->sc_bsh
, RTC_PORT
, 0);
131 dt
->dt_year
= dt
->dt_year
+ (dt
->dt_year
>= 70 ? 1900 : 2000);
136 mkclock_write(todr_chip_handle_t tch
, struct clock_ymdhms
*dt
)
138 struct mkclock_softc
*sc
= tch
->cookie
;
141 year
= dt
->dt_year
% 100;
144 bus_space_write_1(sc
->sc_bst
, sc
->sc_bsh
, RTC_PORT
, SET_CLOCK
);
145 mk_write(sc
, 0, dt
->dt_sec
);
146 mk_write(sc
, 1, dt
->dt_min
);
147 mk_write(sc
, 2, dt
->dt_hour
);
148 /* week day not set */
149 mk_write(sc
, 4, dt
->dt_day
);
150 mk_write(sc
, 5, dt
->dt_mon
);
151 mk_write(sc
, 6, year
);
152 bus_space_write_1(sc
->sc_bst
, sc
->sc_bsh
, RTC_PORT
, 0);