diff options
-rw-r--r-- | arch/arm/mach-bcmring/Kconfig | 21 | ||||
-rw-r--r-- | arch/arm/mach-bcmring/Makefile | 8 | ||||
-rw-r--r-- | 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 000000000000..457b4384913e --- /dev/null +++ b/arch/arm/mach-bcmring/Kconfig | |||
@@ -0,0 +1,21 @@ | |||
1 | choice | ||
2 | prompt "Processor selection in BCMRING family of devices" | ||
3 | depends on ARCH_BCMRING | ||
4 | default ARCH_BCM11107 | ||
5 | |||
6 | config ARCH_FPGA11107 | ||
7 | bool "FPGA11107" | ||
8 | |||
9 | config ARCH_BCM11107 | ||
10 | bool "BCM11107" | ||
11 | endchoice | ||
12 | |||
13 | menu "BCMRING Options" | ||
14 | depends on ARCH_BCMRING | ||
15 | |||
16 | config BCM_ZRELADDR | ||
17 | hex "Compressed ZREL ADDR" | ||
18 | |||
19 | endmenu | ||
20 | |||
21 | # source "drivers/char/bcmring/Kconfig" | ||
diff --git a/arch/arm/mach-bcmring/Makefile b/arch/arm/mach-bcmring/Makefile new file mode 100644 index 000000000000..f8d9fcedf917 --- /dev/null +++ b/arch/arm/mach-bcmring/Makefile | |||
@@ -0,0 +1,8 @@ | |||
1 | # | ||
2 | # Makefile for the linux kernel. | ||
3 | # | ||
4 | |||
5 | # Object file lists. | ||
6 | |||
7 | obj-y := arch.o mm.o irq.o clock.o core.o timer.o dma.o | ||
8 | obj-y += csp/ | ||
diff --git a/arch/arm/mach-bcmring/Makefile.boot b/arch/arm/mach-bcmring/Makefile.boot new file mode 100644 index 000000000000..fb53b283bebb --- /dev/null +++ b/arch/arm/mach-bcmring/Makefile.boot | |||
@@ -0,0 +1,6 @@ | |||
1 | # Address where decompressor will be written and eventually executed. | ||
2 | # | ||
3 | # default to SDRAM | ||
4 | zreladdr-y := $(CONFIG_BCM_ZRELADDR) | ||
5 | params_phys-y := 0x00000800 | ||
6 | |||