Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1 | /* |
| 2 | * i2c_adap_pxa.c |
| 3 | * |
| 4 | * I2C adapter for the PXA I2C bus access. |
| 5 | * |
| 6 | * Copyright (C) 2002 Intrinsyc Software Inc. |
| 7 | * Copyright (C) 2004-2005 Deep Blue Solutions Ltd. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 as |
| 11 | * published by the Free Software Foundation. |
| 12 | * |
| 13 | * History: |
| 14 | * Apr 2002: Initial version [CS] |
Daniel Mack | 3ad2f3f | 2010-02-03 08:01:28 +0800 | [diff] [blame] | 15 | * Jun 2002: Properly separated algo/adap [FB] |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 16 | * Jan 2003: Fixed several bugs concerning interrupt handling [Kai-Uwe Bloem] |
| 17 | * Jan 2003: added limited signal handling [Kai-Uwe Bloem] |
| 18 | * Sep 2004: Major rework to ensure efficient bus handling [RMK] |
| 19 | * Dec 2004: Added support for PXA27x and slave device probing [Liam Girdwood] |
| 20 | * Feb 2005: Rework slave mode handling [RMK] |
| 21 | */ |
| 22 | #include <linux/kernel.h> |
| 23 | #include <linux/module.h> |
| 24 | #include <linux/i2c.h> |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 25 | #include <linux/init.h> |
| 26 | #include <linux/time.h> |
| 27 | #include <linux/sched.h> |
| 28 | #include <linux/delay.h> |
| 29 | #include <linux/errno.h> |
| 30 | #include <linux/interrupt.h> |
| 31 | #include <linux/i2c-pxa.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 32 | #include <linux/platform_device.h> |
Russell King | c3cef3f | 2007-08-20 10:19:10 +0100 | [diff] [blame] | 33 | #include <linux/err.h> |
| 34 | #include <linux/clk.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 35 | #include <linux/slab.h> |
H Hartley Sweeten | 2178218 | 2010-05-21 18:41:01 +0200 | [diff] [blame] | 36 | #include <linux/io.h> |
Sebastian Andrzej Siewior | b459396 | 2011-02-23 12:38:16 +0100 | [diff] [blame^] | 37 | #include <linux/i2c/pxa-i2c.h> |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 38 | |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 39 | #include <asm/irq.h> |
Eric Miao | 283afa0 | 2008-09-08 14:15:08 +0800 | [diff] [blame] | 40 | |
Sebastian Andrzej Siewior | d6668c7 | 2011-02-23 12:38:15 +0100 | [diff] [blame] | 41 | struct pxa_reg_layout { |
| 42 | u32 ibmr; |
| 43 | u32 idbr; |
| 44 | u32 icr; |
| 45 | u32 isr; |
| 46 | u32 isar; |
| 47 | }; |
| 48 | |
| 49 | enum pxa_i2c_types { |
| 50 | REGS_PXA2XX, |
| 51 | REGS_PXA3XX, |
| 52 | }; |
| 53 | |
Eric Miao | 283afa0 | 2008-09-08 14:15:08 +0800 | [diff] [blame] | 54 | /* |
Sebastian Andrzej Siewior | d6668c7 | 2011-02-23 12:38:15 +0100 | [diff] [blame] | 55 | * I2C registers definitions |
Eric Miao | f23d491 | 2009-04-13 14:43:25 +0800 | [diff] [blame] | 56 | */ |
Sebastian Andrzej Siewior | d6668c7 | 2011-02-23 12:38:15 +0100 | [diff] [blame] | 57 | static struct pxa_reg_layout pxa_reg_layout[] = { |
| 58 | [REGS_PXA2XX] = { |
| 59 | .ibmr = 0x00, |
| 60 | .idbr = 0x10, |
| 61 | .icr = 0x20, |
| 62 | .isr = 0x30, |
| 63 | .isar = 0x40, |
| 64 | }, |
| 65 | [REGS_PXA3XX] = { |
| 66 | .ibmr = 0x00, |
| 67 | .idbr = 0x08, |
| 68 | .icr = 0x10, |
| 69 | .isr = 0x18, |
| 70 | .isar = 0x20, |
| 71 | }, |
| 72 | }; |
Eric Miao | f23d491 | 2009-04-13 14:43:25 +0800 | [diff] [blame] | 73 | |
| 74 | static const struct platform_device_id i2c_pxa_id_table[] = { |
Sebastian Andrzej Siewior | d6668c7 | 2011-02-23 12:38:15 +0100 | [diff] [blame] | 75 | { "pxa2xx-i2c", REGS_PXA2XX }, |
| 76 | { "pxa3xx-pwri2c", REGS_PXA3XX }, |
Eric Miao | f23d491 | 2009-04-13 14:43:25 +0800 | [diff] [blame] | 77 | { }, |
| 78 | }; |
| 79 | MODULE_DEVICE_TABLE(platform, i2c_pxa_id_table); |
| 80 | |
| 81 | /* |
Sebastian Andrzej Siewior | d6668c7 | 2011-02-23 12:38:15 +0100 | [diff] [blame] | 82 | * I2C bit definitions |
Eric Miao | 283afa0 | 2008-09-08 14:15:08 +0800 | [diff] [blame] | 83 | */ |
Eric Miao | 283afa0 | 2008-09-08 14:15:08 +0800 | [diff] [blame] | 84 | |
| 85 | #define ICR_START (1 << 0) /* start bit */ |
| 86 | #define ICR_STOP (1 << 1) /* stop bit */ |
| 87 | #define ICR_ACKNAK (1 << 2) /* send ACK(0) or NAK(1) */ |
| 88 | #define ICR_TB (1 << 3) /* transfer byte bit */ |
| 89 | #define ICR_MA (1 << 4) /* master abort */ |
| 90 | #define ICR_SCLE (1 << 5) /* master clock enable */ |
| 91 | #define ICR_IUE (1 << 6) /* unit enable */ |
| 92 | #define ICR_GCD (1 << 7) /* general call disable */ |
| 93 | #define ICR_ITEIE (1 << 8) /* enable tx interrupts */ |
| 94 | #define ICR_IRFIE (1 << 9) /* enable rx interrupts */ |
| 95 | #define ICR_BEIE (1 << 10) /* enable bus error ints */ |
| 96 | #define ICR_SSDIE (1 << 11) /* slave STOP detected int enable */ |
| 97 | #define ICR_ALDIE (1 << 12) /* enable arbitration interrupt */ |
| 98 | #define ICR_SADIE (1 << 13) /* slave address detected int enable */ |
| 99 | #define ICR_UR (1 << 14) /* unit reset */ |
| 100 | #define ICR_FM (1 << 15) /* fast mode */ |
| 101 | |
| 102 | #define ISR_RWM (1 << 0) /* read/write mode */ |
| 103 | #define ISR_ACKNAK (1 << 1) /* ack/nak status */ |
| 104 | #define ISR_UB (1 << 2) /* unit busy */ |
| 105 | #define ISR_IBB (1 << 3) /* bus busy */ |
| 106 | #define ISR_SSD (1 << 4) /* slave stop detected */ |
| 107 | #define ISR_ALD (1 << 5) /* arbitration loss detected */ |
| 108 | #define ISR_ITE (1 << 6) /* tx buffer empty */ |
| 109 | #define ISR_IRF (1 << 7) /* rx buffer full */ |
| 110 | #define ISR_GCAD (1 << 8) /* general call address detected */ |
| 111 | #define ISR_SAD (1 << 9) /* slave address detected */ |
| 112 | #define ISR_BED (1 << 10) /* bus error no ACK/NAK */ |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 113 | |
| 114 | struct pxa_i2c { |
| 115 | spinlock_t lock; |
| 116 | wait_queue_head_t wait; |
| 117 | struct i2c_msg *msg; |
| 118 | unsigned int msg_num; |
| 119 | unsigned int msg_idx; |
| 120 | unsigned int msg_ptr; |
| 121 | unsigned int slave_addr; |
| 122 | |
| 123 | struct i2c_adapter adap; |
Russell King | c3cef3f | 2007-08-20 10:19:10 +0100 | [diff] [blame] | 124 | struct clk *clk; |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 125 | #ifdef CONFIG_I2C_PXA_SLAVE |
| 126 | struct i2c_slave_client *slave; |
| 127 | #endif |
| 128 | |
| 129 | unsigned int irqlogidx; |
| 130 | u32 isrlog[32]; |
| 131 | u32 icrlog[32]; |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 132 | |
| 133 | void __iomem *reg_base; |
Sebastian Andrzej Siewior | d6668c7 | 2011-02-23 12:38:15 +0100 | [diff] [blame] | 134 | void __iomem *reg_ibmr; |
| 135 | void __iomem *reg_idbr; |
| 136 | void __iomem *reg_icr; |
| 137 | void __iomem *reg_isr; |
| 138 | void __iomem *reg_isar; |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 139 | |
| 140 | unsigned long iobase; |
| 141 | unsigned long iosize; |
| 142 | |
| 143 | int irq; |
Jonathan Cameron | c46c948 | 2008-10-03 15:07:36 +0100 | [diff] [blame] | 144 | unsigned int use_pio :1; |
| 145 | unsigned int fast_mode :1; |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 146 | }; |
| 147 | |
Sebastian Andrzej Siewior | d6668c7 | 2011-02-23 12:38:15 +0100 | [diff] [blame] | 148 | #define _IBMR(i2c) ((i2c)->reg_ibmr) |
| 149 | #define _IDBR(i2c) ((i2c)->reg_idbr) |
| 150 | #define _ICR(i2c) ((i2c)->reg_icr) |
| 151 | #define _ISR(i2c) ((i2c)->reg_isr) |
| 152 | #define _ISAR(i2c) ((i2c)->reg_isar) |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 153 | |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 154 | /* |
| 155 | * I2C Slave mode address |
| 156 | */ |
| 157 | #define I2C_PXA_SLAVE_ADDR 0x1 |
| 158 | |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 159 | #ifdef DEBUG |
| 160 | |
| 161 | struct bits { |
| 162 | u32 mask; |
| 163 | const char *set; |
| 164 | const char *unset; |
| 165 | }; |
Jiri Slaby | ed11399 | 2007-10-18 23:40:28 -0700 | [diff] [blame] | 166 | #define PXA_BIT(m, s, u) { .mask = m, .set = s, .unset = u } |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 167 | |
| 168 | static inline void |
| 169 | decode_bits(const char *prefix, const struct bits *bits, int num, u32 val) |
| 170 | { |
| 171 | printk("%s %08x: ", prefix, val); |
| 172 | while (num--) { |
| 173 | const char *str = val & bits->mask ? bits->set : bits->unset; |
| 174 | if (str) |
| 175 | printk("%s ", str); |
| 176 | bits++; |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | static const struct bits isr_bits[] = { |
Jiri Slaby | ed11399 | 2007-10-18 23:40:28 -0700 | [diff] [blame] | 181 | PXA_BIT(ISR_RWM, "RX", "TX"), |
| 182 | PXA_BIT(ISR_ACKNAK, "NAK", "ACK"), |
| 183 | PXA_BIT(ISR_UB, "Bsy", "Rdy"), |
| 184 | PXA_BIT(ISR_IBB, "BusBsy", "BusRdy"), |
| 185 | PXA_BIT(ISR_SSD, "SlaveStop", NULL), |
| 186 | PXA_BIT(ISR_ALD, "ALD", NULL), |
| 187 | PXA_BIT(ISR_ITE, "TxEmpty", NULL), |
| 188 | PXA_BIT(ISR_IRF, "RxFull", NULL), |
| 189 | PXA_BIT(ISR_GCAD, "GenCall", NULL), |
| 190 | PXA_BIT(ISR_SAD, "SlaveAddr", NULL), |
| 191 | PXA_BIT(ISR_BED, "BusErr", NULL), |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 192 | }; |
| 193 | |
| 194 | static void decode_ISR(unsigned int val) |
| 195 | { |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 196 | decode_bits(KERN_DEBUG "ISR", isr_bits, ARRAY_SIZE(isr_bits), val); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 197 | printk("\n"); |
| 198 | } |
| 199 | |
| 200 | static const struct bits icr_bits[] = { |
Jiri Slaby | ed11399 | 2007-10-18 23:40:28 -0700 | [diff] [blame] | 201 | PXA_BIT(ICR_START, "START", NULL), |
| 202 | PXA_BIT(ICR_STOP, "STOP", NULL), |
| 203 | PXA_BIT(ICR_ACKNAK, "ACKNAK", NULL), |
| 204 | PXA_BIT(ICR_TB, "TB", NULL), |
| 205 | PXA_BIT(ICR_MA, "MA", NULL), |
| 206 | PXA_BIT(ICR_SCLE, "SCLE", "scle"), |
| 207 | PXA_BIT(ICR_IUE, "IUE", "iue"), |
| 208 | PXA_BIT(ICR_GCD, "GCD", NULL), |
| 209 | PXA_BIT(ICR_ITEIE, "ITEIE", NULL), |
| 210 | PXA_BIT(ICR_IRFIE, "IRFIE", NULL), |
| 211 | PXA_BIT(ICR_BEIE, "BEIE", NULL), |
| 212 | PXA_BIT(ICR_SSDIE, "SSDIE", NULL), |
| 213 | PXA_BIT(ICR_ALDIE, "ALDIE", NULL), |
| 214 | PXA_BIT(ICR_SADIE, "SADIE", NULL), |
| 215 | PXA_BIT(ICR_UR, "UR", "ur"), |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 216 | }; |
| 217 | |
Holger Schurig | d6a7b5f | 2008-02-11 16:51:41 +0100 | [diff] [blame] | 218 | #ifdef CONFIG_I2C_PXA_SLAVE |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 219 | static void decode_ICR(unsigned int val) |
| 220 | { |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 221 | decode_bits(KERN_DEBUG "ICR", icr_bits, ARRAY_SIZE(icr_bits), val); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 222 | printk("\n"); |
| 223 | } |
Holger Schurig | d6a7b5f | 2008-02-11 16:51:41 +0100 | [diff] [blame] | 224 | #endif |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 225 | |
| 226 | static unsigned int i2c_debug = DEBUG; |
| 227 | |
| 228 | static void i2c_pxa_show_state(struct pxa_i2c *i2c, int lno, const char *fname) |
| 229 | { |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 230 | dev_dbg(&i2c->adap.dev, "state:%s:%d: ISR=%08x, ICR=%08x, IBMR=%02x\n", fname, lno, |
| 231 | readl(_ISR(i2c)), readl(_ICR(i2c)), readl(_IBMR(i2c))); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 232 | } |
| 233 | |
Harvey Harrison | 08882d2 | 2008-04-22 22:16:47 +0200 | [diff] [blame] | 234 | #define show_state(i2c) i2c_pxa_show_state(i2c, __LINE__, __func__) |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 235 | |
| 236 | static void i2c_pxa_scream_blue_murder(struct pxa_i2c *i2c, const char *why) |
| 237 | { |
| 238 | unsigned int i; |
Frank Seidel | 154d22b | 2009-03-28 21:34:42 +0100 | [diff] [blame] | 239 | printk(KERN_ERR "i2c: error: %s\n", why); |
| 240 | printk(KERN_ERR "i2c: msg_num: %d msg_idx: %d msg_ptr: %d\n", |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 241 | i2c->msg_num, i2c->msg_idx, i2c->msg_ptr); |
Frank Seidel | 154d22b | 2009-03-28 21:34:42 +0100 | [diff] [blame] | 242 | printk(KERN_ERR "i2c: ICR: %08x ISR: %08x\n", |
| 243 | readl(_ICR(i2c)), readl(_ISR(i2c))); |
| 244 | printk(KERN_DEBUG "i2c: log: "); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 245 | for (i = 0; i < i2c->irqlogidx; i++) |
| 246 | printk("[%08x:%08x] ", i2c->isrlog[i], i2c->icrlog[i]); |
| 247 | printk("\n"); |
| 248 | } |
| 249 | |
Wolfram Sang | 0d813d9 | 2009-11-03 12:53:41 +0100 | [diff] [blame] | 250 | #else /* ifdef DEBUG */ |
| 251 | |
| 252 | #define i2c_debug 0 |
| 253 | |
| 254 | #define show_state(i2c) do { } while (0) |
| 255 | #define decode_ISR(val) do { } while (0) |
| 256 | #define decode_ICR(val) do { } while (0) |
| 257 | #define i2c_pxa_scream_blue_murder(i2c, why) do { } while (0) |
| 258 | |
| 259 | #endif /* ifdef DEBUG / else */ |
| 260 | |
| 261 | static void i2c_pxa_master_complete(struct pxa_i2c *i2c, int ret); |
| 262 | static irqreturn_t i2c_pxa_handler(int this_irq, void *dev_id); |
| 263 | |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 264 | static inline int i2c_pxa_is_slavemode(struct pxa_i2c *i2c) |
| 265 | { |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 266 | return !(readl(_ICR(i2c)) & ICR_SCLE); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | static void i2c_pxa_abort(struct pxa_i2c *i2c) |
| 270 | { |
Dmitry Baryshkov | 387fa6a | 2008-08-18 14:38:48 +0100 | [diff] [blame] | 271 | int i = 250; |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 272 | |
| 273 | if (i2c_pxa_is_slavemode(i2c)) { |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 274 | dev_dbg(&i2c->adap.dev, "%s: called in slave mode\n", __func__); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 275 | return; |
| 276 | } |
| 277 | |
Dmitry Baryshkov | 387fa6a | 2008-08-18 14:38:48 +0100 | [diff] [blame] | 278 | while ((i > 0) && (readl(_IBMR(i2c)) & 0x1) == 0) { |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 279 | unsigned long icr = readl(_ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 280 | |
| 281 | icr &= ~ICR_START; |
| 282 | icr |= ICR_ACKNAK | ICR_STOP | ICR_TB; |
| 283 | |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 284 | writel(icr, _ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 285 | |
| 286 | show_state(i2c); |
| 287 | |
Dmitry Baryshkov | 387fa6a | 2008-08-18 14:38:48 +0100 | [diff] [blame] | 288 | mdelay(1); |
| 289 | i --; |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 290 | } |
| 291 | |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 292 | writel(readl(_ICR(i2c)) & ~(ICR_MA | ICR_START | ICR_STOP), |
| 293 | _ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | static int i2c_pxa_wait_bus_not_busy(struct pxa_i2c *i2c) |
| 297 | { |
| 298 | int timeout = DEF_TIMEOUT; |
| 299 | |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 300 | while (timeout-- && readl(_ISR(i2c)) & (ISR_IBB | ISR_UB)) { |
| 301 | if ((readl(_ISR(i2c)) & ISR_SAD) != 0) |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 302 | timeout += 4; |
| 303 | |
| 304 | msleep(2); |
| 305 | show_state(i2c); |
| 306 | } |
| 307 | |
Roel Kluin | d10db3a | 2009-04-23 16:27:39 +0200 | [diff] [blame] | 308 | if (timeout < 0) |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 309 | show_state(i2c); |
| 310 | |
Roel Kluin | d10db3a | 2009-04-23 16:27:39 +0200 | [diff] [blame] | 311 | return timeout < 0 ? I2C_RETRY : 0; |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | static int i2c_pxa_wait_master(struct pxa_i2c *i2c) |
| 315 | { |
| 316 | unsigned long timeout = jiffies + HZ*4; |
| 317 | |
| 318 | while (time_before(jiffies, timeout)) { |
| 319 | if (i2c_debug > 1) |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 320 | dev_dbg(&i2c->adap.dev, "%s: %ld: ISR=%08x, ICR=%08x, IBMR=%02x\n", |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 321 | __func__, (long)jiffies, readl(_ISR(i2c)), readl(_ICR(i2c)), readl(_IBMR(i2c))); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 322 | |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 323 | if (readl(_ISR(i2c)) & ISR_SAD) { |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 324 | if (i2c_debug > 0) |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 325 | dev_dbg(&i2c->adap.dev, "%s: Slave detected\n", __func__); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 326 | goto out; |
| 327 | } |
| 328 | |
| 329 | /* wait for unit and bus being not busy, and we also do a |
| 330 | * quick check of the i2c lines themselves to ensure they've |
| 331 | * gone high... |
| 332 | */ |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 333 | if ((readl(_ISR(i2c)) & (ISR_UB | ISR_IBB)) == 0 && readl(_IBMR(i2c)) == 3) { |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 334 | if (i2c_debug > 0) |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 335 | dev_dbg(&i2c->adap.dev, "%s: done\n", __func__); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 336 | return 1; |
| 337 | } |
| 338 | |
| 339 | msleep(1); |
| 340 | } |
| 341 | |
| 342 | if (i2c_debug > 0) |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 343 | dev_dbg(&i2c->adap.dev, "%s: did not free\n", __func__); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 344 | out: |
| 345 | return 0; |
| 346 | } |
| 347 | |
| 348 | static int i2c_pxa_set_master(struct pxa_i2c *i2c) |
| 349 | { |
| 350 | if (i2c_debug) |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 351 | dev_dbg(&i2c->adap.dev, "setting to bus master\n"); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 352 | |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 353 | if ((readl(_ISR(i2c)) & (ISR_UB | ISR_IBB)) != 0) { |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 354 | dev_dbg(&i2c->adap.dev, "%s: unit is busy\n", __func__); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 355 | if (!i2c_pxa_wait_master(i2c)) { |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 356 | dev_dbg(&i2c->adap.dev, "%s: error: unit busy\n", __func__); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 357 | return I2C_RETRY; |
| 358 | } |
| 359 | } |
| 360 | |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 361 | writel(readl(_ICR(i2c)) | ICR_SCLE, _ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 362 | return 0; |
| 363 | } |
| 364 | |
| 365 | #ifdef CONFIG_I2C_PXA_SLAVE |
| 366 | static int i2c_pxa_wait_slave(struct pxa_i2c *i2c) |
| 367 | { |
| 368 | unsigned long timeout = jiffies + HZ*1; |
| 369 | |
| 370 | /* wait for stop */ |
| 371 | |
| 372 | show_state(i2c); |
| 373 | |
| 374 | while (time_before(jiffies, timeout)) { |
| 375 | if (i2c_debug > 1) |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 376 | dev_dbg(&i2c->adap.dev, "%s: %ld: ISR=%08x, ICR=%08x, IBMR=%02x\n", |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 377 | __func__, (long)jiffies, readl(_ISR(i2c)), readl(_ICR(i2c)), readl(_IBMR(i2c))); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 378 | |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 379 | if ((readl(_ISR(i2c)) & (ISR_UB|ISR_IBB)) == 0 || |
| 380 | (readl(_ISR(i2c)) & ISR_SAD) != 0 || |
| 381 | (readl(_ICR(i2c)) & ICR_SCLE) == 0) { |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 382 | if (i2c_debug > 1) |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 383 | dev_dbg(&i2c->adap.dev, "%s: done\n", __func__); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 384 | return 1; |
| 385 | } |
| 386 | |
| 387 | msleep(1); |
| 388 | } |
| 389 | |
| 390 | if (i2c_debug > 0) |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 391 | dev_dbg(&i2c->adap.dev, "%s: did not free\n", __func__); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 392 | return 0; |
| 393 | } |
| 394 | |
| 395 | /* |
| 396 | * clear the hold on the bus, and take of anything else |
| 397 | * that has been configured |
| 398 | */ |
| 399 | static void i2c_pxa_set_slave(struct pxa_i2c *i2c, int errcode) |
| 400 | { |
| 401 | show_state(i2c); |
| 402 | |
| 403 | if (errcode < 0) { |
| 404 | udelay(100); /* simple delay */ |
| 405 | } else { |
| 406 | /* we need to wait for the stop condition to end */ |
| 407 | |
| 408 | /* if we where in stop, then clear... */ |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 409 | if (readl(_ICR(i2c)) & ICR_STOP) { |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 410 | udelay(100); |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 411 | writel(readl(_ICR(i2c)) & ~ICR_STOP, _ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 412 | } |
| 413 | |
| 414 | if (!i2c_pxa_wait_slave(i2c)) { |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 415 | dev_err(&i2c->adap.dev, "%s: wait timedout\n", |
| 416 | __func__); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 417 | return; |
| 418 | } |
| 419 | } |
| 420 | |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 421 | writel(readl(_ICR(i2c)) & ~(ICR_STOP|ICR_ACKNAK|ICR_MA), _ICR(i2c)); |
| 422 | writel(readl(_ICR(i2c)) & ~ICR_SCLE, _ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 423 | |
| 424 | if (i2c_debug) { |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 425 | dev_dbg(&i2c->adap.dev, "ICR now %08x, ISR %08x\n", readl(_ICR(i2c)), readl(_ISR(i2c))); |
| 426 | decode_ICR(readl(_ICR(i2c))); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 427 | } |
| 428 | } |
| 429 | #else |
| 430 | #define i2c_pxa_set_slave(i2c, err) do { } while (0) |
| 431 | #endif |
| 432 | |
| 433 | static void i2c_pxa_reset(struct pxa_i2c *i2c) |
| 434 | { |
| 435 | pr_debug("Resetting I2C Controller Unit\n"); |
| 436 | |
| 437 | /* abort any transfer currently under way */ |
| 438 | i2c_pxa_abort(i2c); |
| 439 | |
| 440 | /* reset according to 9.8 */ |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 441 | writel(ICR_UR, _ICR(i2c)); |
| 442 | writel(I2C_ISR_INIT, _ISR(i2c)); |
| 443 | writel(readl(_ICR(i2c)) & ~ICR_UR, _ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 444 | |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 445 | writel(i2c->slave_addr, _ISAR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 446 | |
| 447 | /* set control register values */ |
Jonathan Cameron | c46c948 | 2008-10-03 15:07:36 +0100 | [diff] [blame] | 448 | writel(I2C_ICR_INIT | (i2c->fast_mode ? ICR_FM : 0), _ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 449 | |
| 450 | #ifdef CONFIG_I2C_PXA_SLAVE |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 451 | dev_info(&i2c->adap.dev, "Enabling slave mode\n"); |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 452 | writel(readl(_ICR(i2c)) | ICR_SADIE | ICR_ALDIE | ICR_SSDIE, _ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 453 | #endif |
| 454 | |
| 455 | i2c_pxa_set_slave(i2c, 0); |
| 456 | |
| 457 | /* enable unit */ |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 458 | writel(readl(_ICR(i2c)) | ICR_IUE, _ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 459 | udelay(100); |
| 460 | } |
| 461 | |
| 462 | |
| 463 | #ifdef CONFIG_I2C_PXA_SLAVE |
| 464 | /* |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 465 | * PXA I2C Slave mode |
| 466 | */ |
| 467 | |
| 468 | static void i2c_pxa_slave_txempty(struct pxa_i2c *i2c, u32 isr) |
| 469 | { |
| 470 | if (isr & ISR_BED) { |
| 471 | /* what should we do here? */ |
| 472 | } else { |
Russell King | 84b5abe | 2006-10-28 22:30:17 +0100 | [diff] [blame] | 473 | int ret = 0; |
| 474 | |
| 475 | if (i2c->slave != NULL) |
| 476 | ret = i2c->slave->read(i2c->slave->data); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 477 | |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 478 | writel(ret, _IDBR(i2c)); |
| 479 | writel(readl(_ICR(i2c)) | ICR_TB, _ICR(i2c)); /* allow next byte */ |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 480 | } |
| 481 | } |
| 482 | |
| 483 | static void i2c_pxa_slave_rxfull(struct pxa_i2c *i2c, u32 isr) |
| 484 | { |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 485 | unsigned int byte = readl(_IDBR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 486 | |
| 487 | if (i2c->slave != NULL) |
| 488 | i2c->slave->write(i2c->slave->data, byte); |
| 489 | |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 490 | writel(readl(_ICR(i2c)) | ICR_TB, _ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 491 | } |
| 492 | |
| 493 | static void i2c_pxa_slave_start(struct pxa_i2c *i2c, u32 isr) |
| 494 | { |
| 495 | int timeout; |
| 496 | |
| 497 | if (i2c_debug > 0) |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 498 | dev_dbg(&i2c->adap.dev, "SAD, mode is slave-%cx\n", |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 499 | (isr & ISR_RWM) ? 'r' : 't'); |
| 500 | |
| 501 | if (i2c->slave != NULL) |
| 502 | i2c->slave->event(i2c->slave->data, |
| 503 | (isr & ISR_RWM) ? I2C_SLAVE_EVENT_START_READ : I2C_SLAVE_EVENT_START_WRITE); |
| 504 | |
| 505 | /* |
| 506 | * slave could interrupt in the middle of us generating a |
| 507 | * start condition... if this happens, we'd better back off |
| 508 | * and stop holding the poor thing up |
| 509 | */ |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 510 | writel(readl(_ICR(i2c)) & ~(ICR_START|ICR_STOP), _ICR(i2c)); |
| 511 | writel(readl(_ICR(i2c)) | ICR_TB, _ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 512 | |
| 513 | timeout = 0x10000; |
| 514 | |
| 515 | while (1) { |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 516 | if ((readl(_IBMR(i2c)) & 2) == 2) |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 517 | break; |
| 518 | |
| 519 | timeout--; |
| 520 | |
| 521 | if (timeout <= 0) { |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 522 | dev_err(&i2c->adap.dev, "timeout waiting for SCL high\n"); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 523 | break; |
| 524 | } |
| 525 | } |
| 526 | |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 527 | writel(readl(_ICR(i2c)) & ~ICR_SCLE, _ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 528 | } |
| 529 | |
| 530 | static void i2c_pxa_slave_stop(struct pxa_i2c *i2c) |
| 531 | { |
| 532 | if (i2c_debug > 2) |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 533 | dev_dbg(&i2c->adap.dev, "ISR: SSD (Slave Stop)\n"); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 534 | |
| 535 | if (i2c->slave != NULL) |
| 536 | i2c->slave->event(i2c->slave->data, I2C_SLAVE_EVENT_STOP); |
| 537 | |
| 538 | if (i2c_debug > 2) |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 539 | dev_dbg(&i2c->adap.dev, "ISR: SSD (Slave Stop) acked\n"); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 540 | |
| 541 | /* |
| 542 | * If we have a master-mode message waiting, |
| 543 | * kick it off now that the slave has completed. |
| 544 | */ |
| 545 | if (i2c->msg) |
| 546 | i2c_pxa_master_complete(i2c, I2C_RETRY); |
| 547 | } |
| 548 | #else |
| 549 | static void i2c_pxa_slave_txempty(struct pxa_i2c *i2c, u32 isr) |
| 550 | { |
| 551 | if (isr & ISR_BED) { |
| 552 | /* what should we do here? */ |
| 553 | } else { |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 554 | writel(0, _IDBR(i2c)); |
| 555 | writel(readl(_ICR(i2c)) | ICR_TB, _ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 556 | } |
| 557 | } |
| 558 | |
| 559 | static void i2c_pxa_slave_rxfull(struct pxa_i2c *i2c, u32 isr) |
| 560 | { |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 561 | writel(readl(_ICR(i2c)) | ICR_TB | ICR_ACKNAK, _ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 562 | } |
| 563 | |
| 564 | static void i2c_pxa_slave_start(struct pxa_i2c *i2c, u32 isr) |
| 565 | { |
| 566 | int timeout; |
| 567 | |
| 568 | /* |
| 569 | * slave could interrupt in the middle of us generating a |
| 570 | * start condition... if this happens, we'd better back off |
| 571 | * and stop holding the poor thing up |
| 572 | */ |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 573 | writel(readl(_ICR(i2c)) & ~(ICR_START|ICR_STOP), _ICR(i2c)); |
| 574 | writel(readl(_ICR(i2c)) | ICR_TB | ICR_ACKNAK, _ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 575 | |
| 576 | timeout = 0x10000; |
| 577 | |
| 578 | while (1) { |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 579 | if ((readl(_IBMR(i2c)) & 2) == 2) |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 580 | break; |
| 581 | |
| 582 | timeout--; |
| 583 | |
| 584 | if (timeout <= 0) { |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 585 | dev_err(&i2c->adap.dev, "timeout waiting for SCL high\n"); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 586 | break; |
| 587 | } |
| 588 | } |
| 589 | |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 590 | writel(readl(_ICR(i2c)) & ~ICR_SCLE, _ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 591 | } |
| 592 | |
| 593 | static void i2c_pxa_slave_stop(struct pxa_i2c *i2c) |
| 594 | { |
| 595 | if (i2c->msg) |
| 596 | i2c_pxa_master_complete(i2c, I2C_RETRY); |
| 597 | } |
| 598 | #endif |
| 599 | |
| 600 | /* |
| 601 | * PXA I2C Master mode |
| 602 | */ |
| 603 | |
| 604 | static inline unsigned int i2c_pxa_addr_byte(struct i2c_msg *msg) |
| 605 | { |
| 606 | unsigned int addr = (msg->addr & 0x7f) << 1; |
| 607 | |
| 608 | if (msg->flags & I2C_M_RD) |
| 609 | addr |= 1; |
| 610 | |
| 611 | return addr; |
| 612 | } |
| 613 | |
| 614 | static inline void i2c_pxa_start_message(struct pxa_i2c *i2c) |
| 615 | { |
| 616 | u32 icr; |
| 617 | |
| 618 | /* |
| 619 | * Step 1: target slave address into IDBR |
| 620 | */ |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 621 | writel(i2c_pxa_addr_byte(i2c->msg), _IDBR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 622 | |
| 623 | /* |
| 624 | * Step 2: initiate the write. |
| 625 | */ |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 626 | icr = readl(_ICR(i2c)) & ~(ICR_STOP | ICR_ALDIE); |
| 627 | writel(icr | ICR_START | ICR_TB, _ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 628 | } |
| 629 | |
Jean Delvare | 7d05481 | 2007-05-01 23:26:33 +0200 | [diff] [blame] | 630 | static inline void i2c_pxa_stop_message(struct pxa_i2c *i2c) |
| 631 | { |
| 632 | u32 icr; |
| 633 | |
| 634 | /* |
| 635 | * Clear the STOP and ACK flags |
| 636 | */ |
| 637 | icr = readl(_ICR(i2c)); |
| 638 | icr &= ~(ICR_STOP | ICR_ACKNAK); |
Russell King | 0cfe61e | 2007-05-10 03:15:32 -0700 | [diff] [blame] | 639 | writel(icr, _ICR(i2c)); |
Jean Delvare | 7d05481 | 2007-05-01 23:26:33 +0200 | [diff] [blame] | 640 | } |
| 641 | |
Mike Rapoport | b7a3670 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 642 | static int i2c_pxa_pio_set_master(struct pxa_i2c *i2c) |
| 643 | { |
| 644 | /* make timeout the same as for interrupt based functions */ |
| 645 | long timeout = 2 * DEF_TIMEOUT; |
| 646 | |
| 647 | /* |
| 648 | * Wait for the bus to become free. |
| 649 | */ |
| 650 | while (timeout-- && readl(_ISR(i2c)) & (ISR_IBB | ISR_UB)) { |
| 651 | udelay(1000); |
| 652 | show_state(i2c); |
| 653 | } |
| 654 | |
Roel Kluin | d10db3a | 2009-04-23 16:27:39 +0200 | [diff] [blame] | 655 | if (timeout < 0) { |
Mike Rapoport | b7a3670 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 656 | show_state(i2c); |
| 657 | dev_err(&i2c->adap.dev, |
| 658 | "i2c_pxa: timeout waiting for bus free\n"); |
| 659 | return I2C_RETRY; |
| 660 | } |
| 661 | |
| 662 | /* |
| 663 | * Set master mode. |
| 664 | */ |
| 665 | writel(readl(_ICR(i2c)) | ICR_SCLE, _ICR(i2c)); |
| 666 | |
| 667 | return 0; |
| 668 | } |
| 669 | |
| 670 | static int i2c_pxa_do_pio_xfer(struct pxa_i2c *i2c, |
| 671 | struct i2c_msg *msg, int num) |
| 672 | { |
| 673 | unsigned long timeout = 500000; /* 5 seconds */ |
| 674 | int ret = 0; |
| 675 | |
| 676 | ret = i2c_pxa_pio_set_master(i2c); |
| 677 | if (ret) |
| 678 | goto out; |
| 679 | |
| 680 | i2c->msg = msg; |
| 681 | i2c->msg_num = num; |
| 682 | i2c->msg_idx = 0; |
| 683 | i2c->msg_ptr = 0; |
| 684 | i2c->irqlogidx = 0; |
| 685 | |
| 686 | i2c_pxa_start_message(i2c); |
| 687 | |
Roel Kluin | a746b57 | 2009-02-24 19:19:48 +0100 | [diff] [blame] | 688 | while (i2c->msg_num > 0 && --timeout) { |
Mike Rapoport | b7a3670 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 689 | i2c_pxa_handler(0, i2c); |
| 690 | udelay(10); |
| 691 | } |
| 692 | |
| 693 | i2c_pxa_stop_message(i2c); |
| 694 | |
| 695 | /* |
| 696 | * We place the return code in i2c->msg_idx. |
| 697 | */ |
| 698 | ret = i2c->msg_idx; |
| 699 | |
| 700 | out: |
| 701 | if (timeout == 0) |
| 702 | i2c_pxa_scream_blue_murder(i2c, "timeout"); |
| 703 | |
| 704 | return ret; |
| 705 | } |
| 706 | |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 707 | /* |
Jean Delvare | 3fb9a65 | 2006-01-18 23:17:01 +0100 | [diff] [blame] | 708 | * We are protected by the adapter bus mutex. |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 709 | */ |
| 710 | static int i2c_pxa_do_xfer(struct pxa_i2c *i2c, struct i2c_msg *msg, int num) |
| 711 | { |
| 712 | long timeout; |
| 713 | int ret; |
| 714 | |
| 715 | /* |
| 716 | * Wait for the bus to become free. |
| 717 | */ |
| 718 | ret = i2c_pxa_wait_bus_not_busy(i2c); |
| 719 | if (ret) { |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 720 | dev_err(&i2c->adap.dev, "i2c_pxa: timeout waiting for bus free\n"); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 721 | goto out; |
| 722 | } |
| 723 | |
| 724 | /* |
| 725 | * Set master mode. |
| 726 | */ |
| 727 | ret = i2c_pxa_set_master(i2c); |
| 728 | if (ret) { |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 729 | dev_err(&i2c->adap.dev, "i2c_pxa_set_master: error %d\n", ret); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 730 | goto out; |
| 731 | } |
| 732 | |
| 733 | spin_lock_irq(&i2c->lock); |
| 734 | |
| 735 | i2c->msg = msg; |
| 736 | i2c->msg_num = num; |
| 737 | i2c->msg_idx = 0; |
| 738 | i2c->msg_ptr = 0; |
| 739 | i2c->irqlogidx = 0; |
| 740 | |
| 741 | i2c_pxa_start_message(i2c); |
| 742 | |
| 743 | spin_unlock_irq(&i2c->lock); |
| 744 | |
| 745 | /* |
| 746 | * The rest of the processing occurs in the interrupt handler. |
| 747 | */ |
| 748 | timeout = wait_event_timeout(i2c->wait, i2c->msg_num == 0, HZ * 5); |
Jean Delvare | 7d05481 | 2007-05-01 23:26:33 +0200 | [diff] [blame] | 749 | i2c_pxa_stop_message(i2c); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 750 | |
| 751 | /* |
| 752 | * We place the return code in i2c->msg_idx. |
| 753 | */ |
| 754 | ret = i2c->msg_idx; |
| 755 | |
| 756 | if (timeout == 0) |
| 757 | i2c_pxa_scream_blue_murder(i2c, "timeout"); |
| 758 | |
| 759 | out: |
| 760 | return ret; |
| 761 | } |
| 762 | |
Mike Rapoport | b7a3670 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 763 | static int i2c_pxa_pio_xfer(struct i2c_adapter *adap, |
| 764 | struct i2c_msg msgs[], int num) |
| 765 | { |
| 766 | struct pxa_i2c *i2c = adap->algo_data; |
| 767 | int ret, i; |
| 768 | |
| 769 | /* If the I2C controller is disabled we need to reset it |
| 770 | (probably due to a suspend/resume destroying state). We do |
| 771 | this here as we can then avoid worrying about resuming the |
| 772 | controller before its users. */ |
| 773 | if (!(readl(_ICR(i2c)) & ICR_IUE)) |
| 774 | i2c_pxa_reset(i2c); |
| 775 | |
| 776 | for (i = adap->retries; i >= 0; i--) { |
| 777 | ret = i2c_pxa_do_pio_xfer(i2c, msgs, num); |
| 778 | if (ret != I2C_RETRY) |
| 779 | goto out; |
| 780 | |
| 781 | if (i2c_debug) |
| 782 | dev_dbg(&adap->dev, "Retrying transmission\n"); |
| 783 | udelay(100); |
| 784 | } |
| 785 | i2c_pxa_scream_blue_murder(i2c, "exhausted retries"); |
| 786 | ret = -EREMOTEIO; |
| 787 | out: |
| 788 | i2c_pxa_set_slave(i2c, ret); |
| 789 | return ret; |
| 790 | } |
| 791 | |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 792 | /* |
| 793 | * i2c_pxa_master_complete - complete the message and wake up. |
| 794 | */ |
| 795 | static void i2c_pxa_master_complete(struct pxa_i2c *i2c, int ret) |
| 796 | { |
| 797 | i2c->msg_ptr = 0; |
| 798 | i2c->msg = NULL; |
| 799 | i2c->msg_idx ++; |
| 800 | i2c->msg_num = 0; |
| 801 | if (ret) |
| 802 | i2c->msg_idx = ret; |
Mike Rapoport | b7a3670 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 803 | if (!i2c->use_pio) |
| 804 | wake_up(&i2c->wait); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 805 | } |
| 806 | |
| 807 | static void i2c_pxa_irq_txempty(struct pxa_i2c *i2c, u32 isr) |
| 808 | { |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 809 | u32 icr = readl(_ICR(i2c)) & ~(ICR_START|ICR_STOP|ICR_ACKNAK|ICR_TB); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 810 | |
| 811 | again: |
| 812 | /* |
| 813 | * If ISR_ALD is set, we lost arbitration. |
| 814 | */ |
| 815 | if (isr & ISR_ALD) { |
| 816 | /* |
| 817 | * Do we need to do anything here? The PXA docs |
| 818 | * are vague about what happens. |
| 819 | */ |
| 820 | i2c_pxa_scream_blue_murder(i2c, "ALD set"); |
| 821 | |
| 822 | /* |
| 823 | * We ignore this error. We seem to see spurious ALDs |
| 824 | * for seemingly no reason. If we handle them as I think |
| 825 | * they should, we end up causing an I2C error, which |
| 826 | * is painful for some systems. |
| 827 | */ |
| 828 | return; /* ignore */ |
| 829 | } |
| 830 | |
| 831 | if (isr & ISR_BED) { |
| 832 | int ret = BUS_ERROR; |
| 833 | |
| 834 | /* |
| 835 | * I2C bus error - either the device NAK'd us, or |
| 836 | * something more serious happened. If we were NAK'd |
| 837 | * on the initial address phase, we can retry. |
| 838 | */ |
| 839 | if (isr & ISR_ACKNAK) { |
| 840 | if (i2c->msg_ptr == 0 && i2c->msg_idx == 0) |
| 841 | ret = I2C_RETRY; |
| 842 | else |
| 843 | ret = XFER_NAKED; |
| 844 | } |
| 845 | i2c_pxa_master_complete(i2c, ret); |
| 846 | } else if (isr & ISR_RWM) { |
| 847 | /* |
| 848 | * Read mode. We have just sent the address byte, and |
| 849 | * now we must initiate the transfer. |
| 850 | */ |
| 851 | if (i2c->msg_ptr == i2c->msg->len - 1 && |
| 852 | i2c->msg_idx == i2c->msg_num - 1) |
| 853 | icr |= ICR_STOP | ICR_ACKNAK; |
| 854 | |
| 855 | icr |= ICR_ALDIE | ICR_TB; |
| 856 | } else if (i2c->msg_ptr < i2c->msg->len) { |
| 857 | /* |
| 858 | * Write mode. Write the next data byte. |
| 859 | */ |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 860 | writel(i2c->msg->buf[i2c->msg_ptr++], _IDBR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 861 | |
| 862 | icr |= ICR_ALDIE | ICR_TB; |
| 863 | |
| 864 | /* |
| 865 | * If this is the last byte of the last message, send |
| 866 | * a STOP. |
| 867 | */ |
| 868 | if (i2c->msg_ptr == i2c->msg->len && |
| 869 | i2c->msg_idx == i2c->msg_num - 1) |
| 870 | icr |= ICR_STOP; |
| 871 | } else if (i2c->msg_idx < i2c->msg_num - 1) { |
| 872 | /* |
| 873 | * Next segment of the message. |
| 874 | */ |
| 875 | i2c->msg_ptr = 0; |
| 876 | i2c->msg_idx ++; |
| 877 | i2c->msg++; |
| 878 | |
| 879 | /* |
| 880 | * If we aren't doing a repeated start and address, |
| 881 | * go back and try to send the next byte. Note that |
| 882 | * we do not support switching the R/W direction here. |
| 883 | */ |
| 884 | if (i2c->msg->flags & I2C_M_NOSTART) |
| 885 | goto again; |
| 886 | |
| 887 | /* |
| 888 | * Write the next address. |
| 889 | */ |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 890 | writel(i2c_pxa_addr_byte(i2c->msg), _IDBR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 891 | |
| 892 | /* |
| 893 | * And trigger a repeated start, and send the byte. |
| 894 | */ |
| 895 | icr &= ~ICR_ALDIE; |
| 896 | icr |= ICR_START | ICR_TB; |
| 897 | } else { |
| 898 | if (i2c->msg->len == 0) { |
| 899 | /* |
| 900 | * Device probes have a message length of zero |
| 901 | * and need the bus to be reset before it can |
| 902 | * be used again. |
| 903 | */ |
| 904 | i2c_pxa_reset(i2c); |
| 905 | } |
| 906 | i2c_pxa_master_complete(i2c, 0); |
| 907 | } |
| 908 | |
| 909 | i2c->icrlog[i2c->irqlogidx-1] = icr; |
| 910 | |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 911 | writel(icr, _ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 912 | show_state(i2c); |
| 913 | } |
| 914 | |
| 915 | static void i2c_pxa_irq_rxfull(struct pxa_i2c *i2c, u32 isr) |
| 916 | { |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 917 | u32 icr = readl(_ICR(i2c)) & ~(ICR_START|ICR_STOP|ICR_ACKNAK|ICR_TB); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 918 | |
| 919 | /* |
| 920 | * Read the byte. |
| 921 | */ |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 922 | i2c->msg->buf[i2c->msg_ptr++] = readl(_IDBR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 923 | |
| 924 | if (i2c->msg_ptr < i2c->msg->len) { |
| 925 | /* |
| 926 | * If this is the last byte of the last |
| 927 | * message, send a STOP. |
| 928 | */ |
| 929 | if (i2c->msg_ptr == i2c->msg->len - 1) |
| 930 | icr |= ICR_STOP | ICR_ACKNAK; |
| 931 | |
| 932 | icr |= ICR_ALDIE | ICR_TB; |
| 933 | } else { |
| 934 | i2c_pxa_master_complete(i2c, 0); |
| 935 | } |
| 936 | |
| 937 | i2c->icrlog[i2c->irqlogidx-1] = icr; |
| 938 | |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 939 | writel(icr, _ICR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 940 | } |
| 941 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 942 | static irqreturn_t i2c_pxa_handler(int this_irq, void *dev_id) |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 943 | { |
| 944 | struct pxa_i2c *i2c = dev_id; |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 945 | u32 isr = readl(_ISR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 946 | |
| 947 | if (i2c_debug > 2 && 0) { |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 948 | dev_dbg(&i2c->adap.dev, "%s: ISR=%08x, ICR=%08x, IBMR=%02x\n", |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 949 | __func__, isr, readl(_ICR(i2c)), readl(_IBMR(i2c))); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 950 | decode_ISR(isr); |
| 951 | } |
| 952 | |
Tobias Klauser | 7e3d7db | 2006-01-09 23:19:51 +0100 | [diff] [blame] | 953 | if (i2c->irqlogidx < ARRAY_SIZE(i2c->isrlog)) |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 954 | i2c->isrlog[i2c->irqlogidx++] = isr; |
| 955 | |
| 956 | show_state(i2c); |
| 957 | |
| 958 | /* |
| 959 | * Always clear all pending IRQs. |
| 960 | */ |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 961 | writel(isr & (ISR_SSD|ISR_ALD|ISR_ITE|ISR_IRF|ISR_SAD|ISR_BED), _ISR(i2c)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 962 | |
| 963 | if (isr & ISR_SAD) |
| 964 | i2c_pxa_slave_start(i2c, isr); |
| 965 | if (isr & ISR_SSD) |
| 966 | i2c_pxa_slave_stop(i2c); |
| 967 | |
| 968 | if (i2c_pxa_is_slavemode(i2c)) { |
| 969 | if (isr & ISR_ITE) |
| 970 | i2c_pxa_slave_txempty(i2c, isr); |
| 971 | if (isr & ISR_IRF) |
| 972 | i2c_pxa_slave_rxfull(i2c, isr); |
| 973 | } else if (i2c->msg) { |
| 974 | if (isr & ISR_ITE) |
| 975 | i2c_pxa_irq_txempty(i2c, isr); |
| 976 | if (isr & ISR_IRF) |
| 977 | i2c_pxa_irq_rxfull(i2c, isr); |
| 978 | } else { |
| 979 | i2c_pxa_scream_blue_murder(i2c, "spurious irq"); |
| 980 | } |
| 981 | |
| 982 | return IRQ_HANDLED; |
| 983 | } |
| 984 | |
| 985 | |
| 986 | static int i2c_pxa_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num) |
| 987 | { |
| 988 | struct pxa_i2c *i2c = adap->algo_data; |
| 989 | int ret, i; |
| 990 | |
| 991 | for (i = adap->retries; i >= 0; i--) { |
| 992 | ret = i2c_pxa_do_xfer(i2c, msgs, num); |
| 993 | if (ret != I2C_RETRY) |
| 994 | goto out; |
| 995 | |
| 996 | if (i2c_debug) |
Russell King | 6fd60fa | 2005-09-08 21:04:58 +0100 | [diff] [blame] | 997 | dev_dbg(&adap->dev, "Retrying transmission\n"); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 998 | udelay(100); |
| 999 | } |
| 1000 | i2c_pxa_scream_blue_murder(i2c, "exhausted retries"); |
| 1001 | ret = -EREMOTEIO; |
| 1002 | out: |
| 1003 | i2c_pxa_set_slave(i2c, ret); |
| 1004 | return ret; |
| 1005 | } |
| 1006 | |
Russell King | da16e32 | 2005-09-14 22:54:45 +0100 | [diff] [blame] | 1007 | static u32 i2c_pxa_functionality(struct i2c_adapter *adap) |
| 1008 | { |
| 1009 | return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL; |
| 1010 | } |
| 1011 | |
Jean Delvare | 8f9082c | 2006-09-03 22:39:46 +0200 | [diff] [blame] | 1012 | static const struct i2c_algorithm i2c_pxa_algorithm = { |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1013 | .master_xfer = i2c_pxa_xfer, |
Russell King | da16e32 | 2005-09-14 22:54:45 +0100 | [diff] [blame] | 1014 | .functionality = i2c_pxa_functionality, |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1015 | }; |
| 1016 | |
Mike Rapoport | b7a3670 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 1017 | static const struct i2c_algorithm i2c_pxa_pio_algorithm = { |
| 1018 | .master_xfer = i2c_pxa_pio_xfer, |
| 1019 | .functionality = i2c_pxa_functionality, |
| 1020 | }; |
| 1021 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1022 | static int i2c_pxa_probe(struct platform_device *dev) |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1023 | { |
Enrico Scholz | 6776f3d | 2007-05-21 12:29:40 +0100 | [diff] [blame] | 1024 | struct pxa_i2c *i2c; |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 1025 | struct resource *res; |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1026 | struct i2c_pxa_platform_data *plat = dev->dev.platform_data; |
Marc Kleine-Budde | 21e2ecf | 2010-06-15 10:56:45 +0200 | [diff] [blame] | 1027 | const struct platform_device_id *id = platform_get_device_id(dev); |
Sebastian Andrzej Siewior | d6668c7 | 2011-02-23 12:38:15 +0100 | [diff] [blame] | 1028 | enum pxa_i2c_types i2c_type = id->driver_data; |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1029 | int ret; |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 1030 | int irq; |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1031 | |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 1032 | res = platform_get_resource(dev, IORESOURCE_MEM, 0); |
| 1033 | irq = platform_get_irq(dev, 0); |
| 1034 | if (res == NULL || irq < 0) |
| 1035 | return -ENODEV; |
| 1036 | |
Linus Walleij | c6ffdde | 2009-06-14 00:20:36 +0200 | [diff] [blame] | 1037 | if (!request_mem_region(res->start, resource_size(res), res->name)) |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 1038 | return -ENOMEM; |
| 1039 | |
Enrico Scholz | 6776f3d | 2007-05-21 12:29:40 +0100 | [diff] [blame] | 1040 | i2c = kzalloc(sizeof(struct pxa_i2c), GFP_KERNEL); |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 1041 | if (!i2c) { |
| 1042 | ret = -ENOMEM; |
| 1043 | goto emalloc; |
| 1044 | } |
| 1045 | |
Enrico Scholz | 6776f3d | 2007-05-21 12:29:40 +0100 | [diff] [blame] | 1046 | i2c->adap.owner = THIS_MODULE; |
Enrico Scholz | 6776f3d | 2007-05-21 12:29:40 +0100 | [diff] [blame] | 1047 | i2c->adap.retries = 5; |
| 1048 | |
| 1049 | spin_lock_init(&i2c->lock); |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 1050 | init_waitqueue_head(&i2c->wait); |
Enrico Scholz | 6776f3d | 2007-05-21 12:29:40 +0100 | [diff] [blame] | 1051 | |
Wolfram Sang | a92b36e | 2008-02-24 20:03:42 +0100 | [diff] [blame] | 1052 | /* |
| 1053 | * If "dev->id" is negative we consider it as zero. |
| 1054 | * The reason to do so is to avoid sysfs names that only make |
| 1055 | * sense when there are multiple adapters. |
| 1056 | */ |
| 1057 | i2c->adap.nr = dev->id != -1 ? dev->id : 0; |
| 1058 | snprintf(i2c->adap.name, sizeof(i2c->adap.name), "pxa_i2c-i2c.%u", |
| 1059 | i2c->adap.nr); |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 1060 | |
Russell King | e0d8b13 | 2008-11-11 17:52:32 +0000 | [diff] [blame] | 1061 | i2c->clk = clk_get(&dev->dev, NULL); |
Russell King | c3cef3f | 2007-08-20 10:19:10 +0100 | [diff] [blame] | 1062 | if (IS_ERR(i2c->clk)) { |
| 1063 | ret = PTR_ERR(i2c->clk); |
| 1064 | goto eclk; |
| 1065 | } |
| 1066 | |
Linus Walleij | c6ffdde | 2009-06-14 00:20:36 +0200 | [diff] [blame] | 1067 | i2c->reg_base = ioremap(res->start, resource_size(res)); |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 1068 | if (!i2c->reg_base) { |
| 1069 | ret = -EIO; |
| 1070 | goto eremap; |
| 1071 | } |
Sebastian Andrzej Siewior | d6668c7 | 2011-02-23 12:38:15 +0100 | [diff] [blame] | 1072 | |
| 1073 | i2c->reg_ibmr = i2c->reg_base + pxa_reg_layout[i2c_type].ibmr; |
| 1074 | i2c->reg_idbr = i2c->reg_base + pxa_reg_layout[i2c_type].idbr; |
| 1075 | i2c->reg_icr = i2c->reg_base + pxa_reg_layout[i2c_type].icr; |
| 1076 | i2c->reg_isr = i2c->reg_base + pxa_reg_layout[i2c_type].isr; |
| 1077 | i2c->reg_isar = i2c->reg_base + pxa_reg_layout[i2c_type].isar; |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 1078 | |
| 1079 | i2c->iobase = res->start; |
Linus Walleij | c6ffdde | 2009-06-14 00:20:36 +0200 | [diff] [blame] | 1080 | i2c->iosize = resource_size(res); |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 1081 | |
| 1082 | i2c->irq = irq; |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1083 | |
| 1084 | i2c->slave_addr = I2C_PXA_SLAVE_ADDR; |
| 1085 | |
| 1086 | #ifdef CONFIG_I2C_PXA_SLAVE |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1087 | if (plat) { |
| 1088 | i2c->slave_addr = plat->slave_addr; |
Russell King | beea494 | 2006-11-07 21:03:20 +0000 | [diff] [blame] | 1089 | i2c->slave = plat->slave; |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1090 | } |
| 1091 | #endif |
| 1092 | |
Russell King | c3cef3f | 2007-08-20 10:19:10 +0100 | [diff] [blame] | 1093 | clk_enable(i2c->clk); |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 1094 | |
Mike Rapoport | b7a3670 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 1095 | if (plat) { |
| 1096 | i2c->adap.class = plat->class; |
| 1097 | i2c->use_pio = plat->use_pio; |
Jonathan Cameron | c46c948 | 2008-10-03 15:07:36 +0100 | [diff] [blame] | 1098 | i2c->fast_mode = plat->fast_mode; |
Mike Rapoport | b7a3670 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 1099 | } |
| 1100 | |
| 1101 | if (i2c->use_pio) { |
| 1102 | i2c->adap.algo = &i2c_pxa_pio_algorithm; |
| 1103 | } else { |
| 1104 | i2c->adap.algo = &i2c_pxa_algorithm; |
| 1105 | ret = request_irq(irq, i2c_pxa_handler, IRQF_DISABLED, |
| 1106 | i2c->adap.name, i2c); |
| 1107 | if (ret) |
| 1108 | goto ereqirq; |
| 1109 | } |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 1110 | |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1111 | i2c_pxa_reset(i2c); |
| 1112 | |
| 1113 | i2c->adap.algo_data = i2c; |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1114 | i2c->adap.dev.parent = &dev->dev; |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1115 | |
Rodolfo Giometti | 066af98 | 2007-07-12 14:12:30 +0200 | [diff] [blame] | 1116 | ret = i2c_add_numbered_adapter(&i2c->adap); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1117 | if (ret < 0) { |
| 1118 | printk(KERN_INFO "I2C: Failed to add bus\n"); |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 1119 | goto eadapt; |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1120 | } |
| 1121 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1122 | platform_set_drvdata(dev, i2c); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1123 | |
| 1124 | #ifdef CONFIG_I2C_PXA_SLAVE |
| 1125 | printk(KERN_INFO "I2C: %s: PXA I2C adapter, slave address %d\n", |
Jean Delvare | 22e965c | 2009-01-07 14:29:16 +0100 | [diff] [blame] | 1126 | dev_name(&i2c->adap.dev), i2c->slave_addr); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1127 | #else |
| 1128 | printk(KERN_INFO "I2C: %s: PXA I2C adapter\n", |
Jean Delvare | 22e965c | 2009-01-07 14:29:16 +0100 | [diff] [blame] | 1129 | dev_name(&i2c->adap.dev)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1130 | #endif |
| 1131 | return 0; |
| 1132 | |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 1133 | eadapt: |
Mike Rapoport | b7a3670 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 1134 | if (!i2c->use_pio) |
| 1135 | free_irq(irq, i2c); |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 1136 | ereqirq: |
Russell King | c3cef3f | 2007-08-20 10:19:10 +0100 | [diff] [blame] | 1137 | clk_disable(i2c->clk); |
Wolfram Sang | a92b36e | 2008-02-24 20:03:42 +0100 | [diff] [blame] | 1138 | iounmap(i2c->reg_base); |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 1139 | eremap: |
Russell King | c3cef3f | 2007-08-20 10:19:10 +0100 | [diff] [blame] | 1140 | clk_put(i2c->clk); |
| 1141 | eclk: |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 1142 | kfree(i2c); |
| 1143 | emalloc: |
Linus Walleij | c6ffdde | 2009-06-14 00:20:36 +0200 | [diff] [blame] | 1144 | release_mem_region(res->start, resource_size(res)); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1145 | return ret; |
| 1146 | } |
| 1147 | |
Wolfram Sang | a92b36e | 2008-02-24 20:03:42 +0100 | [diff] [blame] | 1148 | static int __exit i2c_pxa_remove(struct platform_device *dev) |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1149 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1150 | struct pxa_i2c *i2c = platform_get_drvdata(dev); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1151 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1152 | platform_set_drvdata(dev, NULL); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1153 | |
| 1154 | i2c_del_adapter(&i2c->adap); |
Mike Rapoport | b7a3670 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 1155 | if (!i2c->use_pio) |
| 1156 | free_irq(i2c->irq, i2c); |
Russell King | c3cef3f | 2007-08-20 10:19:10 +0100 | [diff] [blame] | 1157 | |
| 1158 | clk_disable(i2c->clk); |
| 1159 | clk_put(i2c->clk); |
Russell King | c3cef3f | 2007-08-20 10:19:10 +0100 | [diff] [blame] | 1160 | |
Wolfram Sang | a92b36e | 2008-02-24 20:03:42 +0100 | [diff] [blame] | 1161 | iounmap(i2c->reg_base); |
Guennadi Liakhovetski | a7b4e55 | 2007-02-08 09:43:26 +0100 | [diff] [blame] | 1162 | release_mem_region(i2c->iobase, i2c->iosize); |
| 1163 | kfree(i2c); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1164 | |
| 1165 | return 0; |
| 1166 | } |
| 1167 | |
Russell King | e7d48fa | 2008-08-26 10:40:50 +0100 | [diff] [blame] | 1168 | #ifdef CONFIG_PM |
Magnus Damm | 57f4d4f | 2009-07-08 13:22:39 +0200 | [diff] [blame] | 1169 | static int i2c_pxa_suspend_noirq(struct device *dev) |
Russell King | e7d48fa | 2008-08-26 10:40:50 +0100 | [diff] [blame] | 1170 | { |
Magnus Damm | 57f4d4f | 2009-07-08 13:22:39 +0200 | [diff] [blame] | 1171 | struct platform_device *pdev = to_platform_device(dev); |
| 1172 | struct pxa_i2c *i2c = platform_get_drvdata(pdev); |
| 1173 | |
Russell King | e7d48fa | 2008-08-26 10:40:50 +0100 | [diff] [blame] | 1174 | clk_disable(i2c->clk); |
Magnus Damm | 57f4d4f | 2009-07-08 13:22:39 +0200 | [diff] [blame] | 1175 | |
Russell King | e7d48fa | 2008-08-26 10:40:50 +0100 | [diff] [blame] | 1176 | return 0; |
| 1177 | } |
| 1178 | |
Magnus Damm | 57f4d4f | 2009-07-08 13:22:39 +0200 | [diff] [blame] | 1179 | static int i2c_pxa_resume_noirq(struct device *dev) |
Russell King | e7d48fa | 2008-08-26 10:40:50 +0100 | [diff] [blame] | 1180 | { |
Magnus Damm | 57f4d4f | 2009-07-08 13:22:39 +0200 | [diff] [blame] | 1181 | struct platform_device *pdev = to_platform_device(dev); |
| 1182 | struct pxa_i2c *i2c = platform_get_drvdata(pdev); |
Russell King | e7d48fa | 2008-08-26 10:40:50 +0100 | [diff] [blame] | 1183 | |
| 1184 | clk_enable(i2c->clk); |
| 1185 | i2c_pxa_reset(i2c); |
| 1186 | |
| 1187 | return 0; |
| 1188 | } |
Magnus Damm | 57f4d4f | 2009-07-08 13:22:39 +0200 | [diff] [blame] | 1189 | |
Alexey Dobriyan | 4714521 | 2009-12-14 18:00:08 -0800 | [diff] [blame] | 1190 | static const struct dev_pm_ops i2c_pxa_dev_pm_ops = { |
Magnus Damm | 57f4d4f | 2009-07-08 13:22:39 +0200 | [diff] [blame] | 1191 | .suspend_noirq = i2c_pxa_suspend_noirq, |
| 1192 | .resume_noirq = i2c_pxa_resume_noirq, |
| 1193 | }; |
| 1194 | |
| 1195 | #define I2C_PXA_DEV_PM_OPS (&i2c_pxa_dev_pm_ops) |
Russell King | e7d48fa | 2008-08-26 10:40:50 +0100 | [diff] [blame] | 1196 | #else |
Magnus Damm | 57f4d4f | 2009-07-08 13:22:39 +0200 | [diff] [blame] | 1197 | #define I2C_PXA_DEV_PM_OPS NULL |
Russell King | e7d48fa | 2008-08-26 10:40:50 +0100 | [diff] [blame] | 1198 | #endif |
| 1199 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1200 | static struct platform_driver i2c_pxa_driver = { |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1201 | .probe = i2c_pxa_probe, |
Wolfram Sang | a92b36e | 2008-02-24 20:03:42 +0100 | [diff] [blame] | 1202 | .remove = __exit_p(i2c_pxa_remove), |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1203 | .driver = { |
| 1204 | .name = "pxa2xx-i2c", |
Wolfram Sang | a92b36e | 2008-02-24 20:03:42 +0100 | [diff] [blame] | 1205 | .owner = THIS_MODULE, |
Magnus Damm | 57f4d4f | 2009-07-08 13:22:39 +0200 | [diff] [blame] | 1206 | .pm = I2C_PXA_DEV_PM_OPS, |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1207 | }, |
Eric Miao | f23d491 | 2009-04-13 14:43:25 +0800 | [diff] [blame] | 1208 | .id_table = i2c_pxa_id_table, |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1209 | }; |
| 1210 | |
| 1211 | static int __init i2c_adap_pxa_init(void) |
| 1212 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1213 | return platform_driver_register(&i2c_pxa_driver); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1214 | } |
| 1215 | |
Wolfram Sang | a92b36e | 2008-02-24 20:03:42 +0100 | [diff] [blame] | 1216 | static void __exit i2c_adap_pxa_exit(void) |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1217 | { |
Holger Schurig | d6a7b5f | 2008-02-11 16:51:41 +0100 | [diff] [blame] | 1218 | platform_driver_unregister(&i2c_pxa_driver); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1219 | } |
| 1220 | |
Richard Purdie | ece5f7b | 2006-01-12 16:30:23 +0000 | [diff] [blame] | 1221 | MODULE_LICENSE("GPL"); |
Kay Sievers | add8eda | 2008-04-22 22:16:49 +0200 | [diff] [blame] | 1222 | MODULE_ALIAS("platform:pxa2xx-i2c"); |
Richard Purdie | ece5f7b | 2006-01-12 16:30:23 +0000 | [diff] [blame] | 1223 | |
Uli Luckas | 47a9b13 | 2008-07-14 22:38:30 +0200 | [diff] [blame] | 1224 | subsys_initcall(i2c_adap_pxa_init); |
Russell King | b652b43 | 2005-06-15 12:38:14 +0100 | [diff] [blame] | 1225 | module_exit(i2c_adap_pxa_exit); |