diff options
author | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2007-12-02 13:00:32 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-01-29 10:14:58 +0000 |
commit | e2defae5a9b4f8d1acb058be212ef89c8763dc5b (patch) | |
tree | 3a0e72b5df8ee181e6c30fb6d1cba636c460a9fd /arch/mips/Makefile | |
parent | 81149be11327cbad006f82318f46e0b68a7b14ad (diff) | |
download | linux-e2defae5a9b4f8d1acb058be212ef89c8763dc5b.tar.gz linux-e2defae5a9b4f8d1acb058be212ef89c8763dc5b.tar.bz2 linux-e2defae5a9b4f8d1acb058be212ef89c8763dc5b.zip |
[MIPS] IP28 support
Add support for SGI IP28 machines (Indigo 2 with R10k CPUs)
This work is mainly based on Peter Fuersts work.
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/Makefile')
-rw-r--r-- | arch/mips/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index a49127af33c8..dd668f3a8394 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile @@ -479,6 +479,20 @@ endif endif # +# SGI IP28 (Indigo2 R10k) +# +# Set the load address to >= 0xa800000020080000 if you want to leave space for +# symmon, 0xa800000020004000 for production kernels ? Note that the value must +# be 16kb aligned or the handling of the current variable will break. +# Simplified: what IP22 does at 128MB+ in ksegN, IP28 does at 512MB+ in xkphys +# +#core-$(CONFIG_SGI_IP28) += arch/mips/sgi-ip22/ arch/mips/arc/arc_con.o +core-$(CONFIG_SGI_IP28) += arch/mips/sgi-ip22/ +cflags-$(CONFIG_SGI_IP28) += -mr10k-cache-barrier=1 -Iinclude/asm-mips/mach-ip28 +#cflags-$(CONFIG_SGI_IP28) += -Iinclude/asm-mips/mach-ip28 +load-$(CONFIG_SGI_IP28) += 0xa800000020004000 + +# # SGI-IP32 (O2) # # Set the load address to >= 80069000 if you want to leave space for symmon, |