diff options
author | Lennert Buytenhek <buytenh@wantstofly.org> | 2008-03-27 14:51:39 -0400 |
---|---|---|
committer | Nicolas Pitre <nico@marvell.com> | 2008-03-27 14:51:39 -0400 |
commit | 69b02f6a9639af89c099d06d5f2c4c66a1b03ebf (patch) | |
tree | ee702c1747ccbc2e4f059a0c9b836d2c8cebc36d | |
parent | 15a32632d94011911497052a96cdbf3b905b325d (diff) |
plat-orion: introduce
Create arch/arm/plat-orion/, for peripherals shared between various
Marvell Orion SoCs.
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Reviewed-by: Tzachi Perelstein <tzachi@marvell.com>
Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Nicolas Pitre <nico@marvell.com>
-rw-r--r-- | arch/arm/Kconfig | 4 | ||||
-rw-r--r-- | arch/arm/Makefile | 1 | ||||
-rw-r--r-- | arch/arm/plat-orion/Makefile | 8 |
3 files changed, 13 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 4039a133006e..845f96e9f0d0 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -384,6 +384,7 @@ config ARCH_ORION | |||
384 | select GENERIC_GPIO | 384 | select GENERIC_GPIO |
385 | select GENERIC_TIME | 385 | select GENERIC_TIME |
386 | select GENERIC_CLOCKEVENTS | 386 | select GENERIC_CLOCKEVENTS |
387 | select PLAT_ORION | ||
387 | help | 388 | help |
388 | Support for Marvell Orion System on Chip family. | 389 | Support for Marvell Orion System on Chip family. |
389 | 390 | ||
@@ -563,6 +564,9 @@ config ARCH_ACORN | |||
563 | config PLAT_IOP | 564 | config PLAT_IOP |
564 | bool | 565 | bool |
565 | 566 | ||
567 | config PLAT_ORION | ||
568 | bool | ||
569 | |||
566 | source arch/arm/mm/Kconfig | 570 | source arch/arm/mm/Kconfig |
567 | 571 | ||
568 | config IWMMXT | 572 | config IWMMXT |
diff --git a/arch/arm/Makefile b/arch/arm/Makefile index 1a4649667ec8..27866cf0c180 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile | |||
@@ -185,6 +185,7 @@ core-$(CONFIG_VFP) += arch/arm/vfp/ | |||
185 | 185 | ||
186 | # If we have a common platform directory, then include it in the build. | 186 | # If we have a common platform directory, then include it in the build. |
187 | core-$(CONFIG_PLAT_IOP) += arch/arm/plat-iop/ | 187 | core-$(CONFIG_PLAT_IOP) += arch/arm/plat-iop/ |
188 | core-$(CONFIG_PLAT_ORION) += arch/arm/plat-orion/ | ||
188 | core-$(CONFIG_ARCH_OMAP) += arch/arm/plat-omap/ | 189 | core-$(CONFIG_ARCH_OMAP) += arch/arm/plat-omap/ |
189 | core-$(CONFIG_PLAT_S3C24XX) += arch/arm/plat-s3c24xx/ | 190 | core-$(CONFIG_PLAT_S3C24XX) += arch/arm/plat-s3c24xx/ |
190 | core-$(CONFIG_ARCH_MXC) += arch/arm/plat-mxc/ | 191 | core-$(CONFIG_ARCH_MXC) += arch/arm/plat-mxc/ |
diff --git a/arch/arm/plat-orion/Makefile b/arch/arm/plat-orion/Makefile new file mode 100644 index 000000000000..2327762133f7 --- /dev/null +++ b/arch/arm/plat-orion/Makefile | |||
@@ -0,0 +1,8 @@ | |||
1 | # | ||
2 | # Makefile for the linux kernel. | ||
3 | # | ||
4 | |||
5 | obj-y := | ||
6 | obj-m := | ||
7 | obj-n := | ||
8 | obj- := | ||