1 /* $NetBSD: obio_mputmr.c,v 1.3 2008/08/27 11:03:10 matt Exp $ */
4 * Based on omap_mputmr.c
5 * Based on i80321_timer.c and arch/arm/sa11x0/sa11x0_ost.c
7 * Copyright (c) 1997 Mark Brinicombe.
8 * Copyright (c) 1997 Causality Limited.
11 * This code is derived from software contributed to The NetBSD Foundation
12 * by IWAMOTO Toshihiro and Ichiro FUKUHARA.
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in the
21 * documentation and/or other materials provided with the distribution.
22 * 3. All advertising materials mentioning features or use of this software
23 * must display the following acknowledgement:
24 * This product includes software developed by the NetBSD
25 * Foundation, Inc. and its contributors.
26 * 4. Neither the name of The NetBSD Foundation nor the names of its
27 * contributors may be used to endorse or promote products derived
28 * from this software without specific prior written permission.
30 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
31 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
32 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
33 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
34 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
35 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
36 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
37 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
38 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
39 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
40 * POSSIBILITY OF SUCH DAMAGE.
42 * Copyright (c) 2001, 2002 Wasabi Systems, Inc.
43 * All rights reserved.
45 * Written by Jason R. Thorpe for Wasabi Systems, Inc.
47 * Redistribution and use in source and binary forms, with or without
48 * modification, are permitted provided that the following conditions
50 * 1. Redistributions of source code must retain the above copyright
51 * notice, this list of conditions and the following disclaimer.
52 * 2. Redistributions in binary form must reproduce the above copyright
53 * notice, this list of conditions and the following disclaimer in the
54 * documentation and/or other materials provided with the distribution.
55 * 3. All advertising materials mentioning features or use of this software
56 * must display the following acknowledgement:
57 * This product includes software developed for the NetBSD Project by
58 * Wasabi Systems, Inc.
59 * 4. The name of Wasabi Systems, Inc. may not be used to endorse
60 * or promote products derived from this software without specific prior
63 * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
64 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
65 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
66 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
67 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
68 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
69 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
70 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
71 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
72 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
73 * POSSIBILITY OF SUCH DAMAGE.
75 * Copyright (c) 2007 Microsoft
76 * All rights reserved.
78 * Redistribution and use in source and binary forms, with or without
79 * modification, are permitted provided that the following conditions
81 * 1. Redistributions of source code must retain the above copyright
82 * notice, this list of conditions and the following disclaimer.
83 * 2. Redistributions in binary form must reproduce the above copyright
84 * notice, this list of conditions and the following disclaimer in the
85 * documentation and/or other materials provided with the distribution.
86 * 3. All advertising materials mentioning features or use of this software
87 * must display the following acknowledgement:
88 * This product includes software developed by Microsoft
90 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
91 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
92 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
93 * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTERS BE LIABLE FOR ANY DIRECT,
94 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
95 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
96 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
97 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
98 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
99 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
103 #include <sys/cdefs.h>
104 __KERNEL_RCSID(0, "$NetBSD: obio_mputmr.c,v 1.3 2008/08/27 11:03:10 matt Exp $");
106 #include "opt_omap.h"
107 #include "opt_cpuoptions.h"
109 #include <sys/types.h>
110 #include <sys/param.h>
111 #include <sys/systm.h>
112 #include <sys/kernel.h>
113 #include <sys/time.h>
114 #include <sys/device.h>
116 #include <dev/clock_subr.h>
118 #include <machine/bus.h>
119 #include <machine/intr.h>
121 #include <arm/omap/omap2_obiovar.h>
123 #include <arm/omap/omap2_mputmrvar.h>
124 #include <arm/omap/omap2_mputmrreg.h>
127 #include <arm/omap/omap2_reg.h>
129 #ifndef OMAP_MPU_TIMER_CLOCK_FREQ
130 #error Specify the timer frequency in Hz with the OMAP_MPU_TIMER_CLOCK_FREQ option.
140 } gptimer_instance_t
;
143 * this table can be used to initialize the GP Timers
144 * until we use config(8) locators for CLKSEL2 values, you may want to edit here.
146 #define GPT_ENTRY(n) { \
148 .addr = GPT ## n ## _BASE, \
149 .intr = IRQ_ ## GPT ## n, \
150 .clksel2 = OMAP2_CM_CLKSEL2_CORE_GPTn(n, \
151 CLKSEL2_CORE_GPT_SYS_CLK), \
152 .fclken1 = OMAP2_CM_FCLKEN1_CORE_EN_GPT ## n, \
153 .iclken1 = OMAP2_CM_ICLKEN1_CORE_EN_GPT ## n, \
155 static const gptimer_instance_t gptimer_instance_tab
[] = {
156 GPT_ENTRY( 2), GPT_ENTRY( 3), GPT_ENTRY( 4), GPT_ENTRY( 5),
157 GPT_ENTRY( 6), GPT_ENTRY( 7), GPT_ENTRY( 8), GPT_ENTRY( 9),
158 GPT_ENTRY(10), GPT_ENTRY(11), GPT_ENTRY(12),
161 #define GPTIMER_INSTANCE_CNT __arraycount(gptimer_instance_tab)
163 static const gptimer_instance_t
*
164 gpt_lookup(struct obio_attach_args
*);
165 static void gpt_enable(struct mputmr_softc
*,
166 struct obio_attach_args
*, const gptimer_instance_t
*);
168 static int obiomputmr_match(device_t
, struct cfdata
*, void *);
169 static void obiomputmr_attach(device_t
, device_t
, void *);
172 CFATTACH_DECL_NEW(obiomputmr
, sizeof(struct mputmr_softc
),
173 obiomputmr_match
, obiomputmr_attach
, NULL
, NULL
);
176 obiomputmr_match(device_t parent
, cfdata_t match
, void *aux
)
178 struct obio_attach_args
*obio
= aux
;
180 if (obio
->obio_addr
== -1 || obio
->obio_intr
== -1)
181 panic("omapmputmr must have addr and intr specified in config.");
183 if (obio
->obio_size
== 0)
184 obio
->obio_size
= 256; /* Per the OMAP TRM. */
186 if (gpt_lookup(obio
) == NULL
)
189 /* We implicitly trust the config file. */
194 obiomputmr_attach(device_t parent
, device_t self
, void *aux
)
196 struct mputmr_softc
*sc
= device_private(self
);
197 struct obio_attach_args
*obio
= aux
;
201 sc
->sc_iot
= obio
->obio_iot
;
202 sc
->sc_intr
= obio
->obio_intr
;
204 if (bus_space_map(obio
->obio_iot
, obio
->obio_addr
, obio
->obio_size
, 0,
206 panic("%s: Cannot map registers", device_xname(self
));
208 switch (device_unit(self
)) { /* XXX broken */
215 ints_per_sec
= profhz
= stathz
= STATHZ
;
219 ints_per_sec
= hz
; /* Same rate as clock */
222 ints_per_sec
= hz
; /* Better value? */
226 aprint_normal(": OMAP MPU Timer");
227 gpt_enable(sc
, obio
, gpt_lookup(obio
));
231 /* Stop the timer from counting, but keep the timer module working. */
232 bus_space_write_4(sc
->sc_iot
, sc
->sc_ioh
, MPU_CNTL_TIMER
,
236 calc_timer_factors(ints_per_sec
, &tf
);
238 switch (device_unit(self
)) { /* XXX broken */
241 counts_per_hz
= tf
.reload
+ 1;
242 counts_per_usec
= tf
.counts_per_usec
;
248 * The microtime reference clock for all practical purposes
249 * just wraps around as an unsigned int.
252 tf
.reload
= 0xffffffff;
259 /* Set the reload value. */
260 bus_space_write_4(sc
->sc_iot
, sc
->sc_ioh
, MPU_LOAD_TIMER
, tf
.reload
);
261 /* Set the PTV and the other required bits and pieces. */
262 bus_space_write_4(sc
->sc_iot
, sc
->sc_ioh
, MPU_CNTL_TIMER
,
264 | (tf
.ptv
<< MPU_PTV_SHIFT
)
267 /* The clock is now running, but is not generating interrupts. */
270 static const gptimer_instance_t
*
271 gpt_lookup(struct obio_attach_args
*obio
)
273 const gptimer_instance_t
*ip
;
276 for (i
= 0, ip
= gptimer_instance_tab
;
277 i
< GPTIMER_INSTANCE_CNT
; i
++, ip
++) {
278 if (ip
->addr
== obio
->obio_addr
&& ip
->intr
== obio
->obio_intr
)
287 struct mputmr_softc
*sc
,
288 struct obio_attach_args
*obio
,
289 const gptimer_instance_t
*ip
)
291 bus_space_handle_t ioh
;
297 aprint_normal(" #%d", ip
->gptn
);
299 err
= bus_space_map(obio
->obio_iot
, OMAP2_CM_BASE
,
300 OMAP2_CM_SIZE
, 0, &ioh
);
303 r
= bus_space_read_4(obio
->obio_iot
, ioh
, OMAP2_CM_CLKSEL2_CORE
);
305 bus_space_write_4(obio
->obio_iot
, ioh
, OMAP2_CM_CLKSEL2_CORE
, r
);
307 r
= bus_space_read_4(obio
->obio_iot
, ioh
, OMAP2_CM_FCLKEN1_CORE
);
309 bus_space_write_4(obio
->obio_iot
, ioh
, OMAP2_CM_FCLKEN1_CORE
, r
);
311 r
= bus_space_read_4(obio
->obio_iot
, ioh
, OMAP2_CM_ICLKEN1_CORE
);
313 bus_space_write_4(obio
->obio_iot
, ioh
, OMAP2_CM_ICLKEN1_CORE
, r
);
315 bus_space_unmap(obio
->obio_iot
, ioh
, OMAP2_CM_SIZE
);