1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2002 Motorola GSG-China
6 * Darius Augulis, Teltonika Inc.
9 * Implementation of I2C Adapter/Algorithm Driver
10 * for I2C Bus integrated in Freescale i.MX/MXC processors
12 * Derived from Motorola GSG China I2C example driver
14 * Copyright (C) 2005 Torsten Koschorrek <koschorrek at synertronixx.de
15 * Copyright (C) 2005 Matthias Blaschke <blaschke at synertronixx.de
16 * Copyright (C) 2007 RightHand Technologies, Inc.
17 * Copyright (C) 2008 Darius Augulis <darius.augulis at teltonika.lt>
19 * Copyright 2013 Freescale Semiconductor, Inc.
23 #include <linux/clk.h>
24 #include <linux/completion.h>
25 #include <linux/delay.h>
26 #include <linux/dma-mapping.h>
27 #include <linux/dmaengine.h>
28 #include <linux/dmapool.h>
29 #include <linux/err.h>
30 #include <linux/errno.h>
31 #include <linux/gpio/consumer.h>
32 #include <linux/i2c.h>
33 #include <linux/init.h>
34 #include <linux/interrupt.h>
36 #include <linux/kernel.h>
37 #include <linux/module.h>
39 #include <linux/of_device.h>
40 #include <linux/of_dma.h>
41 #include <linux/pinctrl/consumer.h>
42 #include <linux/platform_data/i2c-imx.h>
43 #include <linux/platform_device.h>
44 #include <linux/pm_runtime.h>
45 #include <linux/sched.h>
46 #include <linux/slab.h>
48 /* This will be the driver name the kernel reports */
49 #define DRIVER_NAME "imx-i2c"
52 #define IMX_I2C_BIT_RATE 100000 /* 100kHz */
55 * Enable DMA if transfer byte size is bigger than this threshold.
56 * As the hardware request, it must bigger than 4 bytes.\
57 * I have set '16' here, maybe it's not the best but I think it's
60 #define DMA_THRESHOLD 16
61 #define DMA_TIMEOUT 1000
64 * the I2C register offset is different between SoCs,
65 * to provid support for all these chips, split the
66 * register offset into a fixed base address and a
67 * variable shift value, then the full register offset
68 * will be calculated by
69 * reg_off = ( reg_base_addr << reg_shift)
71 #define IMX_I2C_IADR 0x00 /* i2c slave address */
72 #define IMX_I2C_IFDR 0x01 /* i2c frequency divider */
73 #define IMX_I2C_I2CR 0x02 /* i2c control */
74 #define IMX_I2C_I2SR 0x03 /* i2c status */
75 #define IMX_I2C_I2DR 0x04 /* i2c transfer data */
77 #define IMX_I2C_REGSHIFT 2
78 #define VF610_I2C_REGSHIFT 0
80 /* Bits of IMX I2C registers */
81 #define I2SR_RXAK 0x01
86 #define I2SR_IAAS 0x40
88 #define I2CR_DMAEN 0x02
89 #define I2CR_RSTA 0x04
90 #define I2CR_TXAK 0x08
92 #define I2CR_MSTA 0x20
93 #define I2CR_IIEN 0x40
96 /* register bits different operating codes definition:
97 * 1) I2SR: Interrupt flags clear operation differ between SoCs:
98 * - write zero to clear(w0c) INT flag on i.MX,
99 * - but write one to clear(w1c) INT flag on Vybrid.
100 * 2) I2CR: I2C module enable operation also differ between SoCs:
101 * - set I2CR_IEN bit enable the module on i.MX,
102 * - but clear I2CR_IEN bit enable the module on Vybrid.
104 #define I2SR_CLR_OPCODE_W0C 0x0
105 #define I2SR_CLR_OPCODE_W1C (I2SR_IAL | I2SR_IIF)
106 #define I2CR_IEN_OPCODE_0 0x0
107 #define I2CR_IEN_OPCODE_1 I2CR_IEN
109 #define I2C_PM_TIMEOUT 10 /* ms */
112 * sorted list of clock divider, register value pairs
113 * taken from table 26-5, p.26-9, Freescale i.MX
114 * Integrated Portable System Processor Reference Manual
115 * Document Number: MC9328MXLRM, Rev. 5.1, 06/2007
117 * Duplicated divider values removed from list
119 struct imx_i2c_clk_pair
{
124 static struct imx_i2c_clk_pair imx_i2c_clk_div
[] = {
125 { 22, 0x20 }, { 24, 0x21 }, { 26, 0x22 }, { 28, 0x23 },
126 { 30, 0x00 }, { 32, 0x24 }, { 36, 0x25 }, { 40, 0x26 },
127 { 42, 0x03 }, { 44, 0x27 }, { 48, 0x28 }, { 52, 0x05 },
128 { 56, 0x29 }, { 60, 0x06 }, { 64, 0x2A }, { 72, 0x2B },
129 { 80, 0x2C }, { 88, 0x09 }, { 96, 0x2D }, { 104, 0x0A },
130 { 112, 0x2E }, { 128, 0x2F }, { 144, 0x0C }, { 160, 0x30 },
131 { 192, 0x31 }, { 224, 0x32 }, { 240, 0x0F }, { 256, 0x33 },
132 { 288, 0x10 }, { 320, 0x34 }, { 384, 0x35 }, { 448, 0x36 },
133 { 480, 0x13 }, { 512, 0x37 }, { 576, 0x14 }, { 640, 0x38 },
134 { 768, 0x39 }, { 896, 0x3A }, { 960, 0x17 }, { 1024, 0x3B },
135 { 1152, 0x18 }, { 1280, 0x3C }, { 1536, 0x3D }, { 1792, 0x3E },
136 { 1920, 0x1B }, { 2048, 0x3F }, { 2304, 0x1C }, { 2560, 0x1D },
137 { 3072, 0x1E }, { 3840, 0x1F }
140 /* Vybrid VF610 clock divider, register value pairs */
141 static struct imx_i2c_clk_pair vf610_i2c_clk_div
[] = {
142 { 20, 0x00 }, { 22, 0x01 }, { 24, 0x02 }, { 26, 0x03 },
143 { 28, 0x04 }, { 30, 0x05 }, { 32, 0x09 }, { 34, 0x06 },
144 { 36, 0x0A }, { 40, 0x07 }, { 44, 0x0C }, { 48, 0x0D },
145 { 52, 0x43 }, { 56, 0x0E }, { 60, 0x45 }, { 64, 0x12 },
146 { 68, 0x0F }, { 72, 0x13 }, { 80, 0x14 }, { 88, 0x15 },
147 { 96, 0x19 }, { 104, 0x16 }, { 112, 0x1A }, { 128, 0x17 },
148 { 136, 0x4F }, { 144, 0x1C }, { 160, 0x1D }, { 176, 0x55 },
149 { 192, 0x1E }, { 208, 0x56 }, { 224, 0x22 }, { 228, 0x24 },
150 { 240, 0x1F }, { 256, 0x23 }, { 288, 0x5C }, { 320, 0x25 },
151 { 384, 0x26 }, { 448, 0x2A }, { 480, 0x27 }, { 512, 0x2B },
152 { 576, 0x2C }, { 640, 0x2D }, { 768, 0x31 }, { 896, 0x32 },
153 { 960, 0x2F }, { 1024, 0x33 }, { 1152, 0x34 }, { 1280, 0x35 },
154 { 1536, 0x36 }, { 1792, 0x3A }, { 1920, 0x37 }, { 2048, 0x3B },
155 { 2304, 0x3C }, { 2560, 0x3D }, { 3072, 0x3E }, { 3584, 0x7A },
156 { 3840, 0x3F }, { 4096, 0x7B }, { 5120, 0x7D }, { 6144, 0x7E },
165 struct imx_i2c_hwdata
{
166 enum imx_i2c_type devtype
;
168 struct imx_i2c_clk_pair
*clk_div
;
170 unsigned i2sr_clr_opcode
;
171 unsigned i2cr_ien_opcode
;
175 struct dma_chan
*chan_tx
;
176 struct dma_chan
*chan_rx
;
177 struct dma_chan
*chan_using
;
178 struct completion cmd_complete
;
180 unsigned int dma_len
;
181 enum dma_transfer_direction dma_transfer_dir
;
182 enum dma_data_direction dma_data_dir
;
185 struct imx_i2c_struct
{
186 struct i2c_adapter adapter
;
188 struct notifier_block clk_change_nb
;
190 wait_queue_head_t queue
;
192 unsigned int disable_delay
;
194 unsigned int ifdr
; /* IMX_I2C_IFDR */
195 unsigned int cur_clk
;
196 unsigned int bitrate
;
197 const struct imx_i2c_hwdata
*hwdata
;
198 struct i2c_bus_recovery_info rinfo
;
200 struct pinctrl
*pinctrl
;
201 struct pinctrl_state
*pinctrl_pins_default
;
202 struct pinctrl_state
*pinctrl_pins_gpio
;
204 struct imx_i2c_dma
*dma
;
207 static const struct imx_i2c_hwdata imx1_i2c_hwdata
= {
209 .regshift
= IMX_I2C_REGSHIFT
,
210 .clk_div
= imx_i2c_clk_div
,
211 .ndivs
= ARRAY_SIZE(imx_i2c_clk_div
),
212 .i2sr_clr_opcode
= I2SR_CLR_OPCODE_W0C
,
213 .i2cr_ien_opcode
= I2CR_IEN_OPCODE_1
,
217 static const struct imx_i2c_hwdata imx21_i2c_hwdata
= {
218 .devtype
= IMX21_I2C
,
219 .regshift
= IMX_I2C_REGSHIFT
,
220 .clk_div
= imx_i2c_clk_div
,
221 .ndivs
= ARRAY_SIZE(imx_i2c_clk_div
),
222 .i2sr_clr_opcode
= I2SR_CLR_OPCODE_W0C
,
223 .i2cr_ien_opcode
= I2CR_IEN_OPCODE_1
,
227 static struct imx_i2c_hwdata vf610_i2c_hwdata
= {
228 .devtype
= VF610_I2C
,
229 .regshift
= VF610_I2C_REGSHIFT
,
230 .clk_div
= vf610_i2c_clk_div
,
231 .ndivs
= ARRAY_SIZE(vf610_i2c_clk_div
),
232 .i2sr_clr_opcode
= I2SR_CLR_OPCODE_W1C
,
233 .i2cr_ien_opcode
= I2CR_IEN_OPCODE_0
,
237 static const struct platform_device_id imx_i2c_devtype
[] = {
240 .driver_data
= (kernel_ulong_t
)&imx1_i2c_hwdata
,
243 .driver_data
= (kernel_ulong_t
)&imx21_i2c_hwdata
,
248 MODULE_DEVICE_TABLE(platform
, imx_i2c_devtype
);
250 static const struct of_device_id i2c_imx_dt_ids
[] = {
251 { .compatible
= "fsl,imx1-i2c", .data
= &imx1_i2c_hwdata
, },
252 { .compatible
= "fsl,imx21-i2c", .data
= &imx21_i2c_hwdata
, },
253 { .compatible
= "fsl,vf610-i2c", .data
= &vf610_i2c_hwdata
, },
256 MODULE_DEVICE_TABLE(of
, i2c_imx_dt_ids
);
258 static inline int is_imx1_i2c(struct imx_i2c_struct
*i2c_imx
)
260 return i2c_imx
->hwdata
->devtype
== IMX1_I2C
;
263 static inline void imx_i2c_write_reg(unsigned int val
,
264 struct imx_i2c_struct
*i2c_imx
, unsigned int reg
)
266 writeb(val
, i2c_imx
->base
+ (reg
<< i2c_imx
->hwdata
->regshift
));
269 static inline unsigned char imx_i2c_read_reg(struct imx_i2c_struct
*i2c_imx
,
272 return readb(i2c_imx
->base
+ (reg
<< i2c_imx
->hwdata
->regshift
));
275 /* Functions for DMA support */
276 static void i2c_imx_dma_request(struct imx_i2c_struct
*i2c_imx
,
279 struct imx_i2c_dma
*dma
;
280 struct dma_slave_config dma_sconfig
;
281 struct device
*dev
= &i2c_imx
->adapter
.dev
;
284 dma
= devm_kzalloc(dev
, sizeof(*dma
), GFP_KERNEL
);
288 dma
->chan_tx
= dma_request_slave_channel(dev
, "tx");
290 dev_dbg(dev
, "can't request DMA tx channel\n");
294 dma_sconfig
.dst_addr
= phy_addr
+
295 (IMX_I2C_I2DR
<< i2c_imx
->hwdata
->regshift
);
296 dma_sconfig
.dst_addr_width
= DMA_SLAVE_BUSWIDTH_1_BYTE
;
297 dma_sconfig
.dst_maxburst
= 1;
298 dma_sconfig
.direction
= DMA_MEM_TO_DEV
;
299 ret
= dmaengine_slave_config(dma
->chan_tx
, &dma_sconfig
);
301 dev_dbg(dev
, "can't configure tx channel\n");
305 dma
->chan_rx
= dma_request_slave_channel(dev
, "rx");
307 dev_dbg(dev
, "can't request DMA rx channel\n");
311 dma_sconfig
.src_addr
= phy_addr
+
312 (IMX_I2C_I2DR
<< i2c_imx
->hwdata
->regshift
);
313 dma_sconfig
.src_addr_width
= DMA_SLAVE_BUSWIDTH_1_BYTE
;
314 dma_sconfig
.src_maxburst
= 1;
315 dma_sconfig
.direction
= DMA_DEV_TO_MEM
;
316 ret
= dmaengine_slave_config(dma
->chan_rx
, &dma_sconfig
);
318 dev_dbg(dev
, "can't configure rx channel\n");
323 init_completion(&dma
->cmd_complete
);
324 dev_info(dev
, "using %s (tx) and %s (rx) for DMA transfers\n",
325 dma_chan_name(dma
->chan_tx
), dma_chan_name(dma
->chan_rx
));
330 dma_release_channel(dma
->chan_rx
);
332 dma_release_channel(dma
->chan_tx
);
334 devm_kfree(dev
, dma
);
335 dev_info(dev
, "can't use DMA, using PIO instead.\n");
338 static void i2c_imx_dma_callback(void *arg
)
340 struct imx_i2c_struct
*i2c_imx
= (struct imx_i2c_struct
*)arg
;
341 struct imx_i2c_dma
*dma
= i2c_imx
->dma
;
343 dma_unmap_single(dma
->chan_using
->device
->dev
, dma
->dma_buf
,
344 dma
->dma_len
, dma
->dma_data_dir
);
345 complete(&dma
->cmd_complete
);
348 static int i2c_imx_dma_xfer(struct imx_i2c_struct
*i2c_imx
,
349 struct i2c_msg
*msgs
)
351 struct imx_i2c_dma
*dma
= i2c_imx
->dma
;
352 struct dma_async_tx_descriptor
*txdesc
;
353 struct device
*dev
= &i2c_imx
->adapter
.dev
;
354 struct device
*chan_dev
= dma
->chan_using
->device
->dev
;
356 dma
->dma_buf
= dma_map_single(chan_dev
, msgs
->buf
,
357 dma
->dma_len
, dma
->dma_data_dir
);
358 if (dma_mapping_error(chan_dev
, dma
->dma_buf
)) {
359 dev_err(dev
, "DMA mapping failed\n");
363 txdesc
= dmaengine_prep_slave_single(dma
->chan_using
, dma
->dma_buf
,
364 dma
->dma_len
, dma
->dma_transfer_dir
,
365 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
367 dev_err(dev
, "Not able to get desc for DMA xfer\n");
371 reinit_completion(&dma
->cmd_complete
);
372 txdesc
->callback
= i2c_imx_dma_callback
;
373 txdesc
->callback_param
= i2c_imx
;
374 if (dma_submit_error(dmaengine_submit(txdesc
))) {
375 dev_err(dev
, "DMA submit failed\n");
379 dma_async_issue_pending(dma
->chan_using
);
383 dmaengine_terminate_all(dma
->chan_using
);
385 dma_unmap_single(chan_dev
, dma
->dma_buf
,
386 dma
->dma_len
, dma
->dma_data_dir
);
391 static void i2c_imx_dma_free(struct imx_i2c_struct
*i2c_imx
)
393 struct imx_i2c_dma
*dma
= i2c_imx
->dma
;
398 dma_release_channel(dma
->chan_tx
);
401 dma_release_channel(dma
->chan_rx
);
404 dma
->chan_using
= NULL
;
407 static int i2c_imx_bus_busy(struct imx_i2c_struct
*i2c_imx
, int for_busy
)
409 unsigned long orig_jiffies
= jiffies
;
412 dev_dbg(&i2c_imx
->adapter
.dev
, "<%s>\n", __func__
);
415 temp
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2SR
);
417 /* check for arbitration lost */
418 if (temp
& I2SR_IAL
) {
420 imx_i2c_write_reg(temp
, i2c_imx
, IMX_I2C_I2SR
);
424 if (for_busy
&& (temp
& I2SR_IBB
)) {
425 i2c_imx
->stopped
= 0;
428 if (!for_busy
&& !(temp
& I2SR_IBB
)) {
429 i2c_imx
->stopped
= 1;
432 if (time_after(jiffies
, orig_jiffies
+ msecs_to_jiffies(500))) {
433 dev_dbg(&i2c_imx
->adapter
.dev
,
434 "<%s> I2C bus is busy\n", __func__
);
443 static int i2c_imx_trx_complete(struct imx_i2c_struct
*i2c_imx
)
445 wait_event_timeout(i2c_imx
->queue
, i2c_imx
->i2csr
& I2SR_IIF
, HZ
/ 10);
447 if (unlikely(!(i2c_imx
->i2csr
& I2SR_IIF
))) {
448 dev_dbg(&i2c_imx
->adapter
.dev
, "<%s> Timeout\n", __func__
);
451 dev_dbg(&i2c_imx
->adapter
.dev
, "<%s> TRX complete\n", __func__
);
456 static int i2c_imx_acked(struct imx_i2c_struct
*i2c_imx
)
458 if (imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2SR
) & I2SR_RXAK
) {
459 dev_dbg(&i2c_imx
->adapter
.dev
, "<%s> No ACK\n", __func__
);
460 return -ENXIO
; /* No ACK */
463 dev_dbg(&i2c_imx
->adapter
.dev
, "<%s> ACK received\n", __func__
);
467 static void i2c_imx_set_clk(struct imx_i2c_struct
*i2c_imx
,
468 unsigned int i2c_clk_rate
)
470 struct imx_i2c_clk_pair
*i2c_clk_div
= i2c_imx
->hwdata
->clk_div
;
474 /* Divider value calculation */
475 if (i2c_imx
->cur_clk
== i2c_clk_rate
)
478 i2c_imx
->cur_clk
= i2c_clk_rate
;
480 div
= (i2c_clk_rate
+ i2c_imx
->bitrate
- 1) / i2c_imx
->bitrate
;
481 if (div
< i2c_clk_div
[0].div
)
483 else if (div
> i2c_clk_div
[i2c_imx
->hwdata
->ndivs
- 1].div
)
484 i
= i2c_imx
->hwdata
->ndivs
- 1;
486 for (i
= 0; i2c_clk_div
[i
].div
< div
; i
++)
489 /* Store divider value */
490 i2c_imx
->ifdr
= i2c_clk_div
[i
].val
;
493 * There dummy delay is calculated.
494 * It should be about one I2C clock period long.
495 * This delay is used in I2C bus disable function
496 * to fix chip hardware bug.
498 i2c_imx
->disable_delay
= (500000U * i2c_clk_div
[i
].div
499 + (i2c_clk_rate
/ 2) - 1) / (i2c_clk_rate
/ 2);
501 #ifdef CONFIG_I2C_DEBUG_BUS
502 dev_dbg(&i2c_imx
->adapter
.dev
, "I2C_CLK=%d, REQ DIV=%d\n",
504 dev_dbg(&i2c_imx
->adapter
.dev
, "IFDR[IC]=0x%x, REAL DIV=%d\n",
505 i2c_clk_div
[i
].val
, i2c_clk_div
[i
].div
);
509 static int i2c_imx_clk_notifier_call(struct notifier_block
*nb
,
510 unsigned long action
, void *data
)
512 struct clk_notifier_data
*ndata
= data
;
513 struct imx_i2c_struct
*i2c_imx
= container_of(&ndata
->clk
,
514 struct imx_i2c_struct
,
517 if (action
& POST_RATE_CHANGE
)
518 i2c_imx_set_clk(i2c_imx
, ndata
->new_rate
);
523 static int i2c_imx_start(struct imx_i2c_struct
*i2c_imx
)
525 unsigned int temp
= 0;
528 dev_dbg(&i2c_imx
->adapter
.dev
, "<%s>\n", __func__
);
530 imx_i2c_write_reg(i2c_imx
->ifdr
, i2c_imx
, IMX_I2C_IFDR
);
531 /* Enable I2C controller */
532 imx_i2c_write_reg(i2c_imx
->hwdata
->i2sr_clr_opcode
, i2c_imx
, IMX_I2C_I2SR
);
533 imx_i2c_write_reg(i2c_imx
->hwdata
->i2cr_ien_opcode
, i2c_imx
, IMX_I2C_I2CR
);
535 /* Wait controller to be stable */
536 usleep_range(50, 150);
538 /* Start I2C transaction */
539 temp
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2CR
);
541 imx_i2c_write_reg(temp
, i2c_imx
, IMX_I2C_I2CR
);
542 result
= i2c_imx_bus_busy(i2c_imx
, 1);
546 temp
|= I2CR_IIEN
| I2CR_MTX
| I2CR_TXAK
;
548 imx_i2c_write_reg(temp
, i2c_imx
, IMX_I2C_I2CR
);
552 static void i2c_imx_stop(struct imx_i2c_struct
*i2c_imx
)
554 unsigned int temp
= 0;
556 if (!i2c_imx
->stopped
) {
557 /* Stop I2C transaction */
558 dev_dbg(&i2c_imx
->adapter
.dev
, "<%s>\n", __func__
);
559 temp
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2CR
);
560 temp
&= ~(I2CR_MSTA
| I2CR_MTX
);
563 imx_i2c_write_reg(temp
, i2c_imx
, IMX_I2C_I2CR
);
565 if (is_imx1_i2c(i2c_imx
)) {
567 * This delay caused by an i.MXL hardware bug.
568 * If no (or too short) delay, no "STOP" bit will be generated.
570 udelay(i2c_imx
->disable_delay
);
573 if (!i2c_imx
->stopped
)
574 i2c_imx_bus_busy(i2c_imx
, 0);
576 /* Disable I2C controller */
577 temp
= i2c_imx
->hwdata
->i2cr_ien_opcode
^ I2CR_IEN
,
578 imx_i2c_write_reg(temp
, i2c_imx
, IMX_I2C_I2CR
);
581 static irqreturn_t
i2c_imx_isr(int irq
, void *dev_id
)
583 struct imx_i2c_struct
*i2c_imx
= dev_id
;
586 temp
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2SR
);
587 if (temp
& I2SR_IIF
) {
588 /* save status register */
589 i2c_imx
->i2csr
= temp
;
591 temp
|= (i2c_imx
->hwdata
->i2sr_clr_opcode
& I2SR_IIF
);
592 imx_i2c_write_reg(temp
, i2c_imx
, IMX_I2C_I2SR
);
593 wake_up(&i2c_imx
->queue
);
600 static int i2c_imx_dma_write(struct imx_i2c_struct
*i2c_imx
,
601 struct i2c_msg
*msgs
)
604 unsigned long time_left
;
605 unsigned int temp
= 0;
606 unsigned long orig_jiffies
= jiffies
;
607 struct imx_i2c_dma
*dma
= i2c_imx
->dma
;
608 struct device
*dev
= &i2c_imx
->adapter
.dev
;
610 dma
->chan_using
= dma
->chan_tx
;
611 dma
->dma_transfer_dir
= DMA_MEM_TO_DEV
;
612 dma
->dma_data_dir
= DMA_TO_DEVICE
;
613 dma
->dma_len
= msgs
->len
- 1;
614 result
= i2c_imx_dma_xfer(i2c_imx
, msgs
);
618 temp
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2CR
);
620 imx_i2c_write_reg(temp
, i2c_imx
, IMX_I2C_I2CR
);
623 * Write slave address.
624 * The first byte must be transmitted by the CPU.
626 imx_i2c_write_reg(i2c_8bit_addr_from_msg(msgs
), i2c_imx
, IMX_I2C_I2DR
);
627 time_left
= wait_for_completion_timeout(
628 &i2c_imx
->dma
->cmd_complete
,
629 msecs_to_jiffies(DMA_TIMEOUT
));
630 if (time_left
== 0) {
631 dmaengine_terminate_all(dma
->chan_using
);
635 /* Waiting for transfer complete. */
637 temp
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2SR
);
640 if (time_after(jiffies
, orig_jiffies
+
641 msecs_to_jiffies(DMA_TIMEOUT
))) {
642 dev_dbg(dev
, "<%s> Timeout\n", __func__
);
648 temp
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2CR
);
650 imx_i2c_write_reg(temp
, i2c_imx
, IMX_I2C_I2CR
);
652 /* The last data byte must be transferred by the CPU. */
653 imx_i2c_write_reg(msgs
->buf
[msgs
->len
-1],
654 i2c_imx
, IMX_I2C_I2DR
);
655 result
= i2c_imx_trx_complete(i2c_imx
);
659 return i2c_imx_acked(i2c_imx
);
662 static int i2c_imx_dma_read(struct imx_i2c_struct
*i2c_imx
,
663 struct i2c_msg
*msgs
, bool is_lastmsg
)
666 unsigned long time_left
;
668 unsigned long orig_jiffies
= jiffies
;
669 struct imx_i2c_dma
*dma
= i2c_imx
->dma
;
670 struct device
*dev
= &i2c_imx
->adapter
.dev
;
673 dma
->chan_using
= dma
->chan_rx
;
674 dma
->dma_transfer_dir
= DMA_DEV_TO_MEM
;
675 dma
->dma_data_dir
= DMA_FROM_DEVICE
;
676 /* The last two data bytes must be transferred by the CPU. */
677 dma
->dma_len
= msgs
->len
- 2;
678 result
= i2c_imx_dma_xfer(i2c_imx
, msgs
);
682 time_left
= wait_for_completion_timeout(
683 &i2c_imx
->dma
->cmd_complete
,
684 msecs_to_jiffies(DMA_TIMEOUT
));
685 if (time_left
== 0) {
686 dmaengine_terminate_all(dma
->chan_using
);
690 /* waiting for transfer complete. */
692 temp
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2SR
);
695 if (time_after(jiffies
, orig_jiffies
+
696 msecs_to_jiffies(DMA_TIMEOUT
))) {
697 dev_dbg(dev
, "<%s> Timeout\n", __func__
);
703 temp
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2CR
);
705 imx_i2c_write_reg(temp
, i2c_imx
, IMX_I2C_I2CR
);
707 /* read n-1 byte data */
708 temp
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2CR
);
710 imx_i2c_write_reg(temp
, i2c_imx
, IMX_I2C_I2CR
);
712 msgs
->buf
[msgs
->len
-2] = imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2DR
);
713 /* read n byte data */
714 result
= i2c_imx_trx_complete(i2c_imx
);
720 * It must generate STOP before read I2DR to prevent
721 * controller from generating another clock cycle
723 dev_dbg(dev
, "<%s> clear MSTA\n", __func__
);
724 temp
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2CR
);
725 temp
&= ~(I2CR_MSTA
| I2CR_MTX
);
726 imx_i2c_write_reg(temp
, i2c_imx
, IMX_I2C_I2CR
);
727 i2c_imx_bus_busy(i2c_imx
, 0);
730 * For i2c master receiver repeat restart operation like:
731 * read -> repeat MSTA -> read/write
732 * The controller must set MTX before read the last byte in
733 * the first read operation, otherwise the first read cost
734 * one extra clock cycle.
736 temp
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2CR
);
738 imx_i2c_write_reg(temp
, i2c_imx
, IMX_I2C_I2CR
);
740 msgs
->buf
[msgs
->len
-1] = imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2DR
);
745 static int i2c_imx_write(struct imx_i2c_struct
*i2c_imx
, struct i2c_msg
*msgs
)
749 dev_dbg(&i2c_imx
->adapter
.dev
, "<%s> write slave address: addr=0x%x\n",
750 __func__
, i2c_8bit_addr_from_msg(msgs
));
752 /* write slave address */
753 imx_i2c_write_reg(i2c_8bit_addr_from_msg(msgs
), i2c_imx
, IMX_I2C_I2DR
);
754 result
= i2c_imx_trx_complete(i2c_imx
);
757 result
= i2c_imx_acked(i2c_imx
);
760 dev_dbg(&i2c_imx
->adapter
.dev
, "<%s> write data\n", __func__
);
763 for (i
= 0; i
< msgs
->len
; i
++) {
764 dev_dbg(&i2c_imx
->adapter
.dev
,
765 "<%s> write byte: B%d=0x%X\n",
766 __func__
, i
, msgs
->buf
[i
]);
767 imx_i2c_write_reg(msgs
->buf
[i
], i2c_imx
, IMX_I2C_I2DR
);
768 result
= i2c_imx_trx_complete(i2c_imx
);
771 result
= i2c_imx_acked(i2c_imx
);
778 static int i2c_imx_read(struct imx_i2c_struct
*i2c_imx
, struct i2c_msg
*msgs
, bool is_lastmsg
)
782 int block_data
= msgs
->flags
& I2C_M_RECV_LEN
;
783 int use_dma
= i2c_imx
->dma
&& msgs
->len
>= DMA_THRESHOLD
&& !block_data
;
785 dev_dbg(&i2c_imx
->adapter
.dev
,
786 "<%s> write slave address: addr=0x%x\n",
787 __func__
, i2c_8bit_addr_from_msg(msgs
));
789 /* write slave address */
790 imx_i2c_write_reg(i2c_8bit_addr_from_msg(msgs
), i2c_imx
, IMX_I2C_I2DR
);
791 result
= i2c_imx_trx_complete(i2c_imx
);
794 result
= i2c_imx_acked(i2c_imx
);
798 dev_dbg(&i2c_imx
->adapter
.dev
, "<%s> setup bus\n", __func__
);
800 /* setup bus to read data */
801 temp
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2CR
);
805 * Reset the I2CR_TXAK flag initially for SMBus block read since the
808 if ((msgs
->len
- 1) || block_data
)
812 imx_i2c_write_reg(temp
, i2c_imx
, IMX_I2C_I2CR
);
813 imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2DR
); /* dummy read */
815 dev_dbg(&i2c_imx
->adapter
.dev
, "<%s> read data\n", __func__
);
818 return i2c_imx_dma_read(i2c_imx
, msgs
, is_lastmsg
);
821 for (i
= 0; i
< msgs
->len
; i
++) {
824 result
= i2c_imx_trx_complete(i2c_imx
);
828 * First byte is the length of remaining packet
829 * in the SMBus block data read. Add it to
832 if ((!i
) && block_data
) {
833 len
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2DR
);
834 if ((len
== 0) || (len
> I2C_SMBUS_BLOCK_MAX
))
836 dev_dbg(&i2c_imx
->adapter
.dev
,
837 "<%s> read length: 0x%X\n",
841 if (i
== (msgs
->len
- 1)) {
844 * It must generate STOP before read I2DR to prevent
845 * controller from generating another clock cycle
847 dev_dbg(&i2c_imx
->adapter
.dev
,
848 "<%s> clear MSTA\n", __func__
);
849 temp
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2CR
);
850 temp
&= ~(I2CR_MSTA
| I2CR_MTX
);
851 imx_i2c_write_reg(temp
, i2c_imx
, IMX_I2C_I2CR
);
852 i2c_imx_bus_busy(i2c_imx
, 0);
855 * For i2c master receiver repeat restart operation like:
856 * read -> repeat MSTA -> read/write
857 * The controller must set MTX before read the last byte in
858 * the first read operation, otherwise the first read cost
859 * one extra clock cycle.
861 temp
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2CR
);
863 imx_i2c_write_reg(temp
, i2c_imx
, IMX_I2C_I2CR
);
865 } else if (i
== (msgs
->len
- 2)) {
866 dev_dbg(&i2c_imx
->adapter
.dev
,
867 "<%s> set TXAK\n", __func__
);
868 temp
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2CR
);
870 imx_i2c_write_reg(temp
, i2c_imx
, IMX_I2C_I2CR
);
872 if ((!i
) && block_data
)
875 msgs
->buf
[i
] = imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2DR
);
876 dev_dbg(&i2c_imx
->adapter
.dev
,
877 "<%s> read byte: B%d=0x%X\n",
878 __func__
, i
, msgs
->buf
[i
]);
883 static int i2c_imx_xfer(struct i2c_adapter
*adapter
,
884 struct i2c_msg
*msgs
, int num
)
886 unsigned int i
, temp
;
888 bool is_lastmsg
= false;
889 struct imx_i2c_struct
*i2c_imx
= i2c_get_adapdata(adapter
);
891 dev_dbg(&i2c_imx
->adapter
.dev
, "<%s>\n", __func__
);
893 result
= pm_runtime_get_sync(i2c_imx
->adapter
.dev
.parent
);
897 /* Start I2C transfer */
898 result
= i2c_imx_start(i2c_imx
);
900 if (i2c_imx
->adapter
.bus_recovery_info
) {
901 i2c_recover_bus(&i2c_imx
->adapter
);
902 result
= i2c_imx_start(i2c_imx
);
909 /* read/write data */
910 for (i
= 0; i
< num
; i
++) {
915 dev_dbg(&i2c_imx
->adapter
.dev
,
916 "<%s> repeated start\n", __func__
);
917 temp
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2CR
);
919 imx_i2c_write_reg(temp
, i2c_imx
, IMX_I2C_I2CR
);
920 result
= i2c_imx_bus_busy(i2c_imx
, 1);
924 dev_dbg(&i2c_imx
->adapter
.dev
,
925 "<%s> transfer message: %d\n", __func__
, i
);
926 /* write/read data */
927 #ifdef CONFIG_I2C_DEBUG_BUS
928 temp
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2CR
);
929 dev_dbg(&i2c_imx
->adapter
.dev
,
930 "<%s> CONTROL: IEN=%d, IIEN=%d, MSTA=%d, MTX=%d, TXAK=%d, RSTA=%d\n",
932 (temp
& I2CR_IEN
? 1 : 0), (temp
& I2CR_IIEN
? 1 : 0),
933 (temp
& I2CR_MSTA
? 1 : 0), (temp
& I2CR_MTX
? 1 : 0),
934 (temp
& I2CR_TXAK
? 1 : 0), (temp
& I2CR_RSTA
? 1 : 0));
935 temp
= imx_i2c_read_reg(i2c_imx
, IMX_I2C_I2SR
);
936 dev_dbg(&i2c_imx
->adapter
.dev
,
937 "<%s> STATUS: ICF=%d, IAAS=%d, IBB=%d, IAL=%d, SRW=%d, IIF=%d, RXAK=%d\n",
939 (temp
& I2SR_ICF
? 1 : 0), (temp
& I2SR_IAAS
? 1 : 0),
940 (temp
& I2SR_IBB
? 1 : 0), (temp
& I2SR_IAL
? 1 : 0),
941 (temp
& I2SR_SRW
? 1 : 0), (temp
& I2SR_IIF
? 1 : 0),
942 (temp
& I2SR_RXAK
? 1 : 0));
944 if (msgs
[i
].flags
& I2C_M_RD
)
945 result
= i2c_imx_read(i2c_imx
, &msgs
[i
], is_lastmsg
);
947 if (i2c_imx
->dma
&& msgs
[i
].len
>= DMA_THRESHOLD
)
948 result
= i2c_imx_dma_write(i2c_imx
, &msgs
[i
]);
950 result
= i2c_imx_write(i2c_imx
, &msgs
[i
]);
957 /* Stop I2C transfer */
958 i2c_imx_stop(i2c_imx
);
960 pm_runtime_mark_last_busy(i2c_imx
->adapter
.dev
.parent
);
961 pm_runtime_put_autosuspend(i2c_imx
->adapter
.dev
.parent
);
964 dev_dbg(&i2c_imx
->adapter
.dev
, "<%s> exit with: %s: %d\n", __func__
,
965 (result
< 0) ? "error" : "success msg",
966 (result
< 0) ? result
: num
);
967 return (result
< 0) ? result
: num
;
970 static void i2c_imx_prepare_recovery(struct i2c_adapter
*adap
)
972 struct imx_i2c_struct
*i2c_imx
;
974 i2c_imx
= container_of(adap
, struct imx_i2c_struct
, adapter
);
976 pinctrl_select_state(i2c_imx
->pinctrl
, i2c_imx
->pinctrl_pins_gpio
);
979 static void i2c_imx_unprepare_recovery(struct i2c_adapter
*adap
)
981 struct imx_i2c_struct
*i2c_imx
;
983 i2c_imx
= container_of(adap
, struct imx_i2c_struct
, adapter
);
985 pinctrl_select_state(i2c_imx
->pinctrl
, i2c_imx
->pinctrl_pins_default
);
989 * We switch SCL and SDA to their GPIO function and do some bitbanging
990 * for bus recovery. These alternative pinmux settings can be
991 * described in the device tree by a separate pinctrl state "gpio". If
992 * this is missing this is not a big problem, the only implication is
993 * that we can't do bus recovery.
995 static int i2c_imx_init_recovery_info(struct imx_i2c_struct
*i2c_imx
,
996 struct platform_device
*pdev
)
998 struct i2c_bus_recovery_info
*rinfo
= &i2c_imx
->rinfo
;
1000 i2c_imx
->pinctrl
= devm_pinctrl_get(&pdev
->dev
);
1001 if (!i2c_imx
->pinctrl
|| IS_ERR(i2c_imx
->pinctrl
)) {
1002 dev_info(&pdev
->dev
, "can't get pinctrl, bus recovery not supported\n");
1003 return PTR_ERR(i2c_imx
->pinctrl
);
1006 i2c_imx
->pinctrl_pins_default
= pinctrl_lookup_state(i2c_imx
->pinctrl
,
1007 PINCTRL_STATE_DEFAULT
);
1008 i2c_imx
->pinctrl_pins_gpio
= pinctrl_lookup_state(i2c_imx
->pinctrl
,
1010 rinfo
->sda_gpiod
= devm_gpiod_get(&pdev
->dev
, "sda", GPIOD_IN
);
1011 rinfo
->scl_gpiod
= devm_gpiod_get(&pdev
->dev
, "scl", GPIOD_OUT_HIGH_OPEN_DRAIN
);
1013 if (PTR_ERR(rinfo
->sda_gpiod
) == -EPROBE_DEFER
||
1014 PTR_ERR(rinfo
->scl_gpiod
) == -EPROBE_DEFER
) {
1015 return -EPROBE_DEFER
;
1016 } else if (IS_ERR(rinfo
->sda_gpiod
) ||
1017 IS_ERR(rinfo
->scl_gpiod
) ||
1018 IS_ERR(i2c_imx
->pinctrl_pins_default
) ||
1019 IS_ERR(i2c_imx
->pinctrl_pins_gpio
)) {
1020 dev_dbg(&pdev
->dev
, "recovery information incomplete\n");
1024 dev_dbg(&pdev
->dev
, "using scl%s for recovery\n",
1025 rinfo
->sda_gpiod
? ",sda" : "");
1027 rinfo
->prepare_recovery
= i2c_imx_prepare_recovery
;
1028 rinfo
->unprepare_recovery
= i2c_imx_unprepare_recovery
;
1029 rinfo
->recover_bus
= i2c_generic_scl_recovery
;
1030 i2c_imx
->adapter
.bus_recovery_info
= rinfo
;
1035 static u32
i2c_imx_func(struct i2c_adapter
*adapter
)
1037 return I2C_FUNC_I2C
| I2C_FUNC_SMBUS_EMUL
1038 | I2C_FUNC_SMBUS_READ_BLOCK_DATA
;
1041 static const struct i2c_algorithm i2c_imx_algo
= {
1042 .master_xfer
= i2c_imx_xfer
,
1043 .functionality
= i2c_imx_func
,
1046 static int i2c_imx_probe(struct platform_device
*pdev
)
1048 const struct of_device_id
*of_id
= of_match_device(i2c_imx_dt_ids
,
1050 struct imx_i2c_struct
*i2c_imx
;
1051 struct resource
*res
;
1052 struct imxi2c_platform_data
*pdata
= dev_get_platdata(&pdev
->dev
);
1055 dma_addr_t phy_addr
;
1057 dev_dbg(&pdev
->dev
, "<%s>\n", __func__
);
1059 irq
= platform_get_irq(pdev
, 0);
1061 dev_err(&pdev
->dev
, "can't get irq number\n");
1065 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1066 base
= devm_ioremap_resource(&pdev
->dev
, res
);
1068 return PTR_ERR(base
);
1070 phy_addr
= (dma_addr_t
)res
->start
;
1071 i2c_imx
= devm_kzalloc(&pdev
->dev
, sizeof(*i2c_imx
), GFP_KERNEL
);
1076 i2c_imx
->hwdata
= of_id
->data
;
1078 i2c_imx
->hwdata
= (struct imx_i2c_hwdata
*)
1079 platform_get_device_id(pdev
)->driver_data
;
1081 /* Setup i2c_imx driver structure */
1082 strlcpy(i2c_imx
->adapter
.name
, pdev
->name
, sizeof(i2c_imx
->adapter
.name
));
1083 i2c_imx
->adapter
.owner
= THIS_MODULE
;
1084 i2c_imx
->adapter
.algo
= &i2c_imx_algo
;
1085 i2c_imx
->adapter
.dev
.parent
= &pdev
->dev
;
1086 i2c_imx
->adapter
.nr
= pdev
->id
;
1087 i2c_imx
->adapter
.dev
.of_node
= pdev
->dev
.of_node
;
1088 i2c_imx
->base
= base
;
1091 i2c_imx
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
1092 if (IS_ERR(i2c_imx
->clk
)) {
1093 dev_err(&pdev
->dev
, "can't get I2C clock\n");
1094 return PTR_ERR(i2c_imx
->clk
);
1097 ret
= clk_prepare_enable(i2c_imx
->clk
);
1099 dev_err(&pdev
->dev
, "can't enable I2C clock, ret=%d\n", ret
);
1104 ret
= devm_request_irq(&pdev
->dev
, irq
, i2c_imx_isr
, IRQF_SHARED
,
1105 pdev
->name
, i2c_imx
);
1107 dev_err(&pdev
->dev
, "can't claim irq %d\n", irq
);
1112 init_waitqueue_head(&i2c_imx
->queue
);
1114 /* Set up adapter data */
1115 i2c_set_adapdata(&i2c_imx
->adapter
, i2c_imx
);
1117 /* Set up platform driver data */
1118 platform_set_drvdata(pdev
, i2c_imx
);
1120 pm_runtime_set_autosuspend_delay(&pdev
->dev
, I2C_PM_TIMEOUT
);
1121 pm_runtime_use_autosuspend(&pdev
->dev
);
1122 pm_runtime_set_active(&pdev
->dev
);
1123 pm_runtime_enable(&pdev
->dev
);
1125 ret
= pm_runtime_get_sync(&pdev
->dev
);
1129 /* Set up clock divider */
1130 i2c_imx
->bitrate
= IMX_I2C_BIT_RATE
;
1131 ret
= of_property_read_u32(pdev
->dev
.of_node
,
1132 "clock-frequency", &i2c_imx
->bitrate
);
1133 if (ret
< 0 && pdata
&& pdata
->bitrate
)
1134 i2c_imx
->bitrate
= pdata
->bitrate
;
1135 i2c_imx
->clk_change_nb
.notifier_call
= i2c_imx_clk_notifier_call
;
1136 clk_notifier_register(i2c_imx
->clk
, &i2c_imx
->clk_change_nb
);
1137 i2c_imx_set_clk(i2c_imx
, clk_get_rate(i2c_imx
->clk
));
1139 /* Set up chip registers to defaults */
1140 imx_i2c_write_reg(i2c_imx
->hwdata
->i2cr_ien_opcode
^ I2CR_IEN
,
1141 i2c_imx
, IMX_I2C_I2CR
);
1142 imx_i2c_write_reg(i2c_imx
->hwdata
->i2sr_clr_opcode
, i2c_imx
, IMX_I2C_I2SR
);
1144 /* Init optional bus recovery function */
1145 ret
= i2c_imx_init_recovery_info(i2c_imx
, pdev
);
1146 /* Give it another chance if pinctrl used is not ready yet */
1147 if (ret
== -EPROBE_DEFER
)
1148 goto clk_notifier_unregister
;
1150 /* Add I2C adapter */
1151 ret
= i2c_add_numbered_adapter(&i2c_imx
->adapter
);
1153 goto clk_notifier_unregister
;
1155 pm_runtime_mark_last_busy(&pdev
->dev
);
1156 pm_runtime_put_autosuspend(&pdev
->dev
);
1158 dev_dbg(&i2c_imx
->adapter
.dev
, "claimed irq %d\n", irq
);
1159 dev_dbg(&i2c_imx
->adapter
.dev
, "device resources: %pR\n", res
);
1160 dev_dbg(&i2c_imx
->adapter
.dev
, "adapter name: \"%s\"\n",
1161 i2c_imx
->adapter
.name
);
1162 dev_info(&i2c_imx
->adapter
.dev
, "IMX I2C adapter registered\n");
1164 /* Init DMA config if supported */
1165 i2c_imx_dma_request(i2c_imx
, phy_addr
);
1167 return 0; /* Return OK */
1169 clk_notifier_unregister
:
1170 clk_notifier_unregister(i2c_imx
->clk
, &i2c_imx
->clk_change_nb
);
1172 pm_runtime_put_noidle(&pdev
->dev
);
1173 pm_runtime_disable(&pdev
->dev
);
1174 pm_runtime_set_suspended(&pdev
->dev
);
1175 pm_runtime_dont_use_autosuspend(&pdev
->dev
);
1178 clk_disable_unprepare(i2c_imx
->clk
);
1182 static int i2c_imx_remove(struct platform_device
*pdev
)
1184 struct imx_i2c_struct
*i2c_imx
= platform_get_drvdata(pdev
);
1187 ret
= pm_runtime_get_sync(&pdev
->dev
);
1191 /* remove adapter */
1192 dev_dbg(&i2c_imx
->adapter
.dev
, "adapter removed\n");
1193 i2c_del_adapter(&i2c_imx
->adapter
);
1196 i2c_imx_dma_free(i2c_imx
);
1198 /* setup chip registers to defaults */
1199 imx_i2c_write_reg(0, i2c_imx
, IMX_I2C_IADR
);
1200 imx_i2c_write_reg(0, i2c_imx
, IMX_I2C_IFDR
);
1201 imx_i2c_write_reg(0, i2c_imx
, IMX_I2C_I2CR
);
1202 imx_i2c_write_reg(0, i2c_imx
, IMX_I2C_I2SR
);
1204 clk_notifier_unregister(i2c_imx
->clk
, &i2c_imx
->clk_change_nb
);
1205 clk_disable_unprepare(i2c_imx
->clk
);
1207 pm_runtime_put_noidle(&pdev
->dev
);
1208 pm_runtime_disable(&pdev
->dev
);
1214 static int i2c_imx_runtime_suspend(struct device
*dev
)
1216 struct imx_i2c_struct
*i2c_imx
= dev_get_drvdata(dev
);
1218 clk_disable(i2c_imx
->clk
);
1223 static int i2c_imx_runtime_resume(struct device
*dev
)
1225 struct imx_i2c_struct
*i2c_imx
= dev_get_drvdata(dev
);
1228 ret
= clk_enable(i2c_imx
->clk
);
1230 dev_err(dev
, "can't enable I2C clock, ret=%d\n", ret
);
1235 static const struct dev_pm_ops i2c_imx_pm_ops
= {
1236 SET_RUNTIME_PM_OPS(i2c_imx_runtime_suspend
,
1237 i2c_imx_runtime_resume
, NULL
)
1239 #define I2C_IMX_PM_OPS (&i2c_imx_pm_ops)
1241 #define I2C_IMX_PM_OPS NULL
1242 #endif /* CONFIG_PM */
1244 static struct platform_driver i2c_imx_driver
= {
1245 .probe
= i2c_imx_probe
,
1246 .remove
= i2c_imx_remove
,
1248 .name
= DRIVER_NAME
,
1249 .pm
= I2C_IMX_PM_OPS
,
1250 .of_match_table
= i2c_imx_dt_ids
,
1252 .id_table
= imx_i2c_devtype
,
1255 static int __init
i2c_adap_imx_init(void)
1257 return platform_driver_register(&i2c_imx_driver
);
1259 subsys_initcall(i2c_adap_imx_init
);
1261 static void __exit
i2c_adap_imx_exit(void)
1263 platform_driver_unregister(&i2c_imx_driver
);
1265 module_exit(i2c_adap_imx_exit
);
1267 MODULE_LICENSE("GPL");
1268 MODULE_AUTHOR("Darius Augulis");
1269 MODULE_DESCRIPTION("I2C adapter driver for IMX I2C bus");
1270 MODULE_ALIAS("platform:" DRIVER_NAME
);