2008-01-11 10:42:06 +00:00
|
|
|
diff -urN linux-2.6.23.12/arch/mips/Kconfig linux-2.6.23.12.new/arch/mips/Kconfig
|
|
|
|
--- linux-2.6.23.12/arch/mips/Kconfig 2007-12-18 22:55:57.000000000 +0100
|
|
|
|
+++ linux-2.6.23.12.new/arch/mips/Kconfig 2008-01-11 08:46:20.000000000 +0100
|
|
|
|
@@ -595,6 +595,20 @@
|
|
|
|
This enables support for the Wind River MIPS32 4KC PPMC evaluation
|
|
|
|
board, which is based on GT64120 bridge chip.
|
2006-06-15 21:43:59 +00:00
|
|
|
|
|
|
|
+config MIKROTIK_RB500
|
|
|
|
+ bool "Support for RB5xx boards"
|
|
|
|
+ select HW_HAS_PCI
|
|
|
|
+ select IRQ_CPU
|
|
|
|
+ select SYS_HAS_CPU_MIPS32_R1
|
|
|
|
+ select SYS_SUPPORTS_LITTLE_ENDIAN
|
|
|
|
+ select SYS_SUPPORTS_32BIT_KERNEL
|
|
|
|
+ select SWAP_IO_SPACE
|
|
|
|
+ select DMA_NONCOHERENT
|
2008-01-11 10:42:06 +00:00
|
|
|
+ select GENERIC_GPIO
|
2006-06-15 21:43:59 +00:00
|
|
|
+ help
|
2008-01-11 10:42:06 +00:00
|
|
|
+ Support the Mikrotik(tm) Routerboard 500 series,
|
|
|
|
+ such as the RB532.
|
2006-06-15 21:43:59 +00:00
|
|
|
+
|
2008-01-11 10:42:06 +00:00
|
|
|
endchoice
|
2006-06-15 21:43:59 +00:00
|
|
|
|
2008-01-11 10:42:06 +00:00
|
|
|
source "arch/mips/au1000/Kconfig"
|
|
|
|
@@ -829,6 +843,7 @@
|
|
|
|
default "4" if MACH_DECSTATION
|
|
|
|
default "7" if SGI_IP27 || SNI_RM
|
|
|
|
default "4" if PMC_MSP4200_EVAL
|
|
|
|
+ default "4" if MIKROTIK_RB500
|
2006-06-15 21:43:59 +00:00
|
|
|
default "5"
|
|
|
|
|
2008-01-11 10:42:06 +00:00
|
|
|
config HAVE_STD_PC_SERIAL_PORT
|
|
|
|
diff -urN linux-2.6.23.12/arch/mips/Makefile linux-2.6.23.12.new/arch/mips/Makefile
|
|
|
|
--- linux-2.6.23.12/arch/mips/Makefile 2007-12-18 22:55:57.000000000 +0100
|
|
|
|
+++ linux-2.6.23.12.new/arch/mips/Makefile 2008-01-11 08:47:04.000000000 +0100
|
|
|
|
@@ -300,6 +300,13 @@
|
|
|
|
cflags-$(CONFIG_LEMOTE_FULONG) += -Iinclude/asm-mips/mach-lemote
|
2006-06-15 21:43:59 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
+# Routerboard 532 board
|
|
|
|
+#
|
|
|
|
+core-$(CONFIG_MIKROTIK_RB500) += arch/mips/rb500/
|
2008-01-11 10:42:06 +00:00
|
|
|
+cflags-$(CONFIG_MIKROTIK_RB500) += -Iinclude/asm-mips/rc32434
|
2006-06-15 21:43:59 +00:00
|
|
|
+load-$(CONFIG_MIKROTIK_RB500) += 0xffffffff80101000
|
|
|
|
+
|
|
|
|
+#
|
2008-01-11 10:42:06 +00:00
|
|
|
# For all MIPS, Inc. eval boards
|
2006-06-15 21:43:59 +00:00
|
|
|
#
|
2008-01-11 10:42:06 +00:00
|
|
|
core-$(CONFIG_MIPS_BOARDS_GEN) += arch/mips/mips-boards/generic/
|
|
|
|
diff -urN linux-2.6.23.12/arch/mips/pci/Makefile linux-2.6.23.12.new/arch/mips/pci/Makefile
|
|
|
|
--- linux-2.6.23.12/arch/mips/pci/Makefile 2007-12-18 22:55:57.000000000 +0100
|
|
|
|
+++ linux-2.6.23.12.new/arch/mips/pci/Makefile 2008-01-11 08:47:30.000000000 +0100
|
|
|
|
@@ -46,3 +46,4 @@
|
2006-06-15 21:43:59 +00:00
|
|
|
obj-$(CONFIG_VICTOR_MPC30X) += fixup-mpc30x.o
|
|
|
|
obj-$(CONFIG_ZAO_CAPCELLA) += fixup-capcella.o
|
2006-12-14 16:41:33 +00:00
|
|
|
obj-$(CONFIG_WR_PPMC) += fixup-wrppmc.o
|
2006-06-15 21:43:59 +00:00
|
|
|
+obj-$(CONFIG_MIKROTIK_RB500) += pci-rc32434.o ops-rc32434.o fixup-rb500.o
|
2008-01-11 10:42:06 +00:00
|
|
|
diff -urN linux-2.6.23.12/drivers/pci/Makefile linux-2.6.23.12.new/drivers/pci/Makefile
|
|
|
|
--- linux-2.6.23.12/drivers/pci/Makefile 2007-12-18 22:55:57.000000000 +0100
|
|
|
|
+++ linux-2.6.23.12.new/drivers/pci/Makefile 2008-01-11 08:48:10.000000000 +0100
|
|
|
|
@@ -32,6 +32,7 @@
|
|
|
|
obj-$(CONFIG_PPC64) += setup-bus.o
|
|
|
|
obj-$(CONFIG_MIPS) += setup-bus.o setup-irq.o
|
|
|
|
obj-$(CONFIG_X86_VISWS) += setup-irq.o
|
2006-06-15 21:43:59 +00:00
|
|
|
+obj-$(CONFIG_MIKROTIK_RB500) += setup-irq.o
|
|
|
|
|
2008-01-11 10:42:06 +00:00
|
|
|
#
|
|
|
|
# ACPI Related PCI FW Functions
|
|
|
|
diff -urN linux-2.6.23.12/include/asm-mips/bootinfo.h linux-2.6.23.12.new/include/asm-mips/bootinfo.h
|
|
|
|
--- linux-2.6.23.12/include/asm-mips/bootinfo.h 2007-12-18 22:55:57.000000000 +0100
|
|
|
|
+++ linux-2.6.23.12.new/include/asm-mips/bootinfo.h 2008-01-11 08:48:48.000000000 +0100
|
|
|
|
@@ -208,6 +208,11 @@
|
|
|
|
#define MACH_GROUP_WINDRIVER 28 /* Windriver boards */
|
|
|
|
#define MACH_WRPPMC 1
|
2006-06-15 21:43:59 +00:00
|
|
|
|
2008-01-11 10:42:06 +00:00
|
|
|
+
|
|
|
|
+#define MACH_GROUP_MIKROTIK 29 /* Mikrotik Boards */
|
2007-10-05 11:39:32 +00:00
|
|
|
+#define MACH_MIKROTIK_RB532 0 /* Mikrotik RouterBoard 532 */
|
|
|
|
+#define MACH_MIKROTIK_RB532A 1 /* Mikrotik RouterBoard 532A */
|
2006-06-15 21:43:59 +00:00
|
|
|
+
|
|
|
|
#define CL_SIZE COMMAND_LINE_SIZE
|
|
|
|
|
|
|
|
const char *get_system_type(void);
|
2008-01-11 10:42:06 +00:00
|
|
|
diff -urN linux-2.6.23.12/include/asm-mips/cpu.h linux-2.6.23.12.new/include/asm-mips/cpu.h
|
|
|
|
--- linux-2.6.23.12/include/asm-mips/cpu.h 2007-12-18 22:55:57.000000000 +0100
|
|
|
|
+++ linux-2.6.23.12.new/include/asm-mips/cpu.h 2008-01-11 08:49:34.000000000 +0100
|
|
|
|
@@ -217,8 +217,9 @@
|
2006-06-18 14:32:57 +00:00
|
|
|
#define CPU_R14000 64
|
2008-01-11 10:42:06 +00:00
|
|
|
#define CPU_LOONGSON1 65
|
|
|
|
#define CPU_LOONGSON2 66
|
|
|
|
+#define CPU_RC32300 67
|
|
|
|
|
|
|
|
-#define CPU_LAST 66
|
|
|
|
+#define CPU_LAST 67
|
2006-06-15 21:43:59 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ISA Level encodings
|