diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-03-18 09:31:43 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-03-18 09:31:43 -0400 |
commit | 0a95d92c0054e74fb79607ac2df958b7bf295706 (patch) | |
tree | e2c5f836e799dcfd72904949be47595af91432e7 /arch/powerpc/kernel/cputable.c | |
parent | 08351fc6a75731226e1112fc7254542bd3a2912e (diff) | |
parent | 831532035b12a5f7b600515a6f4da0b207b82d6e (diff) |
Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc
* 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc: (62 commits)
powerpc/85xx: Fix signedness bug in cache-sram
powerpc/fsl: 85xx: document cache sram bindings
powerpc/fsl: define binding for fsl mpic interrupt controllers
powerpc/fsl_msi: Handle msi-available-ranges better
drivers/serial/ucc_uart.c: Add of_node_put to avoid memory leak
powerpc/85xx: Fix SPE float to integer conversion failure
powerpc/85xx: Update sata controller compatible for p1022ds board
ATA: Add FSL sata v2 controller support
powerpc/mpc8xxx_gpio: simplify searching for 'fsl, qoriq-gpio' compatiable
powerpc/8xx: remove obsolete mgsuvd board
powerpc/82xx: rename and update mgcoge board support
powerpc/83xx: rename and update kmeter1
powerpc/85xx: Workaroudn e500 CPU erratum A005
powerpc/fsl_pci: Add support for FSL PCIe controllers v2.x
powerpc/85xx: Fix writing to spin table 'cpu-release-addr' on ppc64e
powerpc/pseries: Disable MSI using new interface if possible
powerpc: Enable GENERIC_HARDIRQS_NO_DEPRECATED.
powerpc: core irq_data conversion.
powerpc: sysdev/xilinx_intc irq_data conversion.
powerpc: sysdev/uic irq_data conversion.
...
Fix up conflicts in arch/powerpc/sysdev/fsl_msi.c (due to getting rid of
of_platform_driver in arch/powerpc)
Diffstat (limited to 'arch/powerpc/kernel/cputable.c')
-rw-r--r-- | arch/powerpc/kernel/cputable.c | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/arch/powerpc/kernel/cputable.c b/arch/powerpc/kernel/cputable.c index e8e915ce3d8d..c9b68d07ac4f 100644 --- a/arch/powerpc/kernel/cputable.c +++ b/arch/powerpc/kernel/cputable.c | |||
@@ -1811,11 +1811,11 @@ static struct cpu_spec __initdata cpu_specs[] = { | |||
1811 | .machine_check = machine_check_440A, | 1811 | .machine_check = machine_check_440A, |
1812 | .platform = "ppc440", | 1812 | .platform = "ppc440", |
1813 | }, | 1813 | }, |
1814 | { /* 476 core */ | 1814 | { /* 476 DD2 core */ |
1815 | .pvr_mask = 0xffff0000, | 1815 | .pvr_mask = 0xffffffff, |
1816 | .pvr_value = 0x11a50000, | 1816 | .pvr_value = 0x11a52080, |
1817 | .cpu_name = "476", | 1817 | .cpu_name = "476", |
1818 | .cpu_features = CPU_FTRS_47X, | 1818 | .cpu_features = CPU_FTRS_47X | CPU_FTR_476_DD2, |
1819 | .cpu_user_features = COMMON_USER_BOOKE | | 1819 | .cpu_user_features = COMMON_USER_BOOKE | |
1820 | PPC_FEATURE_HAS_FPU, | 1820 | PPC_FEATURE_HAS_FPU, |
1821 | .mmu_features = MMU_FTR_TYPE_47x | | 1821 | .mmu_features = MMU_FTR_TYPE_47x | |
@@ -1839,6 +1839,20 @@ static struct cpu_spec __initdata cpu_specs[] = { | |||
1839 | .machine_check = machine_check_47x, | 1839 | .machine_check = machine_check_47x, |
1840 | .platform = "ppc470", | 1840 | .platform = "ppc470", |
1841 | }, | 1841 | }, |
1842 | { /* 476 others */ | ||
1843 | .pvr_mask = 0xffff0000, | ||
1844 | .pvr_value = 0x11a50000, | ||
1845 | .cpu_name = "476", | ||
1846 | .cpu_features = CPU_FTRS_47X, | ||
1847 | .cpu_user_features = COMMON_USER_BOOKE | | ||
1848 | PPC_FEATURE_HAS_FPU, | ||
1849 | .mmu_features = MMU_FTR_TYPE_47x | | ||
1850 | MMU_FTR_USE_TLBIVAX_BCAST | MMU_FTR_LOCK_BCAST_INVAL, | ||
1851 | .icache_bsize = 32, | ||
1852 | .dcache_bsize = 128, | ||
1853 | .machine_check = machine_check_47x, | ||
1854 | .platform = "ppc470", | ||
1855 | }, | ||
1842 | { /* default match */ | 1856 | { /* default match */ |
1843 | .pvr_mask = 0x00000000, | 1857 | .pvr_mask = 0x00000000, |
1844 | .pvr_value = 0x00000000, | 1858 | .pvr_value = 0x00000000, |