From d8b4d097b9f7430a87ef7a9dd11ec5e609046331 Mon Sep 17 00:00:00 2001 From: Kwangwoo Lee Date: Tue, 28 Apr 2009 10:35:57 +0900 Subject: [PATCH] --- yaml --- r: 149250 b: refs/heads/master c: 1f26a8a0fd6d067237f87a95d96ddfe263b96a94 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/arch/arm/mach-s3c6410/Kconfig | 8 + trunk/arch/arm/mach-s3c6410/Makefile | 3 + trunk/arch/arm/mach-s3c6410/mach-anw6410.c | 245 +++++++++++++++++++++ 4 files changed, 257 insertions(+), 1 deletion(-) create mode 100644 trunk/arch/arm/mach-s3c6410/mach-anw6410.c diff --git a/[refs] b/[refs] index 987de698c65a..ddac0defaf00 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: f53aee29bef09070e4ab14488e43433b371844ce +refs/heads/master: 1f26a8a0fd6d067237f87a95d96ddfe263b96a94 diff --git a/trunk/arch/arm/mach-s3c6410/Kconfig b/trunk/arch/arm/mach-s3c6410/Kconfig index 53350b4493bd..e5a575fdf817 100644 --- a/trunk/arch/arm/mach-s3c6410/Kconfig +++ b/trunk/arch/arm/mach-s3c6410/Kconfig @@ -19,6 +19,14 @@ config S3C6410_SETUP_SDHCI help Internal helper functions for S3C6410 based SDHCI systems +config MACH_ANW6410 + bool "A&W6410" + select CPU_S3C6410 + select S3C_DEV_FB + select S3C64XX_SETUP_FB_24BPP + help + Machine support for the A&W6410 + config MACH_SMDK6410 bool "SMDK6410" select CPU_S3C6410 diff --git a/trunk/arch/arm/mach-s3c6410/Makefile b/trunk/arch/arm/mach-s3c6410/Makefile index 03e9ea6c64e7..6f9deac88612 100644 --- a/trunk/arch/arm/mach-s3c6410/Makefile +++ b/trunk/arch/arm/mach-s3c6410/Makefile @@ -20,5 +20,8 @@ obj-$(CONFIG_S3C6410_SETUP_SDHCI) += setup-sdhci.o # machine support +obj-$(CONFIG_MACH_ANW6410) += mach-anw6410.o obj-$(CONFIG_MACH_SMDK6410) += mach-smdk6410.o obj-$(CONFIG_MACH_NCP) += mach-ncp.o + + diff --git a/trunk/arch/arm/mach-s3c6410/mach-anw6410.c b/trunk/arch/arm/mach-s3c6410/mach-anw6410.c new file mode 100644 index 000000000000..661cca63de25 --- /dev/null +++ b/trunk/arch/arm/mach-s3c6410/mach-anw6410.c @@ -0,0 +1,245 @@ +/* linux/arch/arm/mach-s3c6410/mach-anw6410.c + * + * Copyright 2008 Openmoko, Inc. + * Copyright 2008 Simtec Electronics + * Ben Dooks + * http://armlinux.simtec.co.uk/ + * Copyright 2009 Kwangwoo Lee + * Kwangwoo Lee + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * +*/ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include