blob: 2a50048c1c44a4aa5e67b3889be7209458484d87 [file] [log] [blame]
Daniel Silverstonec564e6a2009-03-13 13:53:46 +00001/* arch/arm/plat-s3c/include/plat/iic.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
Ben Dooksccae9412009-11-13 22:54:14 +00003 * Copyright 2004-2009 Simtec Electronics
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Ben Dooks <ben@simtec.co.uk>
5 *
Daniel Silverstonec564e6a2009-03-13 13:53:46 +00006 * S3C - I2C Controller platform_device info
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011*/
12
13#ifndef __ASM_ARCH_IIC_H
14#define __ASM_ARCH_IIC_H __FILE__
15
16#define S3C_IICFLG_FILTER (1<<0) /* enable s3c2440 filter */
17
Arnd Bergmannb2dc0c22013-02-13 23:08:18 +010018struct platform_device;
19
Daniel Silverstonec564e6a2009-03-13 13:53:46 +000020/**
21 * struct s3c2410_platform_i2c - Platform data for s3c I2C.
22 * @bus_num: The bus number to use (if possible).
23 * @flags: Any flags for the I2C bus (E.g. S3C_IICFLK_FILTER).
24 * @slave_addr: The I2C address for the slave device (if enabled).
25 * @frequency: The desired frequency in Hz of the bus. This is
26 * guaranteed to not be exceeded. If the caller does
27 * not care, use zero and the driver will select a
28 * useful default.
29 * @sda_delay: The delay (in ns) applied to SDA edges.
30 * @cfg_gpio: A callback to configure the pins for I2C operation.
31 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032struct s3c2410_platform_i2c {
Daniel Silverstonec564e6a2009-03-13 13:53:46 +000033 int bus_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 unsigned int flags;
Daniel Silverstonec564e6a2009-03-13 13:53:46 +000035 unsigned int slave_addr;
36 unsigned long frequency;
37 unsigned int sda_delay;
Ben Dooks3e1b7762008-10-31 16:14:40 +000038
39 void (*cfg_gpio)(struct platform_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040};
41
Ben Dooks3e1b7762008-10-31 16:14:40 +000042/**
43 * s3c_i2c0_set_platdata - set platform data for i2c0 device
44 * @i2c: The platform data to set, or NULL for default data.
45 *
46 * Register the given platform data for use with the i2c0 device. This
47 * call copies the platform data, so the caller can use __initdata for
48 * their copy.
49 *
50 * This call will set cfg_gpio if is null to the default platform
51 * implementation.
52 *
53 * Any user of s3c_device_i2c0 should call this, even if it is with
54 * NULL to ensure that the device is given the default platform data
55 * as the driver will no longer carry defaults.
56 */
57extern void s3c_i2c0_set_platdata(struct s3c2410_platform_i2c *i2c);
Ben Dooks1aba8342008-10-31 16:14:55 +000058extern void s3c_i2c1_set_platdata(struct s3c2410_platform_i2c *i2c);
Marek Szyprowskic8d833b2010-05-20 08:13:06 +020059extern void s3c_i2c2_set_platdata(struct s3c2410_platform_i2c *i2c);
Kyungmin Parkb7a98252010-10-12 07:49:24 +090060extern void s3c_i2c3_set_platdata(struct s3c2410_platform_i2c *i2c);
61extern void s3c_i2c4_set_platdata(struct s3c2410_platform_i2c *i2c);
62extern void s3c_i2c5_set_platdata(struct s3c2410_platform_i2c *i2c);
63extern void s3c_i2c6_set_platdata(struct s3c2410_platform_i2c *i2c);
64extern void s3c_i2c7_set_platdata(struct s3c2410_platform_i2c *i2c);
Tomasz Stanislawskic40e7e02011-09-16 18:44:36 +090065extern void s5p_i2c_hdmiphy_set_platdata(struct s3c2410_platform_i2c *i2c);
Ben Dooks3e1b7762008-10-31 16:14:40 +000066
67/* defined by architecture to configure gpio */
68extern void s3c_i2c0_cfg_gpio(struct platform_device *dev);
Ben Dooks1aba8342008-10-31 16:14:55 +000069extern void s3c_i2c1_cfg_gpio(struct platform_device *dev);
Marek Szyprowskic8d833b2010-05-20 08:13:06 +020070extern void s3c_i2c2_cfg_gpio(struct platform_device *dev);
Kyungmin Parkb7a98252010-10-12 07:49:24 +090071extern void s3c_i2c3_cfg_gpio(struct platform_device *dev);
72extern void s3c_i2c4_cfg_gpio(struct platform_device *dev);
73extern void s3c_i2c5_cfg_gpio(struct platform_device *dev);
74extern void s3c_i2c6_cfg_gpio(struct platform_device *dev);
75extern void s3c_i2c7_cfg_gpio(struct platform_device *dev);
Ben Dooks3e1b7762008-10-31 16:14:40 +000076
Naveen Krishna Chatradhi696f6fc2011-07-16 13:30:09 +090077extern struct s3c2410_platform_i2c default_i2c_data;
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#endif /* __ASM_ARCH_IIC_H */