source: mainline/kernel/arch/ia32/include/cpuid.h@ dc0b964

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since dc0b964 was d99c1d2, checked in by Martin Decky <martin@…>, 15 years ago

use [u]int{8|16|32|64}_t type definitions as detected by the autotool
replace direct usage of arch/types.h with typedefs.h

  • Property mode set to 100644
File size: 3.2 KB
RevLine 
[f761f1eb]1/*
[df4ed85]2 * Copyright (c) 2001-2004 Jakub Jermar
[f761f1eb]3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
[1bb2e7a]29/** @addtogroup ia32
[b45c443]30 * @{
31 */
32/** @file
33 */
34
[06e1e95]35#ifndef KERN_ia32_CPUID_H_
36#define KERN_ia32_CPUID_H_
[f761f1eb]37
[c18e666]38#define INTEL_CPUID_LEVEL 0x00000000
39#define INTEL_CPUID_STANDARD 0x00000001
40#define INTEL_PSE 3
41#define INTEL_SEP 11
42
43#ifndef __ASM__
44
[d99c1d2]45#include <typedefs.h>
[f761f1eb]46
[f429331]47typedef struct {
[7f1c620]48 uint32_t cpuid_eax;
49 uint32_t cpuid_ebx;
50 uint32_t cpuid_ecx;
51 uint32_t cpuid_edx;
[f429331]52} __attribute__ ((packed)) cpu_info_t;
[f761f1eb]53
[3b05862f]54struct __cpuid_extended_feature_info {
55 unsigned sse3 : 1;
56 unsigned : 31;
57} __attribute__ ((packed));
58
[f3fed18]59typedef union cpuid_extended_feature_info {
[3b05862f]60 struct __cpuid_extended_feature_info bits;
[f3fed18]61 uint32_t word;
62} cpuid_extended_feature_info;
[3b05862f]63
64struct __cpuid_feature_info {
[c696ad1a]65 unsigned : 11;
66 unsigned sep : 1;
67 unsigned : 11;
[3b05862f]68 unsigned mmx : 1;
69 unsigned fxsr : 1;
70 unsigned sse : 1;
71 unsigned sse2 : 1;
72 unsigned : 5;
73} __attribute__ ((packed));
74
[f3fed18]75typedef union cpuid_feature_info {
[3b05862f]76 struct __cpuid_feature_info bits;
[f3fed18]77 uint32_t word;
78} cpuid_feature_info;
[3b05862f]79
80
[7f1c620]81static inline uint32_t has_cpuid(void)
[bd2933a8]82{
[7f1c620]83 uint32_t val, ret;
[bd2933a8]84
[e7b7be3f]85 asm volatile (
[add04f7]86 "pushf\n" /* read flags */
87 "popl %[ret]\n"
88 "movl %[ret], %[val]\n"
[bd2933a8]89
[add04f7]90 "btcl $21, %[val]\n" /* swap the ID bit */
[bd2933a8]91
[add04f7]92 "pushl %[val]\n" /* propagate the change into flags */
[bd2933a8]93 "popf\n"
94 "pushf\n"
[add04f7]95 "popl %[val]\n"
[bd2933a8]96
[add04f7]97 "andl $(1 << 21), %[ret]\n" /* interrested only in ID bit */
98 "andl $(1 << 21), %[val]\n"
99 "xorl %[val], %[ret]\n"
100 : [ret] "=r" (ret), [val] "=r" (val)
[bd2933a8]101 );
102
103 return ret;
104}
[f761f1eb]105
[f429331]106static inline void cpuid(uint32_t cmd, cpu_info_t *info)
[d6dcdd2e]107{
[e7b7be3f]108 asm volatile (
[bd2933a8]109 "cpuid\n"
[add04f7]110 : "=a" (info->cpuid_eax), "=b" (info->cpuid_ebx),
111 "=c" (info->cpuid_ecx), "=d" (info->cpuid_edx)
[f3fed18]112 : "a" (cmd)
[bd2933a8]113 );
[d6dcdd2e]114}
[f761f1eb]115
[c18e666]116#endif /* !def __ASM__ */
[f761f1eb]117#endif
[b45c443]118
[1bb2e7a]119/** @}
[b45c443]120 */
Note: See TracBrowser for help on using the repository browser.