2 * Copyright (c) 2005-2007 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
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.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
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.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
34 * Purpose: Initializes the TSC and the various conversion
35 * factors needed by other parts of the system.
38 #include <platforms.h>
41 #include <mach/mach_types.h>
43 #include <kern/cpu_data.h>
44 #include <kern/cpu_number.h>
45 #include <kern/clock.h>
46 #include <kern/host_notify.h>
47 #include <kern/macro_help.h>
48 #include <kern/misc_protos.h>
50 #include <kern/assert.h>
51 #include <mach/vm_prot.h>
53 #include <vm/vm_kern.h> /* for kernel_map */
55 #include <architecture/i386/pio.h>
56 #include <i386/misc_protos.h>
57 #include <i386/proc_reg.h>
58 #include <i386/machine_cpu.h>
60 #include <i386/cpu_data.h>
61 #include <i386/cpuid.h>
62 #include <i386/machine_routines.h>
63 #include <pexpert/pexpert.h>
64 #include <machine/limits.h>
65 #include <machine/commpage.h>
66 #include <sys/kdebug.h>
67 #include <pexpert/device_tree.h>
70 uint64_t busFCvtt2n
= 0;
71 uint64_t busFCvtn2t
= 0;
73 uint64_t tscFCvtt2n
= 0;
74 uint64_t tscFCvtn2t
= 0;
75 uint64_t tscGranularity
= 0;
79 #define bit(n) (1ULL << (n))
80 #define bitmask(h,l) ((bit(h)|(bit(h)-1)) & ~(bit(l)-1))
81 #define bitfield(x,h,l) (((x) & bitmask(h,l)) >> l)
84 #define kilo (1000ULL)
85 #define Mega (kilo * kilo)
86 #define Giga (kilo * Mega)
87 #define Tera (kilo * Giga)
88 #define Peta (kilo * Tera)
90 #define CPU_FAMILY_PENTIUM_M (0x6)
92 static const char FSB_Frequency_prop
[] = "FSBFrequency";
94 * This routine extracts the front-side bus frequency in Hz from
98 EFI_FSB_frequency(void)
100 uint64_t frequency
= 0;
105 if (DTLookupEntry(0, "/efi/platform", &entry
) != kSuccess
) {
106 kprintf("EFI_FSB_frequency: didn't find /efi/platform\n");
109 if (DTGetProperty(entry
,FSB_Frequency_prop
,&value
,&size
) != kSuccess
) {
110 kprintf("EFI_FSB_frequency: property %s not found\n",
114 if (size
== sizeof(uint64_t)) {
115 frequency
= *(uint64_t *) value
;
116 kprintf("EFI_FSB_frequency: read %s value: %llu\n",
117 FSB_Frequency_prop
, frequency
);
118 if (!(90*Mega
< frequency
&& frequency
< 10*Giga
)) {
119 kprintf("EFI_FSB_frequency: value out of range\n");
123 kprintf("EFI_FSB_frequency: unexpected size %d\n", size
);
129 * Initialize the various conversion factors needed by code referencing
135 uint64_t busFCvtInt
= 0;
136 boolean_t N_by_2_bus_ratio
= FALSE
;
139 * Get the FSB frequency and conversion factors.
141 busFreq
= EFI_FSB_frequency();
143 busFCvtt2n
= ((1 * Giga
) << 32) / busFreq
;
144 busFCvtn2t
= 0xFFFFFFFFFFFFFFFFULL
/ busFCvtt2n
;
145 busFCvtInt
= tmrCvt(1 * Peta
, 0xFFFFFFFFFFFFFFFFULL
/ busFreq
);
147 panic("rtclock_init: EFI not supported!\n");
150 kprintf(" BUS: Frequency = %6d.%04dMHz, "
151 "cvtt2n = %08X.%08X, cvtn2t = %08X.%08X, "
152 "cvtInt = %08X.%08X\n",
153 (uint32_t)(busFreq
/ Mega
),
154 (uint32_t)(busFreq
% Mega
),
155 (uint32_t)(busFCvtt2n
>> 32), (uint32_t)busFCvtt2n
,
156 (uint32_t)(busFCvtn2t
>> 32), (uint32_t)busFCvtn2t
,
157 (uint32_t)(busFCvtInt
>> 32), (uint32_t)busFCvtInt
);
160 * Get the TSC increment. The TSC is incremented by this
161 * on every bus tick. Calculate the TSC conversion factors
162 * to and from nano-seconds.
163 * The tsc granularity is also called the "bus ratio". If the N/2 bit
164 * is set this indicates the bus ration is 0.5 more than this - i.e.
165 * that the true bus ratio is (2*tscGranularity + 1)/2.
167 if (cpuid_info()->cpuid_family
== CPU_FAMILY_PENTIUM_M
) {
170 prfsts
= rdmsr64(IA32_PERF_STS
);
171 tscGranularity
= (uint32_t)bitfield(prfsts
, 44, 40);
172 N_by_2_bus_ratio
= (prfsts
& bit(46)) != 0;
175 panic("rtclock_init: unknown CPU family: 0x%X\n",
176 cpuid_info()->cpuid_family
);
179 if (N_by_2_bus_ratio
)
180 tscFCvtt2n
= busFCvtt2n
* 2 / (1 + 2*tscGranularity
);
182 tscFCvtt2n
= busFCvtt2n
/ tscGranularity
;
184 tscFreq
= ((1 * Giga
) << 32) / tscFCvtt2n
;
185 tscFCvtn2t
= 0xFFFFFFFFFFFFFFFFULL
/ tscFCvtt2n
;
187 kprintf(" TSC: Frequency = %6d.%04dMHz, "
188 "cvtt2n = %08X.%08X, cvtn2t = %08X.%08X, gran = %lld%s\n",
189 (uint32_t)(tscFreq
/ Mega
),
190 (uint32_t)(tscFreq
% Mega
),
191 (uint32_t)(tscFCvtt2n
>> 32), (uint32_t)tscFCvtt2n
,
192 (uint32_t)(tscFCvtn2t
>> 32), (uint32_t)tscFCvtn2t
,
193 tscGranularity
, N_by_2_bus_ratio
? " (N/2)" : "");
196 * Calculate conversion from BUS to TSC
198 bus2tsc
= tmrCvt(busFCvtt2n
, tscFCvtn2t
);
202 tsc_get_info(tscInfo_t
*info
)
204 info
->busFCvtt2n
= busFCvtt2n
;
205 info
->busFCvtn2t
= busFCvtn2t
;
206 info
->tscFreq
= tscFreq
;
207 info
->tscFCvtt2n
= tscFCvtt2n
;
208 info
->tscFCvtn2t
= tscFCvtn2t
;
209 info
->tscGranularity
= tscGranularity
;
210 info
->bus2tsc
= bus2tsc
;
211 info
->busFreq
= busFreq
;