diff options
author | Madhulika Madishetty <mmadishetty@amcc.com> | 2009-02-05 08:31:36 -0500 |
---|---|---|
committer | Josh Boyer <jwboyer@linux.vnet.ibm.com> | 2009-02-14 14:41:29 -0500 |
commit | 6c7120902305b3a21460cd2f0f917a39307df566 (patch) | |
tree | f9011fdc105d738b0318fbd9c86e05eff1fd2e82 /arch/powerpc/kernel/cputable.c | |
parent | 41b6a085e48d0d9e1200946755f49f31dd930137 (diff) |
AMCC PPC 460SX redwood SoC platform initial framework
This patch contains initial framework for the AMCC Redwood board.
Signed-off-by: Madhulika Madishetty <mmadishetty@amcc.com>
Signed-off-by: Tirumala Marri <tmarri@amcc.com>
Signed-off-by: Feng Kan <fkan@amcc.com>
Signed-off-by: Vidhyananth Venkatasamy <vvenkatasamy@amcc.com>
Signed-off-by: Preetesh Parekh <pparekh@amcc.com>
Acked-by: Loc Ho <lho@amcc.com>
Acked-by: Feng Kan <fkan@amcc.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 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/cputable.c b/arch/powerpc/kernel/cputable.c index 9fdf1b8027b5..f59ca710f448 100644 --- a/arch/powerpc/kernel/cputable.c +++ b/arch/powerpc/kernel/cputable.c | |||
@@ -47,6 +47,7 @@ extern void __setup_cpu_440spe(unsigned long offset, struct cpu_spec* spec); | |||
47 | extern void __setup_cpu_440x5(unsigned long offset, struct cpu_spec* spec); | 47 | extern void __setup_cpu_440x5(unsigned long offset, struct cpu_spec* spec); |
48 | extern void __setup_cpu_460ex(unsigned long offset, struct cpu_spec* spec); | 48 | extern void __setup_cpu_460ex(unsigned long offset, struct cpu_spec* spec); |
49 | extern void __setup_cpu_460gt(unsigned long offset, struct cpu_spec* spec); | 49 | extern void __setup_cpu_460gt(unsigned long offset, struct cpu_spec* spec); |
50 | extern void __setup_cpu_460sx(unsigned long offset, struct cpu_spec *spec); | ||
50 | extern void __setup_cpu_603(unsigned long offset, struct cpu_spec* spec); | 51 | extern void __setup_cpu_603(unsigned long offset, struct cpu_spec* spec); |
51 | extern void __setup_cpu_604(unsigned long offset, struct cpu_spec* spec); | 52 | extern void __setup_cpu_604(unsigned long offset, struct cpu_spec* spec); |
52 | extern void __setup_cpu_750(unsigned long offset, struct cpu_spec* spec); | 53 | extern void __setup_cpu_750(unsigned long offset, struct cpu_spec* spec); |
@@ -1638,6 +1639,19 @@ static struct cpu_spec __initdata cpu_specs[] = { | |||
1638 | .machine_check = machine_check_440A, | 1639 | .machine_check = machine_check_440A, |
1639 | .platform = "ppc440", | 1640 | .platform = "ppc440", |
1640 | }, | 1641 | }, |
1642 | { /* 460SX */ | ||
1643 | .pvr_mask = 0xffffff00, | ||
1644 | .pvr_value = 0x13541800, | ||
1645 | .cpu_name = "460SX", | ||
1646 | .cpu_features = CPU_FTRS_44X, | ||
1647 | .cpu_user_features = COMMON_USER_BOOKE, | ||
1648 | .mmu_features = MMU_FTR_TYPE_44x, | ||
1649 | .icache_bsize = 32, | ||
1650 | .dcache_bsize = 32, | ||
1651 | .cpu_setup = __setup_cpu_460sx, | ||
1652 | .machine_check = machine_check_440A, | ||
1653 | .platform = "ppc440", | ||
1654 | }, | ||
1641 | { /* default match */ | 1655 | { /* default match */ |
1642 | .pvr_mask = 0x00000000, | 1656 | .pvr_mask = 0x00000000, |
1643 | .pvr_value = 0x00000000, | 1657 | .pvr_value = 0x00000000, |