Daniel Silverstone | c564e6a | 2009-03-13 13:53:46 +0000 | [diff] [blame^] | 1 | /* arch/arm/plat-s3c/include/plat/iic.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * |
Daniel Silverstone | c564e6a | 2009-03-13 13:53:46 +0000 | [diff] [blame^] | 3 | * Copyright 2004,2009 Simtec Electronics |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Ben Dooks <ben@simtec.co.uk> |
| 5 | * |
Daniel Silverstone | c564e6a | 2009-03-13 13:53:46 +0000 | [diff] [blame^] | 6 | * S3C - I2C Controller platform_device info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | */ |
| 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 | |
Daniel Silverstone | c564e6a | 2009-03-13 13:53:46 +0000 | [diff] [blame^] | 18 | /** |
| 19 | * struct s3c2410_platform_i2c - Platform data for s3c I2C. |
| 20 | * @bus_num: The bus number to use (if possible). |
| 21 | * @flags: Any flags for the I2C bus (E.g. S3C_IICFLK_FILTER). |
| 22 | * @slave_addr: The I2C address for the slave device (if enabled). |
| 23 | * @frequency: The desired frequency in Hz of the bus. This is |
| 24 | * guaranteed to not be exceeded. If the caller does |
| 25 | * not care, use zero and the driver will select a |
| 26 | * useful default. |
| 27 | * @sda_delay: The delay (in ns) applied to SDA edges. |
| 28 | * @cfg_gpio: A callback to configure the pins for I2C operation. |
| 29 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | struct s3c2410_platform_i2c { |
Daniel Silverstone | c564e6a | 2009-03-13 13:53:46 +0000 | [diff] [blame^] | 31 | int bus_num; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | unsigned int flags; |
Daniel Silverstone | c564e6a | 2009-03-13 13:53:46 +0000 | [diff] [blame^] | 33 | unsigned int slave_addr; |
| 34 | unsigned long frequency; |
| 35 | unsigned int sda_delay; |
Ben Dooks | 3e1b776 | 2008-10-31 16:14:40 +0000 | [diff] [blame] | 36 | |
| 37 | void (*cfg_gpio)(struct platform_device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | }; |
| 39 | |
Ben Dooks | 3e1b776 | 2008-10-31 16:14:40 +0000 | [diff] [blame] | 40 | /** |
| 41 | * s3c_i2c0_set_platdata - set platform data for i2c0 device |
| 42 | * @i2c: The platform data to set, or NULL for default data. |
| 43 | * |
| 44 | * Register the given platform data for use with the i2c0 device. This |
| 45 | * call copies the platform data, so the caller can use __initdata for |
| 46 | * their copy. |
| 47 | * |
| 48 | * This call will set cfg_gpio if is null to the default platform |
| 49 | * implementation. |
| 50 | * |
| 51 | * Any user of s3c_device_i2c0 should call this, even if it is with |
| 52 | * NULL to ensure that the device is given the default platform data |
| 53 | * as the driver will no longer carry defaults. |
| 54 | */ |
| 55 | extern void s3c_i2c0_set_platdata(struct s3c2410_platform_i2c *i2c); |
Ben Dooks | 1aba834 | 2008-10-31 16:14:55 +0000 | [diff] [blame] | 56 | extern void s3c_i2c1_set_platdata(struct s3c2410_platform_i2c *i2c); |
Ben Dooks | 3e1b776 | 2008-10-31 16:14:40 +0000 | [diff] [blame] | 57 | |
| 58 | /* defined by architecture to configure gpio */ |
| 59 | extern void s3c_i2c0_cfg_gpio(struct platform_device *dev); |
Ben Dooks | 1aba834 | 2008-10-31 16:14:55 +0000 | [diff] [blame] | 60 | extern void s3c_i2c1_cfg_gpio(struct platform_device *dev); |
Ben Dooks | 3e1b776 | 2008-10-31 16:14:40 +0000 | [diff] [blame] | 61 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | #endif /* __ASM_ARCH_IIC_H */ |