2010-04-22 07:12:09 +00:00
|
|
|
--- a/arch/mips/Kconfig
|
|
|
|
+++ b/arch/mips/Kconfig
|
|
|
|
@@ -139,6 +139,9 @@ config MACH_DECSTATION
|
2010-04-10 20:11:28 +00:00
|
|
|
|
|
|
|
otherwise choose R3000.
|
|
|
|
|
|
|
|
+config IFXMIPS
|
|
|
|
+ bool "Infineon MIPS"
|
|
|
|
+
|
|
|
|
config MACH_JAZZ
|
|
|
|
bool "Jazz family of machines"
|
|
|
|
select ARC
|
2010-04-22 07:12:09 +00:00
|
|
|
@@ -693,6 +696,7 @@ source "arch/mips/txx9/Kconfig"
|
2010-04-10 20:11:28 +00:00
|
|
|
source "arch/mips/vr41xx/Kconfig"
|
|
|
|
source "arch/mips/cavium-octeon/Kconfig"
|
|
|
|
source "arch/mips/loongson/Kconfig"
|
|
|
|
+source "arch/mips/ifxmips/Kconfig"
|
|
|
|
|
|
|
|
endmenu
|
|
|
|
|
2010-04-22 07:12:09 +00:00
|
|
|
--- a/arch/mips/Makefile
|
|
|
|
+++ b/arch/mips/Makefile
|
|
|
|
@@ -317,6 +317,18 @@ cflags-$(CONFIG_MIPS_COBALT) += -I$(srct
|
2010-04-10 20:11:28 +00:00
|
|
|
load-$(CONFIG_MIPS_COBALT) += 0xffffffff80080000
|
|
|
|
|
|
|
|
#
|
|
|
|
+# Infineon IFXMIPS
|
|
|
|
+#
|
|
|
|
+core-$(CONFIG_IFXMIPS) += arch/mips/ifxmips/common/
|
|
|
|
+cflags-$(CONFIG_IFXMIPS) += -I$(srctree)/arch/mips/include/asm/mach-ifxmips
|
|
|
|
+
|
|
|
|
+core-$(CONFIG_IFXMIPS_DANUBE) += arch/mips/ifxmips/danube/
|
|
|
|
+cflags-$(CONFIG_IFXMIPS_DANUBE) += -I$(srctree)/arch/mips/include/asm/mach-ifxmips/danube/
|
|
|
|
+load-$(CONFIG_IFXMIPS_DANUBE) += 0xffffffff80002000
|
|
|
|
+
|
|
|
|
+core-$(CONFIG_IFXMIPS_COMPAT) += arch/mips/ifxmips/compat/
|
|
|
|
+
|
|
|
|
+#
|
|
|
|
# DECstation family
|
|
|
|
#
|
|
|
|
core-$(CONFIG_MACH_DECSTATION) += arch/mips/dec/
|
2010-04-22 07:12:09 +00:00
|
|
|
--- a/arch/mips/pci/Makefile
|
|
|
|
+++ b/arch/mips/pci/Makefile
|
|
|
|
@@ -55,7 +55,7 @@ obj-$(CONFIG_ZAO_CAPCELLA) += fixup-capc
|
2010-04-10 20:11:28 +00:00
|
|
|
obj-$(CONFIG_WR_PPMC) += fixup-wrppmc.o
|
|
|
|
obj-$(CONFIG_MIKROTIK_RB532) += pci-rc32434.o ops-rc32434.o fixup-rc32434.o
|
|
|
|
obj-$(CONFIG_CPU_CAVIUM_OCTEON) += pci-octeon.o pcie-octeon.o
|
|
|
|
-
|
|
|
|
+obj-$(CONFIG_IFXMIPS) += pci-ifxmips.o ops-ifxmips.o
|
|
|
|
ifdef CONFIG_PCI_MSI
|
|
|
|
obj-$(CONFIG_CPU_CAVIUM_OCTEON) += msi-octeon.o
|
|
|
|
endif
|