From 2ab408e8759ad4b2a9bad3647838acd648d2c10c Mon Sep 17 00:00:00 2001 From: Ben Dooks Date: Tue, 24 Mar 2009 16:09:06 +0000 Subject: [ARM] SMDK6400: Initial machine support for SMDK6400 Add minimial support for the SMDK6400 board to test the S3C6400 support. Signed-off-by: Ben Dooks --- arch/arm/mach-s3c6400/Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'arch/arm/mach-s3c6400/Makefile') diff --git a/arch/arm/mach-s3c6400/Makefile b/arch/arm/mach-s3c6400/Makefile index 8f397db25b8..82cb48a2c2b 100644 --- a/arch/arm/mach-s3c6400/Makefile +++ b/arch/arm/mach-s3c6400/Makefile @@ -13,3 +13,7 @@ obj- := # Core support for S3C6400 system obj-n += blank.o + +# Machine support + +obj-$(CONFIG_MACH_SMDK6400) += mach-smdk6400.o -- cgit v1.2.3 From a6925c1c515513e22b0419e1a41155c88d22b1f4 Mon Sep 17 00:00:00 2001 From: Ben Dooks Date: Tue, 24 Mar 2009 17:25:40 +0000 Subject: [ARM] S3C6400: Core support for S3C6400 SoC Add the core support files for the Samsung S3C6400 SoC. Signed-off-by: Ben Dooks --- arch/arm/mach-s3c6400/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arch/arm/mach-s3c6400/Makefile') diff --git a/arch/arm/mach-s3c6400/Makefile b/arch/arm/mach-s3c6400/Makefile index 82cb48a2c2b..07eac2be6f6 100644 --- a/arch/arm/mach-s3c6400/Makefile +++ b/arch/arm/mach-s3c6400/Makefile @@ -12,7 +12,7 @@ obj- := # Core support for S3C6400 system -obj-n += blank.o +obj-$(CONFIG_CPU_S3C6400) += s3c6400.o # Machine support -- cgit v1.2.3 From 4faf6867638cc21aa43b4ca4ed0bdf14a2d29762 Mon Sep 17 00:00:00 2001 From: Ben Dooks Date: Wed, 25 Mar 2009 11:01:24 +0000 Subject: [ARM] S3C64XX: Add S3C6400 SDHCI setup support Add support for S3C6400 SDHCI channels 0 and 1, making the GPIO code common to both S3C6400 and S3C6410. Signed-off-by: Ben Dooks --- arch/arm/mach-s3c6400/Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'arch/arm/mach-s3c6400/Makefile') diff --git a/arch/arm/mach-s3c6400/Makefile b/arch/arm/mach-s3c6400/Makefile index 07eac2be6f6..df1ce4aa03e 100644 --- a/arch/arm/mach-s3c6400/Makefile +++ b/arch/arm/mach-s3c6400/Makefile @@ -14,6 +14,10 @@ obj- := obj-$(CONFIG_CPU_S3C6400) += s3c6400.o +# setup support + +obj-$(CONFIG_S3C6400_SETUP_SDHCI) += setup-sdhci.o + # Machine support obj-$(CONFIG_MACH_SMDK6400) += mach-smdk6400.o -- cgit v1.2.3