Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
a163b109
Commit
a163b109
authored
Feb 25, 2010
by
Robert Richter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
perf, x86: add some IBS macros to perf_event.h
Signed-off-by:
Robert Richter
<
robert.richter@amd.com
>
parent
1d6040f1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
arch/x86/include/asm/perf_event.h
arch/x86/include/asm/perf_event.h
+3
-1
arch/x86/oprofile/op_model_amd.c
arch/x86/oprofile/op_model_amd.c
+3
-3
No files found.
arch/x86/include/asm/perf_event.h
View file @
a163b109
...
@@ -121,12 +121,14 @@ union cpuid10_edx {
...
@@ -121,12 +121,14 @@ union cpuid10_edx {
#define IBS_FETCH_RAND_EN (1ULL<<57)
#define IBS_FETCH_RAND_EN (1ULL<<57)
#define IBS_FETCH_VAL (1ULL<<49)
#define IBS_FETCH_VAL (1ULL<<49)
#define IBS_FETCH_ENABLE (1ULL<<48)
#define IBS_FETCH_ENABLE (1ULL<<48)
#define IBS_FETCH_CNT_MASK 0xFFFF0000ULL
#define IBS_FETCH_CNT 0xFFFF0000ULL
#define IBS_FETCH_MAX_CNT 0x0000FFFFULL
/* IbsOpCtl bits */
/* IbsOpCtl bits */
#define IBS_OP_CNT_CTL (1ULL<<19)
#define IBS_OP_CNT_CTL (1ULL<<19)
#define IBS_OP_VAL (1ULL<<18)
#define IBS_OP_VAL (1ULL<<18)
#define IBS_OP_ENABLE (1ULL<<17)
#define IBS_OP_ENABLE (1ULL<<17)
#define IBS_OP_MAX_CNT 0x0000FFFFULL
#ifdef CONFIG_PERF_EVENTS
#ifdef CONFIG_PERF_EVENTS
extern
void
init_hw_perf_events
(
void
);
extern
void
init_hw_perf_events
(
void
);
...
...
arch/x86/oprofile/op_model_amd.c
View file @
a163b109
...
@@ -279,7 +279,7 @@ op_amd_handle_ibs(struct pt_regs * const regs,
...
@@ -279,7 +279,7 @@ op_amd_handle_ibs(struct pt_regs * const regs,
oprofile_write_commit
(
&
entry
);
oprofile_write_commit
(
&
entry
);
/* reenable the IRQ */
/* reenable the IRQ */
ctl
&=
~
(
IBS_FETCH_VAL
|
IBS_FETCH_CNT
_MASK
);
ctl
&=
~
(
IBS_FETCH_VAL
|
IBS_FETCH_CNT
);
ctl
|=
IBS_FETCH_ENABLE
;
ctl
|=
IBS_FETCH_ENABLE
;
wrmsrl
(
MSR_AMD64_IBSFETCHCTL
,
ctl
);
wrmsrl
(
MSR_AMD64_IBSFETCHCTL
,
ctl
);
}
}
...
@@ -319,7 +319,7 @@ static inline void op_amd_start_ibs(void)
...
@@ -319,7 +319,7 @@ static inline void op_amd_start_ibs(void)
return
;
return
;
if
(
ibs_config
.
fetch_enabled
)
{
if
(
ibs_config
.
fetch_enabled
)
{
val
=
(
ibs_config
.
max_cnt_fetch
>>
4
)
&
0xFFFF
;
val
=
(
ibs_config
.
max_cnt_fetch
>>
4
)
&
IBS_FETCH_MAX_CNT
;
val
|=
ibs_config
.
rand_en
?
IBS_FETCH_RAND_EN
:
0
;
val
|=
ibs_config
.
rand_en
?
IBS_FETCH_RAND_EN
:
0
;
val
|=
IBS_FETCH_ENABLE
;
val
|=
IBS_FETCH_ENABLE
;
wrmsrl
(
MSR_AMD64_IBSFETCHCTL
,
val
);
wrmsrl
(
MSR_AMD64_IBSFETCHCTL
,
val
);
...
@@ -341,7 +341,7 @@ static inline void op_amd_start_ibs(void)
...
@@ -341,7 +341,7 @@ static inline void op_amd_start_ibs(void)
* avoid underflows.
* avoid underflows.
*/
*/
ibs_op_ctl
=
min
(
ibs_op_ctl
+
IBS_RANDOM_MAXCNT_OFFSET
,
ibs_op_ctl
=
min
(
ibs_op_ctl
+
IBS_RANDOM_MAXCNT_OFFSET
,
0xFFFFULL
);
IBS_OP_MAX_CNT
);
}
}
if
(
ibs_caps
&
IBS_CAPS_OPCNT
&&
ibs_config
.
dispatched_ops
)
if
(
ibs_caps
&
IBS_CAPS_OPCNT
&&
ibs_config
.
dispatched_ops
)
ibs_op_ctl
|=
IBS_OP_CNT_CTL
;
ibs_op_ctl
|=
IBS_OP_CNT_CTL
;
...
...
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