blob: c20beb8ed38b7230dfd3183b21db34b7e8eda190 [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>
Paul Walmsley4d17aeb2010-09-21 19:37:15 +053030#include <linux/slab.h>
31#include <linux/err.h>
32#include <linux/clk.h>
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -070033
Russell King80b02c12009-01-08 10:01:47 +000034#include <mach/irqs.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070035#include <plat/mux.h>
Jarkko Nikula9833eff2010-02-22 20:29:36 +000036#include <plat/i2c.h>
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -070037#include <plat/omap-pm.h>
Paul Walmsley4d17aeb2010-09-21 19:37:15 +053038#include <plat/omap_device.h>
Jarkko Nikula85d05fb2007-11-07 06:54:31 +020039
40#define OMAP_I2C_SIZE 0x3f
41#define OMAP1_I2C_BASE 0xfffb3800
Jarkko Nikula85d05fb2007-11-07 06:54:31 +020042
Benoit Coussonf7bb0d92010-12-09 14:24:16 +000043static const char name[] = "omap_i2c";
Jarkko Nikula85d05fb2007-11-07 06:54:31 +020044
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) },
Jarkko Nikula85d05fb2007-11-07 06:54:31 +020058};
59
60#define I2C_DEV_BUILDER(bus_id, res, data) \
61 { \
62 .id = (bus_id), \
63 .name = name, \
64 .num_resources = ARRAY_SIZE(res), \
65 .resource = (res), \
66 .dev = { \
67 .platform_data = (data), \
68 }, \
69 }
70
Paul Walmsley4d17aeb2010-09-21 19:37:15 +053071#define MAX_OMAP_I2C_HWMOD_NAME_LEN 16
72#define OMAP_I2C_MAX_CONTROLLERS 4
73static struct omap_i2c_bus_platform_data i2c_pdata[OMAP_I2C_MAX_CONTROLLERS];
Jarkko Nikula85d05fb2007-11-07 06:54:31 +020074static struct platform_device omap_i2c_devices[] = {
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -070075 I2C_DEV_BUILDER(1, i2c_resources[0], &i2c_pdata[0]),
Jarkko Nikula85d05fb2007-11-07 06:54:31 +020076};
77
Jarkko Nikula79547632009-03-23 18:07:48 -070078#define OMAP_I2C_CMDLINE_SETUP (BIT(31))
79
Jarkko Nikula3a853fb2009-03-23 18:07:47 -070080static int __init omap_i2c_nr_ports(void)
81{
82 int ports = 0;
83
84 if (cpu_class_is_omap1())
85 ports = 1;
86 else if (cpu_is_omap24xx())
87 ports = 2;
88 else if (cpu_is_omap34xx())
89 ports = 3;
Tony Lindgren6daa6422010-05-20 11:36:43 -070090 else if (cpu_is_omap44xx())
91 ports = 4;
Jarkko Nikula3a853fb2009-03-23 18:07:47 -070092
93 return ports;
94}
95
Paul Walmsley4d17aeb2010-09-21 19:37:15 +053096static inline int omap1_i2c_add_bus(int bus_id)
Jarkko Nikula79547632009-03-23 18:07:48 -070097{
Paul Walmsley4d17aeb2010-09-21 19:37:15 +053098 struct platform_device *pdev;
99 struct omap_i2c_bus_platform_data *pdata;
Paul Walmsley00b4ade2010-12-07 04:30:57 +0000100 struct resource *res;
Jarkko Nikula79547632009-03-23 18:07:48 -0700101
Tony Lindgrenb32dd412010-05-20 11:36:43 -0700102 omap1_i2c_mux_pins(bus_id);
103
Paul Walmsley4d17aeb2010-09-21 19:37:15 +0530104 pdev = &omap_i2c_devices[bus_id - 1];
Paul Walmsley00b4ade2010-12-07 04:30:57 +0000105 res = pdev->resource;
106 res[0].start = OMAP1_I2C_BASE;
107 res[0].end = res[0].start + OMAP_I2C_SIZE;
108 res[1].start = INT_I2C;
Paul Walmsley4d17aeb2010-09-21 19:37:15 +0530109 pdata = &i2c_pdata[bus_id - 1];
110
Tony Lindgrenb32dd412010-05-20 11:36:43 -0700111 return platform_device_register(pdev);
112}
113
Paul Walmsley4d17aeb2010-09-21 19:37:15 +0530114
Felipe Balbi790a26f2011-01-27 16:39:41 -0800115#ifdef CONFIG_ARCH_OMAP2PLUS
Paul Walmsley564889c2010-07-26 16:34:34 -0600116/*
117 * XXX This function is a temporary compatibility wrapper - only
118 * needed until the I2C driver can be converted to call
119 * omap_pm_set_max_dev_wakeup_lat() and handle a return code.
120 */
121static void omap_pm_set_max_mpu_wakeup_lat_compat(struct device *dev, long t)
122{
123 omap_pm_set_max_mpu_wakeup_lat(dev, t);
124}
125
Paul Walmsley4d17aeb2010-09-21 19:37:15 +0530126static inline int omap2_i2c_add_bus(int bus_id)
Tony Lindgrenb32dd412010-05-20 11:36:43 -0700127{
Paul Walmsley4d17aeb2010-09-21 19:37:15 +0530128 int l;
129 struct omap_hwmod *oh;
Kevin Hilman3528c582011-07-21 13:48:45 -0700130 struct platform_device *pdev;
Paul Walmsley4d17aeb2010-09-21 19:37:15 +0530131 char oh_name[MAX_OMAP_I2C_HWMOD_NAME_LEN];
132 struct omap_i2c_bus_platform_data *pdata;
Tony Lindgrenb32dd412010-05-20 11:36:43 -0700133
Tony Lindgrenb32dd412010-05-20 11:36:43 -0700134 omap2_i2c_mux_pins(bus_id);
Jarkko Nikula9833eff2010-02-22 20:29:36 +0000135
Paul Walmsley4d17aeb2010-09-21 19:37:15 +0530136 l = snprintf(oh_name, MAX_OMAP_I2C_HWMOD_NAME_LEN, "i2c%d", bus_id);
137 WARN(l >= MAX_OMAP_I2C_HWMOD_NAME_LEN,
138 "String buffer overflow in I2C%d device setup\n", bus_id);
139 oh = omap_hwmod_lookup(oh_name);
140 if (!oh) {
141 pr_err("Could not look up %s\n", oh_name);
142 return -EEXIST;
143 }
144
145 pdata = &i2c_pdata[bus_id - 1];
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -0700146 /*
147 * When waiting for completion of a i2c transfer, we need to
148 * set a wake up latency constraint for the MPU. This is to
149 * ensure quick enough wakeup from idle, when transfer
150 * completes.
Paul Walmsley4d17aeb2010-09-21 19:37:15 +0530151 * Only omap3 has support for constraints
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -0700152 */
Paul Walmsley4d17aeb2010-09-21 19:37:15 +0530153 if (cpu_is_omap34xx())
154 pdata->set_mpu_wkup_lat = omap_pm_set_max_mpu_wakeup_lat_compat;
Kevin Hilman3528c582011-07-21 13:48:45 -0700155 pdev = omap_device_build(name, bus_id, oh, pdata,
Paul Walmsley4d17aeb2010-09-21 19:37:15 +0530156 sizeof(struct omap_i2c_bus_platform_data),
Benoit Coussonf718e2c2011-08-10 15:30:09 +0200157 NULL, 0, 0);
Kevin Hilman3528c582011-07-21 13:48:45 -0700158 WARN(IS_ERR(pdev), "Could not build omap_device for %s\n", name);
Tony Lindgrenb32dd412010-05-20 11:36:43 -0700159
Kevin Hilman3528c582011-07-21 13:48:45 -0700160 return PTR_ERR(pdev);
Jarkko Nikula79547632009-03-23 18:07:48 -0700161}
Tony Lindgrenbe40f7a2010-12-07 16:25:40 -0800162#else
163static inline int omap2_i2c_add_bus(int bus_id)
164{
165 return 0;
166}
167#endif
Jarkko Nikula79547632009-03-23 18:07:48 -0700168
Tony Lindgrenb32dd412010-05-20 11:36:43 -0700169static int __init omap_i2c_add_bus(int bus_id)
170{
Tony Lindgrenb32dd412010-05-20 11:36:43 -0700171 if (cpu_class_is_omap1())
Paul Walmsley4d17aeb2010-09-21 19:37:15 +0530172 return omap1_i2c_add_bus(bus_id);
Tony Lindgrenb32dd412010-05-20 11:36:43 -0700173 else
Paul Walmsley4d17aeb2010-09-21 19:37:15 +0530174 return omap2_i2c_add_bus(bus_id);
Tony Lindgrenb32dd412010-05-20 11:36:43 -0700175}
176
Jarkko Nikula3a853fb2009-03-23 18:07:47 -0700177/**
178 * omap_i2c_bus_setup - Process command line options for the I2C bus speed
179 * @str: String of options
180 *
181 * This function allow to override the default I2C bus speed for given I2C
182 * bus with a command line option.
183 *
184 * Format: i2c_bus=bus_id,clkrate (in kHz)
185 *
186 * Returns 1 on success, 0 otherwise.
187 */
188static int __init omap_i2c_bus_setup(char *str)
189{
190 int ports;
191 int ints[3];
192
193 ports = omap_i2c_nr_ports();
194 get_options(str, 3, ints);
195 if (ints[0] < 2 || ints[1] < 1 || ints[1] > ports)
196 return 0;
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -0700197 i2c_pdata[ints[1] - 1].clkrate = ints[2];
198 i2c_pdata[ints[1] - 1].clkrate |= OMAP_I2C_CMDLINE_SETUP;
Jarkko Nikula3a853fb2009-03-23 18:07:47 -0700199
200 return 1;
201}
202__setup("i2c_bus=", omap_i2c_bus_setup);
203
Jarkko Nikula79547632009-03-23 18:07:48 -0700204/*
205 * Register busses defined in command line but that are not registered with
206 * omap_register_i2c_bus from board initialization code.
207 */
208static int __init omap_register_i2c_bus_cmdline(void)
209{
210 int i, err = 0;
211
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -0700212 for (i = 0; i < ARRAY_SIZE(i2c_pdata); i++)
213 if (i2c_pdata[i].clkrate & OMAP_I2C_CMDLINE_SETUP) {
214 i2c_pdata[i].clkrate &= ~OMAP_I2C_CMDLINE_SETUP;
Jarkko Nikula79547632009-03-23 18:07:48 -0700215 err = omap_i2c_add_bus(i + 1);
216 if (err)
217 goto out;
218 }
219
220out:
221 return err;
222}
223subsys_initcall(omap_register_i2c_bus_cmdline);
224
Jarkko Nikulad4c58bf2009-03-23 18:07:46 -0700225/**
Jarkko Nikula9833eff2010-02-22 20:29:36 +0000226 * omap_register_i2c_bus - register I2C bus with device descriptors
Jarkko Nikulad4c58bf2009-03-23 18:07:46 -0700227 * @bus_id: bus id counting from number 1
228 * @clkrate: clock rate of the bus in kHz
229 * @info: pointer into I2C device descriptor table or NULL
230 * @len: number of descriptors in the table
231 *
232 * Returns 0 on success or an error code.
233 */
Jarkko Nikula9833eff2010-02-22 20:29:36 +0000234int __init omap_register_i2c_bus(int bus_id, u32 clkrate,
Jarkko Nikula85d05fb2007-11-07 06:54:31 +0200235 struct i2c_board_info const *info,
236 unsigned len)
237{
Jarkko Nikula3a853fb2009-03-23 18:07:47 -0700238 int err;
Jarkko Nikula85d05fb2007-11-07 06:54:31 +0200239
Jarkko Nikula3a853fb2009-03-23 18:07:47 -0700240 BUG_ON(bus_id < 1 || bus_id > omap_i2c_nr_ports());
Jarkko Nikula85d05fb2007-11-07 06:54:31 +0200241
242 if (info) {
243 err = i2c_register_board_info(bus_id, info, len);
244 if (err)
245 return err;
246 }
247
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -0700248 if (!i2c_pdata[bus_id - 1].clkrate)
249 i2c_pdata[bus_id - 1].clkrate = clkrate;
250
251 i2c_pdata[bus_id - 1].clkrate &= ~OMAP_I2C_CMDLINE_SETUP;
Jarkko Nikula85d05fb2007-11-07 06:54:31 +0200252
Jarkko Nikula79547632009-03-23 18:07:48 -0700253 return omap_i2c_add_bus(bus_id);
Jarkko Nikula85d05fb2007-11-07 06:54:31 +0200254}