2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * File: mach/ppc/processor_info.h
25 * Data structure definitions for ppc specific processor control
29 #ifndef _MACH_PPC_PROCESSOR_INFO_H_
30 #define _MACH_PPC_PROCESSOR_INFO_H_
32 #include <mach/machine.h>
34 /* processor_control command operations */
35 #define PROCESSOR_PM_SET_REGS 1 /* Set Performance Monitor Registers */
36 #define PROCESSOR_PM_SET_MMCR 2 /* Set Monitor Mode Controls Registers */
37 #define PROCESSOR_PM_CLR_PMC 3 /* Clear Performance Monitor Counter Registers */
40 * Performance Monitor Register structures
51 unsigned int reserved3
: 1; /* enint */
52 unsigned int reserved4
: 1; /* discount */
53 unsigned int reserved5
: 2; /* rtcselect */
54 unsigned int reserved6
: 1; /* intonbittrans */
55 unsigned int threshold
: 6;
56 unsigned int reserved7
: 1; /* pmc1intcontrol */
57 unsigned int reserved8
: 1; /* pmcintcontrol */
58 unsigned int reserved9
: 1; /* pmctrigger */
59 unsigned int pmc1select
: 7;
60 unsigned int pmc2select
: 6;
67 unsigned int pmc3select
: 5;
68 unsigned int pmc4select
: 5;
69 unsigned int reserved
: 22;
76 unsigned int threshmult
: 1;
77 unsigned int reserved
: 31;
84 unsigned int ov
: 1; /* overflow value */
85 unsigned int cv
: 31; /* countervalue */
91 /* Processor Performance Monitor Registers definitions */
93 struct processor_pm_regs
{
102 typedef struct processor_pm_regs processor_pm_regs_data_t
;
103 typedef struct processor_pm_regs
*processor_pm_regs_t
;
104 #define PROCESSOR_PM_REGS_COUNT \
105 (sizeof(processor_pm_regs_data_t) / sizeof (unsigned int))
107 #define PROCESSOR_PM_REGS_COUNT_POWERPC_604 \
108 (PROCESSOR_PM_REGS_COUNT * 1 )
110 #define PROCESSOR_PM_REGS_COUNT_POWERPC_604e \
111 (PROCESSOR_PM_REGS_COUNT * 2 )
113 #define PROCESSOR_PM_REGS_COUNT_POWERPC_750 \
114 (PROCESSOR_PM_REGS_COUNT * 2 )
116 #define PROCESSOR_PM_REGS_COUNT_POWERPC_7400 \
117 (PROCESSOR_PM_REGS_COUNT * 3 )
119 typedef unsigned int processor_temperature_data_t
;
120 typedef unsigned int *processor_temperature_t
;
122 #define PROCESSOR_TEMPERATURE_COUNT 1
124 union processor_control_data
{
125 processor_pm_regs_data_t cmd_pm_regs
[3];
128 struct processor_control_cmd
{
130 cpu_type_t cmd_cpu_type
;
131 cpu_subtype_t cmd_cpu_subtype
;
132 union processor_control_data u
;
135 typedef struct processor_control_cmd processor_control_cmd_data_t
;
136 typedef struct processor_control_cmd
*processor_control_cmd_t
;
137 #define cmd_pm_regs u.cmd_pm_regs;
138 #define cmd_pm_ctls u.cmd_pm_ctls;
140 #define PROCESSOR_CONTROL_CMD_COUNT \
141 (((sizeof(processor_control_cmd_data_t)) - \
142 (sizeof(union processor_control_data))) / sizeof (integer_t))
144 /* x should be a processor_pm_regs_t */
145 #define PERFMON_MMCR0(x) ((x)[0].u.mmcr0.word)
146 #define PERFMON_PMC1(x) ((x)[0].pmc[0].word)
147 #define PERFMON_PMC2(x) ((x)[0].pmc[1].word)
148 #define PERFMON_MMCR1(x) ((x)[1].u.mmcr1.word)
149 #define PERFMON_PMC3(x) ((x)[1].pmc[0].word)
150 #define PERFMON_PMC4(x) ((x)[1].pmc[1].word)
151 #define PERFMON_MMCR2(x) ((x)[2].u.mmcr2.word)
153 #define PERFMON_DIS(x) ((x)[0].u.mmcr0.bits.dis)
154 #define PERFMON_DP(x) ((x)[0].u.mmcr0.bits.dp)
155 #define PERFMON_DU(x) ((x)[0].u.mmcr0.bits.du)
156 #define PERFMON_DMS(x) ((x)[0].u.mmcr0.bits.dms)
157 #define PERFMON_DMR(x) ((x)[0].u.mmcr0.bits.dmr)
158 #define PERFMON_THRESHOLD(x) ((x)[0].u.mmcr0.bits.threshold)
159 #define PERFMON_PMC1SELECT(x) ((x)[0].u.mmcr0.bits.pmc1select)
160 #define PERFMON_PMC2SELECT(x) ((x)[0].u.mmcr0.bits.pmc2select)
161 #define PERFMON_PMC3SELECT(x) ((x)[1].u.mmcr1.bits.pmc3select)
162 #define PERFMON_PMC4SELECT(x) ((x)[1].u.mmcr1.bits.pmc4select)
163 #define PERFMON_THRESHMULT(x) ((x)[2].u.mmcr2.bits.threshmult)
164 #define PERFMON_PMC1_CV(x) ((x)[0].u.pmc[0].bits.cv)
165 #define PERFMON_PMC2_CV(x) ((x)[0].u.pmc[1].bits.cv)
166 #define PERFMON_PMC3_CV(x) ((x)[1].u.pmc[0].bits.cv)
167 #define PERFMON_PMC4_CV(x) ((x)[1].u.pmc[1].bits.cv)
169 #endif /* _MACH_PPC_PROCESSOR_INFO_H_ */