Jarkko Nikula | 85d05fb | 2007-11-07 06:54:31 +0200 | [diff] [blame] | 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 | * |
Jarkko Nikula | ddf25df | 2009-05-25 11:08:43 -0700 | [diff] [blame] | 8 | * Contact: Jarkko Nikula <jhnikula@gmail.com> |
Jarkko Nikula | 85d05fb | 2007-11-07 06:54:31 +0200 | [diff] [blame] | 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> |
Kalle Jokiniemi | 20c9d2c | 2010-05-11 11:35:08 -0700 | [diff] [blame] | 29 | #include <linux/i2c-omap.h> |
Paul Walmsley | 4d17aeb | 2010-09-21 19:37:15 +0530 | [diff] [blame] | 30 | #include <linux/slab.h> |
| 31 | #include <linux/err.h> |
| 32 | #include <linux/clk.h> |
Kalle Jokiniemi | 20c9d2c | 2010-05-11 11:35:08 -0700 | [diff] [blame] | 33 | |
Russell King | 80b02c1 | 2009-01-08 10:01:47 +0000 | [diff] [blame] | 34 | #include <mach/irqs.h> |
Tony Lindgren | ce491cf | 2009-10-20 09:40:47 -0700 | [diff] [blame] | 35 | #include <plat/mux.h> |
Jarkko Nikula | 9833eff | 2010-02-22 20:29:36 +0000 | [diff] [blame] | 36 | #include <plat/i2c.h> |
Kalle Jokiniemi | 20c9d2c | 2010-05-11 11:35:08 -0700 | [diff] [blame] | 37 | #include <plat/omap-pm.h> |
Paul Walmsley | 4d17aeb | 2010-09-21 19:37:15 +0530 | [diff] [blame] | 38 | #include <plat/omap_device.h> |
Jarkko Nikula | 85d05fb | 2007-11-07 06:54:31 +0200 | [diff] [blame] | 39 | |
| 40 | #define OMAP_I2C_SIZE 0x3f |
| 41 | #define OMAP1_I2C_BASE 0xfffb3800 |
Jarkko Nikula | 85d05fb | 2007-11-07 06:54:31 +0200 | [diff] [blame] | 42 | |
Benoit Cousson | f7bb0d9 | 2010-12-09 14:24:16 +0000 | [diff] [blame] | 43 | static const char name[] = "omap_i2c"; |
Jarkko Nikula | 85d05fb | 2007-11-07 06:54:31 +0200 | [diff] [blame] | 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 | |
| 56 | static struct resource i2c_resources[][2] = { |
| 57 | { I2C_RESOURCE_BUILDER(0, 0) }, |
Jarkko Nikula | 85d05fb | 2007-11-07 06:54:31 +0200 | [diff] [blame] | 58 | }; |
| 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 Walmsley | 4d17aeb | 2010-09-21 19:37:15 +0530 | [diff] [blame] | 71 | #define MAX_OMAP_I2C_HWMOD_NAME_LEN 16 |
| 72 | #define OMAP_I2C_MAX_CONTROLLERS 4 |
| 73 | static struct omap_i2c_bus_platform_data i2c_pdata[OMAP_I2C_MAX_CONTROLLERS]; |
Jarkko Nikula | 85d05fb | 2007-11-07 06:54:31 +0200 | [diff] [blame] | 74 | static struct platform_device omap_i2c_devices[] = { |
Kalle Jokiniemi | 20c9d2c | 2010-05-11 11:35:08 -0700 | [diff] [blame] | 75 | I2C_DEV_BUILDER(1, i2c_resources[0], &i2c_pdata[0]), |
Jarkko Nikula | 85d05fb | 2007-11-07 06:54:31 +0200 | [diff] [blame] | 76 | }; |
| 77 | |
Jarkko Nikula | 7954763 | 2009-03-23 18:07:48 -0700 | [diff] [blame] | 78 | #define OMAP_I2C_CMDLINE_SETUP (BIT(31)) |
| 79 | |
Jarkko Nikula | 3a853fb | 2009-03-23 18:07:47 -0700 | [diff] [blame] | 80 | static 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 Lindgren | 6daa642 | 2010-05-20 11:36:43 -0700 | [diff] [blame] | 90 | else if (cpu_is_omap44xx()) |
| 91 | ports = 4; |
Jarkko Nikula | 3a853fb | 2009-03-23 18:07:47 -0700 | [diff] [blame] | 92 | |
| 93 | return ports; |
| 94 | } |
| 95 | |
Paul Walmsley | 4d17aeb | 2010-09-21 19:37:15 +0530 | [diff] [blame] | 96 | static inline int omap1_i2c_add_bus(int bus_id) |
Jarkko Nikula | 7954763 | 2009-03-23 18:07:48 -0700 | [diff] [blame] | 97 | { |
Paul Walmsley | 4d17aeb | 2010-09-21 19:37:15 +0530 | [diff] [blame] | 98 | struct platform_device *pdev; |
| 99 | struct omap_i2c_bus_platform_data *pdata; |
Paul Walmsley | 00b4ade | 2010-12-07 04:30:57 +0000 | [diff] [blame] | 100 | struct resource *res; |
Jarkko Nikula | 7954763 | 2009-03-23 18:07:48 -0700 | [diff] [blame] | 101 | |
Tony Lindgren | b32dd41 | 2010-05-20 11:36:43 -0700 | [diff] [blame] | 102 | omap1_i2c_mux_pins(bus_id); |
| 103 | |
Paul Walmsley | 4d17aeb | 2010-09-21 19:37:15 +0530 | [diff] [blame] | 104 | pdev = &omap_i2c_devices[bus_id - 1]; |
Paul Walmsley | 00b4ade | 2010-12-07 04:30:57 +0000 | [diff] [blame] | 105 | 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 Walmsley | 4d17aeb | 2010-09-21 19:37:15 +0530 | [diff] [blame] | 109 | pdata = &i2c_pdata[bus_id - 1]; |
| 110 | |
Andy Green | 67b90c6 | 2011-05-30 07:43:06 -0700 | [diff] [blame] | 111 | /* all OMAP1 have IP version 1 register set */ |
| 112 | pdata->rev = OMAP_I2C_IP_VERSION_1; |
| 113 | |
Andy Green | 8e286f5 | 2011-05-30 07:43:09 -0700 | [diff] [blame] | 114 | /* all OMAP1 I2C are implemented like this */ |
| 115 | pdata->flags = OMAP_I2C_FLAG_NO_FIFO | |
| 116 | OMAP_I2C_FLAG_SIMPLE_CLOCK | |
| 117 | OMAP_I2C_FLAG_16BIT_DATA_REG | |
| 118 | OMAP_I2C_FLAG_ALWAYS_ARMXOR_CLK; |
| 119 | |
| 120 | /* how the cpu bus is wired up differs for 7xx only */ |
| 121 | |
| 122 | if (cpu_is_omap7xx()) |
| 123 | pdata->flags |= OMAP_I2C_FLAG_BUS_SHIFT_1; |
| 124 | else |
| 125 | pdata->flags |= OMAP_I2C_FLAG_BUS_SHIFT_2; |
| 126 | |
Tony Lindgren | b32dd41 | 2010-05-20 11:36:43 -0700 | [diff] [blame] | 127 | return platform_device_register(pdev); |
| 128 | } |
| 129 | |
Paul Walmsley | 4d17aeb | 2010-09-21 19:37:15 +0530 | [diff] [blame] | 130 | |
Felipe Balbi | 790a26f | 2011-01-27 16:39:41 -0800 | [diff] [blame] | 131 | #ifdef CONFIG_ARCH_OMAP2PLUS |
Paul Walmsley | 564889c | 2010-07-26 16:34:34 -0600 | [diff] [blame] | 132 | /* |
| 133 | * XXX This function is a temporary compatibility wrapper - only |
| 134 | * needed until the I2C driver can be converted to call |
| 135 | * omap_pm_set_max_dev_wakeup_lat() and handle a return code. |
| 136 | */ |
| 137 | static void omap_pm_set_max_mpu_wakeup_lat_compat(struct device *dev, long t) |
| 138 | { |
| 139 | omap_pm_set_max_mpu_wakeup_lat(dev, t); |
| 140 | } |
| 141 | |
Paul Walmsley | 4d17aeb | 2010-09-21 19:37:15 +0530 | [diff] [blame] | 142 | static inline int omap2_i2c_add_bus(int bus_id) |
Tony Lindgren | b32dd41 | 2010-05-20 11:36:43 -0700 | [diff] [blame] | 143 | { |
Paul Walmsley | 4d17aeb | 2010-09-21 19:37:15 +0530 | [diff] [blame] | 144 | int l; |
| 145 | struct omap_hwmod *oh; |
Kevin Hilman | 3528c58 | 2011-07-21 13:48:45 -0700 | [diff] [blame] | 146 | struct platform_device *pdev; |
Paul Walmsley | 4d17aeb | 2010-09-21 19:37:15 +0530 | [diff] [blame] | 147 | char oh_name[MAX_OMAP_I2C_HWMOD_NAME_LEN]; |
| 148 | struct omap_i2c_bus_platform_data *pdata; |
Andy Green | 029a1e7 | 2011-05-30 07:43:08 -0700 | [diff] [blame] | 149 | struct omap_i2c_dev_attr *dev_attr; |
Tony Lindgren | b32dd41 | 2010-05-20 11:36:43 -0700 | [diff] [blame] | 150 | |
Tony Lindgren | b32dd41 | 2010-05-20 11:36:43 -0700 | [diff] [blame] | 151 | omap2_i2c_mux_pins(bus_id); |
Jarkko Nikula | 9833eff | 2010-02-22 20:29:36 +0000 | [diff] [blame] | 152 | |
Paul Walmsley | 4d17aeb | 2010-09-21 19:37:15 +0530 | [diff] [blame] | 153 | l = snprintf(oh_name, MAX_OMAP_I2C_HWMOD_NAME_LEN, "i2c%d", bus_id); |
| 154 | WARN(l >= MAX_OMAP_I2C_HWMOD_NAME_LEN, |
| 155 | "String buffer overflow in I2C%d device setup\n", bus_id); |
| 156 | oh = omap_hwmod_lookup(oh_name); |
| 157 | if (!oh) { |
| 158 | pr_err("Could not look up %s\n", oh_name); |
| 159 | return -EEXIST; |
| 160 | } |
| 161 | |
| 162 | pdata = &i2c_pdata[bus_id - 1]; |
Kalle Jokiniemi | 20c9d2c | 2010-05-11 11:35:08 -0700 | [diff] [blame] | 163 | /* |
Andy Green | d177e5d | 2011-05-30 07:43:06 -0700 | [diff] [blame] | 164 | * pass the hwmod class's CPU-specific knowledge of I2C IP revision in |
Andy Green | 029a1e7 | 2011-05-30 07:43:08 -0700 | [diff] [blame] | 165 | * use, and functionality implementation flags, up to the OMAP I2C |
| 166 | * driver via platform data |
Andy Green | d177e5d | 2011-05-30 07:43:06 -0700 | [diff] [blame] | 167 | */ |
| 168 | pdata->rev = oh->class->rev; |
| 169 | |
Andy Green | 029a1e7 | 2011-05-30 07:43:08 -0700 | [diff] [blame] | 170 | dev_attr = (struct omap_i2c_dev_attr *)oh->dev_attr; |
| 171 | pdata->flags = dev_attr->flags; |
| 172 | |
Andy Green | d177e5d | 2011-05-30 07:43:06 -0700 | [diff] [blame] | 173 | /* |
Kalle Jokiniemi | 20c9d2c | 2010-05-11 11:35:08 -0700 | [diff] [blame] | 174 | * When waiting for completion of a i2c transfer, we need to |
| 175 | * set a wake up latency constraint for the MPU. This is to |
| 176 | * ensure quick enough wakeup from idle, when transfer |
| 177 | * completes. |
Paul Walmsley | 4d17aeb | 2010-09-21 19:37:15 +0530 | [diff] [blame] | 178 | * Only omap3 has support for constraints |
Kalle Jokiniemi | 20c9d2c | 2010-05-11 11:35:08 -0700 | [diff] [blame] | 179 | */ |
Paul Walmsley | 4d17aeb | 2010-09-21 19:37:15 +0530 | [diff] [blame] | 180 | if (cpu_is_omap34xx()) |
| 181 | pdata->set_mpu_wkup_lat = omap_pm_set_max_mpu_wakeup_lat_compat; |
Kevin Hilman | 3528c58 | 2011-07-21 13:48:45 -0700 | [diff] [blame] | 182 | pdev = omap_device_build(name, bus_id, oh, pdata, |
Paul Walmsley | 4d17aeb | 2010-09-21 19:37:15 +0530 | [diff] [blame] | 183 | sizeof(struct omap_i2c_bus_platform_data), |
Benoit Cousson | f718e2c | 2011-08-10 15:30:09 +0200 | [diff] [blame] | 184 | NULL, 0, 0); |
Kevin Hilman | 3528c58 | 2011-07-21 13:48:45 -0700 | [diff] [blame] | 185 | WARN(IS_ERR(pdev), "Could not build omap_device for %s\n", name); |
Tony Lindgren | b32dd41 | 2010-05-20 11:36:43 -0700 | [diff] [blame] | 186 | |
Laurent Pinchart | af504e5 | 2011-11-02 12:54:03 +0100 | [diff] [blame] | 187 | return PTR_RET(pdev); |
Jarkko Nikula | 7954763 | 2009-03-23 18:07:48 -0700 | [diff] [blame] | 188 | } |
Tony Lindgren | be40f7a | 2010-12-07 16:25:40 -0800 | [diff] [blame] | 189 | #else |
| 190 | static inline int omap2_i2c_add_bus(int bus_id) |
| 191 | { |
| 192 | return 0; |
| 193 | } |
| 194 | #endif |
Jarkko Nikula | 7954763 | 2009-03-23 18:07:48 -0700 | [diff] [blame] | 195 | |
Tony Lindgren | b32dd41 | 2010-05-20 11:36:43 -0700 | [diff] [blame] | 196 | static int __init omap_i2c_add_bus(int bus_id) |
| 197 | { |
Tony Lindgren | b32dd41 | 2010-05-20 11:36:43 -0700 | [diff] [blame] | 198 | if (cpu_class_is_omap1()) |
Paul Walmsley | 4d17aeb | 2010-09-21 19:37:15 +0530 | [diff] [blame] | 199 | return omap1_i2c_add_bus(bus_id); |
Tony Lindgren | b32dd41 | 2010-05-20 11:36:43 -0700 | [diff] [blame] | 200 | else |
Paul Walmsley | 4d17aeb | 2010-09-21 19:37:15 +0530 | [diff] [blame] | 201 | return omap2_i2c_add_bus(bus_id); |
Tony Lindgren | b32dd41 | 2010-05-20 11:36:43 -0700 | [diff] [blame] | 202 | } |
| 203 | |
Jarkko Nikula | 3a853fb | 2009-03-23 18:07:47 -0700 | [diff] [blame] | 204 | /** |
| 205 | * omap_i2c_bus_setup - Process command line options for the I2C bus speed |
| 206 | * @str: String of options |
| 207 | * |
| 208 | * This function allow to override the default I2C bus speed for given I2C |
| 209 | * bus with a command line option. |
| 210 | * |
| 211 | * Format: i2c_bus=bus_id,clkrate (in kHz) |
| 212 | * |
| 213 | * Returns 1 on success, 0 otherwise. |
| 214 | */ |
| 215 | static int __init omap_i2c_bus_setup(char *str) |
| 216 | { |
| 217 | int ports; |
| 218 | int ints[3]; |
| 219 | |
| 220 | ports = omap_i2c_nr_ports(); |
| 221 | get_options(str, 3, ints); |
| 222 | if (ints[0] < 2 || ints[1] < 1 || ints[1] > ports) |
| 223 | return 0; |
Kalle Jokiniemi | 20c9d2c | 2010-05-11 11:35:08 -0700 | [diff] [blame] | 224 | i2c_pdata[ints[1] - 1].clkrate = ints[2]; |
| 225 | i2c_pdata[ints[1] - 1].clkrate |= OMAP_I2C_CMDLINE_SETUP; |
Jarkko Nikula | 3a853fb | 2009-03-23 18:07:47 -0700 | [diff] [blame] | 226 | |
| 227 | return 1; |
| 228 | } |
| 229 | __setup("i2c_bus=", omap_i2c_bus_setup); |
| 230 | |
Jarkko Nikula | 7954763 | 2009-03-23 18:07:48 -0700 | [diff] [blame] | 231 | /* |
| 232 | * Register busses defined in command line but that are not registered with |
| 233 | * omap_register_i2c_bus from board initialization code. |
| 234 | */ |
| 235 | static int __init omap_register_i2c_bus_cmdline(void) |
| 236 | { |
| 237 | int i, err = 0; |
| 238 | |
Kalle Jokiniemi | 20c9d2c | 2010-05-11 11:35:08 -0700 | [diff] [blame] | 239 | for (i = 0; i < ARRAY_SIZE(i2c_pdata); i++) |
| 240 | if (i2c_pdata[i].clkrate & OMAP_I2C_CMDLINE_SETUP) { |
| 241 | i2c_pdata[i].clkrate &= ~OMAP_I2C_CMDLINE_SETUP; |
Jarkko Nikula | 7954763 | 2009-03-23 18:07:48 -0700 | [diff] [blame] | 242 | err = omap_i2c_add_bus(i + 1); |
| 243 | if (err) |
| 244 | goto out; |
| 245 | } |
| 246 | |
| 247 | out: |
| 248 | return err; |
| 249 | } |
| 250 | subsys_initcall(omap_register_i2c_bus_cmdline); |
| 251 | |
Jarkko Nikula | d4c58bf | 2009-03-23 18:07:46 -0700 | [diff] [blame] | 252 | /** |
Jarkko Nikula | 9833eff | 2010-02-22 20:29:36 +0000 | [diff] [blame] | 253 | * omap_register_i2c_bus - register I2C bus with device descriptors |
Jarkko Nikula | d4c58bf | 2009-03-23 18:07:46 -0700 | [diff] [blame] | 254 | * @bus_id: bus id counting from number 1 |
| 255 | * @clkrate: clock rate of the bus in kHz |
| 256 | * @info: pointer into I2C device descriptor table or NULL |
| 257 | * @len: number of descriptors in the table |
| 258 | * |
| 259 | * Returns 0 on success or an error code. |
| 260 | */ |
Jarkko Nikula | 9833eff | 2010-02-22 20:29:36 +0000 | [diff] [blame] | 261 | int __init omap_register_i2c_bus(int bus_id, u32 clkrate, |
Jarkko Nikula | 85d05fb | 2007-11-07 06:54:31 +0200 | [diff] [blame] | 262 | struct i2c_board_info const *info, |
| 263 | unsigned len) |
| 264 | { |
Jarkko Nikula | 3a853fb | 2009-03-23 18:07:47 -0700 | [diff] [blame] | 265 | int err; |
Jarkko Nikula | 85d05fb | 2007-11-07 06:54:31 +0200 | [diff] [blame] | 266 | |
Jarkko Nikula | 3a853fb | 2009-03-23 18:07:47 -0700 | [diff] [blame] | 267 | BUG_ON(bus_id < 1 || bus_id > omap_i2c_nr_ports()); |
Jarkko Nikula | 85d05fb | 2007-11-07 06:54:31 +0200 | [diff] [blame] | 268 | |
| 269 | if (info) { |
| 270 | err = i2c_register_board_info(bus_id, info, len); |
| 271 | if (err) |
| 272 | return err; |
| 273 | } |
| 274 | |
Kalle Jokiniemi | 20c9d2c | 2010-05-11 11:35:08 -0700 | [diff] [blame] | 275 | if (!i2c_pdata[bus_id - 1].clkrate) |
| 276 | i2c_pdata[bus_id - 1].clkrate = clkrate; |
| 277 | |
| 278 | i2c_pdata[bus_id - 1].clkrate &= ~OMAP_I2C_CMDLINE_SETUP; |
Jarkko Nikula | 85d05fb | 2007-11-07 06:54:31 +0200 | [diff] [blame] | 279 | |
Jarkko Nikula | 7954763 | 2009-03-23 18:07:48 -0700 | [diff] [blame] | 280 | return omap_i2c_add_bus(bus_id); |
Jarkko Nikula | 85d05fb | 2007-11-07 06:54:31 +0200 | [diff] [blame] | 281 | } |