Gitweb: http://git.kernel.org/linus/831f1f73a6e1a0a02a5eaa2da5f49cf09c7bb1af Commit: 831f1f73a6e1a0a02a5eaa2da5f49cf09c7bb1af Parent: bc5739005f9c0585d21c78f61e9d7965f97b2109 Author: Leo Chen <leochen@broadcom.com> AuthorDate: Fri Aug 7 19:46:49 2009 +0100 Committer: Russell King <rmk+kernel@arm.linux.org.uk> CommitDate: Sat Aug 15 16:01:50 2009 +0100 ARM: 5642/1: bcmring: add Makefile/Kconfig/Makefile.boot in mach-bcmring add arch/arm/mach-bcmring directory add Kconfig, Makefile, and Makefile.boot in mach-bcmring Signed-off-by: Leo Chen <leochen@broadcom.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk> --- arch/arm/mach-bcmring/Kconfig | 21 +++++++++++++++++++++ arch/arm/mach-bcmring/Makefile | 8 ++++++++ arch/arm/mach-bcmring/Makefile.boot | 6 ++++++ 3 files changed, 35 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-bcmring/Kconfig b/arch/arm/mach-bcmring/Kconfig new file mode 100644 index 0000000..457b438 --- /dev/null +++ b/arch/arm/mach-bcmring/Kconfig @@ -0,0 +1,21 @@ +choice + prompt "Processor selection in BCMRING family of devices" + depends on ARCH_BCMRING + default ARCH_BCM11107 + +config ARCH_FPGA11107 + bool "FPGA11107" + +config ARCH_BCM11107 + bool "BCM11107" +endchoice + +menu "BCMRING Options" + depends on ARCH_BCMRING + +config BCM_ZRELADDR + hex "Compressed ZREL ADDR" + +endmenu + +# source "drivers/char/bcmring/Kconfig" diff --git a/arch/arm/mach-bcmring/Makefile b/arch/arm/mach-bcmring/Makefile new file mode 100644 index 0000000..f8d9fce --- /dev/null +++ b/arch/arm/mach-bcmring/Makefile @@ -0,0 +1,8 @@ +# +# Makefile for the linux kernel. +# + +# Object file lists. + +obj-y := arch.o mm.o irq.o clock.o core.o timer.o dma.o +obj-y += csp/ diff --git a/arch/arm/mach-bcmring/Makefile.boot b/arch/arm/mach-bcmring/Makefile.boot new file mode 100644 index 0000000..fb53b28 --- /dev/null +++ b/arch/arm/mach-bcmring/Makefile.boot @@ -0,0 +1,6 @@ +# Address where decompressor will be written and eventually executed. +# +# default to SDRAM +zreladdr-y := $(CONFIG_BCM_ZRELADDR) +params_phys-y := 0x00000800 + -- To unsubscribe from this list: send the line "unsubscribe git-commits-head" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
