diff options
author | Valentine Barshak <vbarshak@ru.mvista.com> | 2007-09-21 10:46:57 -0400 |
---|---|---|
committer | Josh Boyer <jwboyer@linux.vnet.ibm.com> | 2007-10-03 08:20:17 -0400 |
commit | 8112753bb2c0045398c89d0647792b39805f6d40 (patch) | |
tree | 5a818e51c96b9cc0d0cd733838554037339a8559 /arch/powerpc/kernel/cputable.c | |
parent | 84e3ad5b91ed51db7513a54ad7ed652ab0ca4ba1 (diff) |
[POWERPC] 4xx: Move 440EP(x) FPU setup from head_44x to cpu_setup_4xx
The PowerPC 440EP(x) FPU init is currently done in head_44x
under ifdefs. Since we should support more then one board
in the same kernel, we move FPU initialization code from head_44x
to cpu_setup_44x and add cpu_setup callbacks for 440EP(x).
Signed-off-by: Valentine Barshak <vbarshak@ru.mvista.com>
Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
Diffstat (limited to 'arch/powerpc/kernel/cputable.c')
-rw-r--r-- | arch/powerpc/kernel/cputable.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/cputable.c b/arch/powerpc/kernel/cputable.c index 8711499f5a02..94d98190e19a 100644 --- a/arch/powerpc/kernel/cputable.c +++ b/arch/powerpc/kernel/cputable.c | |||
@@ -31,6 +31,8 @@ EXPORT_SYMBOL(cur_cpu_spec); | |||
31 | * and ppc64 | 31 | * and ppc64 |
32 | */ | 32 | */ |
33 | #ifdef CONFIG_PPC32 | 33 | #ifdef CONFIG_PPC32 |
34 | extern void __setup_cpu_440ep(unsigned long offset, struct cpu_spec* spec); | ||
35 | extern void __setup_cpu_440epx(unsigned long offset, struct cpu_spec* spec); | ||
34 | extern void __setup_cpu_603(unsigned long offset, struct cpu_spec* spec); | 36 | extern void __setup_cpu_603(unsigned long offset, struct cpu_spec* spec); |
35 | extern void __setup_cpu_604(unsigned long offset, struct cpu_spec* spec); | 37 | extern void __setup_cpu_604(unsigned long offset, struct cpu_spec* spec); |
36 | extern void __setup_cpu_750(unsigned long offset, struct cpu_spec* spec); | 38 | extern void __setup_cpu_750(unsigned long offset, struct cpu_spec* spec); |
@@ -1111,6 +1113,7 @@ static struct cpu_spec cpu_specs[] = { | |||
1111 | .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU, | 1113 | .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU, |
1112 | .icache_bsize = 32, | 1114 | .icache_bsize = 32, |
1113 | .dcache_bsize = 32, | 1115 | .dcache_bsize = 32, |
1116 | .cpu_setup = __setup_cpu_440ep, | ||
1114 | .platform = "ppc440", | 1117 | .platform = "ppc440", |
1115 | }, | 1118 | }, |
1116 | { | 1119 | { |
@@ -1121,6 +1124,7 @@ static struct cpu_spec cpu_specs[] = { | |||
1121 | .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU, | 1124 | .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU, |
1122 | .icache_bsize = 32, | 1125 | .icache_bsize = 32, |
1123 | .dcache_bsize = 32, | 1126 | .dcache_bsize = 32, |
1127 | .cpu_setup = __setup_cpu_440ep, | ||
1124 | .platform = "ppc440", | 1128 | .platform = "ppc440", |
1125 | }, | 1129 | }, |
1126 | { /* 440EPX */ | 1130 | { /* 440EPX */ |
@@ -1131,6 +1135,8 @@ static struct cpu_spec cpu_specs[] = { | |||
1131 | .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU, | 1135 | .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU, |
1132 | .icache_bsize = 32, | 1136 | .icache_bsize = 32, |
1133 | .dcache_bsize = 32, | 1137 | .dcache_bsize = 32, |
1138 | .cpu_setup = __setup_cpu_440epx, | ||
1139 | .platform = "ppc440", | ||
1134 | }, | 1140 | }, |
1135 | { /* 440GRX */ | 1141 | { /* 440GRX */ |
1136 | .pvr_mask = 0xf0000ffb, | 1142 | .pvr_mask = 0xf0000ffb, |