2 * Synopsys DesignWare I2C adapter driver (master only).
4 * Based on the TI DAVINCI I2C adapter driver.
6 * Copyright (C) 2006 Texas Instruments.
7 * Copyright (C) 2007 MontaVista Software Inc.
8 * Copyright (C) 2009 Provigent Ltd.
10 * ----------------------------------------------------------------------------
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.
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.
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 * ----------------------------------------------------------------------------
28 #include <linux/export.h>
29 #include <linux/clk.h>
30 #include <linux/errno.h>
31 #include <linux/err.h>
32 #include <linux/i2c.h>
33 #include <linux/interrupt.h>
35 #include <linux/pm_runtime.h>
36 #include <linux/delay.h>
37 #include "i2c-designware-core.h"
44 #define DW_IC_DATA_CMD 0x10
45 #define DW_IC_SS_SCL_HCNT 0x14
46 #define DW_IC_SS_SCL_LCNT 0x18
47 #define DW_IC_FS_SCL_HCNT 0x1c
48 #define DW_IC_FS_SCL_LCNT 0x20
49 #define DW_IC_INTR_STAT 0x2c
50 #define DW_IC_INTR_MASK 0x30
51 #define DW_IC_RAW_INTR_STAT 0x34
52 #define DW_IC_RX_TL 0x38
53 #define DW_IC_TX_TL 0x3c
54 #define DW_IC_CLR_INTR 0x40
55 #define DW_IC_CLR_RX_UNDER 0x44
56 #define DW_IC_CLR_RX_OVER 0x48
57 #define DW_IC_CLR_TX_OVER 0x4c
58 #define DW_IC_CLR_RD_REQ 0x50
59 #define DW_IC_CLR_TX_ABRT 0x54
60 #define DW_IC_CLR_RX_DONE 0x58
61 #define DW_IC_CLR_ACTIVITY 0x5c
62 #define DW_IC_CLR_STOP_DET 0x60
63 #define DW_IC_CLR_START_DET 0x64
64 #define DW_IC_CLR_GEN_CALL 0x68
65 #define DW_IC_ENABLE 0x6c
66 #define DW_IC_STATUS 0x70
67 #define DW_IC_TXFLR 0x74
68 #define DW_IC_RXFLR 0x78
69 #define DW_IC_TX_ABRT_SOURCE 0x80
70 #define DW_IC_COMP_PARAM_1 0xf4
71 #define DW_IC_COMP_TYPE 0xfc
72 #define DW_IC_COMP_TYPE_VALUE 0x44570140
74 #define DW_IC_INTR_RX_UNDER 0x001
75 #define DW_IC_INTR_RX_OVER 0x002
76 #define DW_IC_INTR_RX_FULL 0x004
77 #define DW_IC_INTR_TX_OVER 0x008
78 #define DW_IC_INTR_TX_EMPTY 0x010
79 #define DW_IC_INTR_RD_REQ 0x020
80 #define DW_IC_INTR_TX_ABRT 0x040
81 #define DW_IC_INTR_RX_DONE 0x080
82 #define DW_IC_INTR_ACTIVITY 0x100
83 #define DW_IC_INTR_STOP_DET 0x200
84 #define DW_IC_INTR_START_DET 0x400
85 #define DW_IC_INTR_GEN_CALL 0x800
87 #define DW_IC_INTR_DEFAULT_MASK (DW_IC_INTR_RX_FULL | \
88 DW_IC_INTR_TX_EMPTY | \
89 DW_IC_INTR_TX_ABRT | \
92 #define DW_IC_STATUS_ACTIVITY 0x1
94 #define DW_IC_ERR_TX_ABRT 0x1
99 #define STATUS_IDLE 0x0
100 #define STATUS_WRITE_IN_PROGRESS 0x1
101 #define STATUS_READ_IN_PROGRESS 0x2
103 #define TIMEOUT 20 /* ms */
106 * hardware abort codes from the DW_IC_TX_ABRT_SOURCE register
108 * only expected abort codes are listed here
109 * refer to the datasheet for the full list
111 #define ABRT_7B_ADDR_NOACK 0
112 #define ABRT_10ADDR1_NOACK 1
113 #define ABRT_10ADDR2_NOACK 2
114 #define ABRT_TXDATA_NOACK 3
115 #define ABRT_GCALL_NOACK 4
116 #define ABRT_GCALL_READ 5
117 #define ABRT_SBYTE_ACKDET 7
118 #define ABRT_SBYTE_NORSTRT 9
119 #define ABRT_10B_RD_NORSTRT 10
120 #define ABRT_MASTER_DIS 11
123 #define DW_IC_TX_ABRT_7B_ADDR_NOACK (1UL << ABRT_7B_ADDR_NOACK)
124 #define DW_IC_TX_ABRT_10ADDR1_NOACK (1UL << ABRT_10ADDR1_NOACK)
125 #define DW_IC_TX_ABRT_10ADDR2_NOACK (1UL << ABRT_10ADDR2_NOACK)
126 #define DW_IC_TX_ABRT_TXDATA_NOACK (1UL << ABRT_TXDATA_NOACK)
127 #define DW_IC_TX_ABRT_GCALL_NOACK (1UL << ABRT_GCALL_NOACK)
128 #define DW_IC_TX_ABRT_GCALL_READ (1UL << ABRT_GCALL_READ)
129 #define DW_IC_TX_ABRT_SBYTE_ACKDET (1UL << ABRT_SBYTE_ACKDET)
130 #define DW_IC_TX_ABRT_SBYTE_NORSTRT (1UL << ABRT_SBYTE_NORSTRT)
131 #define DW_IC_TX_ABRT_10B_RD_NORSTRT (1UL << ABRT_10B_RD_NORSTRT)
132 #define DW_IC_TX_ABRT_MASTER_DIS (1UL << ABRT_MASTER_DIS)
133 #define DW_IC_TX_ARB_LOST (1UL << ARB_LOST)
135 #define DW_IC_TX_ABRT_NOACK (DW_IC_TX_ABRT_7B_ADDR_NOACK | \
136 DW_IC_TX_ABRT_10ADDR1_NOACK | \
137 DW_IC_TX_ABRT_10ADDR2_NOACK | \
138 DW_IC_TX_ABRT_TXDATA_NOACK | \
139 DW_IC_TX_ABRT_GCALL_NOACK)
141 static char *abort_sources
[] = {
142 [ABRT_7B_ADDR_NOACK
] =
143 "slave address not acknowledged (7bit mode)",
144 [ABRT_10ADDR1_NOACK
] =
145 "first address byte not acknowledged (10bit mode)",
146 [ABRT_10ADDR2_NOACK
] =
147 "second address byte not acknowledged (10bit mode)",
148 [ABRT_TXDATA_NOACK
] =
149 "data not acknowledged",
151 "no acknowledgement for a general call",
153 "read after general call",
154 [ABRT_SBYTE_ACKDET
] =
155 "start byte acknowledged",
156 [ABRT_SBYTE_NORSTRT
] =
157 "trying to send start byte when restart is disabled",
158 [ABRT_10B_RD_NORSTRT
] =
159 "trying to read when restart is disabled (10bit mode)",
161 "trying to use disabled adapter",
166 u32
dw_readl(struct dw_i2c_dev
*dev
, int offset
)
168 u32 value
= readl(dev
->base
+ offset
);
171 return swab32(value
);
176 void dw_writel(struct dw_i2c_dev
*dev
, u32 b
, int offset
)
181 writel(b
, dev
->base
+ offset
);
185 i2c_dw_scl_hcnt(u32 ic_clk
, u32 tSYMBOL
, u32 tf
, int cond
, int offset
)
188 * DesignWare I2C core doesn't seem to have solid strategy to meet
189 * the tHD;STA timing spec. Configuring _HCNT based on tHIGH spec
190 * will result in violation of the tHD;STA spec.
194 * Conditional expression:
196 * IC_[FS]S_SCL_HCNT + (1+4+3) >= IC_CLK * tHIGH
198 * This is based on the DW manuals, and represents an ideal
199 * configuration. The resulting I2C bus speed will be
200 * faster than any of the others.
202 * If your hardware is free from tHD;STA issue, try this one.
204 return (ic_clk
* tSYMBOL
+ 5000) / 10000 - 8 + offset
;
207 * Conditional expression:
209 * IC_[FS]S_SCL_HCNT + 3 >= IC_CLK * (tHD;STA + tf)
211 * This is just experimental rule; the tHD;STA period turned
212 * out to be proportinal to (_HCNT + 3). With this setting,
213 * we could meet both tHIGH and tHD;STA timing specs.
215 * If unsure, you'd better to take this alternative.
217 * The reason why we need to take into account "tf" here,
218 * is the same as described in i2c_dw_scl_lcnt().
220 return (ic_clk
* (tSYMBOL
+ tf
) + 5000) / 10000 - 3 + offset
;
223 static u32
i2c_dw_scl_lcnt(u32 ic_clk
, u32 tLOW
, u32 tf
, int offset
)
226 * Conditional expression:
228 * IC_[FS]S_SCL_LCNT + 1 >= IC_CLK * (tLOW + tf)
230 * DW I2C core starts counting the SCL CNTs for the LOW period
231 * of the SCL clock (tLOW) as soon as it pulls the SCL line.
232 * In order to meet the tLOW timing spec, we need to take into
233 * account the fall time of SCL signal (tf). Default tf value
234 * should be 0.3 us, for safety.
236 return ((ic_clk
* (tLOW
+ tf
) + 5000) / 10000) - 1 + offset
;
240 * i2c_dw_init() - initialize the designware i2c master hardware
241 * @dev: device private data
243 * This functions configures and enables the I2C master.
244 * This function is called during I2C init function, and in case of timeout at
247 int i2c_dw_init(struct dw_i2c_dev
*dev
)
253 input_clock_khz
= dev
->get_clk_rate_khz(dev
);
255 /* Configure register endianess access */
256 reg
= dw_readl(dev
, DW_IC_COMP_TYPE
);
257 if (reg
== ___constant_swab32(DW_IC_COMP_TYPE_VALUE
)) {
259 reg
= DW_IC_COMP_TYPE_VALUE
;
262 if (reg
!= DW_IC_COMP_TYPE_VALUE
) {
263 dev_err(dev
->dev
, "Unknown Synopsys component type: "
268 /* Disable the adapter */
269 dw_writel(dev
, 0, DW_IC_ENABLE
);
271 /* set standard and fast speed deviders for high/low periods */
274 hcnt
= i2c_dw_scl_hcnt(input_clock_khz
,
275 40, /* tHD;STA = tHIGH = 4.0 us */
277 0, /* 0: DW default, 1: Ideal */
279 lcnt
= i2c_dw_scl_lcnt(input_clock_khz
,
280 47, /* tLOW = 4.7 us */
283 dw_writel(dev
, hcnt
, DW_IC_SS_SCL_HCNT
);
284 dw_writel(dev
, lcnt
, DW_IC_SS_SCL_LCNT
);
285 dev_dbg(dev
->dev
, "Standard-mode HCNT:LCNT = %d:%d\n", hcnt
, lcnt
);
288 hcnt
= i2c_dw_scl_hcnt(input_clock_khz
,
289 6, /* tHD;STA = tHIGH = 0.6 us */
291 0, /* 0: DW default, 1: Ideal */
293 lcnt
= i2c_dw_scl_lcnt(input_clock_khz
,
294 13, /* tLOW = 1.3 us */
297 dw_writel(dev
, hcnt
, DW_IC_FS_SCL_HCNT
);
298 dw_writel(dev
, lcnt
, DW_IC_FS_SCL_LCNT
);
299 dev_dbg(dev
->dev
, "Fast-mode HCNT:LCNT = %d:%d\n", hcnt
, lcnt
);
301 /* Configure Tx/Rx FIFO threshold levels */
302 dw_writel(dev
, dev
->tx_fifo_depth
- 1, DW_IC_TX_TL
);
303 dw_writel(dev
, 0, DW_IC_RX_TL
);
305 /* configure the i2c master */
306 dw_writel(dev
, dev
->master_cfg
, DW_IC_CON
);
309 EXPORT_SYMBOL_GPL(i2c_dw_init
);
312 * Waiting for bus not busy
314 static int i2c_dw_wait_bus_not_busy(struct dw_i2c_dev
*dev
)
316 int timeout
= TIMEOUT
;
318 while (dw_readl(dev
, DW_IC_STATUS
) & DW_IC_STATUS_ACTIVITY
) {
320 dev_warn(dev
->dev
, "timeout waiting for bus ready\n");
330 static void i2c_dw_xfer_init(struct dw_i2c_dev
*dev
)
332 struct i2c_msg
*msgs
= dev
->msgs
;
335 /* Disable the adapter */
336 dw_writel(dev
, 0, DW_IC_ENABLE
);
338 /* set the slave (target) address */
339 dw_writel(dev
, msgs
[dev
->msg_write_idx
].addr
, DW_IC_TAR
);
341 /* if the slave address is ten bit address, enable 10BITADDR */
342 ic_con
= dw_readl(dev
, DW_IC_CON
);
343 if (msgs
[dev
->msg_write_idx
].flags
& I2C_M_TEN
)
344 ic_con
|= DW_IC_CON_10BITADDR_MASTER
;
346 ic_con
&= ~DW_IC_CON_10BITADDR_MASTER
;
347 dw_writel(dev
, ic_con
, DW_IC_CON
);
349 /* enforce disabled interrupts (due to HW issues) */
350 i2c_dw_disable_int(dev
);
352 /* Enable the adapter */
353 dw_writel(dev
, 1, DW_IC_ENABLE
);
355 /* Clear and enable interrupts */
356 i2c_dw_clear_int(dev
);
357 dw_writel(dev
, DW_IC_INTR_DEFAULT_MASK
, DW_IC_INTR_MASK
);
361 * Initiate (and continue) low level master read/write transaction.
362 * This function is only called from i2c_dw_isr, and pumping i2c_msg
363 * messages into the tx buffer. Even if the size of i2c_msg data is
364 * longer than the size of the tx buffer, it handles everything.
367 i2c_dw_xfer_msg(struct dw_i2c_dev
*dev
)
369 struct i2c_msg
*msgs
= dev
->msgs
;
371 int tx_limit
, rx_limit
;
372 u32 addr
= msgs
[dev
->msg_write_idx
].addr
;
373 u32 buf_len
= dev
->tx_buf_len
;
374 u8
*buf
= dev
->tx_buf
;
376 intr_mask
= DW_IC_INTR_DEFAULT_MASK
;
378 for (; dev
->msg_write_idx
< dev
->msgs_num
; dev
->msg_write_idx
++) {
380 * if target address has changed, we need to
381 * reprogram the target address in the i2c
382 * adapter when we are done with this transfer
384 if (msgs
[dev
->msg_write_idx
].addr
!= addr
) {
386 "%s: invalid target address\n", __func__
);
387 dev
->msg_err
= -EINVAL
;
391 if (msgs
[dev
->msg_write_idx
].len
== 0) {
393 "%s: invalid message length\n", __func__
);
394 dev
->msg_err
= -EINVAL
;
398 if (!(dev
->status
& STATUS_WRITE_IN_PROGRESS
)) {
400 buf
= msgs
[dev
->msg_write_idx
].buf
;
401 buf_len
= msgs
[dev
->msg_write_idx
].len
;
404 tx_limit
= dev
->tx_fifo_depth
- dw_readl(dev
, DW_IC_TXFLR
);
405 rx_limit
= dev
->rx_fifo_depth
- dw_readl(dev
, DW_IC_RXFLR
);
407 while (buf_len
> 0 && tx_limit
> 0 && rx_limit
> 0) {
408 if (msgs
[dev
->msg_write_idx
].flags
& I2C_M_RD
) {
409 dw_writel(dev
, 0x100, DW_IC_DATA_CMD
);
412 dw_writel(dev
, *buf
++, DW_IC_DATA_CMD
);
413 tx_limit
--; buf_len
--;
417 dev
->tx_buf_len
= buf_len
;
420 /* more bytes to be written */
421 dev
->status
|= STATUS_WRITE_IN_PROGRESS
;
424 dev
->status
&= ~STATUS_WRITE_IN_PROGRESS
;
428 * If i2c_msg index search is completed, we don't need TX_EMPTY
429 * interrupt any more.
431 if (dev
->msg_write_idx
== dev
->msgs_num
)
432 intr_mask
&= ~DW_IC_INTR_TX_EMPTY
;
437 dw_writel(dev
, intr_mask
, DW_IC_INTR_MASK
);
441 i2c_dw_read(struct dw_i2c_dev
*dev
)
443 struct i2c_msg
*msgs
= dev
->msgs
;
446 for (; dev
->msg_read_idx
< dev
->msgs_num
; dev
->msg_read_idx
++) {
450 if (!(msgs
[dev
->msg_read_idx
].flags
& I2C_M_RD
))
453 if (!(dev
->status
& STATUS_READ_IN_PROGRESS
)) {
454 len
= msgs
[dev
->msg_read_idx
].len
;
455 buf
= msgs
[dev
->msg_read_idx
].buf
;
457 len
= dev
->rx_buf_len
;
461 rx_valid
= dw_readl(dev
, DW_IC_RXFLR
);
463 for (; len
> 0 && rx_valid
> 0; len
--, rx_valid
--)
464 *buf
++ = dw_readl(dev
, DW_IC_DATA_CMD
);
467 dev
->status
|= STATUS_READ_IN_PROGRESS
;
468 dev
->rx_buf_len
= len
;
472 dev
->status
&= ~STATUS_READ_IN_PROGRESS
;
476 static int i2c_dw_handle_tx_abort(struct dw_i2c_dev
*dev
)
478 unsigned long abort_source
= dev
->abort_source
;
481 if (abort_source
& DW_IC_TX_ABRT_NOACK
) {
482 for_each_set_bit(i
, &abort_source
, ARRAY_SIZE(abort_sources
))
484 "%s: %s\n", __func__
, abort_sources
[i
]);
488 for_each_set_bit(i
, &abort_source
, ARRAY_SIZE(abort_sources
))
489 dev_err(dev
->dev
, "%s: %s\n", __func__
, abort_sources
[i
]);
491 if (abort_source
& DW_IC_TX_ARB_LOST
)
493 else if (abort_source
& DW_IC_TX_ABRT_GCALL_READ
)
494 return -EINVAL
; /* wrong msgs[] data */
500 * Prepare controller for a transaction and call i2c_dw_xfer_msg
503 i2c_dw_xfer(struct i2c_adapter
*adap
, struct i2c_msg msgs
[], int num
)
505 struct dw_i2c_dev
*dev
= i2c_get_adapdata(adap
);
508 dev_dbg(dev
->dev
, "%s: msgs: %d\n", __func__
, num
);
510 mutex_lock(&dev
->lock
);
511 pm_runtime_get_sync(dev
->dev
);
513 INIT_COMPLETION(dev
->cmd_complete
);
517 dev
->msg_write_idx
= 0;
518 dev
->msg_read_idx
= 0;
520 dev
->status
= STATUS_IDLE
;
521 dev
->abort_source
= 0;
523 ret
= i2c_dw_wait_bus_not_busy(dev
);
527 /* start the transfers */
528 i2c_dw_xfer_init(dev
);
530 /* wait for tx to complete */
531 ret
= wait_for_completion_interruptible_timeout(&dev
->cmd_complete
, HZ
);
533 dev_err(dev
->dev
, "controller timed out\n");
546 if (likely(!dev
->cmd_err
)) {
547 /* Disable the adapter */
548 dw_writel(dev
, 0, DW_IC_ENABLE
);
553 /* We have an error */
554 if (dev
->cmd_err
== DW_IC_ERR_TX_ABRT
) {
555 ret
= i2c_dw_handle_tx_abort(dev
);
561 pm_runtime_put(dev
->dev
);
562 mutex_unlock(&dev
->lock
);
566 EXPORT_SYMBOL_GPL(i2c_dw_xfer
);
568 u32
i2c_dw_func(struct i2c_adapter
*adap
)
570 struct dw_i2c_dev
*dev
= i2c_get_adapdata(adap
);
571 return dev
->functionality
;
573 EXPORT_SYMBOL_GPL(i2c_dw_func
);
575 static u32
i2c_dw_read_clear_intrbits(struct dw_i2c_dev
*dev
)
580 * The IC_INTR_STAT register just indicates "enabled" interrupts.
581 * Ths unmasked raw version of interrupt status bits are available
582 * in the IC_RAW_INTR_STAT register.
585 * stat = dw_readl(IC_INTR_STAT);
587 * stat = dw_readl(IC_RAW_INTR_STAT) & dw_readl(IC_INTR_MASK);
589 * The raw version might be useful for debugging purposes.
591 stat
= dw_readl(dev
, DW_IC_INTR_STAT
);
594 * Do not use the IC_CLR_INTR register to clear interrupts, or
595 * you'll miss some interrupts, triggered during the period from
596 * dw_readl(IC_INTR_STAT) to dw_readl(IC_CLR_INTR).
598 * Instead, use the separately-prepared IC_CLR_* registers.
600 if (stat
& DW_IC_INTR_RX_UNDER
)
601 dw_readl(dev
, DW_IC_CLR_RX_UNDER
);
602 if (stat
& DW_IC_INTR_RX_OVER
)
603 dw_readl(dev
, DW_IC_CLR_RX_OVER
);
604 if (stat
& DW_IC_INTR_TX_OVER
)
605 dw_readl(dev
, DW_IC_CLR_TX_OVER
);
606 if (stat
& DW_IC_INTR_RD_REQ
)
607 dw_readl(dev
, DW_IC_CLR_RD_REQ
);
608 if (stat
& DW_IC_INTR_TX_ABRT
) {
610 * The IC_TX_ABRT_SOURCE register is cleared whenever
611 * the IC_CLR_TX_ABRT is read. Preserve it beforehand.
613 dev
->abort_source
= dw_readl(dev
, DW_IC_TX_ABRT_SOURCE
);
614 dw_readl(dev
, DW_IC_CLR_TX_ABRT
);
616 if (stat
& DW_IC_INTR_RX_DONE
)
617 dw_readl(dev
, DW_IC_CLR_RX_DONE
);
618 if (stat
& DW_IC_INTR_ACTIVITY
)
619 dw_readl(dev
, DW_IC_CLR_ACTIVITY
);
620 if (stat
& DW_IC_INTR_STOP_DET
)
621 dw_readl(dev
, DW_IC_CLR_STOP_DET
);
622 if (stat
& DW_IC_INTR_START_DET
)
623 dw_readl(dev
, DW_IC_CLR_START_DET
);
624 if (stat
& DW_IC_INTR_GEN_CALL
)
625 dw_readl(dev
, DW_IC_CLR_GEN_CALL
);
631 * Interrupt service routine. This gets called whenever an I2C interrupt
634 irqreturn_t
i2c_dw_isr(int this_irq
, void *dev_id
)
636 struct dw_i2c_dev
*dev
= dev_id
;
639 enabled
= dw_readl(dev
, DW_IC_ENABLE
);
640 stat
= dw_readl(dev
, DW_IC_RAW_INTR_STAT
);
641 dev_dbg(dev
->dev
, "%s: %s enabled= 0x%x stat=0x%x\n", __func__
,
642 dev
->adapter
.name
, enabled
, stat
);
643 if (!enabled
|| !(stat
& ~DW_IC_INTR_ACTIVITY
))
646 stat
= i2c_dw_read_clear_intrbits(dev
);
648 if (stat
& DW_IC_INTR_TX_ABRT
) {
649 dev
->cmd_err
|= DW_IC_ERR_TX_ABRT
;
650 dev
->status
= STATUS_IDLE
;
653 * Anytime TX_ABRT is set, the contents of the tx/rx
654 * buffers are flushed. Make sure to skip them.
656 dw_writel(dev
, 0, DW_IC_INTR_MASK
);
660 if (stat
& DW_IC_INTR_RX_FULL
)
663 if (stat
& DW_IC_INTR_TX_EMPTY
)
664 i2c_dw_xfer_msg(dev
);
667 * No need to modify or disable the interrupt mask here.
668 * i2c_dw_xfer_msg() will take care of it according to
669 * the current transmit status.
673 if ((stat
& (DW_IC_INTR_TX_ABRT
| DW_IC_INTR_STOP_DET
)) || dev
->msg_err
)
674 complete(&dev
->cmd_complete
);
678 EXPORT_SYMBOL_GPL(i2c_dw_isr
);
680 void i2c_dw_enable(struct dw_i2c_dev
*dev
)
682 /* Enable the adapter */
683 dw_writel(dev
, 1, DW_IC_ENABLE
);
685 EXPORT_SYMBOL_GPL(i2c_dw_enable
);
687 u32
i2c_dw_is_enabled(struct dw_i2c_dev
*dev
)
689 return dw_readl(dev
, DW_IC_ENABLE
);
691 EXPORT_SYMBOL_GPL(i2c_dw_is_enabled
);
693 void i2c_dw_disable(struct dw_i2c_dev
*dev
)
695 /* Disable controller */
696 dw_writel(dev
, 0, DW_IC_ENABLE
);
698 /* Disable all interupts */
699 dw_writel(dev
, 0, DW_IC_INTR_MASK
);
700 dw_readl(dev
, DW_IC_CLR_INTR
);
702 EXPORT_SYMBOL_GPL(i2c_dw_disable
);
704 void i2c_dw_clear_int(struct dw_i2c_dev
*dev
)
706 dw_readl(dev
, DW_IC_CLR_INTR
);
708 EXPORT_SYMBOL_GPL(i2c_dw_clear_int
);
710 void i2c_dw_disable_int(struct dw_i2c_dev
*dev
)
712 dw_writel(dev
, 0, DW_IC_INTR_MASK
);
714 EXPORT_SYMBOL_GPL(i2c_dw_disable_int
);
716 u32
i2c_dw_read_comp_param(struct dw_i2c_dev
*dev
)
718 return dw_readl(dev
, DW_IC_COMP_PARAM_1
);
720 EXPORT_SYMBOL_GPL(i2c_dw_read_comp_param
);