Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
ccan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mirror
ccan
Commits
7cfb44d4
Commit
7cfb44d4
authored
Oct 11, 2013
by
Ahmed Samy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cpuid: minor fixes
Signed-off-by:
Ahmed Samy
<
f.fallen45@gmail.com
>
parent
7061cc6b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
8 deletions
+9
-8
ccan/cpuid/cpuid.c
ccan/cpuid/cpuid.c
+8
-7
ccan/cpuid/test/run.c
ccan/cpuid/test/run.c
+1
-1
No files found.
ccan/cpuid/cpuid.c
View file @
7cfb44d4
...
...
@@ -96,9 +96,13 @@ bool cpuid_is_supported(void)
* but we store the value of EAX into ret since GCC uses EAX
* as the return register for every C function. That's a double
* operation, but there's no other way to do this unless doing this
* function entirely in assembly. */
/* This check is to make sure that the compiler is actually compiling
* function entirely in assembly.
*
* The following assembly code has been shamelessly stolen from:
* http://wiki.osdev.org/CPUID
* and converted to work with AT&T syntax.
*
* This check is to make sure that the compiler is actually compiling
* for 64-bit.
*
* The compiler can be 32-bit and the system 64-bit so the
...
...
@@ -157,7 +161,7 @@ bool cpuid_test_feature(cpuid_t feature)
bool
cpuid_has_feature
(
int
feature
,
bool
extended
)
{
uint32_t
eax
,
ebx
,
ecx
,
edx
;
uint32_t
eax
,
ebx
,
ecx
,
edx
,
i
;
if
(
!
extended
)
___cpuid
(
CPU_PROCINFO_AND_FEATUREBITS
,
&
eax
,
&
ebx
,
&
ecx
,
&
edx
);
...
...
@@ -205,8 +209,6 @@ cputype_t cpuid_get_cpu_type(void)
uint32_t
i
;
___cpuid
(
CPU_VENDORID
,
&
i
,
&
u
.
bufu32
[
0
],
&
u
.
bufu32
[
2
],
&
u
.
bufu32
[
1
]);
u
.
buf
[
12
]
=
'\0'
;
for
(
i
=
0
;
i
<
sizeof
(
cpuids
)
/
sizeof
(
cpuids
[
0
]);
++
i
)
{
if
(
strncmp
(
cpuids
[
i
],
u
.
buf
,
12
)
==
0
)
{
cputype
=
(
cputype_t
)
i
;
...
...
@@ -311,4 +313,3 @@ void cpuid(cpuid_t info, uint32_t *buf)
}
#endif
ccan/cpuid/test/run.c
View file @
7cfb44d4
...
...
@@ -27,7 +27,7 @@ int main(void)
uint32_t
w
;
}
s
;
cpuid
(
CPU_VIRT_PHYS_ADDR_SIZES
,
&
s
.
w
);
printf
(
"Physical address size: %d
\n
Virtual: %d
\n
"
,
s
.
phys_bits
,
s
.
virt_bits
);
printf
(
"Physical address size: %d
\n
Virtual
address size
: %d
\n
"
,
s
.
phys_bits
,
s
.
virt_bits
);
uint32_t
extfeatures
[
2
];
cpuid
(
CPU_EXTENDED_PROC_INFO_FEATURE_BITS
,
extfeatures
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment