Merge branch 'x86-build-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / arch / arm / plat-omap / i2c.c
CommitLineData
85d05fb3
JN
1/*
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 *
ddf25dfe 8 * Contact: Jarkko Nikula <jhnikula@gmail.com>
85d05fb3
JN
9 *
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>
20c9d2c4
KJ
29#include <linux/i2c-omap.h>
30
80b02c17 31#include <mach/irqs.h>
ce491cf8 32#include <plat/mux.h>
9833eff3 33#include <plat/i2c.h>
20c9d2c4 34#include <plat/omap-pm.h>
85d05fb3
JN
35
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
6daa642d 41#define OMAP4_I2C_BASE4 0x48350000
85d05fb3
JN
42
43static const char name[] = "i2c_omap";
44
45#define I2C_RESOURCE_BUILDER(base, irq) \
46 { \
47 .start = (base), \
48 .end = (base) + OMAP_I2C_SIZE, \
49 .flags = IORESOURCE_MEM, \
50 }, \
51 { \
52 .start = (irq), \
53 .flags = IORESOURCE_IRQ, \
54 },
55
56static struct resource i2c_resources[][2] = {
57 { I2C_RESOURCE_BUILDER(0, 0) },
6daa642d
TL
58#if defined(CONFIG_ARCH_OMAP2PLUS)
59 { I2C_RESOURCE_BUILDER(OMAP2_I2C_BASE2, 0) },
85d05fb3 60#endif
6daa642d
TL
61#if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4)
62 { I2C_RESOURCE_BUILDER(OMAP2_I2C_BASE3, 0) },
63#endif
64#if defined(CONFIG_ARCH_OMAP4)
65 { I2C_RESOURCE_BUILDER(OMAP4_I2C_BASE4, 0) },
85d05fb3
JN
66#endif
67};
68
69#define I2C_DEV_BUILDER(bus_id, res, data) \
70 { \
71 .id = (bus_id), \
72 .name = name, \
73 .num_resources = ARRAY_SIZE(res), \
74 .resource = (res), \
75 .dev = { \
76 .platform_data = (data), \
77 }, \
78 }
79
20c9d2c4 80static struct omap_i2c_bus_platform_data i2c_pdata[ARRAY_SIZE(i2c_resources)];
85d05fb3 81static struct platform_device omap_i2c_devices[] = {
20c9d2c4 82 I2C_DEV_BUILDER(1, i2c_resources[0], &i2c_pdata[0]),
6daa642d 83#if defined(CONFIG_ARCH_OMAP2PLUS)
20c9d2c4 84 I2C_DEV_BUILDER(2, i2c_resources[1], &i2c_pdata[1]),
85d05fb3 85#endif
6daa642d 86#if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4)
20c9d2c4 87 I2C_DEV_BUILDER(3, i2c_resources[2], &i2c_pdata[2]),
85d05fb3 88#endif
6daa642d
TL
89#if defined(CONFIG_ARCH_OMAP4)
90 I2C_DEV_BUILDER(4, i2c_resources[3], &i2c_pdata[3]),
91#endif
85d05fb3
JN
92};
93
7954763b
JN
94#define OMAP_I2C_CMDLINE_SETUP (BIT(31))
95
3a853fb9
JN
96static int __init omap_i2c_nr_ports(void)
97{
98 int ports = 0;
99
100 if (cpu_class_is_omap1())
101 ports = 1;
102 else if (cpu_is_omap24xx())
103 ports = 2;
104 else if (cpu_is_omap34xx())
105 ports = 3;
6daa642d
TL
106 else if (cpu_is_omap44xx())
107 ports = 4;
3a853fb9
JN
108
109 return ports;
110}
111
b32dd41e
TL
112/* Shared between omap2 and 3 */
113static resource_size_t omap2_i2c_irq[3] __initdata = {
114 INT_24XX_I2C1_IRQ,
115 INT_24XX_I2C2_IRQ,
116 INT_34XX_I2C3_IRQ,
117};
118
6daa642d
TL
119static resource_size_t omap4_i2c_irq[4] __initdata = {
120 OMAP44XX_IRQ_I2C1,
121 OMAP44XX_IRQ_I2C2,
122 OMAP44XX_IRQ_I2C3,
123 OMAP44XX_IRQ_I2C4,
124};
125
b32dd41e 126static inline int omap1_i2c_add_bus(struct platform_device *pdev, int bus_id)
7954763b 127{
20c9d2c4 128 struct omap_i2c_bus_platform_data *pd;
7954763b 129 struct resource *res;
7954763b 130
20c9d2c4 131 pd = pdev->dev.platform_data;
b32dd41e
TL
132 res = pdev->resource;
133 res[0].start = OMAP1_I2C_BASE;
134 res[0].end = res[0].start + OMAP_I2C_SIZE;
135 res[1].start = INT_I2C;
136 omap1_i2c_mux_pins(bus_id);
137
138 return platform_device_register(pdev);
139}
140
141static inline int omap2_i2c_add_bus(struct platform_device *pdev, int bus_id)
142{
143 struct resource *res;
144 resource_size_t *irq;
145
146 res = pdev->resource;
147
6daa642d
TL
148 if (!cpu_is_omap44xx())
149 irq = omap2_i2c_irq;
150 else
151 irq = omap4_i2c_irq;
b32dd41e 152
7954763b 153 if (bus_id == 1) {
b32dd41e
TL
154 res[0].start = OMAP2_I2C_BASE1;
155 res[0].end = res[0].start + OMAP_I2C_SIZE;
7954763b
JN
156 }
157
b32dd41e
TL
158 res[1].start = irq[bus_id - 1];
159 omap2_i2c_mux_pins(bus_id);
9833eff3 160
20c9d2c4
KJ
161 /*
162 * When waiting for completion of a i2c transfer, we need to
163 * set a wake up latency constraint for the MPU. This is to
164 * ensure quick enough wakeup from idle, when transfer
165 * completes.
166 */
b32dd41e
TL
167 if (cpu_is_omap34xx()) {
168 struct omap_i2c_bus_platform_data *pd;
169
170 pd = pdev->dev.platform_data;
20c9d2c4 171 pd->set_mpu_wkup_lat = omap_pm_set_max_mpu_wakeup_lat;
b32dd41e 172 }
20c9d2c4 173
7954763b
JN
174 return platform_device_register(pdev);
175}
176
b32dd41e
TL
177static int __init omap_i2c_add_bus(int bus_id)
178{
179 struct platform_device *pdev;
180
181 pdev = &omap_i2c_devices[bus_id - 1];
182
183 if (cpu_class_is_omap1())
184 return omap1_i2c_add_bus(pdev, bus_id);
185 else
186 return omap2_i2c_add_bus(pdev, bus_id);
187}
188
3a853fb9
JN
189/**
190 * omap_i2c_bus_setup - Process command line options for the I2C bus speed
191 * @str: String of options
192 *
193 * This function allow to override the default I2C bus speed for given I2C
194 * bus with a command line option.
195 *
196 * Format: i2c_bus=bus_id,clkrate (in kHz)
197 *
198 * Returns 1 on success, 0 otherwise.
199 */
200static int __init omap_i2c_bus_setup(char *str)
201{
202 int ports;
203 int ints[3];
204
205 ports = omap_i2c_nr_ports();
206 get_options(str, 3, ints);
207 if (ints[0] < 2 || ints[1] < 1 || ints[1] > ports)
208 return 0;
20c9d2c4
KJ
209 i2c_pdata[ints[1] - 1].clkrate = ints[2];
210 i2c_pdata[ints[1] - 1].clkrate |= OMAP_I2C_CMDLINE_SETUP;
3a853fb9
JN
211
212 return 1;
213}
214__setup("i2c_bus=", omap_i2c_bus_setup);
215
7954763b
JN
216/*
217 * Register busses defined in command line but that are not registered with
218 * omap_register_i2c_bus from board initialization code.
219 */
220static int __init omap_register_i2c_bus_cmdline(void)
221{
222 int i, err = 0;
223
20c9d2c4
KJ
224 for (i = 0; i < ARRAY_SIZE(i2c_pdata); i++)
225 if (i2c_pdata[i].clkrate & OMAP_I2C_CMDLINE_SETUP) {
226 i2c_pdata[i].clkrate &= ~OMAP_I2C_CMDLINE_SETUP;
7954763b
JN
227 err = omap_i2c_add_bus(i + 1);
228 if (err)
229 goto out;
230 }
231
232out:
233 return err;
234}
235subsys_initcall(omap_register_i2c_bus_cmdline);
236
d4c58bf4 237/**
9833eff3 238 * omap_register_i2c_bus - register I2C bus with device descriptors
d4c58bf4
JN
239 * @bus_id: bus id counting from number 1
240 * @clkrate: clock rate of the bus in kHz
241 * @info: pointer into I2C device descriptor table or NULL
242 * @len: number of descriptors in the table
243 *
244 * Returns 0 on success or an error code.
245 */
9833eff3 246int __init omap_register_i2c_bus(int bus_id, u32 clkrate,
85d05fb3
JN
247 struct i2c_board_info const *info,
248 unsigned len)
249{
3a853fb9 250 int err;
85d05fb3 251
3a853fb9 252 BUG_ON(bus_id < 1 || bus_id > omap_i2c_nr_ports());
85d05fb3
JN
253
254 if (info) {
255 err = i2c_register_board_info(bus_id, info, len);
256 if (err)
257 return err;
258 }
259
20c9d2c4
KJ
260 if (!i2c_pdata[bus_id - 1].clkrate)
261 i2c_pdata[bus_id - 1].clkrate = clkrate;
262
263 i2c_pdata[bus_id - 1].clkrate &= ~OMAP_I2C_CMDLINE_SETUP;
85d05fb3 264
7954763b 265 return omap_i2c_add_bus(bus_id);
85d05fb3 266}