blob: 934dfe1e6ce97b11253960150e51bea3c490b777 [file] [log] [blame]
Baruch Siach1ab52cf2009-06-22 16:36:29 +03001/*
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +09002 * Synopsys DesignWare I2C adapter driver (master only).
Baruch Siach1ab52cf2009-06-22 16:36:29 +03003 *
4 * Based on the TI DAVINCI I2C adapter driver.
5 *
6 * Copyright (C) 2006 Texas Instruments.
7 * Copyright (C) 2007 MontaVista Software Inc.
8 * Copyright (C) 2009 Provigent Ltd.
9 *
10 * ----------------------------------------------------------------------------
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 * ----------------------------------------------------------------------------
26 *
27 */
28#include <linux/kernel.h>
29#include <linux/module.h>
30#include <linux/delay.h>
31#include <linux/i2c.h>
32#include <linux/clk.h>
33#include <linux/errno.h>
34#include <linux/sched.h>
35#include <linux/err.h>
36#include <linux/interrupt.h>
37#include <linux/platform_device.h>
38#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Jean-Hugues Deschenes18c40892011-10-06 11:26:27 -070040#include <linux/swab.h>
Baruch Siach1ab52cf2009-06-22 16:36:29 +030041
42/*
43 * Registers offset
44 */
45#define DW_IC_CON 0x0
46#define DW_IC_TAR 0x4
47#define DW_IC_DATA_CMD 0x10
48#define DW_IC_SS_SCL_HCNT 0x14
49#define DW_IC_SS_SCL_LCNT 0x18
50#define DW_IC_FS_SCL_HCNT 0x1c
51#define DW_IC_FS_SCL_LCNT 0x20
52#define DW_IC_INTR_STAT 0x2c
53#define DW_IC_INTR_MASK 0x30
Shinya Kuribayashie28000a2009-11-06 21:44:37 +090054#define DW_IC_RAW_INTR_STAT 0x34
Shinya Kuribayashi4cb6d1d2009-11-06 21:48:12 +090055#define DW_IC_RX_TL 0x38
56#define DW_IC_TX_TL 0x3c
Baruch Siach1ab52cf2009-06-22 16:36:29 +030057#define DW_IC_CLR_INTR 0x40
Shinya Kuribayashie28000a2009-11-06 21:44:37 +090058#define DW_IC_CLR_RX_UNDER 0x44
59#define DW_IC_CLR_RX_OVER 0x48
60#define DW_IC_CLR_TX_OVER 0x4c
61#define DW_IC_CLR_RD_REQ 0x50
62#define DW_IC_CLR_TX_ABRT 0x54
63#define DW_IC_CLR_RX_DONE 0x58
64#define DW_IC_CLR_ACTIVITY 0x5c
65#define DW_IC_CLR_STOP_DET 0x60
66#define DW_IC_CLR_START_DET 0x64
67#define DW_IC_CLR_GEN_CALL 0x68
Baruch Siach1ab52cf2009-06-22 16:36:29 +030068#define DW_IC_ENABLE 0x6c
69#define DW_IC_STATUS 0x70
70#define DW_IC_TXFLR 0x74
71#define DW_IC_RXFLR 0x78
72#define DW_IC_COMP_PARAM_1 0xf4
Jean-Hugues Deschenes4ff895b2011-10-06 11:26:26 -070073#define DW_IC_COMP_TYPE 0xfc
Baruch Siach1ab52cf2009-06-22 16:36:29 +030074#define DW_IC_TX_ABRT_SOURCE 0x80
75
76#define DW_IC_CON_MASTER 0x1
77#define DW_IC_CON_SPEED_STD 0x2
78#define DW_IC_CON_SPEED_FAST 0x4
79#define DW_IC_CON_10BITADDR_MASTER 0x10
80#define DW_IC_CON_RESTART_EN 0x20
81#define DW_IC_CON_SLAVE_DISABLE 0x40
82
Shinya Kuribayashie28000a2009-11-06 21:44:37 +090083#define DW_IC_INTR_RX_UNDER 0x001
84#define DW_IC_INTR_RX_OVER 0x002
85#define DW_IC_INTR_RX_FULL 0x004
86#define DW_IC_INTR_TX_OVER 0x008
87#define DW_IC_INTR_TX_EMPTY 0x010
88#define DW_IC_INTR_RD_REQ 0x020
89#define DW_IC_INTR_TX_ABRT 0x040
90#define DW_IC_INTR_RX_DONE 0x080
91#define DW_IC_INTR_ACTIVITY 0x100
Baruch Siach1ab52cf2009-06-22 16:36:29 +030092#define DW_IC_INTR_STOP_DET 0x200
Shinya Kuribayashie28000a2009-11-06 21:44:37 +090093#define DW_IC_INTR_START_DET 0x400
94#define DW_IC_INTR_GEN_CALL 0x800
Baruch Siach1ab52cf2009-06-22 16:36:29 +030095
Shinya Kuribayashi201d6a72009-11-06 21:50:40 +090096#define DW_IC_INTR_DEFAULT_MASK (DW_IC_INTR_RX_FULL | \
97 DW_IC_INTR_TX_EMPTY | \
98 DW_IC_INTR_TX_ABRT | \
99 DW_IC_INTR_STOP_DET)
100
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300101#define DW_IC_STATUS_ACTIVITY 0x1
102
103#define DW_IC_ERR_TX_ABRT 0x1
104
105/*
106 * status codes
107 */
108#define STATUS_IDLE 0x0
109#define STATUS_WRITE_IN_PROGRESS 0x1
110#define STATUS_READ_IN_PROGRESS 0x2
111
112#define TIMEOUT 20 /* ms */
113
114/*
115 * hardware abort codes from the DW_IC_TX_ABRT_SOURCE register
116 *
117 * only expected abort codes are listed here
118 * refer to the datasheet for the full list
119 */
120#define ABRT_7B_ADDR_NOACK 0
121#define ABRT_10ADDR1_NOACK 1
122#define ABRT_10ADDR2_NOACK 2
123#define ABRT_TXDATA_NOACK 3
124#define ABRT_GCALL_NOACK 4
125#define ABRT_GCALL_READ 5
126#define ABRT_SBYTE_ACKDET 7
127#define ABRT_SBYTE_NORSTRT 9
128#define ABRT_10B_RD_NORSTRT 10
Shinya Kuribayashice6eb572009-11-06 21:51:57 +0900129#define ABRT_MASTER_DIS 11
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300130#define ARB_LOST 12
131
Shinya Kuribayashice6eb572009-11-06 21:51:57 +0900132#define DW_IC_TX_ABRT_7B_ADDR_NOACK (1UL << ABRT_7B_ADDR_NOACK)
133#define DW_IC_TX_ABRT_10ADDR1_NOACK (1UL << ABRT_10ADDR1_NOACK)
134#define DW_IC_TX_ABRT_10ADDR2_NOACK (1UL << ABRT_10ADDR2_NOACK)
135#define DW_IC_TX_ABRT_TXDATA_NOACK (1UL << ABRT_TXDATA_NOACK)
136#define DW_IC_TX_ABRT_GCALL_NOACK (1UL << ABRT_GCALL_NOACK)
137#define DW_IC_TX_ABRT_GCALL_READ (1UL << ABRT_GCALL_READ)
138#define DW_IC_TX_ABRT_SBYTE_ACKDET (1UL << ABRT_SBYTE_ACKDET)
139#define DW_IC_TX_ABRT_SBYTE_NORSTRT (1UL << ABRT_SBYTE_NORSTRT)
140#define DW_IC_TX_ABRT_10B_RD_NORSTRT (1UL << ABRT_10B_RD_NORSTRT)
141#define DW_IC_TX_ABRT_MASTER_DIS (1UL << ABRT_MASTER_DIS)
142#define DW_IC_TX_ARB_LOST (1UL << ARB_LOST)
143
144#define DW_IC_TX_ABRT_NOACK (DW_IC_TX_ABRT_7B_ADDR_NOACK | \
145 DW_IC_TX_ABRT_10ADDR1_NOACK | \
146 DW_IC_TX_ABRT_10ADDR2_NOACK | \
147 DW_IC_TX_ABRT_TXDATA_NOACK | \
148 DW_IC_TX_ABRT_GCALL_NOACK)
149
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300150static char *abort_sources[] = {
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900151 [ABRT_7B_ADDR_NOACK] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300152 "slave address not acknowledged (7bit mode)",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900153 [ABRT_10ADDR1_NOACK] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300154 "first address byte not acknowledged (10bit mode)",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900155 [ABRT_10ADDR2_NOACK] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300156 "second address byte not acknowledged (10bit mode)",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900157 [ABRT_TXDATA_NOACK] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300158 "data not acknowledged",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900159 [ABRT_GCALL_NOACK] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300160 "no acknowledgement for a general call",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900161 [ABRT_GCALL_READ] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300162 "read after general call",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900163 [ABRT_SBYTE_ACKDET] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300164 "start byte acknowledged",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900165 [ABRT_SBYTE_NORSTRT] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300166 "trying to send start byte when restart is disabled",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900167 [ABRT_10B_RD_NORSTRT] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300168 "trying to read when restart is disabled (10bit mode)",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900169 [ABRT_MASTER_DIS] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300170 "trying to use disabled adapter",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900171 [ARB_LOST] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300172 "lost arbitration",
173};
174
175/**
176 * struct dw_i2c_dev - private i2c-designware data
177 * @dev: driver model device node
178 * @base: IO registers pointer
179 * @cmd_complete: tx completion indicator
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300180 * @lock: protect this struct and IO registers
181 * @clk: input reference clock
182 * @cmd_err: run time hadware error code
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300183 * @msgs: points to an array of messages currently being transferred
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300184 * @msgs_num: the number of elements in msgs
185 * @msg_write_idx: the element index of the current tx message in the msgs
186 * array
187 * @tx_buf_len: the length of the current tx buffer
188 * @tx_buf: the current tx buffer
189 * @msg_read_idx: the element index of the current rx message in the msgs
190 * array
191 * @rx_buf_len: the length of the current rx buffer
192 * @rx_buf: the current rx buffer
193 * @msg_err: error status of the current transfer
194 * @status: i2c master status, one of STATUS_*
195 * @abort_source: copy of the TX_ABRT_SOURCE register
196 * @irq: interrupt number for the i2c master
Jean-Hugues Deschenes18c40892011-10-06 11:26:27 -0700197 * @swab: true if the instantiated IP is of different endianess
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300198 * @adapter: i2c subsystem adapter node
199 * @tx_fifo_depth: depth of the hardware tx fifo
200 * @rx_fifo_depth: depth of the hardware rx fifo
201 */
202struct dw_i2c_dev {
203 struct device *dev;
204 void __iomem *base;
205 struct completion cmd_complete;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300206 struct mutex lock;
207 struct clk *clk;
208 int cmd_err;
209 struct i2c_msg *msgs;
210 int msgs_num;
211 int msg_write_idx;
Shinya Kuribayashied5e1dd2009-11-06 21:43:52 +0900212 u32 tx_buf_len;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300213 u8 *tx_buf;
214 int msg_read_idx;
Shinya Kuribayashied5e1dd2009-11-06 21:43:52 +0900215 u32 rx_buf_len;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300216 u8 *rx_buf;
217 int msg_err;
218 unsigned int status;
Shinya Kuribayashied5e1dd2009-11-06 21:43:52 +0900219 u32 abort_source;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300220 int irq;
Jean-Hugues Deschenes18c40892011-10-06 11:26:27 -0700221 int swab;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300222 struct i2c_adapter adapter;
223 unsigned int tx_fifo_depth;
224 unsigned int rx_fifo_depth;
225};
226
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700227static u32 dw_readl(struct dw_i2c_dev *dev, int offset)
228{
Jean-Hugues Deschenes18c40892011-10-06 11:26:27 -0700229 u32 value = readl(dev->base + offset);
230
231 if (dev->swab)
232 return swab32(value);
233 else
234 return value;
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700235}
236
237static void dw_writel(struct dw_i2c_dev *dev, u32 b, int offset)
238{
Jean-Hugues Deschenes18c40892011-10-06 11:26:27 -0700239 if (dev->swab)
240 b = swab32(b);
241
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700242 writel(b, dev->base + offset);
243}
244
Shinya Kuribayashid60c7e82009-11-06 21:47:01 +0900245static u32
246i2c_dw_scl_hcnt(u32 ic_clk, u32 tSYMBOL, u32 tf, int cond, int offset)
247{
248 /*
249 * DesignWare I2C core doesn't seem to have solid strategy to meet
250 * the tHD;STA timing spec. Configuring _HCNT based on tHIGH spec
251 * will result in violation of the tHD;STA spec.
252 */
253 if (cond)
254 /*
255 * Conditional expression:
256 *
257 * IC_[FS]S_SCL_HCNT + (1+4+3) >= IC_CLK * tHIGH
258 *
259 * This is based on the DW manuals, and represents an ideal
260 * configuration. The resulting I2C bus speed will be
261 * faster than any of the others.
262 *
263 * If your hardware is free from tHD;STA issue, try this one.
264 */
265 return (ic_clk * tSYMBOL + 5000) / 10000 - 8 + offset;
266 else
267 /*
268 * Conditional expression:
269 *
270 * IC_[FS]S_SCL_HCNT + 3 >= IC_CLK * (tHD;STA + tf)
271 *
272 * This is just experimental rule; the tHD;STA period turned
273 * out to be proportinal to (_HCNT + 3). With this setting,
274 * we could meet both tHIGH and tHD;STA timing specs.
275 *
276 * If unsure, you'd better to take this alternative.
277 *
278 * The reason why we need to take into account "tf" here,
279 * is the same as described in i2c_dw_scl_lcnt().
280 */
281 return (ic_clk * (tSYMBOL + tf) + 5000) / 10000 - 3 + offset;
282}
283
284static u32 i2c_dw_scl_lcnt(u32 ic_clk, u32 tLOW, u32 tf, int offset)
285{
286 /*
287 * Conditional expression:
288 *
289 * IC_[FS]S_SCL_LCNT + 1 >= IC_CLK * (tLOW + tf)
290 *
291 * DW I2C core starts counting the SCL CNTs for the LOW period
292 * of the SCL clock (tLOW) as soon as it pulls the SCL line.
293 * In order to meet the tLOW timing spec, we need to take into
294 * account the fall time of SCL signal (tf). Default tf value
295 * should be 0.3 us, for safety.
296 */
297 return ((ic_clk * (tLOW + tf) + 5000) / 10000) - 1 + offset;
298}
299
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300300/**
301 * i2c_dw_init() - initialize the designware i2c master hardware
302 * @dev: device private data
303 *
304 * This functions configures and enables the I2C master.
305 * This function is called during I2C init function, and in case of timeout at
306 * run time.
307 */
308static void i2c_dw_init(struct dw_i2c_dev *dev)
309{
310 u32 input_clock_khz = clk_get_rate(dev->clk) / 1000;
Shinya Kuribayashid60c7e82009-11-06 21:47:01 +0900311 u32 ic_con, hcnt, lcnt;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300312
313 /* Disable the adapter */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700314 dw_writel(dev, 0, DW_IC_ENABLE);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300315
316 /* set standard and fast speed deviders for high/low periods */
Shinya Kuribayashid60c7e82009-11-06 21:47:01 +0900317
318 /* Standard-mode */
319 hcnt = i2c_dw_scl_hcnt(input_clock_khz,
320 40, /* tHD;STA = tHIGH = 4.0 us */
321 3, /* tf = 0.3 us */
322 0, /* 0: DW default, 1: Ideal */
323 0); /* No offset */
324 lcnt = i2c_dw_scl_lcnt(input_clock_khz,
325 47, /* tLOW = 4.7 us */
326 3, /* tf = 0.3 us */
327 0); /* No offset */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700328 dw_writel(dev, hcnt, DW_IC_SS_SCL_HCNT);
329 dw_writel(dev, lcnt, DW_IC_SS_SCL_LCNT);
Shinya Kuribayashid60c7e82009-11-06 21:47:01 +0900330 dev_dbg(dev->dev, "Standard-mode HCNT:LCNT = %d:%d\n", hcnt, lcnt);
331
332 /* Fast-mode */
333 hcnt = i2c_dw_scl_hcnt(input_clock_khz,
334 6, /* tHD;STA = tHIGH = 0.6 us */
335 3, /* tf = 0.3 us */
336 0, /* 0: DW default, 1: Ideal */
337 0); /* No offset */
338 lcnt = i2c_dw_scl_lcnt(input_clock_khz,
339 13, /* tLOW = 1.3 us */
340 3, /* tf = 0.3 us */
341 0); /* No offset */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700342 dw_writel(dev, hcnt, DW_IC_FS_SCL_HCNT);
343 dw_writel(dev, lcnt, DW_IC_FS_SCL_LCNT);
Shinya Kuribayashid60c7e82009-11-06 21:47:01 +0900344 dev_dbg(dev->dev, "Fast-mode HCNT:LCNT = %d:%d\n", hcnt, lcnt);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300345
Shinya Kuribayashi4cb6d1d2009-11-06 21:48:12 +0900346 /* Configure Tx/Rx FIFO threshold levels */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700347 dw_writel(dev, dev->tx_fifo_depth - 1, DW_IC_TX_TL);
348 dw_writel(dev, 0, DW_IC_RX_TL);
Shinya Kuribayashi4cb6d1d2009-11-06 21:48:12 +0900349
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300350 /* configure the i2c master */
351 ic_con = DW_IC_CON_MASTER | DW_IC_CON_SLAVE_DISABLE |
352 DW_IC_CON_RESTART_EN | DW_IC_CON_SPEED_FAST;
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700353 dw_writel(dev, ic_con, DW_IC_CON);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300354}
355
356/*
357 * Waiting for bus not busy
358 */
359static int i2c_dw_wait_bus_not_busy(struct dw_i2c_dev *dev)
360{
361 int timeout = TIMEOUT;
362
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700363 while (dw_readl(dev, DW_IC_STATUS) & DW_IC_STATUS_ACTIVITY) {
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300364 if (timeout <= 0) {
365 dev_warn(dev->dev, "timeout waiting for bus ready\n");
366 return -ETIMEDOUT;
367 }
368 timeout--;
369 mdelay(1);
370 }
371
372 return 0;
373}
374
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900375static void i2c_dw_xfer_init(struct dw_i2c_dev *dev)
376{
377 struct i2c_msg *msgs = dev->msgs;
378 u32 ic_con;
379
380 /* Disable the adapter */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700381 dw_writel(dev, 0, DW_IC_ENABLE);
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900382
383 /* set the slave (target) address */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700384 dw_writel(dev, msgs[dev->msg_write_idx].addr, DW_IC_TAR);
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900385
386 /* if the slave address is ten bit address, enable 10BITADDR */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700387 ic_con = dw_readl(dev, DW_IC_CON);
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900388 if (msgs[dev->msg_write_idx].flags & I2C_M_TEN)
389 ic_con |= DW_IC_CON_10BITADDR_MASTER;
390 else
391 ic_con &= ~DW_IC_CON_10BITADDR_MASTER;
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700392 dw_writel(dev, ic_con, DW_IC_CON);
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900393
394 /* Enable the adapter */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700395 dw_writel(dev, 1, DW_IC_ENABLE);
Shinya Kuribayashi201d6a72009-11-06 21:50:40 +0900396
397 /* Enable interrupts */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700398 dw_writel(dev, DW_IC_INTR_DEFAULT_MASK, DW_IC_INTR_MASK);
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900399}
400
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300401/*
Shinya Kuribayashi201d6a72009-11-06 21:50:40 +0900402 * Initiate (and continue) low level master read/write transaction.
403 * This function is only called from i2c_dw_isr, and pumping i2c_msg
404 * messages into the tx buffer. Even if the size of i2c_msg data is
405 * longer than the size of the tx buffer, it handles everything.
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300406 */
407static void
Shinya Kuribayashie77cf232009-11-06 21:46:04 +0900408i2c_dw_xfer_msg(struct dw_i2c_dev *dev)
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300409{
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300410 struct i2c_msg *msgs = dev->msgs;
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900411 u32 intr_mask;
Shinya Kuribayashiae722222009-11-06 21:49:39 +0900412 int tx_limit, rx_limit;
Shinya Kuribayashied5e1dd2009-11-06 21:43:52 +0900413 u32 addr = msgs[dev->msg_write_idx].addr;
414 u32 buf_len = dev->tx_buf_len;
Justin P. Mattock69932482011-07-26 23:06:29 -0700415 u8 *buf = dev->tx_buf;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300416
Shinya Kuribayashi201d6a72009-11-06 21:50:40 +0900417 intr_mask = DW_IC_INTR_DEFAULT_MASK;
Shinya Kuribayashic70c5cd2009-11-06 21:47:30 +0900418
Shinya Kuribayashi6d2ea482009-11-06 21:46:29 +0900419 for (; dev->msg_write_idx < dev->msgs_num; dev->msg_write_idx++) {
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900420 /*
421 * if target address has changed, we need to
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300422 * reprogram the target address in the i2c
423 * adapter when we are done with this transfer
424 */
Shinya Kuribayashi8f588e42009-11-06 21:51:18 +0900425 if (msgs[dev->msg_write_idx].addr != addr) {
426 dev_err(dev->dev,
427 "%s: invalid target address\n", __func__);
428 dev->msg_err = -EINVAL;
429 break;
430 }
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300431
432 if (msgs[dev->msg_write_idx].len == 0) {
433 dev_err(dev->dev,
434 "%s: invalid message length\n", __func__);
435 dev->msg_err = -EINVAL;
Shinya Kuribayashi8f588e42009-11-06 21:51:18 +0900436 break;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300437 }
438
439 if (!(dev->status & STATUS_WRITE_IN_PROGRESS)) {
440 /* new i2c_msg */
Shinya Kuribayashi26ea15b2009-11-06 21:49:14 +0900441 buf = msgs[dev->msg_write_idx].buf;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300442 buf_len = msgs[dev->msg_write_idx].len;
443 }
444
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700445 tx_limit = dev->tx_fifo_depth - dw_readl(dev, DW_IC_TXFLR);
446 rx_limit = dev->rx_fifo_depth - dw_readl(dev, DW_IC_RXFLR);
Shinya Kuribayashiae722222009-11-06 21:49:39 +0900447
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300448 while (buf_len > 0 && tx_limit > 0 && rx_limit > 0) {
449 if (msgs[dev->msg_write_idx].flags & I2C_M_RD) {
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700450 dw_writel(dev, 0x100, DW_IC_DATA_CMD);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300451 rx_limit--;
452 } else
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700453 dw_writel(dev, *buf++, DW_IC_DATA_CMD);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300454 tx_limit--; buf_len--;
455 }
Shinya Kuribayashic70c5cd2009-11-06 21:47:30 +0900456
Shinya Kuribayashi26ea15b2009-11-06 21:49:14 +0900457 dev->tx_buf = buf;
Shinya Kuribayashic70c5cd2009-11-06 21:47:30 +0900458 dev->tx_buf_len = buf_len;
459
460 if (buf_len > 0) {
461 /* more bytes to be written */
Shinya Kuribayashic70c5cd2009-11-06 21:47:30 +0900462 dev->status |= STATUS_WRITE_IN_PROGRESS;
463 break;
Shinya Kuribayashi69151e52009-11-06 21:51:00 +0900464 } else
Shinya Kuribayashic70c5cd2009-11-06 21:47:30 +0900465 dev->status &= ~STATUS_WRITE_IN_PROGRESS;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300466 }
467
Shinya Kuribayashi69151e52009-11-06 21:51:00 +0900468 /*
469 * If i2c_msg index search is completed, we don't need TX_EMPTY
470 * interrupt any more.
471 */
472 if (dev->msg_write_idx == dev->msgs_num)
473 intr_mask &= ~DW_IC_INTR_TX_EMPTY;
474
Shinya Kuribayashi8f588e42009-11-06 21:51:18 +0900475 if (dev->msg_err)
476 intr_mask = 0;
477
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700478 dw_writel(dev, intr_mask, DW_IC_INTR_MASK);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300479}
480
481static void
Shinya Kuribayashi78839bd2009-11-06 21:45:39 +0900482i2c_dw_read(struct dw_i2c_dev *dev)
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300483{
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300484 struct i2c_msg *msgs = dev->msgs;
Shinya Kuribayashiae722222009-11-06 21:49:39 +0900485 int rx_valid;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300486
Shinya Kuribayashi6d2ea482009-11-06 21:46:29 +0900487 for (; dev->msg_read_idx < dev->msgs_num; dev->msg_read_idx++) {
Shinya Kuribayashied5e1dd2009-11-06 21:43:52 +0900488 u32 len;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300489 u8 *buf;
490
491 if (!(msgs[dev->msg_read_idx].flags & I2C_M_RD))
492 continue;
493
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300494 if (!(dev->status & STATUS_READ_IN_PROGRESS)) {
495 len = msgs[dev->msg_read_idx].len;
496 buf = msgs[dev->msg_read_idx].buf;
497 } else {
498 len = dev->rx_buf_len;
499 buf = dev->rx_buf;
500 }
501
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700502 rx_valid = dw_readl(dev, DW_IC_RXFLR);
Shinya Kuribayashiae722222009-11-06 21:49:39 +0900503
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300504 for (; len > 0 && rx_valid > 0; len--, rx_valid--)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700505 *buf++ = dw_readl(dev, DW_IC_DATA_CMD);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300506
507 if (len > 0) {
508 dev->status |= STATUS_READ_IN_PROGRESS;
509 dev->rx_buf_len = len;
510 dev->rx_buf = buf;
511 return;
512 } else
513 dev->status &= ~STATUS_READ_IN_PROGRESS;
514 }
515}
516
Shinya Kuribayashice6eb572009-11-06 21:51:57 +0900517static int i2c_dw_handle_tx_abort(struct dw_i2c_dev *dev)
518{
519 unsigned long abort_source = dev->abort_source;
520 int i;
521
Shinya Kuribayashi6d1ea0f2009-11-16 20:40:14 +0900522 if (abort_source & DW_IC_TX_ABRT_NOACK) {
Akinobu Mita984b3f52010-03-05 13:41:37 -0800523 for_each_set_bit(i, &abort_source, ARRAY_SIZE(abort_sources))
Shinya Kuribayashi6d1ea0f2009-11-16 20:40:14 +0900524 dev_dbg(dev->dev,
525 "%s: %s\n", __func__, abort_sources[i]);
526 return -EREMOTEIO;
527 }
528
Akinobu Mita984b3f52010-03-05 13:41:37 -0800529 for_each_set_bit(i, &abort_source, ARRAY_SIZE(abort_sources))
Shinya Kuribayashice6eb572009-11-06 21:51:57 +0900530 dev_err(dev->dev, "%s: %s\n", __func__, abort_sources[i]);
531
532 if (abort_source & DW_IC_TX_ARB_LOST)
533 return -EAGAIN;
Shinya Kuribayashice6eb572009-11-06 21:51:57 +0900534 else if (abort_source & DW_IC_TX_ABRT_GCALL_READ)
535 return -EINVAL; /* wrong msgs[] data */
536 else
537 return -EIO;
538}
539
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300540/*
541 * Prepare controller for a transaction and call i2c_dw_xfer_msg
542 */
543static int
544i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
545{
546 struct dw_i2c_dev *dev = i2c_get_adapdata(adap);
547 int ret;
548
549 dev_dbg(dev->dev, "%s: msgs: %d\n", __func__, num);
550
551 mutex_lock(&dev->lock);
552
553 INIT_COMPLETION(dev->cmd_complete);
554 dev->msgs = msgs;
555 dev->msgs_num = num;
556 dev->cmd_err = 0;
557 dev->msg_write_idx = 0;
558 dev->msg_read_idx = 0;
559 dev->msg_err = 0;
560 dev->status = STATUS_IDLE;
Shinya Kuribayashice6eb572009-11-06 21:51:57 +0900561 dev->abort_source = 0;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300562
563 ret = i2c_dw_wait_bus_not_busy(dev);
564 if (ret < 0)
565 goto done;
566
567 /* start the transfers */
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900568 i2c_dw_xfer_init(dev);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300569
570 /* wait for tx to complete */
571 ret = wait_for_completion_interruptible_timeout(&dev->cmd_complete, HZ);
572 if (ret == 0) {
573 dev_err(dev->dev, "controller timed out\n");
574 i2c_dw_init(dev);
575 ret = -ETIMEDOUT;
576 goto done;
577 } else if (ret < 0)
578 goto done;
579
580 if (dev->msg_err) {
581 ret = dev->msg_err;
582 goto done;
583 }
584
585 /* no error */
586 if (likely(!dev->cmd_err)) {
Shinya Kuribayashi07745392009-11-06 21:47:51 +0900587 /* Disable the adapter */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700588 dw_writel(dev, 0, DW_IC_ENABLE);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300589 ret = num;
590 goto done;
591 }
592
593 /* We have an error */
594 if (dev->cmd_err == DW_IC_ERR_TX_ABRT) {
Shinya Kuribayashice6eb572009-11-06 21:51:57 +0900595 ret = i2c_dw_handle_tx_abort(dev);
596 goto done;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300597 }
598 ret = -EIO;
599
600done:
601 mutex_unlock(&dev->lock);
602
603 return ret;
604}
605
606static u32 i2c_dw_func(struct i2c_adapter *adap)
607{
Shinya Kuribayashi52d7e432009-11-06 21:50:02 +0900608 return I2C_FUNC_I2C |
609 I2C_FUNC_10BIT_ADDR |
610 I2C_FUNC_SMBUS_BYTE |
611 I2C_FUNC_SMBUS_BYTE_DATA |
612 I2C_FUNC_SMBUS_WORD_DATA |
613 I2C_FUNC_SMBUS_I2C_BLOCK;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300614}
615
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900616static u32 i2c_dw_read_clear_intrbits(struct dw_i2c_dev *dev)
617{
618 u32 stat;
619
620 /*
621 * The IC_INTR_STAT register just indicates "enabled" interrupts.
622 * Ths unmasked raw version of interrupt status bits are available
623 * in the IC_RAW_INTR_STAT register.
624 *
625 * That is,
626 * stat = readl(IC_INTR_STAT);
627 * equals to,
628 * stat = readl(IC_RAW_INTR_STAT) & readl(IC_INTR_MASK);
629 *
630 * The raw version might be useful for debugging purposes.
631 */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700632 stat = dw_readl(dev, DW_IC_INTR_STAT);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900633
634 /*
635 * Do not use the IC_CLR_INTR register to clear interrupts, or
636 * you'll miss some interrupts, triggered during the period from
637 * readl(IC_INTR_STAT) to readl(IC_CLR_INTR).
638 *
639 * Instead, use the separately-prepared IC_CLR_* registers.
640 */
641 if (stat & DW_IC_INTR_RX_UNDER)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700642 dw_readl(dev, DW_IC_CLR_RX_UNDER);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900643 if (stat & DW_IC_INTR_RX_OVER)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700644 dw_readl(dev, DW_IC_CLR_RX_OVER);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900645 if (stat & DW_IC_INTR_TX_OVER)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700646 dw_readl(dev, DW_IC_CLR_TX_OVER);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900647 if (stat & DW_IC_INTR_RD_REQ)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700648 dw_readl(dev, DW_IC_CLR_RD_REQ);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900649 if (stat & DW_IC_INTR_TX_ABRT) {
650 /*
651 * The IC_TX_ABRT_SOURCE register is cleared whenever
652 * the IC_CLR_TX_ABRT is read. Preserve it beforehand.
653 */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700654 dev->abort_source = dw_readl(dev, DW_IC_TX_ABRT_SOURCE);
655 dw_readl(dev, DW_IC_CLR_TX_ABRT);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900656 }
657 if (stat & DW_IC_INTR_RX_DONE)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700658 dw_readl(dev, DW_IC_CLR_RX_DONE);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900659 if (stat & DW_IC_INTR_ACTIVITY)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700660 dw_readl(dev, DW_IC_CLR_ACTIVITY);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900661 if (stat & DW_IC_INTR_STOP_DET)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700662 dw_readl(dev, DW_IC_CLR_STOP_DET);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900663 if (stat & DW_IC_INTR_START_DET)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700664 dw_readl(dev, DW_IC_CLR_START_DET);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900665 if (stat & DW_IC_INTR_GEN_CALL)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700666 dw_readl(dev, DW_IC_CLR_GEN_CALL);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900667
668 return stat;
669}
670
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300671/*
672 * Interrupt service routine. This gets called whenever an I2C interrupt
673 * occurs.
674 */
675static irqreturn_t i2c_dw_isr(int this_irq, void *dev_id)
676{
677 struct dw_i2c_dev *dev = dev_id;
Shinya Kuribayashied5e1dd2009-11-06 21:43:52 +0900678 u32 stat;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300679
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900680 stat = i2c_dw_read_clear_intrbits(dev);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300681 dev_dbg(dev->dev, "%s: stat=0x%x\n", __func__, stat);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900682
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300683 if (stat & DW_IC_INTR_TX_ABRT) {
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300684 dev->cmd_err |= DW_IC_ERR_TX_ABRT;
685 dev->status = STATUS_IDLE;
Shinya Kuribayashi597fe312009-11-06 21:51:36 +0900686
687 /*
688 * Anytime TX_ABRT is set, the contents of the tx/rx
689 * buffers are flushed. Make sure to skip them.
690 */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700691 dw_writel(dev, 0, DW_IC_INTR_MASK);
Shinya Kuribayashi597fe312009-11-06 21:51:36 +0900692 goto tx_aborted;
Shinya Kuribayashi07745392009-11-06 21:47:51 +0900693 }
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300694
Shinya Kuribayashi21a89d42009-11-06 21:48:33 +0900695 if (stat & DW_IC_INTR_RX_FULL)
Shinya Kuribayashi07745392009-11-06 21:47:51 +0900696 i2c_dw_read(dev);
Shinya Kuribayashi21a89d42009-11-06 21:48:33 +0900697
698 if (stat & DW_IC_INTR_TX_EMPTY)
Shinya Kuribayashi07745392009-11-06 21:47:51 +0900699 i2c_dw_xfer_msg(dev);
Shinya Kuribayashi07745392009-11-06 21:47:51 +0900700
701 /*
702 * No need to modify or disable the interrupt mask here.
703 * i2c_dw_xfer_msg() will take care of it according to
704 * the current transmit status.
705 */
706
Shinya Kuribayashi597fe312009-11-06 21:51:36 +0900707tx_aborted:
Shinya Kuribayashi8f588e42009-11-06 21:51:18 +0900708 if ((stat & (DW_IC_INTR_TX_ABRT | DW_IC_INTR_STOP_DET)) || dev->msg_err)
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300709 complete(&dev->cmd_complete);
710
711 return IRQ_HANDLED;
712}
713
714static struct i2c_algorithm i2c_dw_algo = {
715 .master_xfer = i2c_dw_xfer,
716 .functionality = i2c_dw_func,
717};
718
719static int __devinit dw_i2c_probe(struct platform_device *pdev)
720{
721 struct dw_i2c_dev *dev;
722 struct i2c_adapter *adap;
Shinya Kuribayashi91b52ca2009-11-06 21:45:07 +0900723 struct resource *mem, *ioarea;
724 int irq, r;
Jean-Hugues Deschenes4ff895b2011-10-06 11:26:26 -0700725 u32 reg;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300726
727 /* NOTE: driver uses the static register mapping */
728 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
729 if (!mem) {
730 dev_err(&pdev->dev, "no mem resource?\n");
731 return -EINVAL;
732 }
733
Shinya Kuribayashi91b52ca2009-11-06 21:45:07 +0900734 irq = platform_get_irq(pdev, 0);
735 if (irq < 0) {
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300736 dev_err(&pdev->dev, "no irq resource?\n");
Shinya Kuribayashi91b52ca2009-11-06 21:45:07 +0900737 return irq; /* -ENXIO */
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300738 }
739
740 ioarea = request_mem_region(mem->start, resource_size(mem),
741 pdev->name);
742 if (!ioarea) {
743 dev_err(&pdev->dev, "I2C region already claimed\n");
744 return -EBUSY;
745 }
746
747 dev = kzalloc(sizeof(struct dw_i2c_dev), GFP_KERNEL);
748 if (!dev) {
749 r = -ENOMEM;
750 goto err_release_region;
751 }
752
753 init_completion(&dev->cmd_complete);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300754 mutex_init(&dev->lock);
755 dev->dev = get_device(&pdev->dev);
Shinya Kuribayashi91b52ca2009-11-06 21:45:07 +0900756 dev->irq = irq;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300757 platform_set_drvdata(pdev, dev);
758
759 dev->clk = clk_get(&pdev->dev, NULL);
760 if (IS_ERR(dev->clk)) {
761 r = -ENODEV;
762 goto err_free_mem;
763 }
764 clk_enable(dev->clk);
765
766 dev->base = ioremap(mem->start, resource_size(mem));
767 if (dev->base == NULL) {
768 dev_err(&pdev->dev, "failure mapping io resources\n");
769 r = -EBUSY;
770 goto err_unuse_clocks;
771 }
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300772
Jean-Hugues Deschenes4ff895b2011-10-06 11:26:26 -0700773 reg = dw_readl(dev, DW_IC_COMP_TYPE);
Jean-Hugues Deschenes18c40892011-10-06 11:26:27 -0700774 if (reg == ___constant_swab32(0x44570140))
775 dev->swab = 1;
776 else if (reg != 0x44570140) {
Jean-Hugues Deschenes4ff895b2011-10-06 11:26:26 -0700777 dev_err(&pdev->dev, "Unknown Synopsys component type: "
778 "0x%08x\n", reg);
779 r = -ENODEV;
780 goto err_iounmap;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300781 }
Jean-Hugues Deschenes4ff895b2011-10-06 11:26:26 -0700782
783 reg = dw_readl(dev, DW_IC_COMP_PARAM_1);
784 dev->tx_fifo_depth = ((reg >> 16) & 0xff) + 1;
785 dev->rx_fifo_depth = ((reg >> 8) & 0xff) + 1;
786
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300787 i2c_dw_init(dev);
788
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700789 dw_writel(dev, 0, DW_IC_INTR_MASK); /* disable IRQ */
Shinya Kuribayashi201d6a72009-11-06 21:50:40 +0900790 r = request_irq(dev->irq, i2c_dw_isr, IRQF_DISABLED, pdev->name, dev);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300791 if (r) {
792 dev_err(&pdev->dev, "failure requesting irq %i\n", dev->irq);
793 goto err_iounmap;
794 }
795
796 adap = &dev->adapter;
797 i2c_set_adapdata(adap, dev);
798 adap->owner = THIS_MODULE;
799 adap->class = I2C_CLASS_HWMON;
800 strlcpy(adap->name, "Synopsys DesignWare I2C adapter",
801 sizeof(adap->name));
802 adap->algo = &i2c_dw_algo;
803 adap->dev.parent = &pdev->dev;
804
805 adap->nr = pdev->id;
806 r = i2c_add_numbered_adapter(adap);
807 if (r) {
808 dev_err(&pdev->dev, "failure adding adapter\n");
809 goto err_free_irq;
810 }
811
812 return 0;
813
814err_free_irq:
815 free_irq(dev->irq, dev);
816err_iounmap:
817 iounmap(dev->base);
818err_unuse_clocks:
819 clk_disable(dev->clk);
820 clk_put(dev->clk);
821 dev->clk = NULL;
822err_free_mem:
823 platform_set_drvdata(pdev, NULL);
824 put_device(&pdev->dev);
825 kfree(dev);
826err_release_region:
827 release_mem_region(mem->start, resource_size(mem));
828
829 return r;
830}
831
832static int __devexit dw_i2c_remove(struct platform_device *pdev)
833{
834 struct dw_i2c_dev *dev = platform_get_drvdata(pdev);
835 struct resource *mem;
836
837 platform_set_drvdata(pdev, NULL);
838 i2c_del_adapter(&dev->adapter);
839 put_device(&pdev->dev);
840
841 clk_disable(dev->clk);
842 clk_put(dev->clk);
843 dev->clk = NULL;
844
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700845 dw_writel(dev, 0, DW_IC_ENABLE);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300846 free_irq(dev->irq, dev);
847 kfree(dev);
848
849 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
850 release_mem_region(mem->start, resource_size(mem));
851 return 0;
852}
853
854/* work with hotplug and coldplug */
855MODULE_ALIAS("platform:i2c_designware");
856
857static struct platform_driver dw_i2c_driver = {
858 .remove = __devexit_p(dw_i2c_remove),
859 .driver = {
860 .name = "i2c_designware",
861 .owner = THIS_MODULE,
862 },
863};
864
865static int __init dw_i2c_init_driver(void)
866{
867 return platform_driver_probe(&dw_i2c_driver, dw_i2c_probe);
868}
869module_init(dw_i2c_init_driver);
870
871static void __exit dw_i2c_exit_driver(void)
872{
873 platform_driver_unregister(&dw_i2c_driver);
874}
875module_exit(dw_i2c_exit_driver);
876
877MODULE_AUTHOR("Baruch Siach <baruch@tkos.co.il>");
878MODULE_DESCRIPTION("Synopsys DesignWare I2C bus adapter");
879MODULE_LICENSE("GPL");