hwpmc_xscale.h revision 200928
1176721Sdas/*-
2176721Sdas * Copyright (c) 2009 Rui Paulo <rpaulo@FreeBSD.org>
3176721Sdas * All rights reserved.
4176721Sdas *
5176721Sdas * Redistribution and use in source and binary forms, with or without
6176721Sdas * modification, are permitted provided that the following conditions
7176721Sdas * are met:
8176721Sdas * 1. Redistributions of source code must retain the above copyright
9176721Sdas *    notice, this list of conditions and the following disclaimer.
10176721Sdas * 2. Redistributions in binary form must reproduce the above copyright
11176721Sdas *    notice, this list of conditions and the following disclaimer in the
12176721Sdas *    documentation and/or other materials provided with the distribution.
13176721Sdas *
14176721Sdas * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15176721Sdas * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16176721Sdas * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17176721Sdas * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18176721Sdas * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19176721Sdas * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20176721Sdas * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21176721Sdas * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22176721Sdas * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23176721Sdas * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24176721Sdas * SUCH DAMAGE.
25176721Sdas *
26176721Sdas * $FreeBSD: head/sys/dev/hwpmc/hwpmc_xscale.h 200928 2009-12-23 23:16:54Z rpaulo $
27176721Sdas */
28176721Sdas
29176721Sdas#ifndef _DEV_HWPMC_XSCALE_H_
30176721Sdas#define _DEV_HWPMC_XSCALE_H_
31176721Sdas
32176721Sdas#define	XSCALE_PMC_CAPS		(PMC_CAP_INTERRUPT | PMC_CAP_USER |     \
33176721Sdas				 PMC_CAP_SYSTEM | PMC_CAP_EDGE |	\
34217108Skib				 PMC_CAP_THRESHOLD | PMC_CAP_READ |	\
35217108Skib				 PMC_CAP_WRITE | PMC_CAP_INVERT |	\
36				 PMC_CAP_QUALIFIER)
37
38
39#define	XSCALE_PMNC_ENABLE		0x01	/* Enable all Counters */
40#define	XSCALE_PMNC_PMNRESET		0x02	/* Performance Counter Reset */
41#define	XSCALE_PMNC_CCNTRESET		0x04	/* Clock Counter Reset */
42#define	XSCALE_PMNC_CCNTDIV		0x08	/* Clock Counter Divider */
43/* IXP425 only -- first generation */
44#define	XSCALE_PMNC_EVT0_MASK		0x00ff000
45#define	XSCALE_PMNC_EVT1_MASK		0xff00000
46
47#define	XSCALE_INTEN_CCNT		0x01	/* Enable Clock Counter Int. */
48#define	XSCALE_INTEN_PMN0		0x02	/* Enable PMN0 Interrupts */
49#define	XSCALE_INTEN_PMN1		0x04	/* Enable PMN1 Interrupts */
50#define	XSCALE_INTEN_PMN2		0x08	/* Enable PMN2 Interrupts */
51#define	XSCALE_INTEN_PMN3		0x10	/* Enable PMN3 Interrupts */
52
53#define	XSCALE_EVTSEL_EVT0_MASK		0x000000ff
54#define	XSCALE_EVTSEL_EVT1_MASK		0x0000ff00
55#define	XSCALE_EVTSEL_EVT2_MASK		0x00ff0000
56#define	XSCALE_EVTSEL_EVT3_MASK		0xff000000
57
58#define	XSCALE_FLAG_CCNT_OVERFLOW	0x01
59#define	XSCALE_FLAG_PMN0_OVERFLOW	0x02
60#define	XSCALE_FLAG_PMN1_OVERFLOW	0x04
61#define	XSCALE_FLAG_PMN2_OVERFLOW	0x08
62#define	XSCALE_FLAG_PMN3_OVERFLOW	0x10
63
64#define	XSCALE_RELOAD_COUNT_TO_PERFCTR_VALUE(R)	(-(R))
65#define	XSCALE_PERFCTR_VALUE_TO_RELOAD_COUNT(P)	(-(P))
66
67#ifdef _KERNEL
68/* MD extension for 'struct pmc' */
69struct pmc_md_xscale_pmc {
70	uint32_t	pm_xscale_evsel;
71};
72#endif /* _KERNEL */
73#endif /* _DEV_HWPMC_XSCALE_H_ */
74