]> git.saurik.com Git - apple/xnu.git/blame_incremental - osfmk/i386/Diagnostics.c
xnu-792.22.5.tar.gz
[apple/xnu.git] / osfmk / i386 / Diagnostics.c
... / ...
CommitLineData
1/*
2 * Copyright (c) 2005 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28/*
29 * @OSF_FREE_COPYRIGHT@
30 */
31/*
32 * @APPLE_FREE_COPYRIGHT@
33 */
34
35/*
36 * Author: Bill Angell, Apple
37 * Date: 10/auht-five
38 *
39 * Random diagnostics
40 *
41 * Try to keep the x86 selectors in-sync with the ppc selectors.
42 *
43 */
44
45
46#include <kern/machine.h>
47#include <kern/processor.h>
48#include <mach/machine.h>
49#include <mach/processor_info.h>
50#include <mach/mach_types.h>
51#include <mach/boolean.h>
52#include <kern/thread.h>
53#include <kern/task.h>
54#include <kern/ipc_kobject.h>
55#include <mach/vm_param.h>
56#include <ipc/port.h>
57#include <ipc/ipc_entry.h>
58#include <ipc/ipc_space.h>
59#include <ipc/ipc_object.h>
60#include <ipc/ipc_port.h>
61#include <vm/vm_kern.h>
62#include <vm/vm_map.h>
63#include <vm/vm_page.h>
64#include <vm/pmap.h>
65#include <pexpert/pexpert.h>
66#include <console/video_console.h>
67#include <i386/cpu_data.h>
68#include <i386/Diagnostics.h>
69#include <i386/mp.h>
70#include <i386/pmCPU.h>
71#include <i386/tsc.h>
72#include <i386/hpet.h>
73#include <mach/i386/syscall_sw.h>
74
75extern uint64_t lastNapClear;
76
77diagWork dgWork;
78uint64_t lastNapClear = 0ULL;
79uint64_t lastRuptClear = 0ULL;
80
81typedef struct pmdata {
82 uint64_t pmNapDur; /* Time since last query */
83 pmStats_t pmd; /* Powermanagement statistics */
84} pmdata;
85
86
87
88int
89diagCall64(__unused x86_saved_state_t * regs)
90{
91 panic("diagCall not yet supported for 64 bit tasks\n");
92}
93
94
95int
96diagCall(x86_saved_state_t * state)
97{
98
99 uint32_t stk, curpos, i, j;
100 uint32_t selector, data;
101 int err;
102 uint64_t currNap, durNap;
103 x86_saved_state32_t *regs;
104
105 assert(is_saved_state32(state));
106 regs = saved_state32(state);
107
108 if (!(dgWork.dgFlags & enaDiagSCs))
109 return 0; /* If not enabled, cause an exception */
110
111 stk = regs->uesp; /* Point to the stack */
112 err = copyin((user_addr_t) (stk + 4), (char *) &selector, sizeof(uint32_t)); /* Get the selector */
113 if (err) {
114 return 0; /* Failed to fetch stack */
115 }
116 switch (selector) { /* Select the routine */
117
118 case dgRuptStat: /* Suck Interruption statistics */
119
120 err = copyin((user_addr_t) (stk + 8), (char *) &data, sizeof(uint32_t)); /* Get the selector */
121
122 if (data == 0) {/* If number of processors is 0, clear all
123 * counts */
124 for (i = 0; i < real_ncpus; i++) { /* Cycle through
125 * processors */
126 for (j = 0; j < 256; j++)
127 cpu_data_ptr[i]->cpu_hwIntCnt[j] = 0;
128 }
129
130 lastRuptClear = mach_absolute_time(); /* Get the time of clear */
131 return 1; /* Normal return */
132 }
133 err = copyin((user_addr_t) (stk + 8), (char *) &data, sizeof(uint32_t)); /* Get the selector */
134
135 (void) copyout((char *) &real_ncpus, data, sizeof(real_ncpus)); /* Copy out number of
136 * processors */
137
138 currNap = mach_absolute_time(); /* Get the time now */
139 durNap = currNap - lastRuptClear; /* Get the last interval
140 * duration */
141 if (durNap == 0)
142 durNap = 1; /* This is a very short time, make it
143 * bigger */
144
145 curpos = data + sizeof(real_ncpus); /* Point to the next
146 * available spot */
147
148 for (i = 0; i < real_ncpus; i++) { /* Move 'em all out */
149 (void) copyout((char *) &durNap, curpos, 8); /* Copy out the time
150 * since last clear */
151 (void) copyout((char *) &cpu_data_ptr[i]->cpu_hwIntCnt, curpos + 8, 256 * sizeof(uint32_t)); /* Copy out interrupt
152 * data for this
153 * processor */
154 curpos = curpos + (256 * sizeof(uint32_t) + 8); /* Point to next out put
155 * slot */
156 }
157
158 break;
159
160 default: /* Handle invalid ones */
161 return 0; /* Return an exception */
162
163 }
164
165 return 1; /* Normal non-ast check return */
166}