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
ef44e465
Commit
ef44e465
authored
Apr 06, 2004
by
Dave Jones
Committed by
Dave Jones
Apr 06, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CPUFREQ] numerous powernow-k8 cpu_init() fixes/cleanups.
parent
3395b201
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
8 deletions
+35
-8
arch/i386/kernel/cpu/cpufreq/powernow-k8.c
arch/i386/kernel/cpu/cpufreq/powernow-k8.c
+35
-8
No files found.
arch/i386/kernel/cpu/cpufreq/powernow-k8.c
View file @
ef44e465
...
...
@@ -796,8 +796,12 @@ static int powernowk8_verify(struct cpufreq_policy *pol)
static
int
__init
powernowk8_cpu_init
(
struct
cpufreq_policy
*
pol
)
{
struct
powernow_k8_data
*
data
;
cpumask_t
oldmask
=
CPU_MASK_ALL
;
int
rc
;
if
(
!
check_supported_cpu
(
pol
->
cpu
))
return
-
ENODEV
;
data
=
kmalloc
(
sizeof
(
struct
powernow_k8_data
),
GFP_KERNEL
);
if
(
!
data
)
{
printk
(
KERN_ERR
PFX
"unable to alloc powernow_k8_data"
);
...
...
@@ -812,29 +816,49 @@ static int __init powernowk8_cpu_init(struct cpufreq_policy *pol)
kfree
(
data
);
return
-
ENODEV
;
}
pol
->
governor
=
CPUFREQ_DEFAULT_GOVERNOR
;
if
((
num_online_cpus
()
!=
1
)
||
(
num_possible_cpus
()
!=
1
))
{
printk
(
KERN_INFO
PFX
"MP systems not supported by PSB BIOS structure
\n
"
);
kfree
(
data
);
return
0
;
}
rc
=
find_psb_table
(
data
);
if
(
rc
)
{
kfree
(
data
);
return
-
ENODEV
;
}
/* only run on specific CPU from here on */
oldmask
=
current
->
cpus_allowed
;
set_cpus_allowed
(
current
,
cpumask_of_cpu
(
pol
->
cpu
));
schedule
();
if
(
smp_processor_id
()
!=
pol
->
cpu
)
{
printk
(
KERN_ERR
"limiting to cpu %u failed
\n
"
,
pol
->
cpu
);
goto
err_out
;
}
if
(
pending_bit_stuck
())
{
printk
(
KERN_ERR
PFX
"failing init, change pending bit set
\n
"
);
goto
err_out
;
}
if
(
query_current_values_with_pending_wait
(
data
))
goto
err_out
;
fidvid_msr_init
();
/* run on any CPU again */
set_cpus_allowed
(
current
,
oldmask
);
schedule
();
pol
->
governor
=
CPUFREQ_DEFAULT_GOVERNOR
;
/* Take a crude guess here.
* That guess was in microseconds, so multply with 1000 */
* That guess was in microseconds, so mult
i
ply with 1000 */
pol
->
cpuinfo
.
transition_latency
=
(((
data
->
rvo
+
8
)
*
data
->
vstable
*
VST_UNITS_20US
)
+
(
3
*
(
1
<<
data
->
irt
)
*
10
))
*
1000
;
if
(
query_current_values_with_pending_wait
(
data
))
return
-
EIO
;
pol
->
cur
=
1000
*
find_freq_from_fid
(
data
->
currfid
);
pol
->
cur
=
find_khz_freq_from_fid
(
data
->
currfid
);
dprintk
(
KERN_DEBUG
PFX
"policy current frequency %d kHz
\n
"
,
pol
->
cur
);
/* min/max the cpu is capable of */
...
...
@@ -855,6 +879,9 @@ static int __init powernowk8_cpu_init(struct cpufreq_policy *pol)
return
0
;
err_out:
set_cpus_allowed
(
current
,
oldmask
);
schedule
();
kfree
(
data
);
return
-
ENODEV
;
}
...
...
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