-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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>
- Loading branch information
Leo Chen
authored and
Russell King
committed
Aug 15, 2009
1 parent
bc57390
commit 831f1f7
Showing
3 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
|