blob: 836148e4c1a02b02f29cbb79d97a394bbd136c09 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Patrice Chotard4fadcaf2017-08-09 14:45:27 +02002/*
3 * (C) Copyright 2017 STMicroelectronics
Patrice Chotard4fadcaf2017-08-09 14:45:27 +02004 */
5
Patrick Delaunayf4ed2242020-11-06 19:01:50 +01006#define LOG_CATEGORY UCLASS_I2C
7
Patrice Chotard4fadcaf2017-08-09 14:45:27 +02008#include <common.h>
9#include <clk.h>
10#include <dm.h>
11#include <i2c.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +020013#include <regmap.h>
Patrice Chotard4fadcaf2017-08-09 14:45:27 +020014#include <reset.h>
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +020015#include <syscon.h>
Patrick Delaunayf4ed2242020-11-06 19:01:50 +010016#include <dm/device.h>
17#include <dm/device_compat.h>
Simon Glasscd93d622020-05-10 11:40:13 -060018#include <linux/bitops.h>
Simon Glassc05ed002020-05-10 11:40:11 -060019#include <linux/delay.h>
Alain Volmatc3244652020-03-06 11:09:14 +010020#include <linux/err.h>
Patrice Chotard4fadcaf2017-08-09 14:45:27 +020021#include <linux/io.h>
22
23/* STM32 I2C registers */
24struct stm32_i2c_regs {
25 u32 cr1; /* I2C control register 1 */
26 u32 cr2; /* I2C control register 2 */
27 u32 oar1; /* I2C own address 1 register */
28 u32 oar2; /* I2C own address 2 register */
29 u32 timingr; /* I2C timing register */
30 u32 timeoutr; /* I2C timeout register */
31 u32 isr; /* I2C interrupt and status register */
32 u32 icr; /* I2C interrupt clear register */
33 u32 pecr; /* I2C packet error checking register */
34 u32 rxdr; /* I2C receive data register */
35 u32 txdr; /* I2C transmit data register */
36};
37
38#define STM32_I2C_CR1 0x00
39#define STM32_I2C_CR2 0x04
40#define STM32_I2C_TIMINGR 0x10
41#define STM32_I2C_ISR 0x18
42#define STM32_I2C_ICR 0x1C
43#define STM32_I2C_RXDR 0x24
44#define STM32_I2C_TXDR 0x28
45
46/* STM32 I2C control 1 */
47#define STM32_I2C_CR1_ANFOFF BIT(12)
Patrick Delaunay6bbb14f2021-08-03 12:05:13 +020048#define STM32_I2C_CR1_DNF_MASK GENMASK(11, 8)
49#define STM32_I2C_CR1_DNF(n) (((n) & 0xf) << 8)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +020050#define STM32_I2C_CR1_ERRIE BIT(7)
51#define STM32_I2C_CR1_TCIE BIT(6)
52#define STM32_I2C_CR1_STOPIE BIT(5)
53#define STM32_I2C_CR1_NACKIE BIT(4)
54#define STM32_I2C_CR1_ADDRIE BIT(3)
55#define STM32_I2C_CR1_RXIE BIT(2)
56#define STM32_I2C_CR1_TXIE BIT(1)
57#define STM32_I2C_CR1_PE BIT(0)
58
59/* STM32 I2C control 2 */
Patrice Chotard4fadcaf2017-08-09 14:45:27 +020060#define STM32_I2C_CR2_RELOAD BIT(24)
61#define STM32_I2C_CR2_NBYTES_MASK GENMASK(23, 16)
62#define STM32_I2C_CR2_NBYTES(n) ((n & 0xff) << 16)
63#define STM32_I2C_CR2_NACK BIT(15)
64#define STM32_I2C_CR2_STOP BIT(14)
65#define STM32_I2C_CR2_START BIT(13)
66#define STM32_I2C_CR2_HEAD10R BIT(12)
67#define STM32_I2C_CR2_ADD10 BIT(11)
68#define STM32_I2C_CR2_RD_WRN BIT(10)
69#define STM32_I2C_CR2_SADD10_MASK GENMASK(9, 0)
Patrick Delaunayc0765f42018-10-29 15:31:55 +010070#define STM32_I2C_CR2_SADD10(n) (n & STM32_I2C_CR2_SADD10_MASK)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +020071#define STM32_I2C_CR2_SADD7_MASK GENMASK(7, 1)
72#define STM32_I2C_CR2_SADD7(n) ((n & 0x7f) << 1)
73#define STM32_I2C_CR2_RESET_MASK (STM32_I2C_CR2_HEAD10R \
74 | STM32_I2C_CR2_NBYTES_MASK \
75 | STM32_I2C_CR2_SADD7_MASK \
76 | STM32_I2C_CR2_RELOAD \
77 | STM32_I2C_CR2_RD_WRN)
78
79/* STM32 I2C Interrupt Status */
80#define STM32_I2C_ISR_BUSY BIT(15)
81#define STM32_I2C_ISR_ARLO BIT(9)
82#define STM32_I2C_ISR_BERR BIT(8)
83#define STM32_I2C_ISR_TCR BIT(7)
84#define STM32_I2C_ISR_TC BIT(6)
85#define STM32_I2C_ISR_STOPF BIT(5)
86#define STM32_I2C_ISR_NACKF BIT(4)
87#define STM32_I2C_ISR_ADDR BIT(3)
88#define STM32_I2C_ISR_RXNE BIT(2)
89#define STM32_I2C_ISR_TXIS BIT(1)
90#define STM32_I2C_ISR_TXE BIT(0)
91#define STM32_I2C_ISR_ERRORS (STM32_I2C_ISR_BERR \
92 | STM32_I2C_ISR_ARLO)
93
94/* STM32 I2C Interrupt Clear */
95#define STM32_I2C_ICR_ARLOCF BIT(9)
96#define STM32_I2C_ICR_BERRCF BIT(8)
97#define STM32_I2C_ICR_STOPCF BIT(5)
98#define STM32_I2C_ICR_NACKCF BIT(4)
99
100/* STM32 I2C Timing */
101#define STM32_I2C_TIMINGR_PRESC(n) ((n & 0xf) << 28)
102#define STM32_I2C_TIMINGR_SCLDEL(n) ((n & 0xf) << 20)
103#define STM32_I2C_TIMINGR_SDADEL(n) ((n & 0xf) << 16)
104#define STM32_I2C_TIMINGR_SCLH(n) ((n & 0xff) << 8)
105#define STM32_I2C_TIMINGR_SCLL(n) (n & 0xff)
106
107#define STM32_I2C_MAX_LEN 0xff
108
Patrick Delaunay6bbb14f2021-08-03 12:05:13 +0200109#define STM32_I2C_DNF_MAX 15
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200110
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200111#define STM32_I2C_ANALOG_FILTER_DELAY_MIN 50 /* ns */
112#define STM32_I2C_ANALOG_FILTER_DELAY_MAX 260 /* ns */
113
114#define STM32_I2C_RISE_TIME_DEFAULT 25 /* ns */
115#define STM32_I2C_FALL_TIME_DEFAULT 10 /* ns */
116
117#define STM32_PRESC_MAX BIT(4)
118#define STM32_SCLDEL_MAX BIT(4)
119#define STM32_SDADEL_MAX BIT(4)
120#define STM32_SCLH_MAX BIT(8)
121#define STM32_SCLL_MAX BIT(8)
122
123#define STM32_NSEC_PER_SEC 1000000000L
124
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200125/**
126 * struct stm32_i2c_spec - private i2c specification timing
127 * @rate: I2C bus speed (Hz)
128 * @rate_min: 80% of I2C bus speed (Hz)
129 * @rate_max: 120% of I2C bus speed (Hz)
130 * @fall_max: Max fall time of both SDA and SCL signals (ns)
131 * @rise_max: Max rise time of both SDA and SCL signals (ns)
132 * @hddat_min: Min data hold time (ns)
133 * @vddat_max: Max data valid time (ns)
134 * @sudat_min: Min data setup time (ns)
135 * @l_min: Min low period of the SCL clock (ns)
136 * @h_min: Min high period of the SCL clock (ns)
137 */
138
139struct stm32_i2c_spec {
140 u32 rate;
141 u32 rate_min;
142 u32 rate_max;
143 u32 fall_max;
144 u32 rise_max;
145 u32 hddat_min;
146 u32 vddat_max;
147 u32 sudat_min;
148 u32 l_min;
149 u32 h_min;
150};
151
152/**
153 * struct stm32_i2c_setup - private I2C timing setup parameters
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200154 * @speed_freq: I2C speed frequency (Hz)
155 * @clock_src: I2C clock source frequency (Hz)
156 * @rise_time: Rise time (ns)
157 * @fall_time: Fall time (ns)
Patrick Delaunay6bbb14f2021-08-03 12:05:13 +0200158 * @dnf: value of digital filter to apply
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200159 * @analog_filter: Analog filter delay (On/Off)
160 */
161struct stm32_i2c_setup {
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200162 u32 speed_freq;
163 u32 clock_src;
164 u32 rise_time;
165 u32 fall_time;
166 u8 dnf;
167 bool analog_filter;
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200168};
169
170/**
171 * struct stm32_i2c_data - driver data for I2C configuration by compatible
172 * @fmp_clr_offset: Fast Mode Plus clear register offset from set register
173 */
174struct stm32_i2c_data {
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200175 u32 fmp_clr_offset;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200176};
177
178/**
179 * struct stm32_i2c_timings - private I2C output parameters
180 * @prec: Prescaler value
181 * @scldel: Data setup time
182 * @sdadel: Data hold time
183 * @sclh: SCL high period (master mode)
184 * @sclh: SCL low period (master mode)
185 */
186struct stm32_i2c_timings {
187 struct list_head node;
188 u8 presc;
189 u8 scldel;
190 u8 sdadel;
191 u8 sclh;
192 u8 scll;
193};
194
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200195/**
196 * struct stm32_i2c_priv - private data of the controller
197 * @regs: I2C registers address
198 * @clk: hw i2c clock
199 * @setup: I2C timing setup parameters
200 * @speed: I2C clock frequency of the controller. Standard, Fast or Fast+
201 * @regmap: holds SYSCFG phandle for Fast Mode Plus bit
202 * @regmap_sreg: register address for setting Fast Mode Plus bits
203 * @regmap_creg: register address for clearing Fast Mode Plus bits
204 * @regmap_mask: mask for Fast Mode Plus bits
Patrick Delaunay6338b452021-08-03 12:05:14 +0200205 * @dnf_dt: value of digital filter requested via dt
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200206 */
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200207struct stm32_i2c_priv {
208 struct stm32_i2c_regs *regs;
209 struct clk clk;
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200210 struct stm32_i2c_setup setup;
Alain Volmatc3244652020-03-06 11:09:14 +0100211 u32 speed;
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200212 struct regmap *regmap;
213 u32 regmap_sreg;
214 u32 regmap_creg;
215 u32 regmap_mask;
Patrick Delaunay6338b452021-08-03 12:05:14 +0200216 u32 dnf_dt;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200217};
218
Patrick Delaunayc235b082018-10-29 15:31:56 +0100219static const struct stm32_i2c_spec i2c_specs[] = {
Alain Volmatc3244652020-03-06 11:09:14 +0100220 /* Standard speed - 100 KHz */
Simon Glassb0a22d02020-01-23 11:48:21 -0700221 [IC_SPEED_MODE_STANDARD] = {
222 .rate = I2C_SPEED_STANDARD_RATE,
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200223 .rate_min = 8000,
224 .rate_max = 120000,
225 .fall_max = 300,
226 .rise_max = 1000,
227 .hddat_min = 0,
228 .vddat_max = 3450,
229 .sudat_min = 250,
230 .l_min = 4700,
231 .h_min = 4000,
232 },
Alain Volmatc3244652020-03-06 11:09:14 +0100233 /* Fast speed - 400 KHz */
Simon Glassb0a22d02020-01-23 11:48:21 -0700234 [IC_SPEED_MODE_FAST] = {
235 .rate = I2C_SPEED_FAST_RATE,
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200236 .rate_min = 320000,
237 .rate_max = 480000,
238 .fall_max = 300,
239 .rise_max = 300,
240 .hddat_min = 0,
241 .vddat_max = 900,
242 .sudat_min = 100,
243 .l_min = 1300,
244 .h_min = 600,
245 },
Alain Volmatc3244652020-03-06 11:09:14 +0100246 /* Fast Plus Speed - 1 MHz */
Simon Glassb0a22d02020-01-23 11:48:21 -0700247 [IC_SPEED_MODE_FAST_PLUS] = {
248 .rate = I2C_SPEED_FAST_PLUS_RATE,
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200249 .rate_min = 800000,
250 .rate_max = 1200000,
251 .fall_max = 100,
252 .rise_max = 120,
253 .hddat_min = 0,
254 .vddat_max = 450,
255 .sudat_min = 50,
256 .l_min = 500,
257 .h_min = 260,
258 },
259};
260
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200261static const struct stm32_i2c_data stm32f7_data = {
262 .fmp_clr_offset = 0x00,
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200263};
264
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200265static const struct stm32_i2c_data stm32mp15_data = {
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200266 .fmp_clr_offset = 0x40,
267};
268
Patrick Delaunayd4d01d02022-06-30 10:20:14 +0200269static const struct stm32_i2c_data stm32mp13_data = {
270 .fmp_clr_offset = 0x4,
271};
272
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200273static int stm32_i2c_check_device_busy(struct stm32_i2c_priv *i2c_priv)
274{
275 struct stm32_i2c_regs *regs = i2c_priv->regs;
276 u32 status = readl(&regs->isr);
277
278 if (status & STM32_I2C_ISR_BUSY)
279 return -EBUSY;
280
281 return 0;
282}
283
284static void stm32_i2c_message_start(struct stm32_i2c_priv *i2c_priv,
Alain Volmatbcc75092022-09-12 10:41:59 +0200285 struct i2c_msg *msg)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200286{
287 struct stm32_i2c_regs *regs = i2c_priv->regs;
288 u32 cr2 = readl(&regs->cr2);
289
290 /* Set transfer direction */
291 cr2 &= ~STM32_I2C_CR2_RD_WRN;
292 if (msg->flags & I2C_M_RD)
293 cr2 |= STM32_I2C_CR2_RD_WRN;
294
295 /* Set slave address */
296 cr2 &= ~(STM32_I2C_CR2_HEAD10R | STM32_I2C_CR2_ADD10);
297 if (msg->flags & I2C_M_TEN) {
298 cr2 &= ~STM32_I2C_CR2_SADD10_MASK;
299 cr2 |= STM32_I2C_CR2_SADD10(msg->addr);
300 cr2 |= STM32_I2C_CR2_ADD10;
301 } else {
302 cr2 &= ~STM32_I2C_CR2_SADD7_MASK;
303 cr2 |= STM32_I2C_CR2_SADD7(msg->addr);
304 }
305
Alain Volmat923d8022022-09-12 10:41:58 +0200306 /* Set nb bytes to transfer and reload (if needed) */
307 cr2 &= ~(STM32_I2C_CR2_NBYTES_MASK | STM32_I2C_CR2_RELOAD);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200308 if (msg->len > STM32_I2C_MAX_LEN) {
309 cr2 |= STM32_I2C_CR2_NBYTES(STM32_I2C_MAX_LEN);
310 cr2 |= STM32_I2C_CR2_RELOAD;
311 } else {
312 cr2 |= STM32_I2C_CR2_NBYTES(msg->len);
313 }
314
315 /* Write configurations register */
316 writel(cr2, &regs->cr2);
317
318 /* START/ReSTART generation */
319 setbits_le32(&regs->cr2, STM32_I2C_CR2_START);
320}
321
322/*
323 * RELOAD mode must be selected if total number of data bytes to be
324 * sent is greater than MAX_LEN
325 */
326
327static void stm32_i2c_handle_reload(struct stm32_i2c_priv *i2c_priv,
Alain Volmatbcc75092022-09-12 10:41:59 +0200328 struct i2c_msg *msg)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200329{
330 struct stm32_i2c_regs *regs = i2c_priv->regs;
331 u32 cr2 = readl(&regs->cr2);
332
333 cr2 &= ~STM32_I2C_CR2_NBYTES_MASK;
334
335 if (msg->len > STM32_I2C_MAX_LEN) {
336 cr2 |= STM32_I2C_CR2_NBYTES(STM32_I2C_MAX_LEN);
337 } else {
338 cr2 &= ~STM32_I2C_CR2_RELOAD;
339 cr2 |= STM32_I2C_CR2_NBYTES(msg->len);
340 }
341
342 writel(cr2, &regs->cr2);
343}
344
345static int stm32_i2c_wait_flags(struct stm32_i2c_priv *i2c_priv,
Patrick Delaunayc0765f42018-10-29 15:31:55 +0100346 u32 flags, u32 *status)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200347{
348 struct stm32_i2c_regs *regs = i2c_priv->regs;
349 u32 time_start = get_timer(0);
350
351 *status = readl(&regs->isr);
352 while (!(*status & flags)) {
353 if (get_timer(time_start) > CONFIG_SYS_HZ) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100354 log_debug("i2c timeout\n");
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200355 return -ETIMEDOUT;
356 }
357
358 *status = readl(&regs->isr);
359 }
360
361 return 0;
362}
363
364static int stm32_i2c_check_end_of_message(struct stm32_i2c_priv *i2c_priv)
365{
366 struct stm32_i2c_regs *regs = i2c_priv->regs;
367 u32 mask = STM32_I2C_ISR_ERRORS | STM32_I2C_ISR_NACKF |
368 STM32_I2C_ISR_STOPF;
369 u32 status;
370 int ret;
371
372 ret = stm32_i2c_wait_flags(i2c_priv, mask, &status);
373 if (ret)
374 return ret;
375
376 if (status & STM32_I2C_ISR_BERR) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100377 log_debug("Bus error\n");
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200378
379 /* Clear BERR flag */
380 setbits_le32(&regs->icr, STM32_I2C_ICR_BERRCF);
381
382 return -EIO;
383 }
384
385 if (status & STM32_I2C_ISR_ARLO) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100386 log_debug("Arbitration lost\n");
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200387
388 /* Clear ARLO flag */
389 setbits_le32(&regs->icr, STM32_I2C_ICR_ARLOCF);
390
391 return -EAGAIN;
392 }
393
394 if (status & STM32_I2C_ISR_NACKF) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100395 log_debug("Receive NACK\n");
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200396
397 /* Clear NACK flag */
398 setbits_le32(&regs->icr, STM32_I2C_ICR_NACKCF);
399
400 /* Wait until STOPF flag is set */
401 mask = STM32_I2C_ISR_STOPF;
402 ret = stm32_i2c_wait_flags(i2c_priv, mask, &status);
403 if (ret)
404 return ret;
405
406 ret = -EIO;
407 }
408
409 if (status & STM32_I2C_ISR_STOPF) {
410 /* Clear STOP flag */
411 setbits_le32(&regs->icr, STM32_I2C_ICR_STOPCF);
412
413 /* Clear control register 2 */
Jorge Ramirez-Ortiz9ef530f2022-08-15 16:52:10 +0200414 clrbits_le32(&regs->cr2, STM32_I2C_CR2_RESET_MASK);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200415 }
416
417 return ret;
418}
419
420static int stm32_i2c_message_xfer(struct stm32_i2c_priv *i2c_priv,
Patrick Delaunayc0765f42018-10-29 15:31:55 +0100421 struct i2c_msg *msg, bool stop)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200422{
423 struct stm32_i2c_regs *regs = i2c_priv->regs;
424 u32 status;
425 u32 mask = msg->flags & I2C_M_RD ? STM32_I2C_ISR_RXNE :
426 STM32_I2C_ISR_TXIS | STM32_I2C_ISR_NACKF;
427 int bytes_to_rw = msg->len > STM32_I2C_MAX_LEN ?
428 STM32_I2C_MAX_LEN : msg->len;
429 int ret = 0;
430
431 /* Add errors */
432 mask |= STM32_I2C_ISR_ERRORS;
433
Alain Volmatbcc75092022-09-12 10:41:59 +0200434 stm32_i2c_message_start(i2c_priv, msg);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200435
436 while (msg->len) {
437 /*
438 * Wait until TXIS/NACKF/BERR/ARLO flags or
439 * RXNE/BERR/ARLO flags are set
440 */
441 ret = stm32_i2c_wait_flags(i2c_priv, mask, &status);
442 if (ret)
443 break;
444
445 if (status & (STM32_I2C_ISR_NACKF | STM32_I2C_ISR_ERRORS))
446 break;
447
448 if (status & STM32_I2C_ISR_RXNE) {
449 *msg->buf++ = readb(&regs->rxdr);
450 msg->len--;
451 bytes_to_rw--;
452 }
453
454 if (status & STM32_I2C_ISR_TXIS) {
455 writeb(*msg->buf++, &regs->txdr);
456 msg->len--;
457 bytes_to_rw--;
458 }
459
460 if (!bytes_to_rw && msg->len) {
461 /* Wait until TCR flag is set */
462 mask = STM32_I2C_ISR_TCR;
463 ret = stm32_i2c_wait_flags(i2c_priv, mask, &status);
464 if (ret)
465 break;
466
467 bytes_to_rw = msg->len > STM32_I2C_MAX_LEN ?
468 STM32_I2C_MAX_LEN : msg->len;
469 mask = msg->flags & I2C_M_RD ? STM32_I2C_ISR_RXNE :
470 STM32_I2C_ISR_TXIS | STM32_I2C_ISR_NACKF;
471
Alain Volmatbcc75092022-09-12 10:41:59 +0200472 stm32_i2c_handle_reload(i2c_priv, msg);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200473 } else if (!bytes_to_rw) {
474 /* Wait until TC flag is set */
475 mask = STM32_I2C_ISR_TC;
476 ret = stm32_i2c_wait_flags(i2c_priv, mask, &status);
477 if (ret)
478 break;
479
480 if (!stop)
481 /* Message sent, new message has to be sent */
482 return 0;
483 }
484 }
485
Alain Volmat3bf699f2022-09-12 10:42:00 +0200486 /* End of transfer, send stop condition if appropriate */
487 if (!ret && !(status & (STM32_I2C_ISR_NACKF | STM32_I2C_ISR_ERRORS)))
488 setbits_le32(&regs->cr2, STM32_I2C_CR2_STOP);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200489
490 return stm32_i2c_check_end_of_message(i2c_priv);
491}
492
493static int stm32_i2c_xfer(struct udevice *bus, struct i2c_msg *msg,
Patrick Delaunayc0765f42018-10-29 15:31:55 +0100494 int nmsgs)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200495{
496 struct stm32_i2c_priv *i2c_priv = dev_get_priv(bus);
497 int ret;
498
499 ret = stm32_i2c_check_device_busy(i2c_priv);
500 if (ret)
501 return ret;
502
503 for (; nmsgs > 0; nmsgs--, msg++) {
504 ret = stm32_i2c_message_xfer(i2c_priv, msg, nmsgs == 1);
505 if (ret)
506 return ret;
507 }
508
509 return 0;
510}
511
Patrick Delaunayc31cf402021-08-03 12:05:15 +0200512static int stm32_i2c_compute_solutions(u32 i2cclk,
513 struct stm32_i2c_setup *setup,
Alain Volmatc3244652020-03-06 11:09:14 +0100514 const struct stm32_i2c_spec *specs,
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200515 struct list_head *solutions)
516{
517 struct stm32_i2c_timings *v;
518 u32 p_prev = STM32_PRESC_MAX;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200519 u32 af_delay_min, af_delay_max;
520 u16 p, l, a;
521 int sdadel_min, sdadel_max, scldel_min;
522 int ret = 0;
523
524 af_delay_min = setup->analog_filter ?
525 STM32_I2C_ANALOG_FILTER_DELAY_MIN : 0;
526 af_delay_max = setup->analog_filter ?
527 STM32_I2C_ANALOG_FILTER_DELAY_MAX : 0;
528
Alain Volmatc3244652020-03-06 11:09:14 +0100529 sdadel_min = specs->hddat_min + setup->fall_time -
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200530 af_delay_min - (setup->dnf + 3) * i2cclk;
531
Alain Volmatc3244652020-03-06 11:09:14 +0100532 sdadel_max = specs->vddat_max - setup->rise_time -
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200533 af_delay_max - (setup->dnf + 4) * i2cclk;
534
Alain Volmatc3244652020-03-06 11:09:14 +0100535 scldel_min = setup->rise_time + specs->sudat_min;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200536
537 if (sdadel_min < 0)
538 sdadel_min = 0;
539 if (sdadel_max < 0)
540 sdadel_max = 0;
541
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100542 log_debug("SDADEL(min/max): %i/%i, SCLDEL(Min): %i\n",
543 sdadel_min, sdadel_max, scldel_min);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200544
545 /* Compute possible values for PRESC, SCLDEL and SDADEL */
546 for (p = 0; p < STM32_PRESC_MAX; p++) {
547 for (l = 0; l < STM32_SCLDEL_MAX; l++) {
Patrick Delaunay499504b2019-06-21 15:26:47 +0200548 int scldel = (l + 1) * (p + 1) * i2cclk;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200549
550 if (scldel < scldel_min)
551 continue;
552
553 for (a = 0; a < STM32_SDADEL_MAX; a++) {
Patrick Delaunay499504b2019-06-21 15:26:47 +0200554 int sdadel = (a * (p + 1) + 1) * i2cclk;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200555
556 if (((sdadel >= sdadel_min) &&
557 (sdadel <= sdadel_max)) &&
558 (p != p_prev)) {
Patrick Delaunay35746c02018-03-12 10:46:09 +0100559 v = calloc(1, sizeof(*v));
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200560 if (!v)
561 return -ENOMEM;
562
563 v->presc = p;
564 v->scldel = l;
565 v->sdadel = a;
566 p_prev = p;
567
568 list_add_tail(&v->node, solutions);
Nicolas Le Bayon5237f372019-04-18 17:32:43 +0200569 break;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200570 }
571 }
Nicolas Le Bayon5237f372019-04-18 17:32:43 +0200572
573 if (p_prev == p)
574 break;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200575 }
576 }
577
578 if (list_empty(solutions)) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100579 log_err("no Prescaler solution\n");
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200580 ret = -EPERM;
581 }
582
583 return ret;
584}
585
Patrick Delaunayc31cf402021-08-03 12:05:15 +0200586static int stm32_i2c_choose_solution(u32 i2cclk,
587 struct stm32_i2c_setup *setup,
Alain Volmatc3244652020-03-06 11:09:14 +0100588 const struct stm32_i2c_spec *specs,
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200589 struct list_head *solutions,
590 struct stm32_i2c_timings *s)
591{
592 struct stm32_i2c_timings *v;
593 u32 i2cbus = DIV_ROUND_CLOSEST(STM32_NSEC_PER_SEC,
594 setup->speed_freq);
595 u32 clk_error_prev = i2cbus;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200596 u32 clk_min, clk_max;
597 u32 af_delay_min;
598 u32 dnf_delay;
599 u32 tsync;
600 u16 l, h;
Christophe Kerello81c48432017-10-17 11:21:32 +0200601 bool sol_found = false;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200602 int ret = 0;
603
604 af_delay_min = setup->analog_filter ?
605 STM32_I2C_ANALOG_FILTER_DELAY_MIN : 0;
606 dnf_delay = setup->dnf * i2cclk;
607
608 tsync = af_delay_min + dnf_delay + (2 * i2cclk);
Alain Volmatc3244652020-03-06 11:09:14 +0100609 clk_max = STM32_NSEC_PER_SEC / specs->rate_min;
610 clk_min = STM32_NSEC_PER_SEC / specs->rate_max;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200611
612 /*
613 * Among Prescaler possibilities discovered above figures out SCL Low
614 * and High Period. Provided:
615 * - SCL Low Period has to be higher than Low Period of the SCL Clock
616 * defined by I2C Specification. I2C Clock has to be lower than
617 * (SCL Low Period - Analog/Digital filters) / 4.
618 * - SCL High Period has to be lower than High Period of the SCL Clock
619 * defined by I2C Specification
620 * - I2C Clock has to be lower than SCL High Period
621 */
622 list_for_each_entry(v, solutions, node) {
623 u32 prescaler = (v->presc + 1) * i2cclk;
624
625 for (l = 0; l < STM32_SCLL_MAX; l++) {
626 u32 tscl_l = (l + 1) * prescaler + tsync;
Patrick Delaunayc0765f42018-10-29 15:31:55 +0100627
Alain Volmatc3244652020-03-06 11:09:14 +0100628 if (tscl_l < specs->l_min ||
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200629 (i2cclk >=
630 ((tscl_l - af_delay_min - dnf_delay) / 4))) {
631 continue;
632 }
633
634 for (h = 0; h < STM32_SCLH_MAX; h++) {
635 u32 tscl_h = (h + 1) * prescaler + tsync;
636 u32 tscl = tscl_l + tscl_h +
637 setup->rise_time + setup->fall_time;
638
639 if ((tscl >= clk_min) && (tscl <= clk_max) &&
Alain Volmatc3244652020-03-06 11:09:14 +0100640 (tscl_h >= specs->h_min) &&
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200641 (i2cclk < tscl_h)) {
Patrick Delaunay499504b2019-06-21 15:26:47 +0200642 u32 clk_error;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200643
Patrick Delaunay499504b2019-06-21 15:26:47 +0200644 if (tscl > i2cbus)
645 clk_error = tscl - i2cbus;
646 else
647 clk_error = i2cbus - tscl;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200648
649 if (clk_error < clk_error_prev) {
650 clk_error_prev = clk_error;
651 v->scll = l;
652 v->sclh = h;
Christophe Kerello81c48432017-10-17 11:21:32 +0200653 sol_found = true;
654 memcpy(s, v, sizeof(*s));
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200655 }
656 }
657 }
658 }
659 }
660
Christophe Kerello81c48432017-10-17 11:21:32 +0200661 if (!sol_found) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100662 log_err("no solution at all\n");
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200663 ret = -EPERM;
664 }
665
666 return ret;
667}
668
Alain Volmatc3244652020-03-06 11:09:14 +0100669static const struct stm32_i2c_spec *get_specs(u32 rate)
670{
671 unsigned int i;
672
673 for (i = 0; i < ARRAY_SIZE(i2c_specs); i++)
674 if (rate <= i2c_specs[i].rate)
675 return &i2c_specs[i];
676
677 /* NOT REACHED */
678 return ERR_PTR(-EINVAL);
679}
680
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200681static int stm32_i2c_compute_timing(struct stm32_i2c_priv *i2c_priv,
Patrick Delaunayc0765f42018-10-29 15:31:55 +0100682 struct stm32_i2c_timings *output)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200683{
Patrick Delaunayc31cf402021-08-03 12:05:15 +0200684 struct stm32_i2c_setup *setup = &i2c_priv->setup;
Alain Volmatc3244652020-03-06 11:09:14 +0100685 const struct stm32_i2c_spec *specs;
Patrice Chotardd10bd6c2017-10-17 11:21:33 +0200686 struct stm32_i2c_timings *v, *_v;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200687 struct list_head solutions;
Patrick Delaunay6338b452021-08-03 12:05:14 +0200688 u32 i2cclk = DIV_ROUND_CLOSEST(STM32_NSEC_PER_SEC, setup->clock_src);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200689 int ret;
690
Alain Volmatc3244652020-03-06 11:09:14 +0100691 specs = get_specs(setup->speed_freq);
692 if (specs == ERR_PTR(-EINVAL)) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100693 log_err("speed out of bound {%d}\n",
694 setup->speed_freq);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200695 return -EINVAL;
696 }
697
Alain Volmatc3244652020-03-06 11:09:14 +0100698 if (setup->rise_time > specs->rise_max ||
699 setup->fall_time > specs->fall_max) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100700 log_err("timings out of bound Rise{%d>%d}/Fall{%d>%d}\n",
701 setup->rise_time, specs->rise_max,
702 setup->fall_time, specs->fall_max);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200703 return -EINVAL;
704 }
705
Patrick Delaunay6338b452021-08-03 12:05:14 +0200706 /* Analog and Digital Filters */
707 setup->dnf = DIV_ROUND_CLOSEST(i2c_priv->dnf_dt, i2cclk);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200708 if (setup->dnf > STM32_I2C_DNF_MAX) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100709 log_err("DNF out of bound %d/%d\n",
710 setup->dnf, STM32_I2C_DNF_MAX);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200711 return -EINVAL;
712 }
713
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200714 INIT_LIST_HEAD(&solutions);
Patrick Delaunayc31cf402021-08-03 12:05:15 +0200715 ret = stm32_i2c_compute_solutions(i2cclk, setup, specs, &solutions);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200716 if (ret)
717 goto exit;
718
Patrick Delaunayc31cf402021-08-03 12:05:15 +0200719 ret = stm32_i2c_choose_solution(i2cclk, setup, specs, &solutions, output);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200720 if (ret)
721 goto exit;
722
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100723 log_debug("Presc: %i, scldel: %i, sdadel: %i, scll: %i, sclh: %i\n",
724 output->presc,
725 output->scldel, output->sdadel,
726 output->scll, output->sclh);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200727
728exit:
729 /* Release list and memory */
730 list_for_each_entry_safe(v, _v, &solutions, node) {
731 list_del(&v->node);
Patrick Delaunay35746c02018-03-12 10:46:09 +0100732 free(v);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200733 }
734
735 return ret;
736}
737
Alain Volmatc3244652020-03-06 11:09:14 +0100738static u32 get_lower_rate(u32 rate)
739{
740 int i;
741
742 for (i = ARRAY_SIZE(i2c_specs) - 1; i >= 0; i--)
743 if (rate > i2c_specs[i].rate)
744 return i2c_specs[i].rate;
745
746 return i2c_specs[0].rate;
747}
748
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200749static int stm32_i2c_setup_timing(struct stm32_i2c_priv *i2c_priv,
Patrick Delaunayc0765f42018-10-29 15:31:55 +0100750 struct stm32_i2c_timings *timing)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200751{
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200752 struct stm32_i2c_setup *setup = &i2c_priv->setup;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200753 int ret = 0;
754
Alain Volmatc3244652020-03-06 11:09:14 +0100755 setup->speed_freq = i2c_priv->speed;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200756 setup->clock_src = clk_get_rate(&i2c_priv->clk);
757
758 if (!setup->clock_src) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100759 log_err("clock rate is 0\n");
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200760 return -EINVAL;
761 }
762
763 do {
Patrick Delaunayc31cf402021-08-03 12:05:15 +0200764 ret = stm32_i2c_compute_timing(i2c_priv, timing);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200765 if (ret) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100766 log_debug("failed to compute I2C timings.\n");
Alain Volmatc3244652020-03-06 11:09:14 +0100767 if (setup->speed_freq > I2C_SPEED_STANDARD_RATE) {
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200768 setup->speed_freq =
Alain Volmatc3244652020-03-06 11:09:14 +0100769 get_lower_rate(setup->speed_freq);
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100770 log_debug("downgrade I2C Speed Freq to (%i)\n",
771 setup->speed_freq);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200772 } else {
773 break;
774 }
775 }
776 } while (ret);
777
778 if (ret) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100779 log_err("impossible to compute I2C timings.\n");
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200780 return ret;
781 }
782
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100783 log_debug("I2C Freq(%i), Clk Source(%i)\n",
784 setup->speed_freq, setup->clock_src);
785 log_debug("I2C Rise(%i) and Fall(%i) Time\n",
786 setup->rise_time, setup->fall_time);
787 log_debug("I2C Analog Filter(%s), DNF(%i)\n",
788 setup->analog_filter ? "On" : "Off", setup->dnf);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200789
Alain Volmatc3244652020-03-06 11:09:14 +0100790 i2c_priv->speed = setup->speed_freq;
791
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200792 return 0;
793}
794
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200795static int stm32_i2c_write_fm_plus_bits(struct stm32_i2c_priv *i2c_priv)
796{
797 int ret;
798 bool enable = i2c_priv->speed > I2C_SPEED_FAST_RATE;
799
800 /* Optional */
801 if (IS_ERR_OR_NULL(i2c_priv->regmap))
802 return 0;
803
804 if (i2c_priv->regmap_sreg == i2c_priv->regmap_creg)
805 ret = regmap_update_bits(i2c_priv->regmap,
806 i2c_priv->regmap_sreg,
807 i2c_priv->regmap_mask,
808 enable ? i2c_priv->regmap_mask : 0);
809 else
810 ret = regmap_write(i2c_priv->regmap,
811 enable ? i2c_priv->regmap_sreg :
812 i2c_priv->regmap_creg,
813 i2c_priv->regmap_mask);
814
815 return ret;
816}
817
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200818static int stm32_i2c_hw_config(struct stm32_i2c_priv *i2c_priv)
819{
820 struct stm32_i2c_regs *regs = i2c_priv->regs;
821 struct stm32_i2c_timings t;
822 int ret;
823 u32 timing = 0;
824
825 ret = stm32_i2c_setup_timing(i2c_priv, &t);
826 if (ret)
827 return ret;
828
829 /* Disable I2C */
830 clrbits_le32(&regs->cr1, STM32_I2C_CR1_PE);
831
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200832 /* Setup Fast mode plus if necessary */
833 ret = stm32_i2c_write_fm_plus_bits(i2c_priv);
834 if (ret)
835 return ret;
836
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200837 /* Timing settings */
838 timing |= STM32_I2C_TIMINGR_PRESC(t.presc);
839 timing |= STM32_I2C_TIMINGR_SCLDEL(t.scldel);
840 timing |= STM32_I2C_TIMINGR_SDADEL(t.sdadel);
841 timing |= STM32_I2C_TIMINGR_SCLH(t.sclh);
842 timing |= STM32_I2C_TIMINGR_SCLL(t.scll);
843 writel(timing, &regs->timingr);
844
845 /* Enable I2C */
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200846 if (i2c_priv->setup.analog_filter)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200847 clrbits_le32(&regs->cr1, STM32_I2C_CR1_ANFOFF);
848 else
849 setbits_le32(&regs->cr1, STM32_I2C_CR1_ANFOFF);
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200850
Patrick Delaunay6bbb14f2021-08-03 12:05:13 +0200851 /* Program the Digital Filter */
852 clrsetbits_le32(&regs->cr1, STM32_I2C_CR1_DNF_MASK,
853 STM32_I2C_CR1_DNF(i2c_priv->setup.dnf));
854
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200855 setbits_le32(&regs->cr1, STM32_I2C_CR1_PE);
856
857 return 0;
858}
859
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100860static int stm32_i2c_set_bus_speed(struct udevice *dev, unsigned int speed)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200861{
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100862 struct stm32_i2c_priv *i2c_priv = dev_get_priv(dev);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200863
Alain Volmatc3244652020-03-06 11:09:14 +0100864 if (speed > I2C_SPEED_FAST_PLUS_RATE) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100865 dev_dbg(dev, "Speed %d not supported\n", speed);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200866 return -EINVAL;
867 }
868
Alain Volmatc3244652020-03-06 11:09:14 +0100869 i2c_priv->speed = speed;
870
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200871 return stm32_i2c_hw_config(i2c_priv);
872}
873
874static int stm32_i2c_probe(struct udevice *dev)
875{
876 struct stm32_i2c_priv *i2c_priv = dev_get_priv(dev);
877 struct reset_ctl reset_ctl;
878 fdt_addr_t addr;
879 int ret;
880
881 addr = dev_read_addr(dev);
882 if (addr == FDT_ADDR_T_NONE)
883 return -EINVAL;
884
885 i2c_priv->regs = (struct stm32_i2c_regs *)addr;
886
887 ret = clk_get_by_index(dev, 0, &i2c_priv->clk);
888 if (ret)
889 return ret;
890
891 ret = clk_enable(&i2c_priv->clk);
892 if (ret)
893 goto clk_free;
894
895 ret = reset_get_by_index(dev, 0, &reset_ctl);
896 if (ret)
897 goto clk_disable;
898
899 reset_assert(&reset_ctl);
900 udelay(2);
901 reset_deassert(&reset_ctl);
902
903 return 0;
904
905clk_disable:
906 clk_disable(&i2c_priv->clk);
907clk_free:
908 clk_free(&i2c_priv->clk);
909
910 return ret;
911}
912
Simon Glassd1998a92020-12-03 16:55:21 -0700913static int stm32_of_to_plat(struct udevice *dev)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200914{
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200915 const struct stm32_i2c_data *data;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200916 struct stm32_i2c_priv *i2c_priv = dev_get_priv(dev);
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200917 int ret;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200918
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200919 data = (const struct stm32_i2c_data *)dev_get_driver_data(dev);
920 if (!data)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200921 return -EINVAL;
922
Jorge Ramirez-Ortiza22692d2022-09-12 10:42:01 +0200923 i2c_priv->setup.rise_time = dev_read_u32_default(dev,
924 "i2c-scl-rising-time-ns",
925 STM32_I2C_RISE_TIME_DEFAULT);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200926
Jorge Ramirez-Ortiza22692d2022-09-12 10:42:01 +0200927 i2c_priv->setup.fall_time = dev_read_u32_default(dev,
928 "i2c-scl-falling-time-ns",
929 STM32_I2C_FALL_TIME_DEFAULT);
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200930
Patrick Delaunay6338b452021-08-03 12:05:14 +0200931 i2c_priv->dnf_dt = dev_read_u32_default(dev, "i2c-digital-filter-width-ns", 0);
932 if (!dev_read_bool(dev, "i2c-digital-filter"))
933 i2c_priv->dnf_dt = 0;
934
Patrick Delaunay09599992021-08-03 12:05:12 +0200935 i2c_priv->setup.analog_filter = dev_read_bool(dev, "i2c-analog-filter");
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200936
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200937 /* Optional */
938 i2c_priv->regmap = syscon_regmap_lookup_by_phandle(dev,
939 "st,syscfg-fmp");
940 if (!IS_ERR(i2c_priv->regmap)) {
941 u32 fmp[3];
942
943 ret = dev_read_u32_array(dev, "st,syscfg-fmp", fmp, 3);
944 if (ret)
945 return ret;
946
947 i2c_priv->regmap_sreg = fmp[1];
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200948 i2c_priv->regmap_creg = fmp[1] + data->fmp_clr_offset;
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200949 i2c_priv->regmap_mask = fmp[2];
950 }
951
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200952 return 0;
953}
954
955static const struct dm_i2c_ops stm32_i2c_ops = {
956 .xfer = stm32_i2c_xfer,
957 .set_bus_speed = stm32_i2c_set_bus_speed,
958};
959
960static const struct udevice_id stm32_i2c_of_match[] = {
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200961 { .compatible = "st,stm32f7-i2c", .data = (ulong)&stm32f7_data },
962 { .compatible = "st,stm32mp15-i2c", .data = (ulong)&stm32mp15_data },
Patrick Delaunayd4d01d02022-06-30 10:20:14 +0200963 { .compatible = "st,stm32mp13-i2c", .data = (ulong)&stm32mp13_data },
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200964 {}
965};
966
967U_BOOT_DRIVER(stm32f7_i2c) = {
968 .name = "stm32f7-i2c",
969 .id = UCLASS_I2C,
970 .of_match = stm32_i2c_of_match,
Simon Glassd1998a92020-12-03 16:55:21 -0700971 .of_to_plat = stm32_of_to_plat,
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200972 .probe = stm32_i2c_probe,
Simon Glass41575d82020-12-03 16:55:17 -0700973 .priv_auto = sizeof(struct stm32_i2c_priv),
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200974 .ops = &stm32_i2c_ops,
975};