aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndy Green <andy@warmcat.com>2011-09-23 13:31:24 -0400
committerPaolo Pisati <paolo.pisati@canonical.com>2012-08-17 04:19:23 -0400
commit39ebba0c53681d831f844e881a181904128f2780 (patch)
treee47d570716d58ac1ebbe12940212e26a8ed6b26e /include
parent1b16f89b961fa8ce1bb5e77ac7158ec51282567c (diff)
I2C: OMAP2+: Introduce I2C IP versioning constants
These represent the two kinds of (incompatible) OMAP I2C peripheral unit in use so far. The constants are in linux/i2c-omap.h so the omap i2c driver can have them too. Cc: patches@linaro.org Cc: Ben Dooks <ben-linux@fluff.org> Reported-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Andy Green <andy.green@linaro.org> Signed-off-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Kevin Hilman <khilman@ti.com> Signed-off-by: Paul Walmsley <paul@pwsan.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/i2c-omap.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/linux/i2c-omap.h b/include/linux/i2c-omap.h
index 7472449cbb7..701886da76c 100644
--- a/include/linux/i2c-omap.h
+++ b/include/linux/i2c-omap.h
@@ -3,6 +3,18 @@
3 3
4#include <linux/platform_device.h> 4#include <linux/platform_device.h>
5 5
6/*
7 * Version 2 of the I2C peripheral unit has a different register
8 * layout and extra registers. The ID register in the V2 peripheral
9 * unit on the OMAP4430 reports the same ID as the V1 peripheral
10 * unit on the OMAP3530, so we must inform the driver which IP
11 * version we know it is running on from platform / cpu-specific
12 * code using these constants in the hwmod class definition.
13 */
14
15#define OMAP_I2C_IP_VERSION_1 1
16#define OMAP_I2C_IP_VERSION_2 2
17
6struct omap_i2c_bus_platform_data { 18struct omap_i2c_bus_platform_data {
7 u32 clkrate; 19 u32 clkrate;
8 void (*set_mpu_wkup_lat)(struct device *dev, long set); 20 void (*set_mpu_wkup_lat)(struct device *dev, long set);