summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-s5pv310/setup-i2c6.c
diff options
context:
space:
mode:
authorKyungmin Park2010-10-12 00:49:24 +0200
committerKukjin Kim2010-10-25 09:03:43 +0200
commitb7a9825553e9213e5129f7e8e53065e918981a70 (patch)
tree80ed354a12576f90a0e7b3ff2bc4c6e9c52f2202 /arch/arm/mach-s5pv310/setup-i2c6.c
parentARM: S5PV310: Define address & interrupt for all I2C blocks (diff)
downloadkernel-qcow2-linux-b7a9825553e9213e5129f7e8e53065e918981a70.tar.gz
kernel-qcow2-linux-b7a9825553e9213e5129f7e8e53065e918981a70.tar.xz
kernel-qcow2-linux-b7a9825553e9213e5129f7e8e53065e918981a70.zip
ARM: S5PV310: Add I2C channel 3, 4, 5, 6, and 7 device support
S5PV310 and S5PC210 support more I2C devices than previous SoCs. Add the device support code for them. Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-s5pv310/setup-i2c6.c')
-rw-r--r--arch/arm/mach-s5pv310/setup-i2c6.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/arch/arm/mach-s5pv310/setup-i2c6.c b/arch/arm/mach-s5pv310/setup-i2c6.c
new file mode 100644
index 000000000000..34aafab92ac4
--- /dev/null
+++ b/arch/arm/mach-s5pv310/setup-i2c6.c
@@ -0,0 +1,23 @@
+/*
+ * linux/arch/arm/mach-s5pv310/setup-i2c6.c
+ *
+ * Copyright (c) 2010 Samsung Electronics Co., Ltd.
+ *
+ * I2C6 GPIO configuration.
+ *
+ * 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.
+*/
+
+struct platform_device; /* don't need the contents */
+
+#include <linux/gpio.h>
+#include <plat/iic.h>
+#include <plat/gpio-cfg.h>
+
+void s3c_i2c6_cfg_gpio(struct platform_device *dev)
+{
+ s3c_gpio_cfgall_range(S5PV310_GPC1(3), 2,
+ S3C_GPIO_SFN(4), S3C_GPIO_PULL_UP);
+}