David Daney 
							
						 
					 
					
						
						
						
						
							
						
						
							6f329468f3 
							
						 
					 
					
						
						
							
							MIPS: Give Octeon+ CPUs their own cputype.  
						
						... 
						
						
						
						This allows us to treat them differently at runtime.
Signed-off-by: David Daney <ddaney@caviumnetworks.com>
To: linux-mips@linux-mips.org 
Patchwork: http://patchwork.linux-mips.org/patch/951/ 
Patchwork: http://patchwork.linux-mips.org/patch/987/ 
Signed-off-by: Ralf Baechle <ralf@linux-mips.org> 
						
					 
					
						2010-02-27 12:53:26 +01:00 
						 
				 
			
				
					
						
							
							
								Ralf Baechle 
							
						 
					 
					
						
						
						
						
							
						
						
							e0e53dee69 
							
						 
					 
					
						
						
							
							MIPS: Nuke trailing blank lines  
						
						... 
						
						
						
						Recent git versions now warn about those and they've always been a bit of
an annoyance.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org> 
						
					 
					
						2010-02-27 12:53:14 +01:00 
						 
				 
			
				
					
						
							
							
								David Daney 
							
						 
					 
					
						
						
						
						
							
						
						
							63731c964d 
							
						 
					 
					
						
						
							
							MIPS: Fix __devinit __cpuinit confusion in cpu_cache_init  
						
						... 
						
						
						
						cpu_cache_init and the things it calls should all be __cpuinit instead
of __devinit.
Signed-off-by: David Daney <ddaney@caviumnetworks.com>
To: linux-mips@linux-mips.org 
Patchwork: http://patchwork.linux-mips.org/patch/938/ 
Signed-off-by: Ralf Baechle <ralf@linux-mips.org> 
						
					 
					
						2010-02-10 22:15:45 +01:00 
						 
				 
			
				
					
						
							
							
								Rusty Russell 
							
						 
					 
					
						
						
						
						
							
						
						
							55b8cab49d 
							
						 
					 
					
						
						
							
							cpumask: use mm_cpumask() wrapper: mips  
						
						... 
						
						
						
						Makes code futureproof against the impending change to mm->cpu_vm_mask.
It's also a chance to use the new cpumask_ ops which take a pointer
(the older ones are deprecated, but there's no hurry for arch code).
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> 
						
					 
					
						2009-09-24 09:34:51 +09:30 
						 
				 
			
				
					
						
							
							
								Ralf Baechle 
							
						 
					 
					
						
						
						
						
							
						
						
							1c1a90d866 
							
						 
					 
					
						
						
							
							[PATCH] MIPS: Cavium: Move swapped comments to their rightful place.  
						
						... 
						
						
						
						Signed-off-by: Ralf Baechle <ralf@linux-mips.org> 
						
					 
					
						2009-08-03 17:52:39 +01:00 
						 
				 
			
				
					
						
							
							
								Ralf Baechle 
							
						 
					 
					
						
						
						
						
							
						
						
							631330f584 
							
						 
					 
					
						
						
							
							MIPS: Build fix - include <linux/smp.h> into all smp_processor_id() users.  
						
						... 
						
						
						
						Some of the were relying into smp.h being dragged in by another header
which of course is fragile.  <asm/cpu-info.h> uses smp_processor_id()
only in macros and including smp.h there leads to an include loop, so
don't change cpu-info.h.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org> 
						
					 
					
						2009-06-24 18:34:39 +01:00 
						 
				 
			
				
					
						
							
							
								David Daney 
							
						 
					 
					
						
						
						
						
							
						
						
							5b3b16880f 
							
						 
					 
					
						
						
							
							MIPS: Add Cavium OCTEON processor support files to arch/mips/cavium-octeon.  
						
						... 
						
						
						
						These are the rest of the new files needed to add OCTEON processor
support to the Linux kernel.  Other than Makefile and Kconfig which
should be obvious, we have:
csrc-octeon.c   -- Clock source driver for OCTEON.
dma-octeon.c    -- Helper functions for mapping DMA memory.
flash_setup.c   -- Register on-board flash with the MTD subsystem.
octeon-irq.c    -- OCTEON interrupt controller managment.
octeon-memcpy.S -- Optimized memcpy() implementation.
serial.c        -- Register 8250 platform driver and early console.
setup.c         -- Early architecture initialization.
smp.c           -- OCTEON SMP support.
octeon_switch.S -- Scheduler context switch for OCTEON.
c-octeon.c      -- OCTEON cache controller support.
cex-oct.S       -- OCTEON cache exception handler.
asm/mach-cavium-octeon/*.h -- Architecture include files.
Signed-off-by: Tomaso Paoletti <tpaoletti@caviumnetworks.com>
Signed-off-by: David Daney <ddaney@caviumnetworks.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
 create mode 100644 arch/mips/cavium-octeon/Kconfig
 create mode 100644 arch/mips/cavium-octeon/Makefile
 create mode 100644 arch/mips/cavium-octeon/csrc-octeon.c
 create mode 100644 arch/mips/cavium-octeon/dma-octeon.c
 create mode 100644 arch/mips/cavium-octeon/flash_setup.c
 create mode 100644 arch/mips/cavium-octeon/octeon-irq.c
 create mode 100644 arch/mips/cavium-octeon/octeon-memcpy.S
 create mode 100644 arch/mips/cavium-octeon/serial.c
 create mode 100644 arch/mips/cavium-octeon/setup.c
 create mode 100644 arch/mips/cavium-octeon/smp.c
 create mode 100644 arch/mips/include/asm/mach-cavium-octeon/cpu-feature-overrides.h
 create mode 100644 arch/mips/include/asm/mach-cavium-octeon/dma-coherence.h
 create mode 100644 arch/mips/include/asm/mach-cavium-octeon/irq.h
 create mode 100644 arch/mips/include/asm/mach-cavium-octeon/kernel-entry-init.h
 create mode 100644 arch/mips/include/asm/mach-cavium-octeon/war.h
 create mode 100644 arch/mips/include/asm/octeon/octeon.h
 create mode 100644 arch/mips/kernel/octeon_switch.S
 create mode 100644 arch/mips/mm/c-octeon.c
 create mode 100644 arch/mips/mm/cex-oct.S 
						
					 
					
						2009-01-11 09:57:21 +00:00