]> git.proxmox.com Git - mirror_edk2.git/blame - StdLib/Include/Ipf/machine/cpu_counter.h
SourceLevelDebugPkg: Removing ipf from edk2.
[mirror_edk2.git] / StdLib / Include / Ipf / machine / cpu_counter.h
CommitLineData
2aa62f2b 1/* $NetBSD: cpu_counter.h,v 1.1 2006/09/20 13:33:04 kochi Exp $ */\r
2\r
3/*-\r
4 * Copyright (c) 2006 The NetBSD Foundation, Inc.\r
5 * All rights reserved.\r
6 *\r
7 * This code is derived from software contributed to The NetBSD Foundation\r
8 * by Takayoshi Kochi.\r
9 *\r
10 * Redistribution and use in source and binary forms, with or without\r
11 * modification, are permitted provided that the following conditions\r
12 * are met:\r
13 * 1. Redistributions of source code must retain the above copyright\r
14 * notice, this list of conditions and the following disclaimer.\r
15 * 2. Redistributions in binary form must reproduce the above copyright\r
16 * notice, this list of conditions and the following disclaimer in the\r
17 * documentation and/or other materials provided with the distribution.\r
18 * 3. All advertising materials mentioning features or use of this software\r
19 * must display the following acknowledgement:\r
20 * This product includes software developed by the NetBSD\r
21 * Foundation, Inc. and its contributors.\r
22 * 4. Neither the name of The NetBSD Foundation nor the names of its\r
23 * contributors may be used to endorse or promote products derived\r
24 * from this software without specific prior written permission.\r
25 *\r
26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\r
27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\r
28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\r
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\r
30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\r
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\r
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\r
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\r
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\r
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\r
36 * POSSIBILITY OF SUCH DAMAGE.\r
37 */\r
38\r
39#ifndef _IA64_CPU_COUNTER_H_\r
40#define _IA64_CPU_COUNTER_H_\r
41\r
42/*\r
43 * Machine-specific support for CPU counter.\r
44 */\r
45\r
46#ifdef _KERNEL\r
47\r
48#include <machine/ia64_cpu.h>\r
49\r
50static __inline int\r
51cpu_hascounter(void)\r
52{\r
53 return 1;\r
54}\r
55\r
56static __inline uint64_t\r
57cpu_counter(void)\r
58{\r
59 return ia64_get_itc();\r
60}\r
61\r
62static __inline uint32_t\r
63cpu_counter32(void)\r
64{\r
65 return (ia64_get_itc() & 0xffffffffUL);\r
66}\r
67\r
68static __inline uint64_t\r
69cpu_frequency(struct cpu_info *ci)\r
70{\r
71 extern uint64_t itc_frequency;\r
72\r
73 return itc_frequency;\r
74}\r
75\r
76#endif /* _KERNEL */\r
77\r
78#endif /* !_IA64_CPU_COUNTER_H_ */\r