cortex_pmc.c revision 1.2.18.1 1 /* $NetBSD: cortex_pmc.c,v 1.2.18.1 2015/04/06 15:17:52 skrll Exp $ */
2
3 /* Copyright (c) 2007 Microsoft
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. All advertising materials mentioning features or use of this software
15 * must display the following acknowledgement:
16 * This product includes software developed by Microsoft
17 *
18 * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
22 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
31
32 /*
33 * support for ARM cortex Performance Monitor Counters
34 * based on arm11_pmc.c
35 */
36
37 #include <sys/cdefs.h>
38 /* __KERNEL_RCSID(0, "$NetBSD: cortex_pmc.c,v 1.2.18.1 2015/04/06 15:17:52 skrll Exp $"); */
39 #include "opt_perfctrs.h"
40 #include <sys/types.h>
41 #include <sys/param.h>
42 #include <sys/systm.h>
43 #include <sys/kernel.h>
44 #include <sys/time.h>
45 #include <sys/timetc.h>
46
47 #include <dev/clock_subr.h>
48
49 #include <uvm/uvm_extern.h>
50
51 #include <arm/armreg.h>
52 #include <arm/cpufunc.h>
53 #include <arm/arm32/machdep.h>
54
55 #ifndef CORTEX_PMC_CCNT_HZ
56 # define CORTEX_PMC_CCNT_HZ 400000000 /* 400MHz */
57 #endif
58
59 #define COUNTS_PER_USEC (curcpu()->ci_data.cpu_cc_freq / (1000*1000))
60
61 static const uint32_t counts_per_wrap = ~0UL - 1;
62
63 /*
64 * enable the PMC CCNT for delay()
65 */
66 void
67 cortex_pmc_ccnt_init(void)
68 {
69 if (curcpu()->ci_data.cpu_cc_freq == 0) {
70 curcpu()->ci_data.cpu_cc_freq = CORTEX_PMC_CCNT_HZ;
71 }
72 }
73
74 /*
75 * delay - for "at least" arg usec
76 *
77 * NOTE: at 400MHz we are restricted to (uint32_t)~0 "counts"
78 * if this is a problem, accumulate counts in LL vars
79 */
80 void
81 delay(u_int arg)
82 {
83 uint32_t ctrl;
84 uint32_t cur;
85 uint32_t last;
86 uint32_t delta = 0;
87 uint32_t usecs = 0;
88 const uint32_t counts_per_usec = COUNTS_PER_USEC;
89 const uint32_t delay_arg_limit = ~0UL / counts_per_usec; /* about 10 sec */
90
91 if (arg > delay_arg_limit)
92 panic("%s: arg %u overflow, limit is %u usec\n",
93 __func__, arg, delay_arg_limit);
94
95 last = armreg_pmccntr_read();
96 delta = usecs = 0;
97 while (arg > usecs) {
98 cur = armreg_pmccntr_read();
99
100 /* overflow flag is moved to a separate register
101 and is not read from PMC Control Register */
102 ctrl = armreg_pmovsr_read();
103 if (ctrl & CORTEX_CNTOFL_C) {
104 /* Reset overflow flag for cycle counter in overflow register */
105 armreg_pmovsr_write(CORTEX_CNTOFL_C);
106 delta += (last + (counts_per_wrap - cur));
107 } else {
108 delta += (cur - last);
109 }
110 last = cur;
111 if (delta >= counts_per_usec) {
112 usecs += delta / counts_per_usec;
113 delta %= counts_per_usec;
114 }
115 }
116 }
117