1 // SPDX-License-Identifier: GPL-2.0
3 * Driver for STMicroelectronics STM32 I2C controller
5 * This I2C controller is described in the STM32F429/439 Soc reference manual.
6 * Please see below a link to the documentation:
7 * http://www.st.com/resource/en/reference_manual/DM00031020.pdf
9 * Copyright (C) M'boumba Cedric Madianga 2016
10 * Copyright (C) STMicroelectronics 2017
11 * Author: M'boumba Cedric Madianga <cedric.madianga@gmail.com>
13 * This driver is based on i2c-st.c
17 #include <linux/clk.h>
18 #include <linux/delay.h>
19 #include <linux/err.h>
20 #include <linux/i2c.h>
21 #include <linux/interrupt.h>
23 #include <linux/iopoll.h>
24 #include <linux/module.h>
25 #include <linux/of_address.h>
26 #include <linux/of_irq.h>
28 #include <linux/platform_device.h>
29 #include <linux/reset.h>
31 #include "i2c-stm32.h"
33 /* STM32F4 I2C offset registers */
34 #define STM32F4_I2C_CR1 0x00
35 #define STM32F4_I2C_CR2 0x04
36 #define STM32F4_I2C_DR 0x10
37 #define STM32F4_I2C_SR1 0x14
38 #define STM32F4_I2C_SR2 0x18
39 #define STM32F4_I2C_CCR 0x1C
40 #define STM32F4_I2C_TRISE 0x20
41 #define STM32F4_I2C_FLTR 0x24
43 /* STM32F4 I2C control 1*/
44 #define STM32F4_I2C_CR1_POS BIT(11)
45 #define STM32F4_I2C_CR1_ACK BIT(10)
46 #define STM32F4_I2C_CR1_STOP BIT(9)
47 #define STM32F4_I2C_CR1_START BIT(8)
48 #define STM32F4_I2C_CR1_PE BIT(0)
50 /* STM32F4 I2C control 2 */
51 #define STM32F4_I2C_CR2_FREQ_MASK GENMASK(5, 0)
52 #define STM32F4_I2C_CR2_FREQ(n) ((n) & STM32F4_I2C_CR2_FREQ_MASK)
53 #define STM32F4_I2C_CR2_ITBUFEN BIT(10)
54 #define STM32F4_I2C_CR2_ITEVTEN BIT(9)
55 #define STM32F4_I2C_CR2_ITERREN BIT(8)
56 #define STM32F4_I2C_CR2_IRQ_MASK (STM32F4_I2C_CR2_ITBUFEN | \
57 STM32F4_I2C_CR2_ITEVTEN | \
58 STM32F4_I2C_CR2_ITERREN)
60 /* STM32F4 I2C Status 1 */
61 #define STM32F4_I2C_SR1_AF BIT(10)
62 #define STM32F4_I2C_SR1_ARLO BIT(9)
63 #define STM32F4_I2C_SR1_BERR BIT(8)
64 #define STM32F4_I2C_SR1_TXE BIT(7)
65 #define STM32F4_I2C_SR1_RXNE BIT(6)
66 #define STM32F4_I2C_SR1_BTF BIT(2)
67 #define STM32F4_I2C_SR1_ADDR BIT(1)
68 #define STM32F4_I2C_SR1_SB BIT(0)
69 #define STM32F4_I2C_SR1_ITEVTEN_MASK (STM32F4_I2C_SR1_BTF | \
70 STM32F4_I2C_SR1_ADDR | \
72 #define STM32F4_I2C_SR1_ITBUFEN_MASK (STM32F4_I2C_SR1_TXE | \
74 #define STM32F4_I2C_SR1_ITERREN_MASK (STM32F4_I2C_SR1_AF | \
75 STM32F4_I2C_SR1_ARLO | \
78 /* STM32F4 I2C Status 2 */
79 #define STM32F4_I2C_SR2_BUSY BIT(1)
81 /* STM32F4 I2C Control Clock */
82 #define STM32F4_I2C_CCR_CCR_MASK GENMASK(11, 0)
83 #define STM32F4_I2C_CCR_CCR(n) ((n) & STM32F4_I2C_CCR_CCR_MASK)
84 #define STM32F4_I2C_CCR_FS BIT(15)
85 #define STM32F4_I2C_CCR_DUTY BIT(14)
87 /* STM32F4 I2C Trise */
88 #define STM32F4_I2C_TRISE_VALUE_MASK GENMASK(5, 0)
89 #define STM32F4_I2C_TRISE_VALUE(n) ((n) & STM32F4_I2C_TRISE_VALUE_MASK)
91 #define STM32F4_I2C_MIN_STANDARD_FREQ 2U
92 #define STM32F4_I2C_MIN_FAST_FREQ 6U
93 #define STM32F4_I2C_MAX_FREQ 46U
94 #define HZ_TO_MHZ 1000000
97 * struct stm32f4_i2c_msg - client specific data
98 * @addr: 8-bit slave addr, including r/w bit
99 * @count: number of bytes to be transferred
101 * @result: result of the transfer
102 * @stop: last I2C msg to be sent, i.e. STOP to be generated
104 struct stm32f4_i2c_msg
{
113 * struct stm32f4_i2c_dev - private data of the controller
114 * @adap: I2C adapter for this controller
115 * @dev: device for this controller
116 * @base: virtual memory area
117 * @complete: completion of I2C message
119 * @speed: I2C clock frequency of the controller. Standard or Fast are supported
120 * @parent_rate: I2C clock parent rate in MHz
121 * @msg: I2C transfer information
123 struct stm32f4_i2c_dev
{
124 struct i2c_adapter adap
;
127 struct completion complete
;
131 struct stm32f4_i2c_msg msg
;
134 static inline void stm32f4_i2c_set_bits(void __iomem
*reg
, u32 mask
)
136 writel_relaxed(readl_relaxed(reg
) | mask
, reg
);
139 static inline void stm32f4_i2c_clr_bits(void __iomem
*reg
, u32 mask
)
141 writel_relaxed(readl_relaxed(reg
) & ~mask
, reg
);
144 static void stm32f4_i2c_disable_irq(struct stm32f4_i2c_dev
*i2c_dev
)
146 void __iomem
*reg
= i2c_dev
->base
+ STM32F4_I2C_CR2
;
148 stm32f4_i2c_clr_bits(reg
, STM32F4_I2C_CR2_IRQ_MASK
);
151 static int stm32f4_i2c_set_periph_clk_freq(struct stm32f4_i2c_dev
*i2c_dev
)
156 i2c_dev
->parent_rate
= clk_get_rate(i2c_dev
->clk
);
157 freq
= DIV_ROUND_UP(i2c_dev
->parent_rate
, HZ_TO_MHZ
);
159 if (i2c_dev
->speed
== STM32_I2C_SPEED_STANDARD
) {
161 * To reach 100 kHz, the parent clk frequency should be between
162 * a minimum value of 2 MHz and a maximum value of 46 MHz due
163 * to hardware limitation
165 if (freq
< STM32F4_I2C_MIN_STANDARD_FREQ
||
166 freq
> STM32F4_I2C_MAX_FREQ
) {
167 dev_err(i2c_dev
->dev
,
168 "bad parent clk freq for standard mode\n");
173 * To be as close as possible to 400 kHz, the parent clk
174 * frequency should be between a minimum value of 6 MHz and a
175 * maximum value of 46 MHz due to hardware limitation
177 if (freq
< STM32F4_I2C_MIN_FAST_FREQ
||
178 freq
> STM32F4_I2C_MAX_FREQ
) {
179 dev_err(i2c_dev
->dev
,
180 "bad parent clk freq for fast mode\n");
185 cr2
|= STM32F4_I2C_CR2_FREQ(freq
);
186 writel_relaxed(cr2
, i2c_dev
->base
+ STM32F4_I2C_CR2
);
191 static void stm32f4_i2c_set_rise_time(struct stm32f4_i2c_dev
*i2c_dev
)
193 u32 freq
= DIV_ROUND_UP(i2c_dev
->parent_rate
, HZ_TO_MHZ
);
197 * These bits must be programmed with the maximum SCL rise time given in
198 * the I2C bus specification, incremented by 1.
200 * In standard mode, the maximum allowed SCL rise time is 1000 ns.
201 * If, in the I2C_CR2 register, the value of FREQ[5:0] bits is equal to
202 * 0x08 so period = 125 ns therefore the TRISE[5:0] bits must be
203 * programmed with 0x9. (1000 ns / 125 ns + 1)
204 * So, for I2C standard mode TRISE = FREQ[5:0] + 1
206 * In fast mode, the maximum allowed SCL rise time is 300 ns.
207 * If, in the I2C_CR2 register, the value of FREQ[5:0] bits is equal to
208 * 0x08 so period = 125 ns therefore the TRISE[5:0] bits must be
209 * programmed with 0x3. (300 ns / 125 ns + 1)
210 * So, for I2C fast mode TRISE = FREQ[5:0] * 300 / 1000 + 1
212 * Function stm32f4_i2c_set_periph_clk_freq made sure that parent rate
213 * is not higher than 46 MHz . As a result trise is at most 4 bits wide
214 * and so fits into the TRISE bits [5:0].
216 if (i2c_dev
->speed
== STM32_I2C_SPEED_STANDARD
)
219 trise
= freq
* 3 / 10 + 1;
221 writel_relaxed(STM32F4_I2C_TRISE_VALUE(trise
),
222 i2c_dev
->base
+ STM32F4_I2C_TRISE
);
225 static void stm32f4_i2c_set_speed_mode(struct stm32f4_i2c_dev
*i2c_dev
)
230 if (i2c_dev
->speed
== STM32_I2C_SPEED_STANDARD
) {
233 * t_scl_high = t_scl_low = CCR * I2C parent clk period
234 * So to reach 100 kHz, we have:
235 * CCR = I2C parent rate / (100 kHz * 2)
237 * For example with parent rate = 2 MHz:
238 * CCR = 2000000 / (100000 * 2) = 10
239 * t_scl_high = t_scl_low = 10 * (1 / 2000000) = 5000 ns
240 * t_scl_high + t_scl_low = 10000 ns so 100 kHz is reached
242 * Function stm32f4_i2c_set_periph_clk_freq made sure that
243 * parent rate is not higher than 46 MHz . As a result val
244 * is at most 8 bits wide and so fits into the CCR bits [11:0].
246 val
= i2c_dev
->parent_rate
/ (I2C_MAX_STANDARD_MODE_FREQ
* 2);
249 * In fast mode, we compute CCR with duty = 0 as with low
250 * frequencies we are not able to reach 400 kHz.
252 * t_scl_high = CCR * I2C parent clk period
253 * t_scl_low = 2 * CCR * I2C parent clk period
254 * So, CCR = I2C parent rate / (400 kHz * 3)
256 * For example with parent rate = 6 MHz:
257 * CCR = 6000000 / (400000 * 3) = 5
258 * t_scl_high = 5 * (1 / 6000000) = 833 ns > 600 ns
259 * t_scl_low = 2 * 5 * (1 / 6000000) = 1667 ns > 1300 ns
260 * t_scl_high + t_scl_low = 2500 ns so 400 kHz is reached
262 * Function stm32f4_i2c_set_periph_clk_freq made sure that
263 * parent rate is not higher than 46 MHz . As a result val
264 * is at most 6 bits wide and so fits into the CCR bits [11:0].
266 val
= DIV_ROUND_UP(i2c_dev
->parent_rate
, I2C_MAX_FAST_MODE_FREQ
* 3);
268 /* Select Fast mode */
269 ccr
|= STM32F4_I2C_CCR_FS
;
272 ccr
|= STM32F4_I2C_CCR_CCR(val
);
273 writel_relaxed(ccr
, i2c_dev
->base
+ STM32F4_I2C_CCR
);
277 * stm32f4_i2c_hw_config() - Prepare I2C block
278 * @i2c_dev: Controller's private data
280 static int stm32f4_i2c_hw_config(struct stm32f4_i2c_dev
*i2c_dev
)
284 ret
= stm32f4_i2c_set_periph_clk_freq(i2c_dev
);
288 stm32f4_i2c_set_rise_time(i2c_dev
);
290 stm32f4_i2c_set_speed_mode(i2c_dev
);
293 writel_relaxed(STM32F4_I2C_CR1_PE
, i2c_dev
->base
+ STM32F4_I2C_CR1
);
298 static int stm32f4_i2c_wait_free_bus(struct stm32f4_i2c_dev
*i2c_dev
)
303 ret
= readl_relaxed_poll_timeout(i2c_dev
->base
+ STM32F4_I2C_SR2
,
305 !(status
& STM32F4_I2C_SR2_BUSY
),
308 dev_dbg(i2c_dev
->dev
, "bus not free\n");
316 * stm32f4_i2c_write_ byte() - Write a byte in the data register
317 * @i2c_dev: Controller's private data
318 * @byte: Data to write in the register
320 static void stm32f4_i2c_write_byte(struct stm32f4_i2c_dev
*i2c_dev
, u8 byte
)
322 writel_relaxed(byte
, i2c_dev
->base
+ STM32F4_I2C_DR
);
326 * stm32f4_i2c_write_msg() - Fill the data register in write mode
327 * @i2c_dev: Controller's private data
329 * This function fills the data register with I2C transfer buffer
331 static void stm32f4_i2c_write_msg(struct stm32f4_i2c_dev
*i2c_dev
)
333 struct stm32f4_i2c_msg
*msg
= &i2c_dev
->msg
;
335 stm32f4_i2c_write_byte(i2c_dev
, *msg
->buf
++);
339 static void stm32f4_i2c_read_msg(struct stm32f4_i2c_dev
*i2c_dev
)
341 struct stm32f4_i2c_msg
*msg
= &i2c_dev
->msg
;
344 rbuf
= readl_relaxed(i2c_dev
->base
+ STM32F4_I2C_DR
);
349 static void stm32f4_i2c_terminate_xfer(struct stm32f4_i2c_dev
*i2c_dev
)
351 struct stm32f4_i2c_msg
*msg
= &i2c_dev
->msg
;
354 stm32f4_i2c_disable_irq(i2c_dev
);
356 reg
= i2c_dev
->base
+ STM32F4_I2C_CR1
;
358 stm32f4_i2c_set_bits(reg
, STM32F4_I2C_CR1_STOP
);
360 stm32f4_i2c_set_bits(reg
, STM32F4_I2C_CR1_START
);
362 complete(&i2c_dev
->complete
);
366 * stm32f4_i2c_handle_write() - Handle FIFO empty interrupt in case of write
367 * @i2c_dev: Controller's private data
369 static void stm32f4_i2c_handle_write(struct stm32f4_i2c_dev
*i2c_dev
)
371 struct stm32f4_i2c_msg
*msg
= &i2c_dev
->msg
;
372 void __iomem
*reg
= i2c_dev
->base
+ STM32F4_I2C_CR2
;
375 stm32f4_i2c_write_msg(i2c_dev
);
378 * Disable buffer interrupts for RX not empty and TX
381 stm32f4_i2c_clr_bits(reg
, STM32F4_I2C_CR2_ITBUFEN
);
384 stm32f4_i2c_terminate_xfer(i2c_dev
);
389 * stm32f4_i2c_handle_read() - Handle FIFO empty interrupt in case of read
390 * @i2c_dev: Controller's private data
392 * This function is called when a new data is received in data register
394 static void stm32f4_i2c_handle_read(struct stm32f4_i2c_dev
*i2c_dev
)
396 struct stm32f4_i2c_msg
*msg
= &i2c_dev
->msg
;
397 void __iomem
*reg
= i2c_dev
->base
+ STM32F4_I2C_CR2
;
399 switch (msg
->count
) {
401 stm32f4_i2c_disable_irq(i2c_dev
);
402 stm32f4_i2c_read_msg(i2c_dev
);
403 complete(&i2c_dev
->complete
);
406 * For 2-byte reception, 3-byte reception and for Data N-2, N-1 and N
407 * for N-byte reception with N > 3, we do not have to read the data
408 * register when RX not empty event occurs as we have to wait for byte
409 * transferred finished event before reading data.
410 * So, here we just disable buffer interrupt in order to avoid another
411 * system preemption due to RX not empty event.
415 stm32f4_i2c_clr_bits(reg
, STM32F4_I2C_CR2_ITBUFEN
);
418 * For N byte reception with N > 3 we directly read data register
422 stm32f4_i2c_read_msg(i2c_dev
);
427 * stm32f4_i2c_handle_rx_done() - Handle byte transfer finished interrupt
429 * @i2c_dev: Controller's private data
431 * This function is called when a new data is received in the shift register
432 * but data register has not been read yet.
434 static void stm32f4_i2c_handle_rx_done(struct stm32f4_i2c_dev
*i2c_dev
)
436 struct stm32f4_i2c_msg
*msg
= &i2c_dev
->msg
;
441 switch (msg
->count
) {
444 * In order to correctly send the Stop or Repeated Start
445 * condition on the I2C bus, the STOP/START bit has to be set
446 * before reading the last two bytes (data N-1 and N).
447 * After that, we could read the last two bytes, disable
448 * remaining interrupts and notify the end of xfer to the
451 reg
= i2c_dev
->base
+ STM32F4_I2C_CR1
;
453 stm32f4_i2c_set_bits(reg
, STM32F4_I2C_CR1_STOP
);
455 stm32f4_i2c_set_bits(reg
, STM32F4_I2C_CR1_START
);
457 for (i
= 2; i
> 0; i
--)
458 stm32f4_i2c_read_msg(i2c_dev
);
460 reg
= i2c_dev
->base
+ STM32F4_I2C_CR2
;
461 mask
= STM32F4_I2C_CR2_ITEVTEN
| STM32F4_I2C_CR2_ITERREN
;
462 stm32f4_i2c_clr_bits(reg
, mask
);
464 complete(&i2c_dev
->complete
);
468 * In order to correctly generate the NACK pulse after the last
469 * received data byte, we have to enable NACK before reading N-2
472 reg
= i2c_dev
->base
+ STM32F4_I2C_CR1
;
473 stm32f4_i2c_clr_bits(reg
, STM32F4_I2C_CR1_ACK
);
474 stm32f4_i2c_read_msg(i2c_dev
);
477 stm32f4_i2c_read_msg(i2c_dev
);
482 * stm32f4_i2c_handle_rx_addr() - Handle address matched interrupt in case of
484 * @i2c_dev: Controller's private data
486 static void stm32f4_i2c_handle_rx_addr(struct stm32f4_i2c_dev
*i2c_dev
)
488 struct stm32f4_i2c_msg
*msg
= &i2c_dev
->msg
;
491 switch (msg
->count
) {
493 stm32f4_i2c_terminate_xfer(i2c_dev
);
495 /* Clear ADDR flag */
496 readl_relaxed(i2c_dev
->base
+ STM32F4_I2C_SR2
);
500 * Single byte reception:
501 * Enable NACK and reset POS (Acknowledge position).
502 * Then, clear ADDR flag and set STOP or RepSTART.
503 * In that way, the NACK and STOP or RepStart pulses will be
504 * sent as soon as the byte will be received in shift register
506 cr1
= readl_relaxed(i2c_dev
->base
+ STM32F4_I2C_CR1
);
507 cr1
&= ~(STM32F4_I2C_CR1_ACK
| STM32F4_I2C_CR1_POS
);
508 writel_relaxed(cr1
, i2c_dev
->base
+ STM32F4_I2C_CR1
);
510 readl_relaxed(i2c_dev
->base
+ STM32F4_I2C_SR2
);
513 cr1
|= STM32F4_I2C_CR1_STOP
;
515 cr1
|= STM32F4_I2C_CR1_START
;
516 writel_relaxed(cr1
, i2c_dev
->base
+ STM32F4_I2C_CR1
);
521 * Enable NACK, set POS (NACK position) and clear ADDR flag.
522 * In that way, NACK will be sent for the next byte which will
523 * be received in the shift register instead of the current
526 cr1
= readl_relaxed(i2c_dev
->base
+ STM32F4_I2C_CR1
);
527 cr1
&= ~STM32F4_I2C_CR1_ACK
;
528 cr1
|= STM32F4_I2C_CR1_POS
;
529 writel_relaxed(cr1
, i2c_dev
->base
+ STM32F4_I2C_CR1
);
531 readl_relaxed(i2c_dev
->base
+ STM32F4_I2C_SR2
);
537 * Enable ACK, reset POS (ACK postion) and clear ADDR flag.
538 * In that way, ACK will be sent as soon as the current byte
539 * will be received in the shift register
541 cr1
= readl_relaxed(i2c_dev
->base
+ STM32F4_I2C_CR1
);
542 cr1
|= STM32F4_I2C_CR1_ACK
;
543 cr1
&= ~STM32F4_I2C_CR1_POS
;
544 writel_relaxed(cr1
, i2c_dev
->base
+ STM32F4_I2C_CR1
);
546 readl_relaxed(i2c_dev
->base
+ STM32F4_I2C_SR2
);
552 * stm32f4_i2c_isr_event() - Interrupt routine for I2C bus event
553 * @irq: interrupt number
554 * @data: Controller's private data
556 static irqreturn_t
stm32f4_i2c_isr_event(int irq
, void *data
)
558 struct stm32f4_i2c_dev
*i2c_dev
= data
;
559 struct stm32f4_i2c_msg
*msg
= &i2c_dev
->msg
;
560 u32 possible_status
= STM32F4_I2C_SR1_ITEVTEN_MASK
;
561 u32 status
, ien
, event
, cr2
;
563 cr2
= readl_relaxed(i2c_dev
->base
+ STM32F4_I2C_CR2
);
564 ien
= cr2
& STM32F4_I2C_CR2_IRQ_MASK
;
566 /* Update possible_status if buffer interrupt is enabled */
567 if (ien
& STM32F4_I2C_CR2_ITBUFEN
)
568 possible_status
|= STM32F4_I2C_SR1_ITBUFEN_MASK
;
570 status
= readl_relaxed(i2c_dev
->base
+ STM32F4_I2C_SR1
);
571 event
= status
& possible_status
;
573 dev_dbg(i2c_dev
->dev
,
574 "spurious evt irq (status=0x%08x, ien=0x%08x)\n",
579 /* Start condition generated */
580 if (event
& STM32F4_I2C_SR1_SB
)
581 stm32f4_i2c_write_byte(i2c_dev
, msg
->addr
);
583 /* I2C Address sent */
584 if (event
& STM32F4_I2C_SR1_ADDR
) {
585 if (msg
->addr
& I2C_M_RD
)
586 stm32f4_i2c_handle_rx_addr(i2c_dev
);
588 readl_relaxed(i2c_dev
->base
+ STM32F4_I2C_SR2
);
591 * Enable buffer interrupts for RX not empty and TX empty
594 cr2
|= STM32F4_I2C_CR2_ITBUFEN
;
595 writel_relaxed(cr2
, i2c_dev
->base
+ STM32F4_I2C_CR2
);
599 if ((event
& STM32F4_I2C_SR1_TXE
) && !(msg
->addr
& I2C_M_RD
))
600 stm32f4_i2c_handle_write(i2c_dev
);
603 if ((event
& STM32F4_I2C_SR1_RXNE
) && (msg
->addr
& I2C_M_RD
))
604 stm32f4_i2c_handle_read(i2c_dev
);
607 * The BTF (Byte Transfer finished) event occurs when:
608 * - in reception : a new byte is received in the shift register
609 * but the previous byte has not been read yet from data register
610 * - in transmission: a new byte should be sent but the data register
611 * has not been written yet
613 if (event
& STM32F4_I2C_SR1_BTF
) {
614 if (msg
->addr
& I2C_M_RD
)
615 stm32f4_i2c_handle_rx_done(i2c_dev
);
617 stm32f4_i2c_handle_write(i2c_dev
);
624 * stm32f4_i2c_isr_error() - Interrupt routine for I2C bus error
625 * @irq: interrupt number
626 * @data: Controller's private data
628 static irqreturn_t
stm32f4_i2c_isr_error(int irq
, void *data
)
630 struct stm32f4_i2c_dev
*i2c_dev
= data
;
631 struct stm32f4_i2c_msg
*msg
= &i2c_dev
->msg
;
635 status
= readl_relaxed(i2c_dev
->base
+ STM32F4_I2C_SR1
);
637 /* Arbitration lost */
638 if (status
& STM32F4_I2C_SR1_ARLO
) {
639 status
&= ~STM32F4_I2C_SR1_ARLO
;
640 writel_relaxed(status
, i2c_dev
->base
+ STM32F4_I2C_SR1
);
641 msg
->result
= -EAGAIN
;
645 * Acknowledge failure:
646 * In master transmitter mode a Stop must be generated by software
648 if (status
& STM32F4_I2C_SR1_AF
) {
649 if (!(msg
->addr
& I2C_M_RD
)) {
650 reg
= i2c_dev
->base
+ STM32F4_I2C_CR1
;
651 stm32f4_i2c_set_bits(reg
, STM32F4_I2C_CR1_STOP
);
653 status
&= ~STM32F4_I2C_SR1_AF
;
654 writel_relaxed(status
, i2c_dev
->base
+ STM32F4_I2C_SR1
);
659 if (status
& STM32F4_I2C_SR1_BERR
) {
660 status
&= ~STM32F4_I2C_SR1_BERR
;
661 writel_relaxed(status
, i2c_dev
->base
+ STM32F4_I2C_SR1
);
665 stm32f4_i2c_disable_irq(i2c_dev
);
666 complete(&i2c_dev
->complete
);
672 * stm32f4_i2c_xfer_msg() - Transfer a single I2C message
673 * @i2c_dev: Controller's private data
674 * @msg: I2C message to transfer
675 * @is_first: first message of the sequence
676 * @is_last: last message of the sequence
678 static int stm32f4_i2c_xfer_msg(struct stm32f4_i2c_dev
*i2c_dev
,
679 struct i2c_msg
*msg
, bool is_first
,
682 struct stm32f4_i2c_msg
*f4_msg
= &i2c_dev
->msg
;
683 void __iomem
*reg
= i2c_dev
->base
+ STM32F4_I2C_CR1
;
684 unsigned long timeout
;
688 f4_msg
->addr
= i2c_8bit_addr_from_msg(msg
);
689 f4_msg
->buf
= msg
->buf
;
690 f4_msg
->count
= msg
->len
;
692 f4_msg
->stop
= is_last
;
694 reinit_completion(&i2c_dev
->complete
);
696 /* Enable events and errors interrupts */
697 mask
= STM32F4_I2C_CR2_ITEVTEN
| STM32F4_I2C_CR2_ITERREN
;
698 stm32f4_i2c_set_bits(i2c_dev
->base
+ STM32F4_I2C_CR2
, mask
);
701 ret
= stm32f4_i2c_wait_free_bus(i2c_dev
);
705 /* START generation */
706 stm32f4_i2c_set_bits(reg
, STM32F4_I2C_CR1_START
);
709 timeout
= wait_for_completion_timeout(&i2c_dev
->complete
,
710 i2c_dev
->adap
.timeout
);
711 ret
= f4_msg
->result
;
720 * stm32f4_i2c_xfer() - Transfer combined I2C message
721 * @i2c_adap: Adapter pointer to the controller
722 * @msgs: Pointer to data to be written.
723 * @num: Number of messages to be executed
725 static int stm32f4_i2c_xfer(struct i2c_adapter
*i2c_adap
, struct i2c_msg msgs
[],
728 struct stm32f4_i2c_dev
*i2c_dev
= i2c_get_adapdata(i2c_adap
);
731 ret
= clk_enable(i2c_dev
->clk
);
733 dev_err(i2c_dev
->dev
, "Failed to enable clock\n");
737 for (i
= 0; i
< num
&& !ret
; i
++)
738 ret
= stm32f4_i2c_xfer_msg(i2c_dev
, &msgs
[i
], i
== 0,
741 clk_disable(i2c_dev
->clk
);
743 return (ret
< 0) ? ret
: num
;
746 static u32
stm32f4_i2c_func(struct i2c_adapter
*adap
)
748 return I2C_FUNC_I2C
| I2C_FUNC_SMBUS_EMUL
;
751 static const struct i2c_algorithm stm32f4_i2c_algo
= {
752 .master_xfer
= stm32f4_i2c_xfer
,
753 .functionality
= stm32f4_i2c_func
,
756 static int stm32f4_i2c_probe(struct platform_device
*pdev
)
758 struct device_node
*np
= pdev
->dev
.of_node
;
759 struct stm32f4_i2c_dev
*i2c_dev
;
760 struct resource
*res
;
761 u32 irq_event
, irq_error
, clk_rate
;
762 struct i2c_adapter
*adap
;
763 struct reset_control
*rst
;
766 i2c_dev
= devm_kzalloc(&pdev
->dev
, sizeof(*i2c_dev
), GFP_KERNEL
);
770 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
771 i2c_dev
->base
= devm_ioremap_resource(&pdev
->dev
, res
);
772 if (IS_ERR(i2c_dev
->base
))
773 return PTR_ERR(i2c_dev
->base
);
775 irq_event
= irq_of_parse_and_map(np
, 0);
777 dev_err(&pdev
->dev
, "IRQ event missing or invalid\n");
781 irq_error
= irq_of_parse_and_map(np
, 1);
783 dev_err(&pdev
->dev
, "IRQ error missing or invalid\n");
787 i2c_dev
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
788 if (IS_ERR(i2c_dev
->clk
)) {
789 dev_err(&pdev
->dev
, "Error: Missing controller clock\n");
790 return PTR_ERR(i2c_dev
->clk
);
792 ret
= clk_prepare_enable(i2c_dev
->clk
);
794 dev_err(i2c_dev
->dev
, "Failed to prepare_enable clock\n");
798 rst
= devm_reset_control_get_exclusive(&pdev
->dev
, NULL
);
800 ret
= dev_err_probe(&pdev
->dev
, PTR_ERR(rst
),
801 "Error: Missing reset ctrl\n");
804 reset_control_assert(rst
);
806 reset_control_deassert(rst
);
808 i2c_dev
->speed
= STM32_I2C_SPEED_STANDARD
;
809 ret
= of_property_read_u32(np
, "clock-frequency", &clk_rate
);
810 if (!ret
&& clk_rate
>= I2C_MAX_FAST_MODE_FREQ
)
811 i2c_dev
->speed
= STM32_I2C_SPEED_FAST
;
813 i2c_dev
->dev
= &pdev
->dev
;
815 ret
= devm_request_irq(&pdev
->dev
, irq_event
, stm32f4_i2c_isr_event
, 0,
816 pdev
->name
, i2c_dev
);
818 dev_err(&pdev
->dev
, "Failed to request irq event %i\n",
823 ret
= devm_request_irq(&pdev
->dev
, irq_error
, stm32f4_i2c_isr_error
, 0,
824 pdev
->name
, i2c_dev
);
826 dev_err(&pdev
->dev
, "Failed to request irq error %i\n",
831 ret
= stm32f4_i2c_hw_config(i2c_dev
);
835 adap
= &i2c_dev
->adap
;
836 i2c_set_adapdata(adap
, i2c_dev
);
837 snprintf(adap
->name
, sizeof(adap
->name
), "STM32 I2C(%pa)", &res
->start
);
838 adap
->owner
= THIS_MODULE
;
839 adap
->timeout
= 2 * HZ
;
841 adap
->algo
= &stm32f4_i2c_algo
;
842 adap
->dev
.parent
= &pdev
->dev
;
843 adap
->dev
.of_node
= pdev
->dev
.of_node
;
845 init_completion(&i2c_dev
->complete
);
847 ret
= i2c_add_adapter(adap
);
851 platform_set_drvdata(pdev
, i2c_dev
);
853 clk_disable(i2c_dev
->clk
);
855 dev_info(i2c_dev
->dev
, "STM32F4 I2C driver registered\n");
860 clk_disable_unprepare(i2c_dev
->clk
);
864 static int stm32f4_i2c_remove(struct platform_device
*pdev
)
866 struct stm32f4_i2c_dev
*i2c_dev
= platform_get_drvdata(pdev
);
868 i2c_del_adapter(&i2c_dev
->adap
);
870 clk_unprepare(i2c_dev
->clk
);
875 static const struct of_device_id stm32f4_i2c_match
[] = {
876 { .compatible
= "st,stm32f4-i2c", },
879 MODULE_DEVICE_TABLE(of
, stm32f4_i2c_match
);
881 static struct platform_driver stm32f4_i2c_driver
= {
883 .name
= "stm32f4-i2c",
884 .of_match_table
= stm32f4_i2c_match
,
886 .probe
= stm32f4_i2c_probe
,
887 .remove
= stm32f4_i2c_remove
,
890 module_platform_driver(stm32f4_i2c_driver
);
892 MODULE_AUTHOR("M'boumba Cedric Madianga <cedric.madianga@gmail.com>");
893 MODULE_DESCRIPTION("STMicroelectronics STM32F4 I2C driver");
894 MODULE_LICENSE("GPL v2");