2017-12-26 03:54:32 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
//
|
|
|
|
// Copyright 2008 Simtec Electronics
|
|
|
|
// Ben Dooks <ben@simtec.co.uk>
|
|
|
|
//
|
|
|
|
// S3C24XX Base setup for i2c device
|
2008-11-01 00:14:40 +08:00
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
2009-05-14 05:52:24 +08:00
|
|
|
#include <linux/gpio.h>
|
2008-11-01 00:14:40 +08:00
|
|
|
|
|
|
|
struct platform_device;
|
|
|
|
|
2010-05-04 13:38:49 +08:00
|
|
|
#include <plat/gpio-cfg.h>
|
2012-08-24 21:22:12 +08:00
|
|
|
#include <linux/platform_data/i2c-s3c2410.h>
|
2008-11-01 00:14:40 +08:00
|
|
|
#include <mach/hardware.h>
|
|
|
|
#include <mach/regs-gpio.h>
|
2014-01-14 21:24:24 +08:00
|
|
|
#include <mach/gpio-samsung.h>
|
2008-11-01 00:14:40 +08:00
|
|
|
|
|
|
|
void s3c_i2c0_cfg_gpio(struct platform_device *dev)
|
|
|
|
{
|
2010-05-04 13:38:49 +08:00
|
|
|
s3c_gpio_cfgpin(S3C2410_GPE(15), S3C2410_GPE15_IICSDA);
|
|
|
|
s3c_gpio_cfgpin(S3C2410_GPE(14), S3C2410_GPE14_IICSCL);
|
2008-11-01 00:14:40 +08:00
|
|
|
}
|