aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-s5pv310/setup-i2c3.c
diff options
context:
space:
mode:
authorKyungmin Park <kyungmin.park@samsung.com>2010-10-11 18:49:24 -0400
committerKukjin Kim <kgene.kim@samsung.com>2010-10-25 03:03:43 -0400
commitb7a9825553e9213e5129f7e8e53065e918981a70 (patch)
tree80ed354a12576f90a0e7b3ff2bc4c6e9c52f2202 /arch/arm/mach-s5pv310/setup-i2c3.c
parent8a3710dfbfb9f2712e3df3861ee7d0e8573be943 (diff)
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-i2c3.c')
-rw-r--r--arch/arm/mach-s5pv310/setup-i2c3.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/arch/arm/mach-s5pv310/setup-i2c3.c b/arch/arm/mach-s5pv310/setup-i2c3.c
new file mode 100644
index 00000000000..180f153d2a2
--- /dev/null
+++ b/arch/arm/mach-s5pv310/setup-i2c3.c
@@ -0,0 +1,23 @@
1/*
2 * linux/arch/arm/mach-s5pv310/setup-i2c3.c
3 *
4 * Copyright (c) 2010 Samsung Electronics Co., Ltd.
5 *
6 * I2C3 GPIO configuration.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11*/
12
13struct platform_device; /* don't need the contents */
14
15#include <linux/gpio.h>
16#include <plat/iic.h>
17#include <plat/gpio-cfg.h>
18
19void s3c_i2c3_cfg_gpio(struct platform_device *dev)
20{
21 s3c_gpio_cfgall_range(S5PV310_GPA1(2), 2,
22 S3C_GPIO_SFN(3), S3C_GPIO_PULL_UP);
23}