blob: 78d1cea9118d42b8d0bf916fe0beb6b243cd97ac [file] [log] [blame]
Jarkko Nikula85d05fb2007-11-07 06:54:31 +02001/*
2 * linux/arch/arm/plat-omap/i2c.c
3 *
4 * Helper module for board specific I2C bus registration
5 *
6 * Copyright (C) 2007 Nokia Corporation.
7 *
Jarkko Nikuladdf25df2009-05-25 11:08:43 -07008 * Contact: Jarkko Nikula <jhnikula@gmail.com>
Jarkko Nikula85d05fb2007-11-07 06:54:31 +02009 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * version 2 as published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22 * 02110-1301 USA
23 *
24 */
25
26#include <linux/kernel.h>
27#include <linux/platform_device.h>
28#include <linux/i2c.h>
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -070029#include <linux/i2c-omap.h>
30
Russell King80b02c12009-01-08 10:01:47 +000031#include <mach/irqs.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070032#include <plat/mux.h>
Jarkko Nikula9833eff2010-02-22 20:29:36 +000033#include <plat/i2c.h>
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -070034#include <plat/omap-pm.h>
Jarkko Nikula85d05fb2007-11-07 06:54:31 +020035
36#define OMAP_I2C_SIZE 0x3f
37#define OMAP1_I2C_BASE 0xfffb3800
38#define OMAP2_I2C_BASE1 0x48070000
39#define OMAP2_I2C_BASE2 0x48072000
40#define OMAP2_I2C_BASE3 0x48060000
41
42static const char name[] = "i2c_omap";
43
44#define I2C_RESOURCE_BUILDER(base, irq) \
45 { \
46 .start = (base), \
47 .end = (base) + OMAP_I2C_SIZE, \
48 .flags = IORESOURCE_MEM, \
49 }, \
50 { \
51 .start = (irq), \
52 .flags = IORESOURCE_IRQ, \
53 },
54
55static struct resource i2c_resources[][2] = {
56 { I2C_RESOURCE_BUILDER(0, 0) },
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -080057#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Jarkko Nikula85d05fb2007-11-07 06:54:31 +020058 { I2C_RESOURCE_BUILDER(OMAP2_I2C_BASE2, INT_24XX_I2C2_IRQ) },
59#endif
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -080060#if defined(CONFIG_ARCH_OMAP3)
Jarkko Nikula85d05fb2007-11-07 06:54:31 +020061 { I2C_RESOURCE_BUILDER(OMAP2_I2C_BASE3, INT_34XX_I2C3_IRQ) },
62#endif
63};
64
65#define I2C_DEV_BUILDER(bus_id, res, data) \
66 { \
67 .id = (bus_id), \
68 .name = name, \
69 .num_resources = ARRAY_SIZE(res), \
70 .resource = (res), \
71 .dev = { \
72 .platform_data = (data), \
73 }, \
74 }
75
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -070076static struct omap_i2c_bus_platform_data i2c_pdata[ARRAY_SIZE(i2c_resources)];
Jarkko Nikula85d05fb2007-11-07 06:54:31 +020077static struct platform_device omap_i2c_devices[] = {
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -070078 I2C_DEV_BUILDER(1, i2c_resources[0], &i2c_pdata[0]),
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -080079#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -070080 I2C_DEV_BUILDER(2, i2c_resources[1], &i2c_pdata[1]),
Jarkko Nikula85d05fb2007-11-07 06:54:31 +020081#endif
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -080082#if defined(CONFIG_ARCH_OMAP3)
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -070083 I2C_DEV_BUILDER(3, i2c_resources[2], &i2c_pdata[2]),
Jarkko Nikula85d05fb2007-11-07 06:54:31 +020084#endif
85};
86
Jarkko Nikula79547632009-03-23 18:07:48 -070087#define OMAP_I2C_CMDLINE_SETUP (BIT(31))
88
Jarkko Nikula3a853fb2009-03-23 18:07:47 -070089static int __init omap_i2c_nr_ports(void)
90{
91 int ports = 0;
92
93 if (cpu_class_is_omap1())
94 ports = 1;
95 else if (cpu_is_omap24xx())
96 ports = 2;
97 else if (cpu_is_omap34xx())
98 ports = 3;
99
100 return ports;
101}
102
Tony Lindgrenb32dd412010-05-20 11:36:43 -0700103/* Shared between omap2 and 3 */
104static resource_size_t omap2_i2c_irq[3] __initdata = {
105 INT_24XX_I2C1_IRQ,
106 INT_24XX_I2C2_IRQ,
107 INT_34XX_I2C3_IRQ,
108};
109
110static inline int omap1_i2c_add_bus(struct platform_device *pdev, int bus_id)
Jarkko Nikula79547632009-03-23 18:07:48 -0700111{
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -0700112 struct omap_i2c_bus_platform_data *pd;
Jarkko Nikula79547632009-03-23 18:07:48 -0700113 struct resource *res;
Jarkko Nikula79547632009-03-23 18:07:48 -0700114
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -0700115 pd = pdev->dev.platform_data;
Tony Lindgrenb32dd412010-05-20 11:36:43 -0700116 res = pdev->resource;
117 res[0].start = OMAP1_I2C_BASE;
118 res[0].end = res[0].start + OMAP_I2C_SIZE;
119 res[1].start = INT_I2C;
120 omap1_i2c_mux_pins(bus_id);
121
122 return platform_device_register(pdev);
123}
124
125static inline int omap2_i2c_add_bus(struct platform_device *pdev, int bus_id)
126{
127 struct resource *res;
128 resource_size_t *irq;
129
130 res = pdev->resource;
131
132 irq = omap2_i2c_irq;
133
Jarkko Nikula79547632009-03-23 18:07:48 -0700134 if (bus_id == 1) {
Tony Lindgrenb32dd412010-05-20 11:36:43 -0700135 res[0].start = OMAP2_I2C_BASE1;
136 res[0].end = res[0].start + OMAP_I2C_SIZE;
Jarkko Nikula79547632009-03-23 18:07:48 -0700137 }
138
Tony Lindgrenb32dd412010-05-20 11:36:43 -0700139 res[1].start = irq[bus_id - 1];
140 omap2_i2c_mux_pins(bus_id);
Jarkko Nikula9833eff2010-02-22 20:29:36 +0000141
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -0700142 /*
143 * When waiting for completion of a i2c transfer, we need to
144 * set a wake up latency constraint for the MPU. This is to
145 * ensure quick enough wakeup from idle, when transfer
146 * completes.
147 */
Tony Lindgrenb32dd412010-05-20 11:36:43 -0700148 if (cpu_is_omap34xx()) {
149 struct omap_i2c_bus_platform_data *pd;
150
151 pd = pdev->dev.platform_data;
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -0700152 pd->set_mpu_wkup_lat = omap_pm_set_max_mpu_wakeup_lat;
Tony Lindgrenb32dd412010-05-20 11:36:43 -0700153 }
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -0700154
Jarkko Nikula79547632009-03-23 18:07:48 -0700155 return platform_device_register(pdev);
156}
157
Tony Lindgrenb32dd412010-05-20 11:36:43 -0700158static int __init omap_i2c_add_bus(int bus_id)
159{
160 struct platform_device *pdev;
161
162 pdev = &omap_i2c_devices[bus_id - 1];
163
164 if (cpu_class_is_omap1())
165 return omap1_i2c_add_bus(pdev, bus_id);
166 else
167 return omap2_i2c_add_bus(pdev, bus_id);
168}
169
Jarkko Nikula3a853fb2009-03-23 18:07:47 -0700170/**
171 * omap_i2c_bus_setup - Process command line options for the I2C bus speed
172 * @str: String of options
173 *
174 * This function allow to override the default I2C bus speed for given I2C
175 * bus with a command line option.
176 *
177 * Format: i2c_bus=bus_id,clkrate (in kHz)
178 *
179 * Returns 1 on success, 0 otherwise.
180 */
181static int __init omap_i2c_bus_setup(char *str)
182{
183 int ports;
184 int ints[3];
185
186 ports = omap_i2c_nr_ports();
187 get_options(str, 3, ints);
188 if (ints[0] < 2 || ints[1] < 1 || ints[1] > ports)
189 return 0;
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -0700190 i2c_pdata[ints[1] - 1].clkrate = ints[2];
191 i2c_pdata[ints[1] - 1].clkrate |= OMAP_I2C_CMDLINE_SETUP;
Jarkko Nikula3a853fb2009-03-23 18:07:47 -0700192
193 return 1;
194}
195__setup("i2c_bus=", omap_i2c_bus_setup);
196
Jarkko Nikula79547632009-03-23 18:07:48 -0700197/*
198 * Register busses defined in command line but that are not registered with
199 * omap_register_i2c_bus from board initialization code.
200 */
201static int __init omap_register_i2c_bus_cmdline(void)
202{
203 int i, err = 0;
204
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -0700205 for (i = 0; i < ARRAY_SIZE(i2c_pdata); i++)
206 if (i2c_pdata[i].clkrate & OMAP_I2C_CMDLINE_SETUP) {
207 i2c_pdata[i].clkrate &= ~OMAP_I2C_CMDLINE_SETUP;
Jarkko Nikula79547632009-03-23 18:07:48 -0700208 err = omap_i2c_add_bus(i + 1);
209 if (err)
210 goto out;
211 }
212
213out:
214 return err;
215}
216subsys_initcall(omap_register_i2c_bus_cmdline);
217
Jarkko Nikulad4c58bf2009-03-23 18:07:46 -0700218/**
Jarkko Nikula9833eff2010-02-22 20:29:36 +0000219 * omap_register_i2c_bus - register I2C bus with device descriptors
Jarkko Nikulad4c58bf2009-03-23 18:07:46 -0700220 * @bus_id: bus id counting from number 1
221 * @clkrate: clock rate of the bus in kHz
222 * @info: pointer into I2C device descriptor table or NULL
223 * @len: number of descriptors in the table
224 *
225 * Returns 0 on success or an error code.
226 */
Jarkko Nikula9833eff2010-02-22 20:29:36 +0000227int __init omap_register_i2c_bus(int bus_id, u32 clkrate,
Jarkko Nikula85d05fb2007-11-07 06:54:31 +0200228 struct i2c_board_info const *info,
229 unsigned len)
230{
Jarkko Nikula3a853fb2009-03-23 18:07:47 -0700231 int err;
Jarkko Nikula85d05fb2007-11-07 06:54:31 +0200232
Jarkko Nikula3a853fb2009-03-23 18:07:47 -0700233 BUG_ON(bus_id < 1 || bus_id > omap_i2c_nr_ports());
Jarkko Nikula85d05fb2007-11-07 06:54:31 +0200234
235 if (info) {
236 err = i2c_register_board_info(bus_id, info, len);
237 if (err)
238 return err;
239 }
240
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -0700241 if (!i2c_pdata[bus_id - 1].clkrate)
242 i2c_pdata[bus_id - 1].clkrate = clkrate;
243
244 i2c_pdata[bus_id - 1].clkrate &= ~OMAP_I2C_CMDLINE_SETUP;
Jarkko Nikula85d05fb2007-11-07 06:54:31 +0200245
Jarkko Nikula79547632009-03-23 18:07:48 -0700246 return omap_i2c_add_bus(bus_id);
Jarkko Nikula85d05fb2007-11-07 06:54:31 +0200247}