blob: 28335c3717d9782ed774ee9c0685079cb8eeca36 [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>
Baruch Siach1ab52cf2009-06-22 16:36:29 +030040
41/*
42 * Registers offset
43 */
44#define DW_IC_CON 0x0
45#define DW_IC_TAR 0x4
46#define DW_IC_DATA_CMD 0x10
47#define DW_IC_SS_SCL_HCNT 0x14
48#define DW_IC_SS_SCL_LCNT 0x18
49#define DW_IC_FS_SCL_HCNT 0x1c
50#define DW_IC_FS_SCL_LCNT 0x20
51#define DW_IC_INTR_STAT 0x2c
52#define DW_IC_INTR_MASK 0x30
Shinya Kuribayashie28000a2009-11-06 21:44:37 +090053#define DW_IC_RAW_INTR_STAT 0x34
Shinya Kuribayashi4cb6d1d2009-11-06 21:48:12 +090054#define DW_IC_RX_TL 0x38
55#define DW_IC_TX_TL 0x3c
Baruch Siach1ab52cf2009-06-22 16:36:29 +030056#define DW_IC_CLR_INTR 0x40
Shinya Kuribayashie28000a2009-11-06 21:44:37 +090057#define DW_IC_CLR_RX_UNDER 0x44
58#define DW_IC_CLR_RX_OVER 0x48
59#define DW_IC_CLR_TX_OVER 0x4c
60#define DW_IC_CLR_RD_REQ 0x50
61#define DW_IC_CLR_TX_ABRT 0x54
62#define DW_IC_CLR_RX_DONE 0x58
63#define DW_IC_CLR_ACTIVITY 0x5c
64#define DW_IC_CLR_STOP_DET 0x60
65#define DW_IC_CLR_START_DET 0x64
66#define DW_IC_CLR_GEN_CALL 0x68
Baruch Siach1ab52cf2009-06-22 16:36:29 +030067#define DW_IC_ENABLE 0x6c
68#define DW_IC_STATUS 0x70
69#define DW_IC_TXFLR 0x74
70#define DW_IC_RXFLR 0x78
71#define DW_IC_COMP_PARAM_1 0xf4
72#define DW_IC_TX_ABRT_SOURCE 0x80
73
74#define DW_IC_CON_MASTER 0x1
75#define DW_IC_CON_SPEED_STD 0x2
76#define DW_IC_CON_SPEED_FAST 0x4
77#define DW_IC_CON_10BITADDR_MASTER 0x10
78#define DW_IC_CON_RESTART_EN 0x20
79#define DW_IC_CON_SLAVE_DISABLE 0x40
80
Shinya Kuribayashie28000a2009-11-06 21:44:37 +090081#define DW_IC_INTR_RX_UNDER 0x001
82#define DW_IC_INTR_RX_OVER 0x002
83#define DW_IC_INTR_RX_FULL 0x004
84#define DW_IC_INTR_TX_OVER 0x008
85#define DW_IC_INTR_TX_EMPTY 0x010
86#define DW_IC_INTR_RD_REQ 0x020
87#define DW_IC_INTR_TX_ABRT 0x040
88#define DW_IC_INTR_RX_DONE 0x080
89#define DW_IC_INTR_ACTIVITY 0x100
Baruch Siach1ab52cf2009-06-22 16:36:29 +030090#define DW_IC_INTR_STOP_DET 0x200
Shinya Kuribayashie28000a2009-11-06 21:44:37 +090091#define DW_IC_INTR_START_DET 0x400
92#define DW_IC_INTR_GEN_CALL 0x800
Baruch Siach1ab52cf2009-06-22 16:36:29 +030093
Shinya Kuribayashi201d6a72009-11-06 21:50:40 +090094#define DW_IC_INTR_DEFAULT_MASK (DW_IC_INTR_RX_FULL | \
95 DW_IC_INTR_TX_EMPTY | \
96 DW_IC_INTR_TX_ABRT | \
97 DW_IC_INTR_STOP_DET)
98
Baruch Siach1ab52cf2009-06-22 16:36:29 +030099#define DW_IC_STATUS_ACTIVITY 0x1
100
101#define DW_IC_ERR_TX_ABRT 0x1
102
103/*
104 * status codes
105 */
106#define STATUS_IDLE 0x0
107#define STATUS_WRITE_IN_PROGRESS 0x1
108#define STATUS_READ_IN_PROGRESS 0x2
109
110#define TIMEOUT 20 /* ms */
111
112/*
113 * hardware abort codes from the DW_IC_TX_ABRT_SOURCE register
114 *
115 * only expected abort codes are listed here
116 * refer to the datasheet for the full list
117 */
118#define ABRT_7B_ADDR_NOACK 0
119#define ABRT_10ADDR1_NOACK 1
120#define ABRT_10ADDR2_NOACK 2
121#define ABRT_TXDATA_NOACK 3
122#define ABRT_GCALL_NOACK 4
123#define ABRT_GCALL_READ 5
124#define ABRT_SBYTE_ACKDET 7
125#define ABRT_SBYTE_NORSTRT 9
126#define ABRT_10B_RD_NORSTRT 10
Shinya Kuribayashice6eb572009-11-06 21:51:57 +0900127#define ABRT_MASTER_DIS 11
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300128#define ARB_LOST 12
129
Shinya Kuribayashice6eb572009-11-06 21:51:57 +0900130#define DW_IC_TX_ABRT_7B_ADDR_NOACK (1UL << ABRT_7B_ADDR_NOACK)
131#define DW_IC_TX_ABRT_10ADDR1_NOACK (1UL << ABRT_10ADDR1_NOACK)
132#define DW_IC_TX_ABRT_10ADDR2_NOACK (1UL << ABRT_10ADDR2_NOACK)
133#define DW_IC_TX_ABRT_TXDATA_NOACK (1UL << ABRT_TXDATA_NOACK)
134#define DW_IC_TX_ABRT_GCALL_NOACK (1UL << ABRT_GCALL_NOACK)
135#define DW_IC_TX_ABRT_GCALL_READ (1UL << ABRT_GCALL_READ)
136#define DW_IC_TX_ABRT_SBYTE_ACKDET (1UL << ABRT_SBYTE_ACKDET)
137#define DW_IC_TX_ABRT_SBYTE_NORSTRT (1UL << ABRT_SBYTE_NORSTRT)
138#define DW_IC_TX_ABRT_10B_RD_NORSTRT (1UL << ABRT_10B_RD_NORSTRT)
139#define DW_IC_TX_ABRT_MASTER_DIS (1UL << ABRT_MASTER_DIS)
140#define DW_IC_TX_ARB_LOST (1UL << ARB_LOST)
141
142#define DW_IC_TX_ABRT_NOACK (DW_IC_TX_ABRT_7B_ADDR_NOACK | \
143 DW_IC_TX_ABRT_10ADDR1_NOACK | \
144 DW_IC_TX_ABRT_10ADDR2_NOACK | \
145 DW_IC_TX_ABRT_TXDATA_NOACK | \
146 DW_IC_TX_ABRT_GCALL_NOACK)
147
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300148static char *abort_sources[] = {
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900149 [ABRT_7B_ADDR_NOACK] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300150 "slave address not acknowledged (7bit mode)",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900151 [ABRT_10ADDR1_NOACK] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300152 "first address byte not acknowledged (10bit mode)",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900153 [ABRT_10ADDR2_NOACK] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300154 "second address byte not acknowledged (10bit mode)",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900155 [ABRT_TXDATA_NOACK] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300156 "data not acknowledged",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900157 [ABRT_GCALL_NOACK] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300158 "no acknowledgement for a general call",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900159 [ABRT_GCALL_READ] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300160 "read after general call",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900161 [ABRT_SBYTE_ACKDET] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300162 "start byte acknowledged",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900163 [ABRT_SBYTE_NORSTRT] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300164 "trying to send start byte when restart is disabled",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900165 [ABRT_10B_RD_NORSTRT] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300166 "trying to read when restart is disabled (10bit mode)",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900167 [ABRT_MASTER_DIS] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300168 "trying to use disabled adapter",
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900169 [ARB_LOST] =
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300170 "lost arbitration",
171};
172
173/**
174 * struct dw_i2c_dev - private i2c-designware data
175 * @dev: driver model device node
176 * @base: IO registers pointer
177 * @cmd_complete: tx completion indicator
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300178 * @lock: protect this struct and IO registers
179 * @clk: input reference clock
180 * @cmd_err: run time hadware error code
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300181 * @msgs: points to an array of messages currently being transferred
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300182 * @msgs_num: the number of elements in msgs
183 * @msg_write_idx: the element index of the current tx message in the msgs
184 * array
185 * @tx_buf_len: the length of the current tx buffer
186 * @tx_buf: the current tx buffer
187 * @msg_read_idx: the element index of the current rx message in the msgs
188 * array
189 * @rx_buf_len: the length of the current rx buffer
190 * @rx_buf: the current rx buffer
191 * @msg_err: error status of the current transfer
192 * @status: i2c master status, one of STATUS_*
193 * @abort_source: copy of the TX_ABRT_SOURCE register
194 * @irq: interrupt number for the i2c master
195 * @adapter: i2c subsystem adapter node
196 * @tx_fifo_depth: depth of the hardware tx fifo
197 * @rx_fifo_depth: depth of the hardware rx fifo
198 */
199struct dw_i2c_dev {
200 struct device *dev;
201 void __iomem *base;
202 struct completion cmd_complete;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300203 struct mutex lock;
204 struct clk *clk;
205 int cmd_err;
206 struct i2c_msg *msgs;
207 int msgs_num;
208 int msg_write_idx;
Shinya Kuribayashied5e1dd2009-11-06 21:43:52 +0900209 u32 tx_buf_len;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300210 u8 *tx_buf;
211 int msg_read_idx;
Shinya Kuribayashied5e1dd2009-11-06 21:43:52 +0900212 u32 rx_buf_len;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300213 u8 *rx_buf;
214 int msg_err;
215 unsigned int status;
Shinya Kuribayashied5e1dd2009-11-06 21:43:52 +0900216 u32 abort_source;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300217 int irq;
218 struct i2c_adapter adapter;
219 unsigned int tx_fifo_depth;
220 unsigned int rx_fifo_depth;
221};
222
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700223static u32 dw_readl(struct dw_i2c_dev *dev, int offset)
224{
225 return readl(dev->base + offset);
226}
227
228static void dw_writel(struct dw_i2c_dev *dev, u32 b, int offset)
229{
230 writel(b, dev->base + offset);
231}
232
Shinya Kuribayashid60c7e82009-11-06 21:47:01 +0900233static u32
234i2c_dw_scl_hcnt(u32 ic_clk, u32 tSYMBOL, u32 tf, int cond, int offset)
235{
236 /*
237 * DesignWare I2C core doesn't seem to have solid strategy to meet
238 * the tHD;STA timing spec. Configuring _HCNT based on tHIGH spec
239 * will result in violation of the tHD;STA spec.
240 */
241 if (cond)
242 /*
243 * Conditional expression:
244 *
245 * IC_[FS]S_SCL_HCNT + (1+4+3) >= IC_CLK * tHIGH
246 *
247 * This is based on the DW manuals, and represents an ideal
248 * configuration. The resulting I2C bus speed will be
249 * faster than any of the others.
250 *
251 * If your hardware is free from tHD;STA issue, try this one.
252 */
253 return (ic_clk * tSYMBOL + 5000) / 10000 - 8 + offset;
254 else
255 /*
256 * Conditional expression:
257 *
258 * IC_[FS]S_SCL_HCNT + 3 >= IC_CLK * (tHD;STA + tf)
259 *
260 * This is just experimental rule; the tHD;STA period turned
261 * out to be proportinal to (_HCNT + 3). With this setting,
262 * we could meet both tHIGH and tHD;STA timing specs.
263 *
264 * If unsure, you'd better to take this alternative.
265 *
266 * The reason why we need to take into account "tf" here,
267 * is the same as described in i2c_dw_scl_lcnt().
268 */
269 return (ic_clk * (tSYMBOL + tf) + 5000) / 10000 - 3 + offset;
270}
271
272static u32 i2c_dw_scl_lcnt(u32 ic_clk, u32 tLOW, u32 tf, int offset)
273{
274 /*
275 * Conditional expression:
276 *
277 * IC_[FS]S_SCL_LCNT + 1 >= IC_CLK * (tLOW + tf)
278 *
279 * DW I2C core starts counting the SCL CNTs for the LOW period
280 * of the SCL clock (tLOW) as soon as it pulls the SCL line.
281 * In order to meet the tLOW timing spec, we need to take into
282 * account the fall time of SCL signal (tf). Default tf value
283 * should be 0.3 us, for safety.
284 */
285 return ((ic_clk * (tLOW + tf) + 5000) / 10000) - 1 + offset;
286}
287
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300288/**
289 * i2c_dw_init() - initialize the designware i2c master hardware
290 * @dev: device private data
291 *
292 * This functions configures and enables the I2C master.
293 * This function is called during I2C init function, and in case of timeout at
294 * run time.
295 */
296static void i2c_dw_init(struct dw_i2c_dev *dev)
297{
298 u32 input_clock_khz = clk_get_rate(dev->clk) / 1000;
Shinya Kuribayashid60c7e82009-11-06 21:47:01 +0900299 u32 ic_con, hcnt, lcnt;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300300
301 /* Disable the adapter */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700302 dw_writel(dev, 0, DW_IC_ENABLE);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300303
304 /* set standard and fast speed deviders for high/low periods */
Shinya Kuribayashid60c7e82009-11-06 21:47:01 +0900305
306 /* Standard-mode */
307 hcnt = i2c_dw_scl_hcnt(input_clock_khz,
308 40, /* tHD;STA = tHIGH = 4.0 us */
309 3, /* tf = 0.3 us */
310 0, /* 0: DW default, 1: Ideal */
311 0); /* No offset */
312 lcnt = i2c_dw_scl_lcnt(input_clock_khz,
313 47, /* tLOW = 4.7 us */
314 3, /* tf = 0.3 us */
315 0); /* No offset */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700316 dw_writel(dev, hcnt, DW_IC_SS_SCL_HCNT);
317 dw_writel(dev, lcnt, DW_IC_SS_SCL_LCNT);
Shinya Kuribayashid60c7e82009-11-06 21:47:01 +0900318 dev_dbg(dev->dev, "Standard-mode HCNT:LCNT = %d:%d\n", hcnt, lcnt);
319
320 /* Fast-mode */
321 hcnt = i2c_dw_scl_hcnt(input_clock_khz,
322 6, /* tHD;STA = tHIGH = 0.6 us */
323 3, /* tf = 0.3 us */
324 0, /* 0: DW default, 1: Ideal */
325 0); /* No offset */
326 lcnt = i2c_dw_scl_lcnt(input_clock_khz,
327 13, /* tLOW = 1.3 us */
328 3, /* tf = 0.3 us */
329 0); /* No offset */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700330 dw_writel(dev, hcnt, DW_IC_FS_SCL_HCNT);
331 dw_writel(dev, lcnt, DW_IC_FS_SCL_LCNT);
Shinya Kuribayashid60c7e82009-11-06 21:47:01 +0900332 dev_dbg(dev->dev, "Fast-mode HCNT:LCNT = %d:%d\n", hcnt, lcnt);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300333
Shinya Kuribayashi4cb6d1d2009-11-06 21:48:12 +0900334 /* Configure Tx/Rx FIFO threshold levels */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700335 dw_writel(dev, dev->tx_fifo_depth - 1, DW_IC_TX_TL);
336 dw_writel(dev, 0, DW_IC_RX_TL);
Shinya Kuribayashi4cb6d1d2009-11-06 21:48:12 +0900337
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300338 /* configure the i2c master */
339 ic_con = DW_IC_CON_MASTER | DW_IC_CON_SLAVE_DISABLE |
340 DW_IC_CON_RESTART_EN | DW_IC_CON_SPEED_FAST;
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700341 dw_writel(dev, ic_con, DW_IC_CON);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300342}
343
344/*
345 * Waiting for bus not busy
346 */
347static int i2c_dw_wait_bus_not_busy(struct dw_i2c_dev *dev)
348{
349 int timeout = TIMEOUT;
350
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700351 while (dw_readl(dev, DW_IC_STATUS) & DW_IC_STATUS_ACTIVITY) {
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300352 if (timeout <= 0) {
353 dev_warn(dev->dev, "timeout waiting for bus ready\n");
354 return -ETIMEDOUT;
355 }
356 timeout--;
357 mdelay(1);
358 }
359
360 return 0;
361}
362
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900363static void i2c_dw_xfer_init(struct dw_i2c_dev *dev)
364{
365 struct i2c_msg *msgs = dev->msgs;
366 u32 ic_con;
367
368 /* Disable the adapter */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700369 dw_writel(dev, 0, DW_IC_ENABLE);
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900370
371 /* set the slave (target) address */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700372 dw_writel(dev, msgs[dev->msg_write_idx].addr, DW_IC_TAR);
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900373
374 /* if the slave address is ten bit address, enable 10BITADDR */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700375 ic_con = dw_readl(dev, DW_IC_CON);
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900376 if (msgs[dev->msg_write_idx].flags & I2C_M_TEN)
377 ic_con |= DW_IC_CON_10BITADDR_MASTER;
378 else
379 ic_con &= ~DW_IC_CON_10BITADDR_MASTER;
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700380 dw_writel(dev, ic_con, DW_IC_CON);
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900381
382 /* Enable the adapter */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700383 dw_writel(dev, 1, DW_IC_ENABLE);
Shinya Kuribayashi201d6a72009-11-06 21:50:40 +0900384
385 /* Enable interrupts */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700386 dw_writel(dev, DW_IC_INTR_DEFAULT_MASK, DW_IC_INTR_MASK);
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900387}
388
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300389/*
Shinya Kuribayashi201d6a72009-11-06 21:50:40 +0900390 * Initiate (and continue) low level master read/write transaction.
391 * This function is only called from i2c_dw_isr, and pumping i2c_msg
392 * messages into the tx buffer. Even if the size of i2c_msg data is
393 * longer than the size of the tx buffer, it handles everything.
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300394 */
395static void
Shinya Kuribayashie77cf232009-11-06 21:46:04 +0900396i2c_dw_xfer_msg(struct dw_i2c_dev *dev)
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300397{
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300398 struct i2c_msg *msgs = dev->msgs;
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900399 u32 intr_mask;
Shinya Kuribayashiae722222009-11-06 21:49:39 +0900400 int tx_limit, rx_limit;
Shinya Kuribayashied5e1dd2009-11-06 21:43:52 +0900401 u32 addr = msgs[dev->msg_write_idx].addr;
402 u32 buf_len = dev->tx_buf_len;
Justin P. Mattock69932482011-07-26 23:06:29 -0700403 u8 *buf = dev->tx_buf;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300404
Shinya Kuribayashi201d6a72009-11-06 21:50:40 +0900405 intr_mask = DW_IC_INTR_DEFAULT_MASK;
Shinya Kuribayashic70c5cd2009-11-06 21:47:30 +0900406
Shinya Kuribayashi6d2ea482009-11-06 21:46:29 +0900407 for (; dev->msg_write_idx < dev->msgs_num; dev->msg_write_idx++) {
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900408 /*
409 * if target address has changed, we need to
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300410 * reprogram the target address in the i2c
411 * adapter when we are done with this transfer
412 */
Shinya Kuribayashi8f588e42009-11-06 21:51:18 +0900413 if (msgs[dev->msg_write_idx].addr != addr) {
414 dev_err(dev->dev,
415 "%s: invalid target address\n", __func__);
416 dev->msg_err = -EINVAL;
417 break;
418 }
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300419
420 if (msgs[dev->msg_write_idx].len == 0) {
421 dev_err(dev->dev,
422 "%s: invalid message length\n", __func__);
423 dev->msg_err = -EINVAL;
Shinya Kuribayashi8f588e42009-11-06 21:51:18 +0900424 break;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300425 }
426
427 if (!(dev->status & STATUS_WRITE_IN_PROGRESS)) {
428 /* new i2c_msg */
Shinya Kuribayashi26ea15b2009-11-06 21:49:14 +0900429 buf = msgs[dev->msg_write_idx].buf;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300430 buf_len = msgs[dev->msg_write_idx].len;
431 }
432
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700433 tx_limit = dev->tx_fifo_depth - dw_readl(dev, DW_IC_TXFLR);
434 rx_limit = dev->rx_fifo_depth - dw_readl(dev, DW_IC_RXFLR);
Shinya Kuribayashiae722222009-11-06 21:49:39 +0900435
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300436 while (buf_len > 0 && tx_limit > 0 && rx_limit > 0) {
437 if (msgs[dev->msg_write_idx].flags & I2C_M_RD) {
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700438 dw_writel(dev, 0x100, DW_IC_DATA_CMD);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300439 rx_limit--;
440 } else
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700441 dw_writel(dev, *buf++, DW_IC_DATA_CMD);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300442 tx_limit--; buf_len--;
443 }
Shinya Kuribayashic70c5cd2009-11-06 21:47:30 +0900444
Shinya Kuribayashi26ea15b2009-11-06 21:49:14 +0900445 dev->tx_buf = buf;
Shinya Kuribayashic70c5cd2009-11-06 21:47:30 +0900446 dev->tx_buf_len = buf_len;
447
448 if (buf_len > 0) {
449 /* more bytes to be written */
Shinya Kuribayashic70c5cd2009-11-06 21:47:30 +0900450 dev->status |= STATUS_WRITE_IN_PROGRESS;
451 break;
Shinya Kuribayashi69151e52009-11-06 21:51:00 +0900452 } else
Shinya Kuribayashic70c5cd2009-11-06 21:47:30 +0900453 dev->status &= ~STATUS_WRITE_IN_PROGRESS;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300454 }
455
Shinya Kuribayashi69151e52009-11-06 21:51:00 +0900456 /*
457 * If i2c_msg index search is completed, we don't need TX_EMPTY
458 * interrupt any more.
459 */
460 if (dev->msg_write_idx == dev->msgs_num)
461 intr_mask &= ~DW_IC_INTR_TX_EMPTY;
462
Shinya Kuribayashi8f588e42009-11-06 21:51:18 +0900463 if (dev->msg_err)
464 intr_mask = 0;
465
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700466 dw_writel(dev, intr_mask, DW_IC_INTR_MASK);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300467}
468
469static void
Shinya Kuribayashi78839bd2009-11-06 21:45:39 +0900470i2c_dw_read(struct dw_i2c_dev *dev)
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300471{
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300472 struct i2c_msg *msgs = dev->msgs;
Shinya Kuribayashiae722222009-11-06 21:49:39 +0900473 int rx_valid;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300474
Shinya Kuribayashi6d2ea482009-11-06 21:46:29 +0900475 for (; dev->msg_read_idx < dev->msgs_num; dev->msg_read_idx++) {
Shinya Kuribayashied5e1dd2009-11-06 21:43:52 +0900476 u32 len;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300477 u8 *buf;
478
479 if (!(msgs[dev->msg_read_idx].flags & I2C_M_RD))
480 continue;
481
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300482 if (!(dev->status & STATUS_READ_IN_PROGRESS)) {
483 len = msgs[dev->msg_read_idx].len;
484 buf = msgs[dev->msg_read_idx].buf;
485 } else {
486 len = dev->rx_buf_len;
487 buf = dev->rx_buf;
488 }
489
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700490 rx_valid = dw_readl(dev, DW_IC_RXFLR);
Shinya Kuribayashiae722222009-11-06 21:49:39 +0900491
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300492 for (; len > 0 && rx_valid > 0; len--, rx_valid--)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700493 *buf++ = dw_readl(dev, DW_IC_DATA_CMD);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300494
495 if (len > 0) {
496 dev->status |= STATUS_READ_IN_PROGRESS;
497 dev->rx_buf_len = len;
498 dev->rx_buf = buf;
499 return;
500 } else
501 dev->status &= ~STATUS_READ_IN_PROGRESS;
502 }
503}
504
Shinya Kuribayashice6eb572009-11-06 21:51:57 +0900505static int i2c_dw_handle_tx_abort(struct dw_i2c_dev *dev)
506{
507 unsigned long abort_source = dev->abort_source;
508 int i;
509
Shinya Kuribayashi6d1ea0f2009-11-16 20:40:14 +0900510 if (abort_source & DW_IC_TX_ABRT_NOACK) {
Akinobu Mita984b3f52010-03-05 13:41:37 -0800511 for_each_set_bit(i, &abort_source, ARRAY_SIZE(abort_sources))
Shinya Kuribayashi6d1ea0f2009-11-16 20:40:14 +0900512 dev_dbg(dev->dev,
513 "%s: %s\n", __func__, abort_sources[i]);
514 return -EREMOTEIO;
515 }
516
Akinobu Mita984b3f52010-03-05 13:41:37 -0800517 for_each_set_bit(i, &abort_source, ARRAY_SIZE(abort_sources))
Shinya Kuribayashice6eb572009-11-06 21:51:57 +0900518 dev_err(dev->dev, "%s: %s\n", __func__, abort_sources[i]);
519
520 if (abort_source & DW_IC_TX_ARB_LOST)
521 return -EAGAIN;
Shinya Kuribayashice6eb572009-11-06 21:51:57 +0900522 else if (abort_source & DW_IC_TX_ABRT_GCALL_READ)
523 return -EINVAL; /* wrong msgs[] data */
524 else
525 return -EIO;
526}
527
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300528/*
529 * Prepare controller for a transaction and call i2c_dw_xfer_msg
530 */
531static int
532i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
533{
534 struct dw_i2c_dev *dev = i2c_get_adapdata(adap);
535 int ret;
536
537 dev_dbg(dev->dev, "%s: msgs: %d\n", __func__, num);
538
539 mutex_lock(&dev->lock);
540
541 INIT_COMPLETION(dev->cmd_complete);
542 dev->msgs = msgs;
543 dev->msgs_num = num;
544 dev->cmd_err = 0;
545 dev->msg_write_idx = 0;
546 dev->msg_read_idx = 0;
547 dev->msg_err = 0;
548 dev->status = STATUS_IDLE;
Shinya Kuribayashice6eb572009-11-06 21:51:57 +0900549 dev->abort_source = 0;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300550
551 ret = i2c_dw_wait_bus_not_busy(dev);
552 if (ret < 0)
553 goto done;
554
555 /* start the transfers */
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900556 i2c_dw_xfer_init(dev);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300557
558 /* wait for tx to complete */
559 ret = wait_for_completion_interruptible_timeout(&dev->cmd_complete, HZ);
560 if (ret == 0) {
561 dev_err(dev->dev, "controller timed out\n");
562 i2c_dw_init(dev);
563 ret = -ETIMEDOUT;
564 goto done;
565 } else if (ret < 0)
566 goto done;
567
568 if (dev->msg_err) {
569 ret = dev->msg_err;
570 goto done;
571 }
572
573 /* no error */
574 if (likely(!dev->cmd_err)) {
Shinya Kuribayashi07745392009-11-06 21:47:51 +0900575 /* Disable the adapter */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700576 dw_writel(dev, 0, DW_IC_ENABLE);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300577 ret = num;
578 goto done;
579 }
580
581 /* We have an error */
582 if (dev->cmd_err == DW_IC_ERR_TX_ABRT) {
Shinya Kuribayashice6eb572009-11-06 21:51:57 +0900583 ret = i2c_dw_handle_tx_abort(dev);
584 goto done;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300585 }
586 ret = -EIO;
587
588done:
589 mutex_unlock(&dev->lock);
590
591 return ret;
592}
593
594static u32 i2c_dw_func(struct i2c_adapter *adap)
595{
Shinya Kuribayashi52d7e432009-11-06 21:50:02 +0900596 return I2C_FUNC_I2C |
597 I2C_FUNC_10BIT_ADDR |
598 I2C_FUNC_SMBUS_BYTE |
599 I2C_FUNC_SMBUS_BYTE_DATA |
600 I2C_FUNC_SMBUS_WORD_DATA |
601 I2C_FUNC_SMBUS_I2C_BLOCK;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300602}
603
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900604static u32 i2c_dw_read_clear_intrbits(struct dw_i2c_dev *dev)
605{
606 u32 stat;
607
608 /*
609 * The IC_INTR_STAT register just indicates "enabled" interrupts.
610 * Ths unmasked raw version of interrupt status bits are available
611 * in the IC_RAW_INTR_STAT register.
612 *
613 * That is,
614 * stat = readl(IC_INTR_STAT);
615 * equals to,
616 * stat = readl(IC_RAW_INTR_STAT) & readl(IC_INTR_MASK);
617 *
618 * The raw version might be useful for debugging purposes.
619 */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700620 stat = dw_readl(dev, DW_IC_INTR_STAT);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900621
622 /*
623 * Do not use the IC_CLR_INTR register to clear interrupts, or
624 * you'll miss some interrupts, triggered during the period from
625 * readl(IC_INTR_STAT) to readl(IC_CLR_INTR).
626 *
627 * Instead, use the separately-prepared IC_CLR_* registers.
628 */
629 if (stat & DW_IC_INTR_RX_UNDER)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700630 dw_readl(dev, DW_IC_CLR_RX_UNDER);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900631 if (stat & DW_IC_INTR_RX_OVER)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700632 dw_readl(dev, DW_IC_CLR_RX_OVER);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900633 if (stat & DW_IC_INTR_TX_OVER)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700634 dw_readl(dev, DW_IC_CLR_TX_OVER);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900635 if (stat & DW_IC_INTR_RD_REQ)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700636 dw_readl(dev, DW_IC_CLR_RD_REQ);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900637 if (stat & DW_IC_INTR_TX_ABRT) {
638 /*
639 * The IC_TX_ABRT_SOURCE register is cleared whenever
640 * the IC_CLR_TX_ABRT is read. Preserve it beforehand.
641 */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700642 dev->abort_source = dw_readl(dev, DW_IC_TX_ABRT_SOURCE);
643 dw_readl(dev, DW_IC_CLR_TX_ABRT);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900644 }
645 if (stat & DW_IC_INTR_RX_DONE)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700646 dw_readl(dev, DW_IC_CLR_RX_DONE);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900647 if (stat & DW_IC_INTR_ACTIVITY)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700648 dw_readl(dev, DW_IC_CLR_ACTIVITY);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900649 if (stat & DW_IC_INTR_STOP_DET)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700650 dw_readl(dev, DW_IC_CLR_STOP_DET);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900651 if (stat & DW_IC_INTR_START_DET)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700652 dw_readl(dev, DW_IC_CLR_START_DET);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900653 if (stat & DW_IC_INTR_GEN_CALL)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700654 dw_readl(dev, DW_IC_CLR_GEN_CALL);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900655
656 return stat;
657}
658
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300659/*
660 * Interrupt service routine. This gets called whenever an I2C interrupt
661 * occurs.
662 */
663static irqreturn_t i2c_dw_isr(int this_irq, void *dev_id)
664{
665 struct dw_i2c_dev *dev = dev_id;
Shinya Kuribayashied5e1dd2009-11-06 21:43:52 +0900666 u32 stat;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300667
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900668 stat = i2c_dw_read_clear_intrbits(dev);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300669 dev_dbg(dev->dev, "%s: stat=0x%x\n", __func__, stat);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900670
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300671 if (stat & DW_IC_INTR_TX_ABRT) {
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300672 dev->cmd_err |= DW_IC_ERR_TX_ABRT;
673 dev->status = STATUS_IDLE;
Shinya Kuribayashi597fe312009-11-06 21:51:36 +0900674
675 /*
676 * Anytime TX_ABRT is set, the contents of the tx/rx
677 * buffers are flushed. Make sure to skip them.
678 */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700679 dw_writel(dev, 0, DW_IC_INTR_MASK);
Shinya Kuribayashi597fe312009-11-06 21:51:36 +0900680 goto tx_aborted;
Shinya Kuribayashi07745392009-11-06 21:47:51 +0900681 }
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300682
Shinya Kuribayashi21a89d42009-11-06 21:48:33 +0900683 if (stat & DW_IC_INTR_RX_FULL)
Shinya Kuribayashi07745392009-11-06 21:47:51 +0900684 i2c_dw_read(dev);
Shinya Kuribayashi21a89d42009-11-06 21:48:33 +0900685
686 if (stat & DW_IC_INTR_TX_EMPTY)
Shinya Kuribayashi07745392009-11-06 21:47:51 +0900687 i2c_dw_xfer_msg(dev);
Shinya Kuribayashi07745392009-11-06 21:47:51 +0900688
689 /*
690 * No need to modify or disable the interrupt mask here.
691 * i2c_dw_xfer_msg() will take care of it according to
692 * the current transmit status.
693 */
694
Shinya Kuribayashi597fe312009-11-06 21:51:36 +0900695tx_aborted:
Shinya Kuribayashi8f588e42009-11-06 21:51:18 +0900696 if ((stat & (DW_IC_INTR_TX_ABRT | DW_IC_INTR_STOP_DET)) || dev->msg_err)
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300697 complete(&dev->cmd_complete);
698
699 return IRQ_HANDLED;
700}
701
702static struct i2c_algorithm i2c_dw_algo = {
703 .master_xfer = i2c_dw_xfer,
704 .functionality = i2c_dw_func,
705};
706
707static int __devinit dw_i2c_probe(struct platform_device *pdev)
708{
709 struct dw_i2c_dev *dev;
710 struct i2c_adapter *adap;
Shinya Kuribayashi91b52ca2009-11-06 21:45:07 +0900711 struct resource *mem, *ioarea;
712 int irq, r;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300713
714 /* NOTE: driver uses the static register mapping */
715 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
716 if (!mem) {
717 dev_err(&pdev->dev, "no mem resource?\n");
718 return -EINVAL;
719 }
720
Shinya Kuribayashi91b52ca2009-11-06 21:45:07 +0900721 irq = platform_get_irq(pdev, 0);
722 if (irq < 0) {
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300723 dev_err(&pdev->dev, "no irq resource?\n");
Shinya Kuribayashi91b52ca2009-11-06 21:45:07 +0900724 return irq; /* -ENXIO */
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300725 }
726
727 ioarea = request_mem_region(mem->start, resource_size(mem),
728 pdev->name);
729 if (!ioarea) {
730 dev_err(&pdev->dev, "I2C region already claimed\n");
731 return -EBUSY;
732 }
733
734 dev = kzalloc(sizeof(struct dw_i2c_dev), GFP_KERNEL);
735 if (!dev) {
736 r = -ENOMEM;
737 goto err_release_region;
738 }
739
740 init_completion(&dev->cmd_complete);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300741 mutex_init(&dev->lock);
742 dev->dev = get_device(&pdev->dev);
Shinya Kuribayashi91b52ca2009-11-06 21:45:07 +0900743 dev->irq = irq;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300744 platform_set_drvdata(pdev, dev);
745
746 dev->clk = clk_get(&pdev->dev, NULL);
747 if (IS_ERR(dev->clk)) {
748 r = -ENODEV;
749 goto err_free_mem;
750 }
751 clk_enable(dev->clk);
752
753 dev->base = ioremap(mem->start, resource_size(mem));
754 if (dev->base == NULL) {
755 dev_err(&pdev->dev, "failure mapping io resources\n");
756 r = -EBUSY;
757 goto err_unuse_clocks;
758 }
759 {
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700760 u32 param1 = dw_readl(dev, DW_IC_COMP_PARAM_1);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300761
762 dev->tx_fifo_depth = ((param1 >> 16) & 0xff) + 1;
763 dev->rx_fifo_depth = ((param1 >> 8) & 0xff) + 1;
764 }
765 i2c_dw_init(dev);
766
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700767 dw_writel(dev, 0, DW_IC_INTR_MASK); /* disable IRQ */
Shinya Kuribayashi201d6a72009-11-06 21:50:40 +0900768 r = request_irq(dev->irq, i2c_dw_isr, IRQF_DISABLED, pdev->name, dev);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300769 if (r) {
770 dev_err(&pdev->dev, "failure requesting irq %i\n", dev->irq);
771 goto err_iounmap;
772 }
773
774 adap = &dev->adapter;
775 i2c_set_adapdata(adap, dev);
776 adap->owner = THIS_MODULE;
777 adap->class = I2C_CLASS_HWMON;
778 strlcpy(adap->name, "Synopsys DesignWare I2C adapter",
779 sizeof(adap->name));
780 adap->algo = &i2c_dw_algo;
781 adap->dev.parent = &pdev->dev;
782
783 adap->nr = pdev->id;
784 r = i2c_add_numbered_adapter(adap);
785 if (r) {
786 dev_err(&pdev->dev, "failure adding adapter\n");
787 goto err_free_irq;
788 }
789
790 return 0;
791
792err_free_irq:
793 free_irq(dev->irq, dev);
794err_iounmap:
795 iounmap(dev->base);
796err_unuse_clocks:
797 clk_disable(dev->clk);
798 clk_put(dev->clk);
799 dev->clk = NULL;
800err_free_mem:
801 platform_set_drvdata(pdev, NULL);
802 put_device(&pdev->dev);
803 kfree(dev);
804err_release_region:
805 release_mem_region(mem->start, resource_size(mem));
806
807 return r;
808}
809
810static int __devexit dw_i2c_remove(struct platform_device *pdev)
811{
812 struct dw_i2c_dev *dev = platform_get_drvdata(pdev);
813 struct resource *mem;
814
815 platform_set_drvdata(pdev, NULL);
816 i2c_del_adapter(&dev->adapter);
817 put_device(&pdev->dev);
818
819 clk_disable(dev->clk);
820 clk_put(dev->clk);
821 dev->clk = NULL;
822
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700823 dw_writel(dev, 0, DW_IC_ENABLE);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300824 free_irq(dev->irq, dev);
825 kfree(dev);
826
827 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
828 release_mem_region(mem->start, resource_size(mem));
829 return 0;
830}
831
832/* work with hotplug and coldplug */
833MODULE_ALIAS("platform:i2c_designware");
834
835static struct platform_driver dw_i2c_driver = {
836 .remove = __devexit_p(dw_i2c_remove),
837 .driver = {
838 .name = "i2c_designware",
839 .owner = THIS_MODULE,
840 },
841};
842
843static int __init dw_i2c_init_driver(void)
844{
845 return platform_driver_probe(&dw_i2c_driver, dw_i2c_probe);
846}
847module_init(dw_i2c_init_driver);
848
849static void __exit dw_i2c_exit_driver(void)
850{
851 platform_driver_unregister(&dw_i2c_driver);
852}
853module_exit(dw_i2c_exit_driver);
854
855MODULE_AUTHOR("Baruch Siach <baruch@tkos.co.il>");
856MODULE_DESCRIPTION("Synopsys DesignWare I2C bus adapter");
857MODULE_LICENSE("GPL");