-
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.
MIPS: Sibyte: Migrate to new platform makefile style.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
- Loading branch information
Ralf Baechle
committed
Aug 5, 2010
1 parent
f6e1db1
commit 34f5c1c
Showing
7 changed files
with
71 additions
and
56 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
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
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,27 @@ | ||
# | ||
# Sibyte SB1250 / BCM1480 family of SOCs | ||
# | ||
obj-$(CONFIG_SIBYTE_BCM112X) += sb1250/ | ||
obj-$(CONFIG_SIBYTE_BCM112X) += common/ | ||
obj-$(CONFIG_SIBYTE_SB1250) += sb1250/ | ||
obj-$(CONFIG_SIBYTE_SB1250) += common/ | ||
obj-$(CONFIG_SIBYTE_BCM1x55) += bcm1480/ | ||
obj-$(CONFIG_SIBYTE_BCM1x55) += common/ | ||
obj-$(CONFIG_SIBYTE_BCM1x80) += bcm1480/ | ||
obj-$(CONFIG_SIBYTE_BCM1x80) += common/ | ||
|
||
# | ||
# Sibyte BCM91120x (Carmel) board | ||
# Sibyte BCM91120C (CRhine) board | ||
# Sibyte BCM91125C (CRhone) board | ||
# Sibyte BCM91125E (Rhone) board | ||
# Sibyte SWARM board | ||
# Sibyte BCM91x80 (BigSur) board | ||
# | ||
obj-$(CONFIG_SIBYTE_CARMEL) += swarm/ | ||
obj-$(CONFIG_SIBYTE_CRHINE) += swarm/ | ||
obj-$(CONFIG_SIBYTE_CRHONE) += swarm/ | ||
obj-$(CONFIG_SIBYTE_RHONE) += swarm/ | ||
obj-$(CONFIG_SIBYTE_SENTOSA) += swarm/ | ||
obj-$(CONFIG_SIBYTE_SWARM) += swarm/ | ||
obj-$(CONFIG_SIBYTE_BIGSUR) += swarm/ |
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,43 @@ | ||
# | ||
# These are all rather similar so we consider them a single platform | ||
# | ||
platform-$(CONFIG_SIBYTE_BCM112X) += sibyte/ | ||
platform-$(CONFIG_SIBYTE_SB1250) += sibyte/ | ||
platform-$(CONFIG_SIBYTE_BCM1x55) += sibyte/ | ||
platform-$(CONFIG_SIBYTE_BCM1x80) += sibyte/ | ||
|
||
# | ||
# Sibyte SB1250 / BCM1480 family of SOCs | ||
# | ||
cflags-$(CONFIG_SIBYTE_BCM112X) += \ | ||
-I$(srctree)/arch/mips/include/asm/mach-sibyte \ | ||
-DSIBYTE_HDR_FEATURES=SIBYTE_HDR_FMASK_1250_112x_ALL | ||
|
||
platform-$(CONFIG_SIBYTE_SB1250) += sibyte/ | ||
cflags-$(CONFIG_SIBYTE_SB1250) += \ | ||
-I$(srctree)/arch/mips/include/asm/mach-sibyte \ | ||
-DSIBYTE_HDR_FEATURES=SIBYTE_HDR_FMASK_1250_112x_ALL | ||
|
||
cflags-$(CONFIG_SIBYTE_BCM1x55) += \ | ||
-I$(srctree)/arch/mips/include/asm/mach-sibyte \ | ||
-DSIBYTE_HDR_FEATURES=SIBYTE_HDR_FMASK_1480_ALL | ||
|
||
cflags-$(CONFIG_SIBYTE_BCM1x80) += \ | ||
-I$(srctree)/arch/mips/include/asm/mach-sibyte \ | ||
-DSIBYTE_HDR_FEATURES=SIBYTE_HDR_FMASK_1480_ALL | ||
|
||
# | ||
# Sibyte BCM91120x (Carmel) board | ||
# Sibyte BCM91120C (CRhine) board | ||
# Sibyte BCM91125C (CRhone) board | ||
# Sibyte BCM91125E (Rhone) board | ||
# Sibyte SWARM board | ||
# Sibyte BCM91x80 (BigSur) board | ||
# | ||
load-$(CONFIG_SIBYTE_CARMEL) := 0xffffffff80100000 | ||
load-$(CONFIG_SIBYTE_CRHINE) := 0xffffffff80100000 | ||
load-$(CONFIG_SIBYTE_CRHONE) := 0xffffffff80100000 | ||
load-$(CONFIG_SIBYTE_RHONE) := 0xffffffff80100000 | ||
load-$(CONFIG_SIBYTE_SENTOSA) := 0xffffffff80100000 | ||
load-$(CONFIG_SIBYTE_SWARM) := 0xffffffff80100000 | ||
load-$(CONFIG_SIBYTE_BIGSUR) := 0xffffffff80100000 |
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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
obj-y := setup.o irq.o time.o | ||
|
||
obj-$(CONFIG_SMP) += smp.o | ||
|
||
EXTRA_CFLAGS += -Werror |
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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
obj-y := cfe.o | ||
obj-$(CONFIG_SIBYTE_CFE_CONSOLE) += cfe_console.o | ||
obj-$(CONFIG_SIBYTE_TBPROF) += sb_tbprof.o | ||
|
||
EXTRA_CFLAGS += -Werror |
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