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
83d4e128
Commit
83d4e128
authored
Nov 12, 2013
by
Rusty Russell
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of ozlabs.org:ccan
parents
490b6385
39c84ebc
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
56 additions
and
41 deletions
+56
-41
ccan/cpuid/cpuid.c
ccan/cpuid/cpuid.c
+23
-11
ccan/cpuid/cpuid.h
ccan/cpuid/cpuid.h
+31
-28
ccan/cpuid/test/run.c
ccan/cpuid/test/run.c
+2
-2
No files found.
ccan/cpuid/cpuid.c
View file @
83d4e128
...
@@ -310,14 +310,11 @@ void cpuid(cpuid_t info, uint32_t *buf)
...
@@ -310,14 +310,11 @@ void cpuid(cpuid_t info, uint32_t *buf)
buf
[
3
]
=
(
eax
>>
16
)
&
0x0F
;
/* Extended Model. */
buf
[
3
]
=
(
eax
>>
16
)
&
0x0F
;
/* Extended Model. */
buf
[
4
]
=
(
eax
>>
24
)
&
0x0F
;
/* Extended Family. */
buf
[
4
]
=
(
eax
>>
24
)
&
0x0F
;
/* Extended Family. */
buf
[
5
]
=
edx
;
/* Feature flags #1. */
buf
[
6
]
=
ecx
;
/* Feature flags #2. */
/* Additional Feature information. */
/* Additional Feature information. */
buf
[
7
]
=
ebx
&
0xFF
;
buf
[
5
]
=
ebx
&
0xFF
;
buf
[
8
]
=
(
ebx
>>
8
)
&
0xFF
;
buf
[
6
]
=
(
ebx
>>
8
)
&
0xFF
;
buf
[
9
]
=
(
ebx
>>
16
)
&
0xFF
;
buf
[
7
]
=
(
ebx
>>
16
)
&
0xFF
;
buf
[
10
]
=
(
ebx
>>
24
)
&
0xFF
;
buf
[
8
]
=
(
ebx
>>
24
)
&
0xFF
;
break
;
break
;
case
CPUID_CACHE_AND_TLBD_INFO
:
case
CPUID_CACHE_AND_TLBD_INFO
:
buf
[
0
]
=
eax
;
buf
[
0
]
=
eax
;
...
@@ -330,10 +327,25 @@ void cpuid(cpuid_t info, uint32_t *buf)
...
@@ -330,10 +327,25 @@ void cpuid(cpuid_t info, uint32_t *buf)
buf
[
1
]
=
ecx
;
buf
[
1
]
=
ecx
;
break
;
break
;
case
CPUID_L1_CACHE_AND_TLB_IDS
:
case
CPUID_L1_CACHE_AND_TLB_IDS
:
buf
[
0
]
=
eax
;
buf
[
0
]
=
eax
&
0xFF
;
buf
[
1
]
=
ebx
;
buf
[
1
]
=
(
eax
>>
8
)
&
0xFF
;
buf
[
2
]
=
ecx
;
buf
[
2
]
=
(
eax
>>
16
)
&
0xFF
;
buf
[
3
]
=
edx
;
buf
[
3
]
=
(
eax
>>
24
)
&
0xFF
;
buf
[
4
]
=
ebx
&
0xFF
;
buf
[
5
]
=
(
ebx
>>
8
)
&
0xFF
;
buf
[
6
]
=
(
ebx
>>
16
)
&
0xFF
;
buf
[
7
]
=
(
ebx
>>
24
)
&
0xFF
;
buf
[
8
]
=
ecx
&
0xFF
;
buf
[
9
]
=
(
ecx
>>
8
)
&
0xFF
;
buf
[
10
]
=
(
ecx
>>
16
)
&
0xFF
;
buf
[
11
]
=
(
ecx
>>
24
)
&
0xFF
;
buf
[
12
]
=
edx
&
0xFF
;
buf
[
13
]
=
(
edx
>>
8
)
&
0xFF
;
buf
[
14
]
=
(
edx
>>
16
)
&
0xFF
;
buf
[
15
]
=
(
edx
>>
24
)
&
0xFF
;
break
;
break
;
case
CPUID_EXTENDED_L2_CACHE_FEATURES
:
case
CPUID_EXTENDED_L2_CACHE_FEATURES
:
buf
[
0
]
=
ecx
&
0xFF
;
/* Line size. */
buf
[
0
]
=
ecx
&
0xFF
;
/* Line size. */
...
...
ccan/cpuid/cpuid.h
View file @
83d4e128
...
@@ -38,6 +38,7 @@
...
@@ -38,6 +38,7 @@
*
*
* CPUID_CACHE_AND_TLBD_INFO
* CPUID_CACHE_AND_TLBD_INFO
* Cache and TLBD Information.
* Cache and TLBD Information.
* For AMD: Use CPUID_EXTENDED_L2_CACHE_FEATURES
*
*
* CPUID_HIGHEST_EXTENDED_FUNCTION_SUPPORTED:
* CPUID_HIGHEST_EXTENDED_FUNCTION_SUPPORTED:
* Highest extended function supported address.
* Highest extended function supported address.
...
@@ -51,6 +52,7 @@
...
@@ -51,6 +52,7 @@
*
*
* CPUID_L1_CACHE_AND_TLB_IDS:
* CPUID_L1_CACHE_AND_TLB_IDS:
* L1 Cache and TLB Identifications.
* L1 Cache and TLB Identifications.
* AMD Only.
*
*
* CPUID_EXTENDED_L2_CACHE_FEATURES:
* CPUID_EXTENDED_L2_CACHE_FEATURES:
* Extended L2 Cache features.
* Extended L2 Cache features.
...
@@ -217,29 +219,32 @@ uint32_t cpuid_highest_ext_func_supported(void);
...
@@ -217,29 +219,32 @@ uint32_t cpuid_highest_ext_func_supported(void);
* buf[2]: Family
* buf[2]: Family
* buf[3]: Extended Model
* buf[3]: Extended Model
* buf[4]: Extended Family
* buf[4]: Extended Family
* buf[5] and buf[6]:
* buf[5]: Brand Index
* Feature flags
* buf[6]: CL Flush Line Size
* buf[7]: Brand Index
* buf[7]: Logical Processors
* buf[8]: CL Flush Line Size
* buf[8]: Initial APICID
* buf[9]: Logical Processors
* buf[10]: Initial APICID
*
*
* For CPUID_L1_CACHE_AND_TLB_IDS:
* For CPUID_L1_CACHE_AND_TLB_IDS:
* buf[0]: (eax):
* buf[0] to buf[3]: 2M+4M page TLB info
* - 7..0 Number of times to exec cpuid to get all descriptors.
* 0: Inst count
* - 15..8 Instruction TLB: 4K Pages, 4-way set associtive, 128 entries.
* 1: Inst Assoc
* - 23..16 Data TLB: 4k Pages, 4-way set associtive, 128 entries.
* 2: Data Count
* - 24..31 Instruction TLB: 4K Pages, 4-way set associtive, 2 entries.
* 3: Data Assoc
* buf[1]: (ebx):
* buf[4] to buf[7]: 4k page TLB info
* - 7..0 64-byte prefetching
* 0: Inst count
* - 8..31 Null descriptor
* 1: Inst Assoc
* buf[2]: (ecx):
* 2: Data Count
* - 0..31 Null descriptor
* 3: Data Assoc
* buf[3]: (edx):
* buf[8] to buf[11]: L1 data cache information
* - 7..0 2nd-level cache, 2M, 8-way set associtive, 64-byte line size
* 0: Line Size
* - 15..8 1st-level instruction cache: 32K, 8-way set associtive, 64 byte line size
* 1: LinesPerTag
* - 16..23 Data TLB: 4M Pages, 4-way set associtive, 8 entires.
* 2: Associativity
* - 24..31 1st-level data cache: 32K, 8-way set associtive, 64 byte line size
* 3: CacheSize
* buf[12] to buf[15]: L1 instruction cache info
* 0: Line Size
* 1: LinesPerTag
* 2: Associativity
* 3: CacheSize
*
*
* For CPUID_HIGHEST_EXTENDED_FUNCTION_SUPPORTED:
* For CPUID_HIGHEST_EXTENDED_FUNCTION_SUPPORTED:
* Returns the highest supported function in *buf (expects an integer ofc)
* Returns the highest supported function in *buf (expects an integer ofc)
...
@@ -259,9 +264,6 @@ uint32_t cpuid_highest_ext_func_supported(void);
...
@@ -259,9 +264,6 @@ uint32_t cpuid_highest_ext_func_supported(void);
* For CPUID_PROC_BRAND_STRING:
* For CPUID_PROC_BRAND_STRING:
* Have a char array with at least 48 bytes assigned to it.
* Have a char array with at least 48 bytes assigned to it.
*
*
* Here's a page which will help you parse the data provided by this function.
* http://www.flounder.com/cpuid_explorer2.htm
*
* If an invalid flag has been passed a 0xbaadf00d is returned in *buf.
* If an invalid flag has been passed a 0xbaadf00d is returned in *buf.
*/
*/
void
cpuid
(
cpuid_t
info
,
uint32_t
*
buf
);
void
cpuid
(
cpuid_t
info
,
uint32_t
*
buf
);
...
@@ -299,7 +301,8 @@ bool cpuid_has_edxfeature(int feature);
...
@@ -299,7 +301,8 @@ bool cpuid_has_edxfeature(int feature);
#define cpuid_highest_ext_func_supported() BUILD_ASSERT_OR_ZERO(0)
#define cpuid_highest_ext_func_supported() BUILD_ASSERT_OR_ZERO(0)
#define cpuid_test_feature(feature) BUILD_ASSERT_OR_ZERO(0)
#define cpuid_test_feature(feature) BUILD_ASSERT_OR_ZERO(0)
#define cpuid_has_feature(feature, ext) BUILD_ASSERT_OR_ZERO(0)
#define cpuid_has_ecxfeature(feature) BUILD_ASSERT_OR_ZERO(0)
#define cpuid_has_edxfeature(feature) BUILD_ASSERT_OR_ZERO(0)
#endif
#endif
#endif
#endif
ccan/cpuid/test/run.c
View file @
83d4e128
...
@@ -18,12 +18,12 @@ int main(void)
...
@@ -18,12 +18,12 @@ int main(void)
cpuid
(
CPUID_PROC_BRAND_STRING
,
(
uint32_t
*
)
buf
);
cpuid
(
CPUID_PROC_BRAND_STRING
,
(
uint32_t
*
)
buf
);
printf
(
"Processor Brand: %s
\n
"
,
buf
);
printf
(
"Processor Brand: %s
\n
"
,
buf
);
uint32_t
procinfo
[
11
];
uint32_t
procinfo
[
9
];
cpuid
(
CPUID_PROCINFO_AND_FEATUREBITS
,
procinfo
);
cpuid
(
CPUID_PROCINFO_AND_FEATUREBITS
,
procinfo
);
printf
(
"Stepping: %d Model: 0x%X Family: %d extended model: %d extended family: %d
\n
"
,
printf
(
"Stepping: %d Model: 0x%X Family: %d extended model: %d extended family: %d
\n
"
,
procinfo
[
0
],
procinfo
[
1
],
procinfo
[
2
],
procinfo
[
3
],
procinfo
[
4
]);
procinfo
[
0
],
procinfo
[
1
],
procinfo
[
2
],
procinfo
[
3
],
procinfo
[
4
]);
printf
(
"Brand Index: %d CL Flush Line Size: %d Logical Processors: %d Initial APICID: %d
\n
"
,
printf
(
"Brand Index: %d CL Flush Line Size: %d Logical Processors: %d Initial APICID: %d
\n
"
,
procinfo
[
7
],
procinfo
[
8
],
procinfo
[
9
],
procinfo
[
10
]);
procinfo
[
5
],
procinfo
[
6
],
procinfo
[
7
],
procinfo
[
8
]);
printf
(
"Highest extended function supported: %#010x
\n
"
,
cpuid_highest_ext_func_supported
());
printf
(
"Highest extended function supported: %#010x
\n
"
,
cpuid_highest_ext_func_supported
());
...
...
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