2 * i2c-exynos5.c - Samsung Exynos5 I2C Controller Driver
4 * Copyright (C) 2013 Samsung Electronics Co., Ltd.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <linux/kernel.h>
12 #include <linux/module.h>
14 #include <linux/i2c.h>
15 #include <linux/time.h>
16 #include <linux/interrupt.h>
17 #include <linux/delay.h>
18 #include <linux/errno.h>
19 #include <linux/err.h>
20 #include <linux/platform_device.h>
21 #include <linux/clk.h>
22 #include <linux/slab.h>
24 #include <linux/of_address.h>
25 #include <linux/of_irq.h>
26 #include <linux/spinlock.h>
29 * HSI2C controller from Samsung supports 2 modes of operation
30 * 1. Auto mode: Where in master automatically controls the whole transaction
31 * 2. Manual mode: Software controls the transaction by issuing commands
32 * START, READ, WRITE, STOP, RESTART in I2C_MANUAL_CMD register.
34 * Operation mode can be selected by setting AUTO_MODE bit in I2C_CONF register
36 * Special bits are available for both modes of operation to set commands
37 * and for checking transfer status
41 #define HSI2C_CTL 0x00
42 #define HSI2C_FIFO_CTL 0x04
43 #define HSI2C_TRAILIG_CTL 0x08
44 #define HSI2C_CLK_CTL 0x0C
45 #define HSI2C_CLK_SLOT 0x10
46 #define HSI2C_INT_ENABLE 0x20
47 #define HSI2C_INT_STATUS 0x24
48 #define HSI2C_ERR_STATUS 0x2C
49 #define HSI2C_FIFO_STATUS 0x30
50 #define HSI2C_TX_DATA 0x34
51 #define HSI2C_RX_DATA 0x38
52 #define HSI2C_CONF 0x40
53 #define HSI2C_AUTO_CONF 0x44
54 #define HSI2C_TIMEOUT 0x48
55 #define HSI2C_MANUAL_CMD 0x4C
56 #define HSI2C_TRANS_STATUS 0x50
57 #define HSI2C_TIMING_HS1 0x54
58 #define HSI2C_TIMING_HS2 0x58
59 #define HSI2C_TIMING_HS3 0x5C
60 #define HSI2C_TIMING_FS1 0x60
61 #define HSI2C_TIMING_FS2 0x64
62 #define HSI2C_TIMING_FS3 0x68
63 #define HSI2C_TIMING_SLA 0x6C
64 #define HSI2C_ADDR 0x70
66 /* I2C_CTL Register bits */
67 #define HSI2C_FUNC_MODE_I2C (1u << 0)
68 #define HSI2C_MASTER (1u << 3)
69 #define HSI2C_RXCHON (1u << 6)
70 #define HSI2C_TXCHON (1u << 7)
71 #define HSI2C_SW_RST (1u << 31)
73 /* I2C_FIFO_CTL Register bits */
74 #define HSI2C_RXFIFO_EN (1u << 0)
75 #define HSI2C_TXFIFO_EN (1u << 1)
76 #define HSI2C_RXFIFO_TRIGGER_LEVEL(x) ((x) << 4)
77 #define HSI2C_TXFIFO_TRIGGER_LEVEL(x) ((x) << 16)
79 /* I2C_TRAILING_CTL Register bits */
80 #define HSI2C_TRAILING_COUNT (0xf)
82 /* I2C_INT_EN Register bits */
83 #define HSI2C_INT_TX_ALMOSTEMPTY_EN (1u << 0)
84 #define HSI2C_INT_RX_ALMOSTFULL_EN (1u << 1)
85 #define HSI2C_INT_TRAILING_EN (1u << 6)
87 /* I2C_INT_STAT Register bits */
88 #define HSI2C_INT_TX_ALMOSTEMPTY (1u << 0)
89 #define HSI2C_INT_RX_ALMOSTFULL (1u << 1)
90 #define HSI2C_INT_TX_UNDERRUN (1u << 2)
91 #define HSI2C_INT_TX_OVERRUN (1u << 3)
92 #define HSI2C_INT_RX_UNDERRUN (1u << 4)
93 #define HSI2C_INT_RX_OVERRUN (1u << 5)
94 #define HSI2C_INT_TRAILING (1u << 6)
95 #define HSI2C_INT_I2C (1u << 9)
97 #define HSI2C_INT_TRANS_DONE (1u << 7)
98 #define HSI2C_INT_TRANS_ABORT (1u << 8)
99 #define HSI2C_INT_NO_DEV_ACK (1u << 9)
100 #define HSI2C_INT_NO_DEV (1u << 10)
101 #define HSI2C_INT_TIMEOUT (1u << 11)
102 #define HSI2C_INT_I2C_TRANS (HSI2C_INT_TRANS_DONE | \
103 HSI2C_INT_TRANS_ABORT | \
104 HSI2C_INT_NO_DEV_ACK | \
108 /* I2C_FIFO_STAT Register bits */
109 #define HSI2C_RX_FIFO_EMPTY (1u << 24)
110 #define HSI2C_RX_FIFO_FULL (1u << 23)
111 #define HSI2C_RX_FIFO_LVL(x) ((x >> 16) & 0x7f)
112 #define HSI2C_TX_FIFO_EMPTY (1u << 8)
113 #define HSI2C_TX_FIFO_FULL (1u << 7)
114 #define HSI2C_TX_FIFO_LVL(x) ((x >> 0) & 0x7f)
116 /* I2C_CONF Register bits */
117 #define HSI2C_AUTO_MODE (1u << 31)
118 #define HSI2C_10BIT_ADDR_MODE (1u << 30)
119 #define HSI2C_HS_MODE (1u << 29)
121 /* I2C_AUTO_CONF Register bits */
122 #define HSI2C_READ_WRITE (1u << 16)
123 #define HSI2C_STOP_AFTER_TRANS (1u << 17)
124 #define HSI2C_MASTER_RUN (1u << 31)
126 /* I2C_TIMEOUT Register bits */
127 #define HSI2C_TIMEOUT_EN (1u << 31)
128 #define HSI2C_TIMEOUT_MASK 0xff
130 /* I2C_TRANS_STATUS register bits */
131 #define HSI2C_MASTER_BUSY (1u << 17)
132 #define HSI2C_SLAVE_BUSY (1u << 16)
133 #define HSI2C_TIMEOUT_AUTO (1u << 4)
134 #define HSI2C_NO_DEV (1u << 3)
135 #define HSI2C_NO_DEV_ACK (1u << 2)
136 #define HSI2C_TRANS_ABORT (1u << 1)
137 #define HSI2C_TRANS_DONE (1u << 0)
139 /* I2C_ADDR register bits */
140 #define HSI2C_SLV_ADDR_SLV(x) ((x & 0x3ff) << 0)
141 #define HSI2C_SLV_ADDR_MAS(x) ((x & 0x3ff) << 10)
142 #define HSI2C_MASTER_ID(x) ((x & 0xff) << 24)
143 #define MASTER_ID(x) ((x & 0x7) + 0x08)
146 * Controller operating frequency, timing values for operation
147 * are calculated against this frequency
149 #define HSI2C_HS_TX_CLOCK 1000000
150 #define HSI2C_FS_TX_CLOCK 100000
151 #define HSI2C_HIGH_SPD 1
152 #define HSI2C_FAST_SPD 0
154 #define EXYNOS5_I2C_TIMEOUT (msecs_to_jiffies(1000))
156 #define HSI2C_EXYNOS7 BIT(0)
159 struct i2c_adapter adap
;
160 unsigned int suspended
:1;
163 struct completion msg_complete
;
164 unsigned int msg_ptr
;
173 spinlock_t lock
; /* IRQ synchronization */
176 * Since the TRANS_DONE bit is cleared on read, and we may read it
177 * either during an IRQ or after a transaction, keep track of its
182 /* Controller operating frequency */
183 unsigned int fs_clock
;
184 unsigned int hs_clock
;
187 * HSI2C Controller can operate in
188 * 1. High speed upto 3.4Mbps
189 * 2. Fast speed upto 1Mbps
193 /* Version of HS-I2C Hardware */
194 struct exynos_hsi2c_variant
*variant
;
198 * struct exynos_hsi2c_variant - platform specific HSI2C driver data
199 * @fifo_depth: the fifo depth supported by the HSI2C module
201 * Specifies platform specific configuration of HSI2C module.
202 * Note: A structure for driver specific platform data is used for future
203 * expansion of its usage.
205 struct exynos_hsi2c_variant
{
206 unsigned int fifo_depth
;
210 static const struct exynos_hsi2c_variant exynos5250_hsi2c_data
= {
214 static const struct exynos_hsi2c_variant exynos5260_hsi2c_data
= {
218 static const struct exynos_hsi2c_variant exynos7_hsi2c_data
= {
223 static const struct of_device_id exynos5_i2c_match
[] = {
225 .compatible
= "samsung,exynos5-hsi2c",
226 .data
= &exynos5250_hsi2c_data
228 .compatible
= "samsung,exynos5250-hsi2c",
229 .data
= &exynos5250_hsi2c_data
231 .compatible
= "samsung,exynos5260-hsi2c",
232 .data
= &exynos5260_hsi2c_data
234 .compatible
= "samsung,exynos7-hsi2c",
235 .data
= &exynos7_hsi2c_data
238 MODULE_DEVICE_TABLE(of
, exynos5_i2c_match
);
240 static inline struct exynos_hsi2c_variant
*exynos5_i2c_get_variant
241 (struct platform_device
*pdev
)
243 const struct of_device_id
*match
;
245 match
= of_match_node(exynos5_i2c_match
, pdev
->dev
.of_node
);
246 return (struct exynos_hsi2c_variant
*)match
->data
;
249 static void exynos5_i2c_clr_pend_irq(struct exynos5_i2c
*i2c
)
251 writel(readl(i2c
->regs
+ HSI2C_INT_STATUS
),
252 i2c
->regs
+ HSI2C_INT_STATUS
);
256 * exynos5_i2c_set_timing: updates the registers with appropriate
257 * timing values calculated
259 * Returns 0 on success, -EINVAL if the cycle length cannot
262 static int exynos5_i2c_set_timing(struct exynos5_i2c
*i2c
, int mode
)
268 unsigned int t_start_su
, t_start_hd
;
269 unsigned int t_stop_su
;
270 unsigned int t_data_su
, t_data_hd
;
271 unsigned int t_scl_l
, t_scl_h
;
272 unsigned int t_sr_release
;
273 unsigned int t_ftl_cycle
;
274 unsigned int clkin
= clk_get_rate(i2c
->clk
);
275 unsigned int div
, utemp0
= 0, utemp1
= 0, clk_cycle
;
276 unsigned int op_clk
= (mode
== HSI2C_HIGH_SPD
) ?
277 i2c
->hs_clock
: i2c
->fs_clock
;
280 * In case of HSI2C controller in Exynos5 series
282 * (CLK_DIV + 1) * (TSCLK_L + TSCLK_H + 2) + 8 + 2 * FLT_CYCLE
284 * In case of HSI2C controllers in Exynos7 series
286 * (CLK_DIV + 1) * (TSCLK_L + TSCLK_H + 2) + 8 + FLT_CYCLE
288 * utemp0 = (CLK_DIV + 1) * (TSCLK_L + TSCLK_H + 2)
289 * utemp1 = (TSCLK_L + TSCLK_H + 2)
291 t_ftl_cycle
= (readl(i2c
->regs
+ HSI2C_CONF
) >> 16) & 0x7;
292 utemp0
= (clkin
/ op_clk
) - 8;
294 if (i2c
->variant
->hw
== HSI2C_EXYNOS7
)
295 utemp0
-= t_ftl_cycle
;
297 utemp0
-= 2 * t_ftl_cycle
;
299 /* CLK_DIV max is 256 */
300 for (div
= 0; div
< 256; div
++) {
301 utemp1
= utemp0
/ (div
+ 1);
304 * SCL_L and SCL_H each has max value of 255
305 * Hence, For the clk_cycle to the have right value
306 * utemp1 has to be less then 512 and more than 4.
308 if ((utemp1
< 512) && (utemp1
> 4)) {
309 clk_cycle
= utemp1
- 2;
311 } else if (div
== 255) {
312 dev_warn(i2c
->dev
, "Failed to calculate divisor");
317 t_scl_l
= clk_cycle
/ 2;
318 t_scl_h
= clk_cycle
/ 2;
319 t_start_su
= t_scl_l
;
320 t_start_hd
= t_scl_l
;
322 t_data_su
= t_scl_l
/ 2;
323 t_data_hd
= t_scl_l
/ 2;
324 t_sr_release
= clk_cycle
;
326 i2c_timing_s1
= t_start_su
<< 24 | t_start_hd
<< 16 | t_stop_su
<< 8;
327 i2c_timing_s2
= t_data_su
<< 24 | t_scl_l
<< 8 | t_scl_h
<< 0;
328 i2c_timing_s3
= div
<< 16 | t_sr_release
<< 0;
329 i2c_timing_sla
= t_data_hd
<< 0;
331 dev_dbg(i2c
->dev
, "tSTART_SU: %X, tSTART_HD: %X, tSTOP_SU: %X\n",
332 t_start_su
, t_start_hd
, t_stop_su
);
333 dev_dbg(i2c
->dev
, "tDATA_SU: %X, tSCL_L: %X, tSCL_H: %X\n",
334 t_data_su
, t_scl_l
, t_scl_h
);
335 dev_dbg(i2c
->dev
, "nClkDiv: %X, tSR_RELEASE: %X\n",
337 dev_dbg(i2c
->dev
, "tDATA_HD: %X\n", t_data_hd
);
339 if (mode
== HSI2C_HIGH_SPD
) {
340 writel(i2c_timing_s1
, i2c
->regs
+ HSI2C_TIMING_HS1
);
341 writel(i2c_timing_s2
, i2c
->regs
+ HSI2C_TIMING_HS2
);
342 writel(i2c_timing_s3
, i2c
->regs
+ HSI2C_TIMING_HS3
);
344 writel(i2c_timing_s1
, i2c
->regs
+ HSI2C_TIMING_FS1
);
345 writel(i2c_timing_s2
, i2c
->regs
+ HSI2C_TIMING_FS2
);
346 writel(i2c_timing_s3
, i2c
->regs
+ HSI2C_TIMING_FS3
);
348 writel(i2c_timing_sla
, i2c
->regs
+ HSI2C_TIMING_SLA
);
353 static int exynos5_hsi2c_clock_setup(struct exynos5_i2c
*i2c
)
356 * Configure the Fast speed timing values
357 * Even the High Speed mode initially starts with Fast mode
359 if (exynos5_i2c_set_timing(i2c
, HSI2C_FAST_SPD
)) {
360 dev_err(i2c
->dev
, "HSI2C FS Clock set up failed\n");
364 /* configure the High speed timing values */
365 if (i2c
->speed_mode
== HSI2C_HIGH_SPD
) {
366 if (exynos5_i2c_set_timing(i2c
, HSI2C_HIGH_SPD
)) {
367 dev_err(i2c
->dev
, "HSI2C HS Clock set up failed\n");
376 * exynos5_i2c_init: configures the controller for I2C functionality
377 * Programs I2C controller for Master mode operation
379 static void exynos5_i2c_init(struct exynos5_i2c
*i2c
)
381 u32 i2c_conf
= readl(i2c
->regs
+ HSI2C_CONF
);
382 u32 i2c_timeout
= readl(i2c
->regs
+ HSI2C_TIMEOUT
);
384 /* Clear to disable Timeout */
385 i2c_timeout
&= ~HSI2C_TIMEOUT_EN
;
386 writel(i2c_timeout
, i2c
->regs
+ HSI2C_TIMEOUT
);
388 writel((HSI2C_FUNC_MODE_I2C
| HSI2C_MASTER
),
389 i2c
->regs
+ HSI2C_CTL
);
390 writel(HSI2C_TRAILING_COUNT
, i2c
->regs
+ HSI2C_TRAILIG_CTL
);
392 if (i2c
->speed_mode
== HSI2C_HIGH_SPD
) {
393 writel(HSI2C_MASTER_ID(MASTER_ID(i2c
->adap
.nr
)),
394 i2c
->regs
+ HSI2C_ADDR
);
395 i2c_conf
|= HSI2C_HS_MODE
;
398 writel(i2c_conf
| HSI2C_AUTO_MODE
, i2c
->regs
+ HSI2C_CONF
);
401 static void exynos5_i2c_reset(struct exynos5_i2c
*i2c
)
405 /* Set and clear the bit for reset */
406 i2c_ctl
= readl(i2c
->regs
+ HSI2C_CTL
);
407 i2c_ctl
|= HSI2C_SW_RST
;
408 writel(i2c_ctl
, i2c
->regs
+ HSI2C_CTL
);
410 i2c_ctl
= readl(i2c
->regs
+ HSI2C_CTL
);
411 i2c_ctl
&= ~HSI2C_SW_RST
;
412 writel(i2c_ctl
, i2c
->regs
+ HSI2C_CTL
);
414 /* We don't expect calculations to fail during the run */
415 exynos5_hsi2c_clock_setup(i2c
);
416 /* Initialize the configure registers */
417 exynos5_i2c_init(i2c
);
421 * exynos5_i2c_irq: top level IRQ servicing routine
423 * INT_STATUS registers gives the interrupt details. Further,
424 * FIFO_STATUS or TRANS_STATUS registers are to be check for detailed
427 static irqreturn_t
exynos5_i2c_irq(int irqno
, void *dev_id
)
429 struct exynos5_i2c
*i2c
= dev_id
;
430 u32 fifo_level
, int_status
, fifo_status
, trans_status
;
434 i2c
->state
= -EINVAL
;
436 spin_lock(&i2c
->lock
);
438 int_status
= readl(i2c
->regs
+ HSI2C_INT_STATUS
);
439 writel(int_status
, i2c
->regs
+ HSI2C_INT_STATUS
);
441 /* handle interrupt related to the transfer status */
442 if (i2c
->variant
->hw
== HSI2C_EXYNOS7
) {
443 if (int_status
& HSI2C_INT_TRANS_DONE
) {
446 } else if (int_status
& HSI2C_INT_TRANS_ABORT
) {
447 dev_dbg(i2c
->dev
, "Deal with arbitration lose\n");
448 i2c
->state
= -EAGAIN
;
450 } else if (int_status
& HSI2C_INT_NO_DEV_ACK
) {
451 dev_dbg(i2c
->dev
, "No ACK from device\n");
454 } else if (int_status
& HSI2C_INT_NO_DEV
) {
455 dev_dbg(i2c
->dev
, "No device\n");
458 } else if (int_status
& HSI2C_INT_TIMEOUT
) {
459 dev_dbg(i2c
->dev
, "Accessing device timed out\n");
460 i2c
->state
= -ETIMEDOUT
;
463 } else if (int_status
& HSI2C_INT_I2C
) {
464 trans_status
= readl(i2c
->regs
+ HSI2C_TRANS_STATUS
);
465 if (trans_status
& HSI2C_NO_DEV_ACK
) {
466 dev_dbg(i2c
->dev
, "No ACK from device\n");
469 } else if (trans_status
& HSI2C_NO_DEV
) {
470 dev_dbg(i2c
->dev
, "No device\n");
473 } else if (trans_status
& HSI2C_TRANS_ABORT
) {
474 dev_dbg(i2c
->dev
, "Deal with arbitration lose\n");
475 i2c
->state
= -EAGAIN
;
477 } else if (trans_status
& HSI2C_TIMEOUT_AUTO
) {
478 dev_dbg(i2c
->dev
, "Accessing device timed out\n");
479 i2c
->state
= -ETIMEDOUT
;
481 } else if (trans_status
& HSI2C_TRANS_DONE
) {
487 if ((i2c
->msg
->flags
& I2C_M_RD
) && (int_status
&
488 (HSI2C_INT_TRAILING
| HSI2C_INT_RX_ALMOSTFULL
))) {
489 fifo_status
= readl(i2c
->regs
+ HSI2C_FIFO_STATUS
);
490 fifo_level
= HSI2C_RX_FIFO_LVL(fifo_status
);
491 len
= min(fifo_level
, i2c
->msg
->len
- i2c
->msg_ptr
);
494 byte
= (unsigned char)
495 readl(i2c
->regs
+ HSI2C_RX_DATA
);
496 i2c
->msg
->buf
[i2c
->msg_ptr
++] = byte
;
500 } else if (int_status
& HSI2C_INT_TX_ALMOSTEMPTY
) {
501 fifo_status
= readl(i2c
->regs
+ HSI2C_FIFO_STATUS
);
502 fifo_level
= HSI2C_TX_FIFO_LVL(fifo_status
);
504 len
= i2c
->variant
->fifo_depth
- fifo_level
;
505 if (len
> (i2c
->msg
->len
- i2c
->msg_ptr
))
506 len
= i2c
->msg
->len
- i2c
->msg_ptr
;
509 byte
= i2c
->msg
->buf
[i2c
->msg_ptr
++];
510 writel(byte
, i2c
->regs
+ HSI2C_TX_DATA
);
517 if ((i2c
->trans_done
&& (i2c
->msg
->len
== i2c
->msg_ptr
)) ||
519 writel(0, i2c
->regs
+ HSI2C_INT_ENABLE
);
520 exynos5_i2c_clr_pend_irq(i2c
);
521 complete(&i2c
->msg_complete
);
524 spin_unlock(&i2c
->lock
);
530 * exynos5_i2c_wait_bus_idle
532 * Wait for the bus to go idle, indicated by the MASTER_BUSY bit being
535 * Returns -EBUSY if the bus cannot be bought to idle
537 static int exynos5_i2c_wait_bus_idle(struct exynos5_i2c
*i2c
)
539 unsigned long stop_time
;
542 /* wait for 100 milli seconds for the bus to be idle */
543 stop_time
= jiffies
+ msecs_to_jiffies(100) + 1;
545 trans_status
= readl(i2c
->regs
+ HSI2C_TRANS_STATUS
);
546 if (!(trans_status
& HSI2C_MASTER_BUSY
))
549 usleep_range(50, 200);
550 } while (time_before(jiffies
, stop_time
));
556 * exynos5_i2c_message_start: Configures the bus and starts the xfer
557 * i2c: struct exynos5_i2c pointer for the current bus
558 * stop: Enables stop after transfer if set. Set for last transfer of
559 * in the list of messages.
561 * Configures the bus for read/write function
562 * Sets chip address to talk to, message length to be sent.
563 * Enables appropriate interrupts and sends start xfer command.
565 static void exynos5_i2c_message_start(struct exynos5_i2c
*i2c
, int stop
)
569 u32 i2c_auto_conf
= 0;
572 unsigned short trig_lvl
;
574 if (i2c
->variant
->hw
== HSI2C_EXYNOS7
)
575 int_en
|= HSI2C_INT_I2C_TRANS
;
577 int_en
|= HSI2C_INT_I2C
;
579 i2c_ctl
= readl(i2c
->regs
+ HSI2C_CTL
);
580 i2c_ctl
&= ~(HSI2C_TXCHON
| HSI2C_RXCHON
);
581 fifo_ctl
= HSI2C_RXFIFO_EN
| HSI2C_TXFIFO_EN
;
583 if (i2c
->msg
->flags
& I2C_M_RD
) {
584 i2c_ctl
|= HSI2C_RXCHON
;
586 i2c_auto_conf
|= HSI2C_READ_WRITE
;
588 trig_lvl
= (i2c
->msg
->len
> i2c
->variant
->fifo_depth
) ?
589 (i2c
->variant
->fifo_depth
* 3 / 4) : i2c
->msg
->len
;
590 fifo_ctl
|= HSI2C_RXFIFO_TRIGGER_LEVEL(trig_lvl
);
592 int_en
|= (HSI2C_INT_RX_ALMOSTFULL_EN
|
593 HSI2C_INT_TRAILING_EN
);
595 i2c_ctl
|= HSI2C_TXCHON
;
597 trig_lvl
= (i2c
->msg
->len
> i2c
->variant
->fifo_depth
) ?
598 (i2c
->variant
->fifo_depth
* 1 / 4) : i2c
->msg
->len
;
599 fifo_ctl
|= HSI2C_TXFIFO_TRIGGER_LEVEL(trig_lvl
);
601 int_en
|= HSI2C_INT_TX_ALMOSTEMPTY_EN
;
604 writel(HSI2C_SLV_ADDR_MAS(i2c
->msg
->addr
), i2c
->regs
+ HSI2C_ADDR
);
606 writel(fifo_ctl
, i2c
->regs
+ HSI2C_FIFO_CTL
);
607 writel(i2c_ctl
, i2c
->regs
+ HSI2C_CTL
);
610 * Enable interrupts before starting the transfer so that we don't
611 * miss any INT_I2C interrupts.
613 spin_lock_irqsave(&i2c
->lock
, flags
);
614 writel(int_en
, i2c
->regs
+ HSI2C_INT_ENABLE
);
617 i2c_auto_conf
|= HSI2C_STOP_AFTER_TRANS
;
618 i2c_auto_conf
|= i2c
->msg
->len
;
619 i2c_auto_conf
|= HSI2C_MASTER_RUN
;
620 writel(i2c_auto_conf
, i2c
->regs
+ HSI2C_AUTO_CONF
);
621 spin_unlock_irqrestore(&i2c
->lock
, flags
);
624 static int exynos5_i2c_xfer_msg(struct exynos5_i2c
*i2c
,
625 struct i2c_msg
*msgs
, int stop
)
627 unsigned long timeout
;
634 reinit_completion(&i2c
->msg_complete
);
636 exynos5_i2c_message_start(i2c
, stop
);
638 timeout
= wait_for_completion_timeout(&i2c
->msg_complete
,
639 EXYNOS5_I2C_TIMEOUT
);
646 * If this is the last message to be transfered (stop == 1)
647 * Then check if the bus can be brought back to idle.
649 if (ret
== 0 && stop
)
650 ret
= exynos5_i2c_wait_bus_idle(i2c
);
653 exynos5_i2c_reset(i2c
);
654 if (ret
== -ETIMEDOUT
)
655 dev_warn(i2c
->dev
, "%s timeout\n",
656 (msgs
->flags
& I2C_M_RD
) ? "rx" : "tx");
659 /* Return the state as in interrupt routine */
663 static int exynos5_i2c_xfer(struct i2c_adapter
*adap
,
664 struct i2c_msg
*msgs
, int num
)
666 struct exynos5_i2c
*i2c
= adap
->algo_data
;
667 int i
= 0, ret
= 0, stop
= 0;
669 if (i2c
->suspended
) {
670 dev_err(i2c
->dev
, "HS-I2C is not initialized.\n");
674 ret
= clk_enable(i2c
->clk
);
678 for (i
= 0; i
< num
; i
++, msgs
++) {
679 stop
= (i
== num
- 1);
681 ret
= exynos5_i2c_xfer_msg(i2c
, msgs
, stop
);
690 /* Only one message, cannot access the device */
696 dev_warn(i2c
->dev
, "xfer message failed\n");
700 clk_disable(i2c
->clk
);
704 static u32
exynos5_i2c_func(struct i2c_adapter
*adap
)
706 return I2C_FUNC_I2C
| (I2C_FUNC_SMBUS_EMUL
& ~I2C_FUNC_SMBUS_QUICK
);
709 static const struct i2c_algorithm exynos5_i2c_algorithm
= {
710 .master_xfer
= exynos5_i2c_xfer
,
711 .functionality
= exynos5_i2c_func
,
714 static int exynos5_i2c_probe(struct platform_device
*pdev
)
716 struct device_node
*np
= pdev
->dev
.of_node
;
717 struct exynos5_i2c
*i2c
;
718 struct resource
*mem
;
719 unsigned int op_clock
;
722 i2c
= devm_kzalloc(&pdev
->dev
, sizeof(struct exynos5_i2c
), GFP_KERNEL
);
726 if (of_property_read_u32(np
, "clock-frequency", &op_clock
)) {
727 i2c
->speed_mode
= HSI2C_FAST_SPD
;
728 i2c
->fs_clock
= HSI2C_FS_TX_CLOCK
;
730 if (op_clock
>= HSI2C_HS_TX_CLOCK
) {
731 i2c
->speed_mode
= HSI2C_HIGH_SPD
;
732 i2c
->fs_clock
= HSI2C_FS_TX_CLOCK
;
733 i2c
->hs_clock
= op_clock
;
735 i2c
->speed_mode
= HSI2C_FAST_SPD
;
736 i2c
->fs_clock
= op_clock
;
740 strlcpy(i2c
->adap
.name
, "exynos5-i2c", sizeof(i2c
->adap
.name
));
741 i2c
->adap
.owner
= THIS_MODULE
;
742 i2c
->adap
.algo
= &exynos5_i2c_algorithm
;
743 i2c
->adap
.retries
= 3;
745 i2c
->dev
= &pdev
->dev
;
746 i2c
->clk
= devm_clk_get(&pdev
->dev
, "hsi2c");
747 if (IS_ERR(i2c
->clk
)) {
748 dev_err(&pdev
->dev
, "cannot get clock\n");
752 ret
= clk_prepare_enable(i2c
->clk
);
756 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
757 i2c
->regs
= devm_ioremap_resource(&pdev
->dev
, mem
);
758 if (IS_ERR(i2c
->regs
)) {
759 ret
= PTR_ERR(i2c
->regs
);
763 i2c
->adap
.dev
.of_node
= np
;
764 i2c
->adap
.algo_data
= i2c
;
765 i2c
->adap
.dev
.parent
= &pdev
->dev
;
767 /* Clear pending interrupts from u-boot or misc causes */
768 exynos5_i2c_clr_pend_irq(i2c
);
770 spin_lock_init(&i2c
->lock
);
771 init_completion(&i2c
->msg_complete
);
773 i2c
->irq
= ret
= platform_get_irq(pdev
, 0);
775 dev_err(&pdev
->dev
, "cannot find HS-I2C IRQ\n");
780 ret
= devm_request_irq(&pdev
->dev
, i2c
->irq
, exynos5_i2c_irq
,
781 IRQF_NO_SUSPEND
| IRQF_ONESHOT
,
782 dev_name(&pdev
->dev
), i2c
);
785 dev_err(&pdev
->dev
, "cannot request HS-I2C IRQ %d\n", i2c
->irq
);
789 /* Need to check the variant before setting up. */
790 i2c
->variant
= exynos5_i2c_get_variant(pdev
);
792 ret
= exynos5_hsi2c_clock_setup(i2c
);
796 exynos5_i2c_reset(i2c
);
798 ret
= i2c_add_adapter(&i2c
->adap
);
800 dev_err(&pdev
->dev
, "failed to add bus to i2c core\n");
804 platform_set_drvdata(pdev
, i2c
);
806 clk_disable(i2c
->clk
);
811 clk_disable_unprepare(i2c
->clk
);
815 static int exynos5_i2c_remove(struct platform_device
*pdev
)
817 struct exynos5_i2c
*i2c
= platform_get_drvdata(pdev
);
819 i2c_del_adapter(&i2c
->adap
);
821 clk_unprepare(i2c
->clk
);
826 #ifdef CONFIG_PM_SLEEP
827 static int exynos5_i2c_suspend_noirq(struct device
*dev
)
829 struct platform_device
*pdev
= to_platform_device(dev
);
830 struct exynos5_i2c
*i2c
= platform_get_drvdata(pdev
);
834 clk_unprepare(i2c
->clk
);
839 static int exynos5_i2c_resume_noirq(struct device
*dev
)
841 struct platform_device
*pdev
= to_platform_device(dev
);
842 struct exynos5_i2c
*i2c
= platform_get_drvdata(pdev
);
845 ret
= clk_prepare_enable(i2c
->clk
);
849 ret
= exynos5_hsi2c_clock_setup(i2c
);
851 clk_disable_unprepare(i2c
->clk
);
855 exynos5_i2c_init(i2c
);
856 clk_disable(i2c
->clk
);
863 static const struct dev_pm_ops exynos5_i2c_dev_pm_ops
= {
864 SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(exynos5_i2c_suspend_noirq
,
865 exynos5_i2c_resume_noirq
)
868 static struct platform_driver exynos5_i2c_driver
= {
869 .probe
= exynos5_i2c_probe
,
870 .remove
= exynos5_i2c_remove
,
872 .name
= "exynos5-hsi2c",
873 .pm
= &exynos5_i2c_dev_pm_ops
,
874 .of_match_table
= exynos5_i2c_match
,
878 module_platform_driver(exynos5_i2c_driver
);
880 MODULE_DESCRIPTION("Exynos5 HS-I2C Bus driver");
881 MODULE_AUTHOR("Naveen Krishna Chatradhi, <ch.naveen@samsung.com>");
882 MODULE_AUTHOR("Taekgyun Ko, <taeggyun.ko@samsung.com>");
883 MODULE_LICENSE("GPL v2");