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
nexedi
linux
Commits
4551e37e
Commit
4551e37e
authored
Sep 18, 2003
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://linux-dj.bkbits.net/cpufreq
into laptop.osdl.org:/home/torvalds/v2.5/linux
parents
336a8b22
652af67e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
arch/i386/kernel/cpu/cpufreq/powernow-k7.c
arch/i386/kernel/cpu/cpufreq/powernow-k7.c
+9
-0
No files found.
arch/i386/kernel/cpu/cpufreq/powernow-k7.c
View file @
4551e37e
...
...
@@ -196,6 +196,7 @@ static void change_FID(int fid)
if
(
fidvidctl
.
bits
.
FID
!=
fid
)
{
fidvidctl
.
bits
.
SGTC
=
latency
;
fidvidctl
.
bits
.
FID
=
fid
;
fidvidctl
.
bits
.
VIDC
=
0
;
fidvidctl
.
bits
.
FIDC
=
1
;
wrmsrl
(
MSR_K7_FID_VID_CTL
,
fidvidctl
.
val
);
}
...
...
@@ -208,7 +209,9 @@ static void change_VID(int vid)
rdmsrl
(
MSR_K7_FID_VID_CTL
,
fidvidctl
.
val
);
if
(
fidvidctl
.
bits
.
VID
!=
vid
)
{
fidvidctl
.
bits
.
SGTC
=
latency
;
fidvidctl
.
bits
.
VID
=
vid
;
fidvidctl
.
bits
.
FIDC
=
0
;
fidvidctl
.
bits
.
VIDC
=
1
;
wrmsrl
(
MSR_K7_FID_VID_CTL
,
fidvidctl
.
val
);
}
...
...
@@ -298,8 +301,14 @@ static int powernow_decode_bios (int maxfid, int startvid)
dprintk
(
" voltage regulator)
\n
"
);
latency
=
psb
->
settlingtime
;
if
(
latency
<
100
)
{
printk
(
KERN_INFO
PFX
"BIOS set settling time to %d microseconds."
"Should be at least 100. Correcting.
\n
"
,
latency
);
latency
=
100
;
}
dprintk
(
KERN_INFO
PFX
"Settling Time: %d microseconds.
\n
"
,
psb
->
settlingtime
);
dprintk
(
KERN_INFO
PFX
"Has %d PST tables. (Only dumping ones relevant to this CPU).
\n
"
,
psb
->
numpst
);
latency
*=
100
;
/* SGTC needs to be in units of 10ns */
p
+=
sizeof
(
struct
psb_s
);
...
...
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