blob: c6ae65badb7883af5197249e10c59fad0a1e60ea [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 */
60#define STM32_I2C_CR2_AUTOEND BIT(25)
61#define STM32_I2C_CR2_RELOAD BIT(24)
62#define STM32_I2C_CR2_NBYTES_MASK GENMASK(23, 16)
63#define STM32_I2C_CR2_NBYTES(n) ((n & 0xff) << 16)
64#define STM32_I2C_CR2_NACK BIT(15)
65#define STM32_I2C_CR2_STOP BIT(14)
66#define STM32_I2C_CR2_START BIT(13)
67#define STM32_I2C_CR2_HEAD10R BIT(12)
68#define STM32_I2C_CR2_ADD10 BIT(11)
69#define STM32_I2C_CR2_RD_WRN BIT(10)
70#define STM32_I2C_CR2_SADD10_MASK GENMASK(9, 0)
Patrick Delaunayc0765f42018-10-29 15:31:55 +010071#define STM32_I2C_CR2_SADD10(n) (n & STM32_I2C_CR2_SADD10_MASK)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +020072#define STM32_I2C_CR2_SADD7_MASK GENMASK(7, 1)
73#define STM32_I2C_CR2_SADD7(n) ((n & 0x7f) << 1)
74#define STM32_I2C_CR2_RESET_MASK (STM32_I2C_CR2_HEAD10R \
75 | STM32_I2C_CR2_NBYTES_MASK \
76 | STM32_I2C_CR2_SADD7_MASK \
77 | STM32_I2C_CR2_RELOAD \
78 | STM32_I2C_CR2_RD_WRN)
79
80/* STM32 I2C Interrupt Status */
81#define STM32_I2C_ISR_BUSY BIT(15)
82#define STM32_I2C_ISR_ARLO BIT(9)
83#define STM32_I2C_ISR_BERR BIT(8)
84#define STM32_I2C_ISR_TCR BIT(7)
85#define STM32_I2C_ISR_TC BIT(6)
86#define STM32_I2C_ISR_STOPF BIT(5)
87#define STM32_I2C_ISR_NACKF BIT(4)
88#define STM32_I2C_ISR_ADDR BIT(3)
89#define STM32_I2C_ISR_RXNE BIT(2)
90#define STM32_I2C_ISR_TXIS BIT(1)
91#define STM32_I2C_ISR_TXE BIT(0)
92#define STM32_I2C_ISR_ERRORS (STM32_I2C_ISR_BERR \
93 | STM32_I2C_ISR_ARLO)
94
95/* STM32 I2C Interrupt Clear */
96#define STM32_I2C_ICR_ARLOCF BIT(9)
97#define STM32_I2C_ICR_BERRCF BIT(8)
98#define STM32_I2C_ICR_STOPCF BIT(5)
99#define STM32_I2C_ICR_NACKCF BIT(4)
100
101/* STM32 I2C Timing */
102#define STM32_I2C_TIMINGR_PRESC(n) ((n & 0xf) << 28)
103#define STM32_I2C_TIMINGR_SCLDEL(n) ((n & 0xf) << 20)
104#define STM32_I2C_TIMINGR_SDADEL(n) ((n & 0xf) << 16)
105#define STM32_I2C_TIMINGR_SCLH(n) ((n & 0xff) << 8)
106#define STM32_I2C_TIMINGR_SCLL(n) (n & 0xff)
107
108#define STM32_I2C_MAX_LEN 0xff
109
Patrick Delaunay6bbb14f2021-08-03 12:05:13 +0200110#define STM32_I2C_DNF_MAX 15
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200111
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200112#define STM32_I2C_ANALOG_FILTER_DELAY_MIN 50 /* ns */
113#define STM32_I2C_ANALOG_FILTER_DELAY_MAX 260 /* ns */
114
115#define STM32_I2C_RISE_TIME_DEFAULT 25 /* ns */
116#define STM32_I2C_FALL_TIME_DEFAULT 10 /* ns */
117
118#define STM32_PRESC_MAX BIT(4)
119#define STM32_SCLDEL_MAX BIT(4)
120#define STM32_SDADEL_MAX BIT(4)
121#define STM32_SCLH_MAX BIT(8)
122#define STM32_SCLL_MAX BIT(8)
123
124#define STM32_NSEC_PER_SEC 1000000000L
125
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200126/**
127 * struct stm32_i2c_spec - private i2c specification timing
128 * @rate: I2C bus speed (Hz)
129 * @rate_min: 80% of I2C bus speed (Hz)
130 * @rate_max: 120% of I2C bus speed (Hz)
131 * @fall_max: Max fall time of both SDA and SCL signals (ns)
132 * @rise_max: Max rise time of both SDA and SCL signals (ns)
133 * @hddat_min: Min data hold time (ns)
134 * @vddat_max: Max data valid time (ns)
135 * @sudat_min: Min data setup time (ns)
136 * @l_min: Min low period of the SCL clock (ns)
137 * @h_min: Min high period of the SCL clock (ns)
138 */
139
140struct stm32_i2c_spec {
141 u32 rate;
142 u32 rate_min;
143 u32 rate_max;
144 u32 fall_max;
145 u32 rise_max;
146 u32 hddat_min;
147 u32 vddat_max;
148 u32 sudat_min;
149 u32 l_min;
150 u32 h_min;
151};
152
153/**
154 * struct stm32_i2c_setup - private I2C timing setup parameters
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200155 * @speed_freq: I2C speed frequency (Hz)
156 * @clock_src: I2C clock source frequency (Hz)
157 * @rise_time: Rise time (ns)
158 * @fall_time: Fall time (ns)
Patrick Delaunay6bbb14f2021-08-03 12:05:13 +0200159 * @dnf: value of digital filter to apply
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200160 * @analog_filter: Analog filter delay (On/Off)
161 */
162struct stm32_i2c_setup {
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200163 u32 speed_freq;
164 u32 clock_src;
165 u32 rise_time;
166 u32 fall_time;
167 u8 dnf;
168 bool analog_filter;
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200169};
170
171/**
172 * struct stm32_i2c_data - driver data for I2C configuration by compatible
173 * @fmp_clr_offset: Fast Mode Plus clear register offset from set register
174 */
175struct stm32_i2c_data {
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200176 u32 fmp_clr_offset;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200177};
178
179/**
180 * struct stm32_i2c_timings - private I2C output parameters
181 * @prec: Prescaler value
182 * @scldel: Data setup time
183 * @sdadel: Data hold time
184 * @sclh: SCL high period (master mode)
185 * @sclh: SCL low period (master mode)
186 */
187struct stm32_i2c_timings {
188 struct list_head node;
189 u8 presc;
190 u8 scldel;
191 u8 sdadel;
192 u8 sclh;
193 u8 scll;
194};
195
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200196/**
197 * struct stm32_i2c_priv - private data of the controller
198 * @regs: I2C registers address
199 * @clk: hw i2c clock
200 * @setup: I2C timing setup parameters
201 * @speed: I2C clock frequency of the controller. Standard, Fast or Fast+
202 * @regmap: holds SYSCFG phandle for Fast Mode Plus bit
203 * @regmap_sreg: register address for setting Fast Mode Plus bits
204 * @regmap_creg: register address for clearing Fast Mode Plus bits
205 * @regmap_mask: mask for Fast Mode Plus bits
Patrick Delaunay6338b452021-08-03 12:05:14 +0200206 * @dnf_dt: value of digital filter requested via dt
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200207 */
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200208struct stm32_i2c_priv {
209 struct stm32_i2c_regs *regs;
210 struct clk clk;
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200211 struct stm32_i2c_setup setup;
Alain Volmatc3244652020-03-06 11:09:14 +0100212 u32 speed;
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200213 struct regmap *regmap;
214 u32 regmap_sreg;
215 u32 regmap_creg;
216 u32 regmap_mask;
Patrick Delaunay6338b452021-08-03 12:05:14 +0200217 u32 dnf_dt;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200218};
219
Patrick Delaunayc235b082018-10-29 15:31:56 +0100220static const struct stm32_i2c_spec i2c_specs[] = {
Alain Volmatc3244652020-03-06 11:09:14 +0100221 /* Standard speed - 100 KHz */
Simon Glassb0a22d02020-01-23 11:48:21 -0700222 [IC_SPEED_MODE_STANDARD] = {
223 .rate = I2C_SPEED_STANDARD_RATE,
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200224 .rate_min = 8000,
225 .rate_max = 120000,
226 .fall_max = 300,
227 .rise_max = 1000,
228 .hddat_min = 0,
229 .vddat_max = 3450,
230 .sudat_min = 250,
231 .l_min = 4700,
232 .h_min = 4000,
233 },
Alain Volmatc3244652020-03-06 11:09:14 +0100234 /* Fast speed - 400 KHz */
Simon Glassb0a22d02020-01-23 11:48:21 -0700235 [IC_SPEED_MODE_FAST] = {
236 .rate = I2C_SPEED_FAST_RATE,
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200237 .rate_min = 320000,
238 .rate_max = 480000,
239 .fall_max = 300,
240 .rise_max = 300,
241 .hddat_min = 0,
242 .vddat_max = 900,
243 .sudat_min = 100,
244 .l_min = 1300,
245 .h_min = 600,
246 },
Alain Volmatc3244652020-03-06 11:09:14 +0100247 /* Fast Plus Speed - 1 MHz */
Simon Glassb0a22d02020-01-23 11:48:21 -0700248 [IC_SPEED_MODE_FAST_PLUS] = {
249 .rate = I2C_SPEED_FAST_PLUS_RATE,
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200250 .rate_min = 800000,
251 .rate_max = 1200000,
252 .fall_max = 100,
253 .rise_max = 120,
254 .hddat_min = 0,
255 .vddat_max = 450,
256 .sudat_min = 50,
257 .l_min = 500,
258 .h_min = 260,
259 },
260};
261
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200262static const struct stm32_i2c_data stm32f7_data = {
263 .fmp_clr_offset = 0x00,
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200264};
265
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200266static const struct stm32_i2c_data stm32mp15_data = {
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200267 .fmp_clr_offset = 0x40,
268};
269
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200270static int stm32_i2c_check_device_busy(struct stm32_i2c_priv *i2c_priv)
271{
272 struct stm32_i2c_regs *regs = i2c_priv->regs;
273 u32 status = readl(&regs->isr);
274
275 if (status & STM32_I2C_ISR_BUSY)
276 return -EBUSY;
277
278 return 0;
279}
280
281static void stm32_i2c_message_start(struct stm32_i2c_priv *i2c_priv,
Patrick Delaunayc0765f42018-10-29 15:31:55 +0100282 struct i2c_msg *msg, bool stop)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200283{
284 struct stm32_i2c_regs *regs = i2c_priv->regs;
285 u32 cr2 = readl(&regs->cr2);
286
287 /* Set transfer direction */
288 cr2 &= ~STM32_I2C_CR2_RD_WRN;
289 if (msg->flags & I2C_M_RD)
290 cr2 |= STM32_I2C_CR2_RD_WRN;
291
292 /* Set slave address */
293 cr2 &= ~(STM32_I2C_CR2_HEAD10R | STM32_I2C_CR2_ADD10);
294 if (msg->flags & I2C_M_TEN) {
295 cr2 &= ~STM32_I2C_CR2_SADD10_MASK;
296 cr2 |= STM32_I2C_CR2_SADD10(msg->addr);
297 cr2 |= STM32_I2C_CR2_ADD10;
298 } else {
299 cr2 &= ~STM32_I2C_CR2_SADD7_MASK;
300 cr2 |= STM32_I2C_CR2_SADD7(msg->addr);
301 }
302
303 /* Set nb bytes to transfer and reload or autoend bits */
304 cr2 &= ~(STM32_I2C_CR2_NBYTES_MASK | STM32_I2C_CR2_RELOAD |
305 STM32_I2C_CR2_AUTOEND);
306 if (msg->len > STM32_I2C_MAX_LEN) {
307 cr2 |= STM32_I2C_CR2_NBYTES(STM32_I2C_MAX_LEN);
308 cr2 |= STM32_I2C_CR2_RELOAD;
309 } else {
310 cr2 |= STM32_I2C_CR2_NBYTES(msg->len);
311 }
312
313 /* Write configurations register */
314 writel(cr2, &regs->cr2);
315
316 /* START/ReSTART generation */
317 setbits_le32(&regs->cr2, STM32_I2C_CR2_START);
318}
319
320/*
321 * RELOAD mode must be selected if total number of data bytes to be
322 * sent is greater than MAX_LEN
323 */
324
325static void stm32_i2c_handle_reload(struct stm32_i2c_priv *i2c_priv,
Patrick Delaunayc0765f42018-10-29 15:31:55 +0100326 struct i2c_msg *msg, bool stop)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200327{
328 struct stm32_i2c_regs *regs = i2c_priv->regs;
329 u32 cr2 = readl(&regs->cr2);
330
331 cr2 &= ~STM32_I2C_CR2_NBYTES_MASK;
332
333 if (msg->len > STM32_I2C_MAX_LEN) {
334 cr2 |= STM32_I2C_CR2_NBYTES(STM32_I2C_MAX_LEN);
335 } else {
336 cr2 &= ~STM32_I2C_CR2_RELOAD;
337 cr2 |= STM32_I2C_CR2_NBYTES(msg->len);
338 }
339
340 writel(cr2, &regs->cr2);
341}
342
343static int stm32_i2c_wait_flags(struct stm32_i2c_priv *i2c_priv,
Patrick Delaunayc0765f42018-10-29 15:31:55 +0100344 u32 flags, u32 *status)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200345{
346 struct stm32_i2c_regs *regs = i2c_priv->regs;
347 u32 time_start = get_timer(0);
348
349 *status = readl(&regs->isr);
350 while (!(*status & flags)) {
351 if (get_timer(time_start) > CONFIG_SYS_HZ) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100352 log_debug("i2c timeout\n");
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200353 return -ETIMEDOUT;
354 }
355
356 *status = readl(&regs->isr);
357 }
358
359 return 0;
360}
361
362static int stm32_i2c_check_end_of_message(struct stm32_i2c_priv *i2c_priv)
363{
364 struct stm32_i2c_regs *regs = i2c_priv->regs;
365 u32 mask = STM32_I2C_ISR_ERRORS | STM32_I2C_ISR_NACKF |
366 STM32_I2C_ISR_STOPF;
367 u32 status;
368 int ret;
369
370 ret = stm32_i2c_wait_flags(i2c_priv, mask, &status);
371 if (ret)
372 return ret;
373
374 if (status & STM32_I2C_ISR_BERR) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100375 log_debug("Bus error\n");
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200376
377 /* Clear BERR flag */
378 setbits_le32(&regs->icr, STM32_I2C_ICR_BERRCF);
379
380 return -EIO;
381 }
382
383 if (status & STM32_I2C_ISR_ARLO) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100384 log_debug("Arbitration lost\n");
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200385
386 /* Clear ARLO flag */
387 setbits_le32(&regs->icr, STM32_I2C_ICR_ARLOCF);
388
389 return -EAGAIN;
390 }
391
392 if (status & STM32_I2C_ISR_NACKF) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100393 log_debug("Receive NACK\n");
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200394
395 /* Clear NACK flag */
396 setbits_le32(&regs->icr, STM32_I2C_ICR_NACKCF);
397
398 /* Wait until STOPF flag is set */
399 mask = STM32_I2C_ISR_STOPF;
400 ret = stm32_i2c_wait_flags(i2c_priv, mask, &status);
401 if (ret)
402 return ret;
403
404 ret = -EIO;
405 }
406
407 if (status & STM32_I2C_ISR_STOPF) {
408 /* Clear STOP flag */
409 setbits_le32(&regs->icr, STM32_I2C_ICR_STOPCF);
410
411 /* Clear control register 2 */
412 setbits_le32(&regs->cr2, STM32_I2C_CR2_RESET_MASK);
413 }
414
415 return ret;
416}
417
418static int stm32_i2c_message_xfer(struct stm32_i2c_priv *i2c_priv,
Patrick Delaunayc0765f42018-10-29 15:31:55 +0100419 struct i2c_msg *msg, bool stop)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200420{
421 struct stm32_i2c_regs *regs = i2c_priv->regs;
422 u32 status;
423 u32 mask = msg->flags & I2C_M_RD ? STM32_I2C_ISR_RXNE :
424 STM32_I2C_ISR_TXIS | STM32_I2C_ISR_NACKF;
425 int bytes_to_rw = msg->len > STM32_I2C_MAX_LEN ?
426 STM32_I2C_MAX_LEN : msg->len;
427 int ret = 0;
428
429 /* Add errors */
430 mask |= STM32_I2C_ISR_ERRORS;
431
432 stm32_i2c_message_start(i2c_priv, msg, stop);
433
434 while (msg->len) {
435 /*
436 * Wait until TXIS/NACKF/BERR/ARLO flags or
437 * RXNE/BERR/ARLO flags are set
438 */
439 ret = stm32_i2c_wait_flags(i2c_priv, mask, &status);
440 if (ret)
441 break;
442
443 if (status & (STM32_I2C_ISR_NACKF | STM32_I2C_ISR_ERRORS))
444 break;
445
446 if (status & STM32_I2C_ISR_RXNE) {
447 *msg->buf++ = readb(&regs->rxdr);
448 msg->len--;
449 bytes_to_rw--;
450 }
451
452 if (status & STM32_I2C_ISR_TXIS) {
453 writeb(*msg->buf++, &regs->txdr);
454 msg->len--;
455 bytes_to_rw--;
456 }
457
458 if (!bytes_to_rw && msg->len) {
459 /* Wait until TCR flag is set */
460 mask = STM32_I2C_ISR_TCR;
461 ret = stm32_i2c_wait_flags(i2c_priv, mask, &status);
462 if (ret)
463 break;
464
465 bytes_to_rw = msg->len > STM32_I2C_MAX_LEN ?
466 STM32_I2C_MAX_LEN : msg->len;
467 mask = msg->flags & I2C_M_RD ? STM32_I2C_ISR_RXNE :
468 STM32_I2C_ISR_TXIS | STM32_I2C_ISR_NACKF;
469
470 stm32_i2c_handle_reload(i2c_priv, msg, stop);
471 } else if (!bytes_to_rw) {
472 /* Wait until TC flag is set */
473 mask = STM32_I2C_ISR_TC;
474 ret = stm32_i2c_wait_flags(i2c_priv, mask, &status);
475 if (ret)
476 break;
477
478 if (!stop)
479 /* Message sent, new message has to be sent */
480 return 0;
481 }
482 }
483
484 /* End of transfer, send stop condition */
485 mask = STM32_I2C_CR2_STOP;
486 setbits_le32(&regs->cr2, mask);
487
488 return stm32_i2c_check_end_of_message(i2c_priv);
489}
490
491static int stm32_i2c_xfer(struct udevice *bus, struct i2c_msg *msg,
Patrick Delaunayc0765f42018-10-29 15:31:55 +0100492 int nmsgs)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200493{
494 struct stm32_i2c_priv *i2c_priv = dev_get_priv(bus);
495 int ret;
496
497 ret = stm32_i2c_check_device_busy(i2c_priv);
498 if (ret)
499 return ret;
500
501 for (; nmsgs > 0; nmsgs--, msg++) {
502 ret = stm32_i2c_message_xfer(i2c_priv, msg, nmsgs == 1);
503 if (ret)
504 return ret;
505 }
506
507 return 0;
508}
509
Patrick Delaunayc31cf402021-08-03 12:05:15 +0200510static int stm32_i2c_compute_solutions(u32 i2cclk,
511 struct stm32_i2c_setup *setup,
Alain Volmatc3244652020-03-06 11:09:14 +0100512 const struct stm32_i2c_spec *specs,
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200513 struct list_head *solutions)
514{
515 struct stm32_i2c_timings *v;
516 u32 p_prev = STM32_PRESC_MAX;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200517 u32 af_delay_min, af_delay_max;
518 u16 p, l, a;
519 int sdadel_min, sdadel_max, scldel_min;
520 int ret = 0;
521
522 af_delay_min = setup->analog_filter ?
523 STM32_I2C_ANALOG_FILTER_DELAY_MIN : 0;
524 af_delay_max = setup->analog_filter ?
525 STM32_I2C_ANALOG_FILTER_DELAY_MAX : 0;
526
Alain Volmatc3244652020-03-06 11:09:14 +0100527 sdadel_min = specs->hddat_min + setup->fall_time -
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200528 af_delay_min - (setup->dnf + 3) * i2cclk;
529
Alain Volmatc3244652020-03-06 11:09:14 +0100530 sdadel_max = specs->vddat_max - setup->rise_time -
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200531 af_delay_max - (setup->dnf + 4) * i2cclk;
532
Alain Volmatc3244652020-03-06 11:09:14 +0100533 scldel_min = setup->rise_time + specs->sudat_min;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200534
535 if (sdadel_min < 0)
536 sdadel_min = 0;
537 if (sdadel_max < 0)
538 sdadel_max = 0;
539
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100540 log_debug("SDADEL(min/max): %i/%i, SCLDEL(Min): %i\n",
541 sdadel_min, sdadel_max, scldel_min);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200542
543 /* Compute possible values for PRESC, SCLDEL and SDADEL */
544 for (p = 0; p < STM32_PRESC_MAX; p++) {
545 for (l = 0; l < STM32_SCLDEL_MAX; l++) {
Patrick Delaunay499504b2019-06-21 15:26:47 +0200546 int scldel = (l + 1) * (p + 1) * i2cclk;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200547
548 if (scldel < scldel_min)
549 continue;
550
551 for (a = 0; a < STM32_SDADEL_MAX; a++) {
Patrick Delaunay499504b2019-06-21 15:26:47 +0200552 int sdadel = (a * (p + 1) + 1) * i2cclk;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200553
554 if (((sdadel >= sdadel_min) &&
555 (sdadel <= sdadel_max)) &&
556 (p != p_prev)) {
Patrick Delaunay35746c02018-03-12 10:46:09 +0100557 v = calloc(1, sizeof(*v));
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200558 if (!v)
559 return -ENOMEM;
560
561 v->presc = p;
562 v->scldel = l;
563 v->sdadel = a;
564 p_prev = p;
565
566 list_add_tail(&v->node, solutions);
Nicolas Le Bayon5237f372019-04-18 17:32:43 +0200567 break;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200568 }
569 }
Nicolas Le Bayon5237f372019-04-18 17:32:43 +0200570
571 if (p_prev == p)
572 break;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200573 }
574 }
575
576 if (list_empty(solutions)) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100577 log_err("no Prescaler solution\n");
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200578 ret = -EPERM;
579 }
580
581 return ret;
582}
583
Patrick Delaunayc31cf402021-08-03 12:05:15 +0200584static int stm32_i2c_choose_solution(u32 i2cclk,
585 struct stm32_i2c_setup *setup,
Alain Volmatc3244652020-03-06 11:09:14 +0100586 const struct stm32_i2c_spec *specs,
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200587 struct list_head *solutions,
588 struct stm32_i2c_timings *s)
589{
590 struct stm32_i2c_timings *v;
591 u32 i2cbus = DIV_ROUND_CLOSEST(STM32_NSEC_PER_SEC,
592 setup->speed_freq);
593 u32 clk_error_prev = i2cbus;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200594 u32 clk_min, clk_max;
595 u32 af_delay_min;
596 u32 dnf_delay;
597 u32 tsync;
598 u16 l, h;
Christophe Kerello81c48432017-10-17 11:21:32 +0200599 bool sol_found = false;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200600 int ret = 0;
601
602 af_delay_min = setup->analog_filter ?
603 STM32_I2C_ANALOG_FILTER_DELAY_MIN : 0;
604 dnf_delay = setup->dnf * i2cclk;
605
606 tsync = af_delay_min + dnf_delay + (2 * i2cclk);
Alain Volmatc3244652020-03-06 11:09:14 +0100607 clk_max = STM32_NSEC_PER_SEC / specs->rate_min;
608 clk_min = STM32_NSEC_PER_SEC / specs->rate_max;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200609
610 /*
611 * Among Prescaler possibilities discovered above figures out SCL Low
612 * and High Period. Provided:
613 * - SCL Low Period has to be higher than Low Period of the SCL Clock
614 * defined by I2C Specification. I2C Clock has to be lower than
615 * (SCL Low Period - Analog/Digital filters) / 4.
616 * - SCL High Period has to be lower than High Period of the SCL Clock
617 * defined by I2C Specification
618 * - I2C Clock has to be lower than SCL High Period
619 */
620 list_for_each_entry(v, solutions, node) {
621 u32 prescaler = (v->presc + 1) * i2cclk;
622
623 for (l = 0; l < STM32_SCLL_MAX; l++) {
624 u32 tscl_l = (l + 1) * prescaler + tsync;
Patrick Delaunayc0765f42018-10-29 15:31:55 +0100625
Alain Volmatc3244652020-03-06 11:09:14 +0100626 if (tscl_l < specs->l_min ||
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200627 (i2cclk >=
628 ((tscl_l - af_delay_min - dnf_delay) / 4))) {
629 continue;
630 }
631
632 for (h = 0; h < STM32_SCLH_MAX; h++) {
633 u32 tscl_h = (h + 1) * prescaler + tsync;
634 u32 tscl = tscl_l + tscl_h +
635 setup->rise_time + setup->fall_time;
636
637 if ((tscl >= clk_min) && (tscl <= clk_max) &&
Alain Volmatc3244652020-03-06 11:09:14 +0100638 (tscl_h >= specs->h_min) &&
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200639 (i2cclk < tscl_h)) {
Patrick Delaunay499504b2019-06-21 15:26:47 +0200640 u32 clk_error;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200641
Patrick Delaunay499504b2019-06-21 15:26:47 +0200642 if (tscl > i2cbus)
643 clk_error = tscl - i2cbus;
644 else
645 clk_error = i2cbus - tscl;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200646
647 if (clk_error < clk_error_prev) {
648 clk_error_prev = clk_error;
649 v->scll = l;
650 v->sclh = h;
Christophe Kerello81c48432017-10-17 11:21:32 +0200651 sol_found = true;
652 memcpy(s, v, sizeof(*s));
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200653 }
654 }
655 }
656 }
657 }
658
Christophe Kerello81c48432017-10-17 11:21:32 +0200659 if (!sol_found) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100660 log_err("no solution at all\n");
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200661 ret = -EPERM;
662 }
663
664 return ret;
665}
666
Alain Volmatc3244652020-03-06 11:09:14 +0100667static const struct stm32_i2c_spec *get_specs(u32 rate)
668{
669 unsigned int i;
670
671 for (i = 0; i < ARRAY_SIZE(i2c_specs); i++)
672 if (rate <= i2c_specs[i].rate)
673 return &i2c_specs[i];
674
675 /* NOT REACHED */
676 return ERR_PTR(-EINVAL);
677}
678
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200679static int stm32_i2c_compute_timing(struct stm32_i2c_priv *i2c_priv,
Patrick Delaunayc0765f42018-10-29 15:31:55 +0100680 struct stm32_i2c_timings *output)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200681{
Patrick Delaunayc31cf402021-08-03 12:05:15 +0200682 struct stm32_i2c_setup *setup = &i2c_priv->setup;
Alain Volmatc3244652020-03-06 11:09:14 +0100683 const struct stm32_i2c_spec *specs;
Patrice Chotardd10bd6c2017-10-17 11:21:33 +0200684 struct stm32_i2c_timings *v, *_v;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200685 struct list_head solutions;
Patrick Delaunay6338b452021-08-03 12:05:14 +0200686 u32 i2cclk = DIV_ROUND_CLOSEST(STM32_NSEC_PER_SEC, setup->clock_src);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200687 int ret;
688
Alain Volmatc3244652020-03-06 11:09:14 +0100689 specs = get_specs(setup->speed_freq);
690 if (specs == ERR_PTR(-EINVAL)) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100691 log_err("speed out of bound {%d}\n",
692 setup->speed_freq);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200693 return -EINVAL;
694 }
695
Alain Volmatc3244652020-03-06 11:09:14 +0100696 if (setup->rise_time > specs->rise_max ||
697 setup->fall_time > specs->fall_max) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100698 log_err("timings out of bound Rise{%d>%d}/Fall{%d>%d}\n",
699 setup->rise_time, specs->rise_max,
700 setup->fall_time, specs->fall_max);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200701 return -EINVAL;
702 }
703
Patrick Delaunay6338b452021-08-03 12:05:14 +0200704 /* Analog and Digital Filters */
705 setup->dnf = DIV_ROUND_CLOSEST(i2c_priv->dnf_dt, i2cclk);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200706 if (setup->dnf > STM32_I2C_DNF_MAX) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100707 log_err("DNF out of bound %d/%d\n",
708 setup->dnf, STM32_I2C_DNF_MAX);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200709 return -EINVAL;
710 }
711
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200712 INIT_LIST_HEAD(&solutions);
Patrick Delaunayc31cf402021-08-03 12:05:15 +0200713 ret = stm32_i2c_compute_solutions(i2cclk, setup, specs, &solutions);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200714 if (ret)
715 goto exit;
716
Patrick Delaunayc31cf402021-08-03 12:05:15 +0200717 ret = stm32_i2c_choose_solution(i2cclk, setup, specs, &solutions, output);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200718 if (ret)
719 goto exit;
720
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100721 log_debug("Presc: %i, scldel: %i, sdadel: %i, scll: %i, sclh: %i\n",
722 output->presc,
723 output->scldel, output->sdadel,
724 output->scll, output->sclh);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200725
726exit:
727 /* Release list and memory */
728 list_for_each_entry_safe(v, _v, &solutions, node) {
729 list_del(&v->node);
Patrick Delaunay35746c02018-03-12 10:46:09 +0100730 free(v);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200731 }
732
733 return ret;
734}
735
Alain Volmatc3244652020-03-06 11:09:14 +0100736static u32 get_lower_rate(u32 rate)
737{
738 int i;
739
740 for (i = ARRAY_SIZE(i2c_specs) - 1; i >= 0; i--)
741 if (rate > i2c_specs[i].rate)
742 return i2c_specs[i].rate;
743
744 return i2c_specs[0].rate;
745}
746
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200747static int stm32_i2c_setup_timing(struct stm32_i2c_priv *i2c_priv,
Patrick Delaunayc0765f42018-10-29 15:31:55 +0100748 struct stm32_i2c_timings *timing)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200749{
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200750 struct stm32_i2c_setup *setup = &i2c_priv->setup;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200751 int ret = 0;
752
Alain Volmatc3244652020-03-06 11:09:14 +0100753 setup->speed_freq = i2c_priv->speed;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200754 setup->clock_src = clk_get_rate(&i2c_priv->clk);
755
756 if (!setup->clock_src) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100757 log_err("clock rate is 0\n");
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200758 return -EINVAL;
759 }
760
761 do {
Patrick Delaunayc31cf402021-08-03 12:05:15 +0200762 ret = stm32_i2c_compute_timing(i2c_priv, timing);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200763 if (ret) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100764 log_debug("failed to compute I2C timings.\n");
Alain Volmatc3244652020-03-06 11:09:14 +0100765 if (setup->speed_freq > I2C_SPEED_STANDARD_RATE) {
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200766 setup->speed_freq =
Alain Volmatc3244652020-03-06 11:09:14 +0100767 get_lower_rate(setup->speed_freq);
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100768 log_debug("downgrade I2C Speed Freq to (%i)\n",
769 setup->speed_freq);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200770 } else {
771 break;
772 }
773 }
774 } while (ret);
775
776 if (ret) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100777 log_err("impossible to compute I2C timings.\n");
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200778 return ret;
779 }
780
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100781 log_debug("I2C Freq(%i), Clk Source(%i)\n",
782 setup->speed_freq, setup->clock_src);
783 log_debug("I2C Rise(%i) and Fall(%i) Time\n",
784 setup->rise_time, setup->fall_time);
785 log_debug("I2C Analog Filter(%s), DNF(%i)\n",
786 setup->analog_filter ? "On" : "Off", setup->dnf);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200787
Alain Volmatc3244652020-03-06 11:09:14 +0100788 i2c_priv->speed = setup->speed_freq;
789
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200790 return 0;
791}
792
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200793static int stm32_i2c_write_fm_plus_bits(struct stm32_i2c_priv *i2c_priv)
794{
795 int ret;
796 bool enable = i2c_priv->speed > I2C_SPEED_FAST_RATE;
797
798 /* Optional */
799 if (IS_ERR_OR_NULL(i2c_priv->regmap))
800 return 0;
801
802 if (i2c_priv->regmap_sreg == i2c_priv->regmap_creg)
803 ret = regmap_update_bits(i2c_priv->regmap,
804 i2c_priv->regmap_sreg,
805 i2c_priv->regmap_mask,
806 enable ? i2c_priv->regmap_mask : 0);
807 else
808 ret = regmap_write(i2c_priv->regmap,
809 enable ? i2c_priv->regmap_sreg :
810 i2c_priv->regmap_creg,
811 i2c_priv->regmap_mask);
812
813 return ret;
814}
815
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200816static int stm32_i2c_hw_config(struct stm32_i2c_priv *i2c_priv)
817{
818 struct stm32_i2c_regs *regs = i2c_priv->regs;
819 struct stm32_i2c_timings t;
820 int ret;
821 u32 timing = 0;
822
823 ret = stm32_i2c_setup_timing(i2c_priv, &t);
824 if (ret)
825 return ret;
826
827 /* Disable I2C */
828 clrbits_le32(&regs->cr1, STM32_I2C_CR1_PE);
829
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200830 /* Setup Fast mode plus if necessary */
831 ret = stm32_i2c_write_fm_plus_bits(i2c_priv);
832 if (ret)
833 return ret;
834
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200835 /* Timing settings */
836 timing |= STM32_I2C_TIMINGR_PRESC(t.presc);
837 timing |= STM32_I2C_TIMINGR_SCLDEL(t.scldel);
838 timing |= STM32_I2C_TIMINGR_SDADEL(t.sdadel);
839 timing |= STM32_I2C_TIMINGR_SCLH(t.sclh);
840 timing |= STM32_I2C_TIMINGR_SCLL(t.scll);
841 writel(timing, &regs->timingr);
842
843 /* Enable I2C */
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200844 if (i2c_priv->setup.analog_filter)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200845 clrbits_le32(&regs->cr1, STM32_I2C_CR1_ANFOFF);
846 else
847 setbits_le32(&regs->cr1, STM32_I2C_CR1_ANFOFF);
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200848
Patrick Delaunay6bbb14f2021-08-03 12:05:13 +0200849 /* Program the Digital Filter */
850 clrsetbits_le32(&regs->cr1, STM32_I2C_CR1_DNF_MASK,
851 STM32_I2C_CR1_DNF(i2c_priv->setup.dnf));
852
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200853 setbits_le32(&regs->cr1, STM32_I2C_CR1_PE);
854
855 return 0;
856}
857
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100858static int stm32_i2c_set_bus_speed(struct udevice *dev, unsigned int speed)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200859{
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100860 struct stm32_i2c_priv *i2c_priv = dev_get_priv(dev);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200861
Alain Volmatc3244652020-03-06 11:09:14 +0100862 if (speed > I2C_SPEED_FAST_PLUS_RATE) {
Patrick Delaunayf4ed2242020-11-06 19:01:50 +0100863 dev_dbg(dev, "Speed %d not supported\n", speed);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200864 return -EINVAL;
865 }
866
Alain Volmatc3244652020-03-06 11:09:14 +0100867 i2c_priv->speed = speed;
868
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200869 return stm32_i2c_hw_config(i2c_priv);
870}
871
872static int stm32_i2c_probe(struct udevice *dev)
873{
874 struct stm32_i2c_priv *i2c_priv = dev_get_priv(dev);
875 struct reset_ctl reset_ctl;
876 fdt_addr_t addr;
877 int ret;
878
879 addr = dev_read_addr(dev);
880 if (addr == FDT_ADDR_T_NONE)
881 return -EINVAL;
882
883 i2c_priv->regs = (struct stm32_i2c_regs *)addr;
884
885 ret = clk_get_by_index(dev, 0, &i2c_priv->clk);
886 if (ret)
887 return ret;
888
889 ret = clk_enable(&i2c_priv->clk);
890 if (ret)
891 goto clk_free;
892
893 ret = reset_get_by_index(dev, 0, &reset_ctl);
894 if (ret)
895 goto clk_disable;
896
897 reset_assert(&reset_ctl);
898 udelay(2);
899 reset_deassert(&reset_ctl);
900
901 return 0;
902
903clk_disable:
904 clk_disable(&i2c_priv->clk);
905clk_free:
906 clk_free(&i2c_priv->clk);
907
908 return ret;
909}
910
Simon Glassd1998a92020-12-03 16:55:21 -0700911static int stm32_of_to_plat(struct udevice *dev)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200912{
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200913 const struct stm32_i2c_data *data;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200914 struct stm32_i2c_priv *i2c_priv = dev_get_priv(dev);
915 u32 rise_time, fall_time;
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200916 int ret;
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200917
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200918 data = (const struct stm32_i2c_data *)dev_get_driver_data(dev);
919 if (!data)
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200920 return -EINVAL;
921
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200922 rise_time = dev_read_u32_default(dev, "i2c-scl-rising-time-ns",
923 STM32_I2C_RISE_TIME_DEFAULT);
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200924
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200925 fall_time = dev_read_u32_default(dev, "i2c-scl-falling-time-ns",
926 STM32_I2C_FALL_TIME_DEFAULT);
927
Patrick Delaunay6338b452021-08-03 12:05:14 +0200928 i2c_priv->dnf_dt = dev_read_u32_default(dev, "i2c-digital-filter-width-ns", 0);
929 if (!dev_read_bool(dev, "i2c-digital-filter"))
930 i2c_priv->dnf_dt = 0;
931
Patrick Delaunay09599992021-08-03 12:05:12 +0200932 i2c_priv->setup.analog_filter = dev_read_bool(dev, "i2c-analog-filter");
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200933
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200934 /* Optional */
935 i2c_priv->regmap = syscon_regmap_lookup_by_phandle(dev,
936 "st,syscfg-fmp");
937 if (!IS_ERR(i2c_priv->regmap)) {
938 u32 fmp[3];
939
940 ret = dev_read_u32_array(dev, "st,syscfg-fmp", fmp, 3);
941 if (ret)
942 return ret;
943
944 i2c_priv->regmap_sreg = fmp[1];
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200945 i2c_priv->regmap_creg = fmp[1] + data->fmp_clr_offset;
Patrick Delaunay7ce87dc2020-07-06 13:31:35 +0200946 i2c_priv->regmap_mask = fmp[2];
947 }
948
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200949 return 0;
950}
951
952static const struct dm_i2c_ops stm32_i2c_ops = {
953 .xfer = stm32_i2c_xfer,
954 .set_bus_speed = stm32_i2c_set_bus_speed,
955};
956
957static const struct udevice_id stm32_i2c_of_match[] = {
Patrick Delaunay1fd9eb62021-08-03 12:05:09 +0200958 { .compatible = "st,stm32f7-i2c", .data = (ulong)&stm32f7_data },
959 { .compatible = "st,stm32mp15-i2c", .data = (ulong)&stm32mp15_data },
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200960 {}
961};
962
963U_BOOT_DRIVER(stm32f7_i2c) = {
964 .name = "stm32f7-i2c",
965 .id = UCLASS_I2C,
966 .of_match = stm32_i2c_of_match,
Simon Glassd1998a92020-12-03 16:55:21 -0700967 .of_to_plat = stm32_of_to_plat,
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200968 .probe = stm32_i2c_probe,
Simon Glass41575d82020-12-03 16:55:17 -0700969 .priv_auto = sizeof(struct stm32_i2c_priv),
Patrice Chotard4fadcaf2017-08-09 14:45:27 +0200970 .ops = &stm32_i2c_ops,
971};