blob: 419d021a314b2d551e1c5f212b7e6679a852d2e8 [file] [log] [blame]
Vipin KUMARfc9589f2010-01-15 19:15:44 +05301/*
2 * (C) Copyright 2009
3 * Vipin Kumar, ST Micoelectronics, vipin.kumar@st.com.
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Vipin KUMARfc9589f2010-01-15 19:15:44 +05306 */
7
8#include <common.h>
Stefan Roese3cb27962016-04-21 08:19:41 +02009#include <dm.h>
Stefan Roeseef6073e2014-10-28 12:12:00 +010010#include <i2c.h>
Stefan Roese38481202016-04-21 08:19:42 +020011#include <pci.h>
Dinh Nguyen08794aa2018-04-04 17:18:24 -050012#include <reset.h>
Vipin KUMARfc9589f2010-01-15 19:15:44 +053013#include <asm/io.h>
Vipin KUMAR3f64acb2012-02-26 23:13:29 +000014#include "designware_i2c.h"
Vipin KUMARfc9589f2010-01-15 19:15:44 +053015
Stefan Roese38481202016-04-21 08:19:42 +020016struct dw_scl_sda_cfg {
17 u32 ss_hcnt;
18 u32 fs_hcnt;
19 u32 ss_lcnt;
20 u32 fs_lcnt;
21 u32 sda_hold;
22};
23
24#ifdef CONFIG_X86
25/* BayTrail HCNT/LCNT/SDA hold time */
26static struct dw_scl_sda_cfg byt_config = {
27 .ss_hcnt = 0x200,
28 .fs_hcnt = 0x55,
29 .ss_lcnt = 0x200,
30 .fs_lcnt = 0x99,
31 .sda_hold = 0x6,
32};
33#endif
34
Stefan Roese3cb27962016-04-21 08:19:41 +020035struct dw_i2c {
36 struct i2c_regs *regs;
Stefan Roese38481202016-04-21 08:19:42 +020037 struct dw_scl_sda_cfg *scl_sda_cfg;
Dinh Nguyen08794aa2018-04-04 17:18:24 -050038 struct reset_ctl reset_ctl;
Stefan Roese3cb27962016-04-21 08:19:41 +020039};
40
Stefan Roeseabb3e132016-04-27 09:02:12 +020041#ifdef CONFIG_SYS_I2C_DW_ENABLE_STATUS_UNSUPPORTED
Stefan Roese3bc33ba2016-04-21 08:19:38 +020042static void dw_i2c_enable(struct i2c_regs *i2c_base, bool enable)
43{
44 u32 ena = enable ? IC_ENABLE_0B : 0;
Stefan Roeseabb3e132016-04-27 09:02:12 +020045
46 writel(ena, &i2c_base->ic_enable);
47}
48#else
49static void dw_i2c_enable(struct i2c_regs *i2c_base, bool enable)
50{
51 u32 ena = enable ? IC_ENABLE_0B : 0;
Stefan Roese3bc33ba2016-04-21 08:19:38 +020052 int timeout = 100;
53
54 do {
55 writel(ena, &i2c_base->ic_enable);
56 if ((readl(&i2c_base->ic_enable_status) & IC_ENABLE_0B) == ena)
57 return;
58
59 /*
60 * Wait 10 times the signaling period of the highest I2C
61 * transfer supported by the driver (for 400KHz this is
62 * 25us) as described in the DesignWare I2C databook.
63 */
64 udelay(25);
65 } while (timeout--);
66
67 printf("timeout in %sabling I2C adapter\n", enable ? "en" : "dis");
68}
Stefan Roeseabb3e132016-04-27 09:02:12 +020069#endif
Stefan Roese3bc33ba2016-04-21 08:19:38 +020070
Vipin KUMARfc9589f2010-01-15 19:15:44 +053071/*
Stefan Roese88893c92016-04-21 08:19:39 +020072 * i2c_set_bus_speed - Set the i2c speed
73 * @speed: required i2c speed
Vipin KUMARfc9589f2010-01-15 19:15:44 +053074 *
Stefan Roese88893c92016-04-21 08:19:39 +020075 * Set the i2c speed.
Vipin KUMARfc9589f2010-01-15 19:15:44 +053076 */
Stefan Roese41de7662016-04-21 08:19:40 +020077static unsigned int __dw_i2c_set_bus_speed(struct i2c_regs *i2c_base,
Stefan Roese38481202016-04-21 08:19:42 +020078 struct dw_scl_sda_cfg *scl_sda_cfg,
Stefan Roese41de7662016-04-21 08:19:40 +020079 unsigned int speed)
Vipin KUMARfc9589f2010-01-15 19:15:44 +053080{
81 unsigned int cntl;
82 unsigned int hcnt, lcnt;
Stefan Roese88893c92016-04-21 08:19:39 +020083 int i2c_spd;
84
85 if (speed >= I2C_MAX_SPEED)
86 i2c_spd = IC_SPEED_MODE_MAX;
87 else if (speed >= I2C_FAST_SPEED)
88 i2c_spd = IC_SPEED_MODE_FAST;
89 else
90 i2c_spd = IC_SPEED_MODE_STANDARD;
Armando Visconti631e6932012-03-29 20:10:17 +000091
92 /* to set speed cltr must be disabled */
Stefan Roese3bc33ba2016-04-21 08:19:38 +020093 dw_i2c_enable(i2c_base, false);
Armando Visconti631e6932012-03-29 20:10:17 +000094
Stefan Roeseef6073e2014-10-28 12:12:00 +010095 cntl = (readl(&i2c_base->ic_con) & (~IC_CON_SPD_MSK));
Vipin KUMARfc9589f2010-01-15 19:15:44 +053096
97 switch (i2c_spd) {
Stefan Roese38481202016-04-21 08:19:42 +020098#ifndef CONFIG_X86 /* No High-speed for BayTrail yet */
Vipin KUMARfc9589f2010-01-15 19:15:44 +053099 case IC_SPEED_MODE_MAX:
Stefan Roese38481202016-04-21 08:19:42 +0200100 cntl |= IC_CON_SPD_SS;
101 if (scl_sda_cfg) {
102 hcnt = scl_sda_cfg->fs_hcnt;
103 lcnt = scl_sda_cfg->fs_lcnt;
104 } else {
105 hcnt = (IC_CLK * MIN_HS_SCL_HIGHTIME) / NANO_TO_MICRO;
106 lcnt = (IC_CLK * MIN_HS_SCL_LOWTIME) / NANO_TO_MICRO;
107 }
Stefan Roeseef6073e2014-10-28 12:12:00 +0100108 writel(hcnt, &i2c_base->ic_hs_scl_hcnt);
Stefan Roeseef6073e2014-10-28 12:12:00 +0100109 writel(lcnt, &i2c_base->ic_hs_scl_lcnt);
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530110 break;
Stefan Roese38481202016-04-21 08:19:42 +0200111#endif
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530112
113 case IC_SPEED_MODE_STANDARD:
114 cntl |= IC_CON_SPD_SS;
Stefan Roese38481202016-04-21 08:19:42 +0200115 if (scl_sda_cfg) {
116 hcnt = scl_sda_cfg->ss_hcnt;
117 lcnt = scl_sda_cfg->ss_lcnt;
118 } else {
119 hcnt = (IC_CLK * MIN_SS_SCL_HIGHTIME) / NANO_TO_MICRO;
120 lcnt = (IC_CLK * MIN_SS_SCL_LOWTIME) / NANO_TO_MICRO;
121 }
Stefan Roeseef6073e2014-10-28 12:12:00 +0100122 writel(hcnt, &i2c_base->ic_ss_scl_hcnt);
Stefan Roeseef6073e2014-10-28 12:12:00 +0100123 writel(lcnt, &i2c_base->ic_ss_scl_lcnt);
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530124 break;
125
126 case IC_SPEED_MODE_FAST:
127 default:
128 cntl |= IC_CON_SPD_FS;
Stefan Roese38481202016-04-21 08:19:42 +0200129 if (scl_sda_cfg) {
130 hcnt = scl_sda_cfg->fs_hcnt;
131 lcnt = scl_sda_cfg->fs_lcnt;
132 } else {
133 hcnt = (IC_CLK * MIN_FS_SCL_HIGHTIME) / NANO_TO_MICRO;
134 lcnt = (IC_CLK * MIN_FS_SCL_LOWTIME) / NANO_TO_MICRO;
135 }
Stefan Roeseef6073e2014-10-28 12:12:00 +0100136 writel(hcnt, &i2c_base->ic_fs_scl_hcnt);
Stefan Roeseef6073e2014-10-28 12:12:00 +0100137 writel(lcnt, &i2c_base->ic_fs_scl_lcnt);
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530138 break;
139 }
140
Stefan Roeseef6073e2014-10-28 12:12:00 +0100141 writel(cntl, &i2c_base->ic_con);
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530142
Stefan Roese38481202016-04-21 08:19:42 +0200143 /* Configure SDA Hold Time if required */
144 if (scl_sda_cfg)
145 writel(scl_sda_cfg->sda_hold, &i2c_base->ic_sda_hold);
146
Armando Visconti28a724f2012-12-06 00:04:17 +0000147 /* Enable back i2c now speed set */
Stefan Roese3bc33ba2016-04-21 08:19:38 +0200148 dw_i2c_enable(i2c_base, true);
Stefan Roesef6322ebd2012-01-20 11:52:33 +0100149
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530150 return 0;
151}
152
153/*
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530154 * i2c_setaddress - Sets the target slave address
155 * @i2c_addr: target i2c address
156 *
157 * Sets the target slave address.
158 */
Stefan Roese41de7662016-04-21 08:19:40 +0200159static void i2c_setaddress(struct i2c_regs *i2c_base, unsigned int i2c_addr)
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530160{
Alexey Brodkin41c56552013-11-07 17:52:18 +0400161 /* Disable i2c */
Stefan Roese3bc33ba2016-04-21 08:19:38 +0200162 dw_i2c_enable(i2c_base, false);
Alexey Brodkin41c56552013-11-07 17:52:18 +0400163
Stefan Roeseef6073e2014-10-28 12:12:00 +0100164 writel(i2c_addr, &i2c_base->ic_tar);
Alexey Brodkin41c56552013-11-07 17:52:18 +0400165
166 /* Enable i2c */
Stefan Roese3bc33ba2016-04-21 08:19:38 +0200167 dw_i2c_enable(i2c_base, true);
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530168}
169
170/*
171 * i2c_flush_rxfifo - Flushes the i2c RX FIFO
172 *
173 * Flushes the i2c RX FIFO
174 */
Stefan Roese41de7662016-04-21 08:19:40 +0200175static void i2c_flush_rxfifo(struct i2c_regs *i2c_base)
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530176{
Stefan Roeseef6073e2014-10-28 12:12:00 +0100177 while (readl(&i2c_base->ic_status) & IC_STATUS_RFNE)
178 readl(&i2c_base->ic_cmd_data);
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530179}
180
181/*
182 * i2c_wait_for_bb - Waits for bus busy
183 *
184 * Waits for bus busy
185 */
Stefan Roese41de7662016-04-21 08:19:40 +0200186static int i2c_wait_for_bb(struct i2c_regs *i2c_base)
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530187{
188 unsigned long start_time_bb = get_timer(0);
189
Stefan Roeseef6073e2014-10-28 12:12:00 +0100190 while ((readl(&i2c_base->ic_status) & IC_STATUS_MA) ||
191 !(readl(&i2c_base->ic_status) & IC_STATUS_TFE)) {
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530192
193 /* Evaluate timeout */
194 if (get_timer(start_time_bb) > (unsigned long)(I2C_BYTE_TO_BB))
195 return 1;
196 }
197
198 return 0;
199}
200
Stefan Roese41de7662016-04-21 08:19:40 +0200201static int i2c_xfer_init(struct i2c_regs *i2c_base, uchar chip, uint addr,
Stefan Roeseef6073e2014-10-28 12:12:00 +0100202 int alen)
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530203{
Stefan Roese41de7662016-04-21 08:19:40 +0200204 if (i2c_wait_for_bb(i2c_base))
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530205 return 1;
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530206
Stefan Roese41de7662016-04-21 08:19:40 +0200207 i2c_setaddress(i2c_base, chip);
Chin Liang Seea0c26262014-02-04 11:56:23 -0600208 while (alen) {
209 alen--;
210 /* high byte address going out first */
211 writel((addr >> (alen * 8)) & 0xff,
Stefan Roeseef6073e2014-10-28 12:12:00 +0100212 &i2c_base->ic_cmd_data);
Chin Liang Seea0c26262014-02-04 11:56:23 -0600213 }
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530214 return 0;
215}
216
Stefan Roese41de7662016-04-21 08:19:40 +0200217static int i2c_xfer_finish(struct i2c_regs *i2c_base)
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530218{
219 ulong start_stop_det = get_timer(0);
220
221 while (1) {
Stefan Roeseef6073e2014-10-28 12:12:00 +0100222 if ((readl(&i2c_base->ic_raw_intr_stat) & IC_STOP_DET)) {
223 readl(&i2c_base->ic_clr_stop_det);
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530224 break;
225 } else if (get_timer(start_stop_det) > I2C_STOPDET_TO) {
226 break;
227 }
228 }
229
Stefan Roese41de7662016-04-21 08:19:40 +0200230 if (i2c_wait_for_bb(i2c_base)) {
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530231 printf("Timed out waiting for bus\n");
232 return 1;
233 }
234
Stefan Roese41de7662016-04-21 08:19:40 +0200235 i2c_flush_rxfifo(i2c_base);
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530236
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530237 return 0;
238}
239
240/*
241 * i2c_read - Read from i2c memory
242 * @chip: target i2c address
243 * @addr: address to read from
244 * @alen:
245 * @buffer: buffer for read data
246 * @len: no of bytes to be read
247 *
248 * Read from i2c memory.
249 */
Stefan Roese41de7662016-04-21 08:19:40 +0200250static int __dw_i2c_read(struct i2c_regs *i2c_base, u8 dev, uint addr,
251 int alen, u8 *buffer, int len)
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530252{
253 unsigned long start_time_rx;
Marek Vasutc4bc9a82016-10-20 16:48:28 +0200254 unsigned int active = 0;
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530255
Alexey Brodkin7ef00362013-12-16 15:30:35 +0400256#ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
257 /*
258 * EEPROM chips that implement "address overflow" are ones
259 * like Catalyst 24WC04/08/16 which has 9/10/11 bits of
260 * address and the extra bits end up in the "chip address"
261 * bit slots. This makes a 24WC08 (1Kbyte) chip look like
262 * four 256 byte chips.
263 *
264 * Note that we consider the length of the address field to
265 * still be one byte because the extra address bits are
266 * hidden in the chip address.
267 */
Stefan Roeseef6073e2014-10-28 12:12:00 +0100268 dev |= ((addr >> (alen * 8)) & CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);
Alexey Brodkin7ef00362013-12-16 15:30:35 +0400269 addr &= ~(CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW << (alen * 8));
270
Stefan Roeseef6073e2014-10-28 12:12:00 +0100271 debug("%s: fix addr_overflow: dev %02x addr %02x\n", __func__, dev,
Alexey Brodkin7ef00362013-12-16 15:30:35 +0400272 addr);
273#endif
274
Stefan Roese41de7662016-04-21 08:19:40 +0200275 if (i2c_xfer_init(i2c_base, dev, addr, alen))
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530276 return 1;
277
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530278 start_time_rx = get_timer(0);
279 while (len) {
Marek Vasutc4bc9a82016-10-20 16:48:28 +0200280 if (!active) {
281 /*
282 * Avoid writing to ic_cmd_data multiple times
283 * in case this loop spins too quickly and the
284 * ic_status RFNE bit isn't set after the first
285 * write. Subsequent writes to ic_cmd_data can
286 * trigger spurious i2c transfer.
287 */
288 if (len == 1)
289 writel(IC_CMD | IC_STOP, &i2c_base->ic_cmd_data);
290 else
291 writel(IC_CMD, &i2c_base->ic_cmd_data);
292 active = 1;
293 }
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530294
Stefan Roeseef6073e2014-10-28 12:12:00 +0100295 if (readl(&i2c_base->ic_status) & IC_STATUS_RFNE) {
296 *buffer++ = (uchar)readl(&i2c_base->ic_cmd_data);
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530297 len--;
298 start_time_rx = get_timer(0);
Marek Vasutc4bc9a82016-10-20 16:48:28 +0200299 active = 0;
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530300 } else if (get_timer(start_time_rx) > I2C_BYTE_TO) {
Marek Vasutc4bc9a82016-10-20 16:48:28 +0200301 return 1;
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530302 }
303 }
304
Stefan Roese41de7662016-04-21 08:19:40 +0200305 return i2c_xfer_finish(i2c_base);
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530306}
307
308/*
309 * i2c_write - Write to i2c memory
310 * @chip: target i2c address
311 * @addr: address to read from
312 * @alen:
313 * @buffer: buffer for read data
314 * @len: no of bytes to be read
315 *
316 * Write to i2c memory.
317 */
Stefan Roese41de7662016-04-21 08:19:40 +0200318static int __dw_i2c_write(struct i2c_regs *i2c_base, u8 dev, uint addr,
319 int alen, u8 *buffer, int len)
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530320{
321 int nb = len;
322 unsigned long start_time_tx;
323
Alexey Brodkin7ef00362013-12-16 15:30:35 +0400324#ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
325 /*
326 * EEPROM chips that implement "address overflow" are ones
327 * like Catalyst 24WC04/08/16 which has 9/10/11 bits of
328 * address and the extra bits end up in the "chip address"
329 * bit slots. This makes a 24WC08 (1Kbyte) chip look like
330 * four 256 byte chips.
331 *
332 * Note that we consider the length of the address field to
333 * still be one byte because the extra address bits are
334 * hidden in the chip address.
335 */
Stefan Roeseef6073e2014-10-28 12:12:00 +0100336 dev |= ((addr >> (alen * 8)) & CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);
Alexey Brodkin7ef00362013-12-16 15:30:35 +0400337 addr &= ~(CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW << (alen * 8));
338
Stefan Roeseef6073e2014-10-28 12:12:00 +0100339 debug("%s: fix addr_overflow: dev %02x addr %02x\n", __func__, dev,
Alexey Brodkin7ef00362013-12-16 15:30:35 +0400340 addr);
341#endif
342
Stefan Roese41de7662016-04-21 08:19:40 +0200343 if (i2c_xfer_init(i2c_base, dev, addr, alen))
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530344 return 1;
345
346 start_time_tx = get_timer(0);
347 while (len) {
Stefan Roeseef6073e2014-10-28 12:12:00 +0100348 if (readl(&i2c_base->ic_status) & IC_STATUS_TFNF) {
349 if (--len == 0) {
350 writel(*buffer | IC_STOP,
351 &i2c_base->ic_cmd_data);
352 } else {
353 writel(*buffer, &i2c_base->ic_cmd_data);
354 }
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530355 buffer++;
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530356 start_time_tx = get_timer(0);
357
358 } else if (get_timer(start_time_tx) > (nb * I2C_BYTE_TO)) {
359 printf("Timed out. i2c write Failed\n");
360 return 1;
361 }
362 }
363
Stefan Roese41de7662016-04-21 08:19:40 +0200364 return i2c_xfer_finish(i2c_base);
365}
366
Stefan Roese3cb27962016-04-21 08:19:41 +0200367/*
368 * __dw_i2c_init - Init function
369 * @speed: required i2c speed
370 * @slaveaddr: slave address for the device
371 *
372 * Initialization function.
373 */
374static void __dw_i2c_init(struct i2c_regs *i2c_base, int speed, int slaveaddr)
375{
376 /* Disable i2c */
377 dw_i2c_enable(i2c_base, false);
378
Marek Vasut808aa132017-08-07 20:45:31 +0200379 writel(IC_CON_SD | IC_CON_RE | IC_CON_SPD_FS | IC_CON_MM,
380 &i2c_base->ic_con);
Stefan Roese3cb27962016-04-21 08:19:41 +0200381 writel(IC_RX_TL, &i2c_base->ic_rx_tl);
382 writel(IC_TX_TL, &i2c_base->ic_tx_tl);
383 writel(IC_STOP_DET, &i2c_base->ic_intr_mask);
384#ifndef CONFIG_DM_I2C
Stefan Roese38481202016-04-21 08:19:42 +0200385 __dw_i2c_set_bus_speed(i2c_base, NULL, speed);
Stefan Roese3cb27962016-04-21 08:19:41 +0200386 writel(slaveaddr, &i2c_base->ic_sar);
387#endif
388
389 /* Enable i2c */
390 dw_i2c_enable(i2c_base, true);
391}
392
393#ifndef CONFIG_DM_I2C
394/*
395 * The legacy I2C functions. These need to get removed once
396 * all users of this driver are converted to DM.
397 */
Stefan Roese41de7662016-04-21 08:19:40 +0200398static struct i2c_regs *i2c_get_base(struct i2c_adapter *adap)
399{
400 switch (adap->hwadapnr) {
401#if CONFIG_SYS_I2C_BUS_MAX >= 4
402 case 3:
403 return (struct i2c_regs *)CONFIG_SYS_I2C_BASE3;
404#endif
405#if CONFIG_SYS_I2C_BUS_MAX >= 3
406 case 2:
407 return (struct i2c_regs *)CONFIG_SYS_I2C_BASE2;
408#endif
409#if CONFIG_SYS_I2C_BUS_MAX >= 2
410 case 1:
411 return (struct i2c_regs *)CONFIG_SYS_I2C_BASE1;
412#endif
413 case 0:
414 return (struct i2c_regs *)CONFIG_SYS_I2C_BASE;
415 default:
416 printf("Wrong I2C-adapter number %d\n", adap->hwadapnr);
417 }
418
419 return NULL;
420}
421
422static unsigned int dw_i2c_set_bus_speed(struct i2c_adapter *adap,
423 unsigned int speed)
424{
425 adap->speed = speed;
Stefan Roese38481202016-04-21 08:19:42 +0200426 return __dw_i2c_set_bus_speed(i2c_get_base(adap), NULL, speed);
Stefan Roese41de7662016-04-21 08:19:40 +0200427}
428
Stefan Roese3cb27962016-04-21 08:19:41 +0200429static void dw_i2c_init(struct i2c_adapter *adap, int speed, int slaveaddr)
Stefan Roese41de7662016-04-21 08:19:40 +0200430{
Stefan Roese3cb27962016-04-21 08:19:41 +0200431 __dw_i2c_init(i2c_get_base(adap), speed, slaveaddr);
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530432}
433
Stefan Roese41de7662016-04-21 08:19:40 +0200434static int dw_i2c_read(struct i2c_adapter *adap, u8 dev, uint addr,
435 int alen, u8 *buffer, int len)
436{
437 return __dw_i2c_read(i2c_get_base(adap), dev, addr, alen, buffer, len);
438}
439
440static int dw_i2c_write(struct i2c_adapter *adap, u8 dev, uint addr,
441 int alen, u8 *buffer, int len)
442{
443 return __dw_i2c_write(i2c_get_base(adap), dev, addr, alen, buffer, len);
444}
445
Stefan Roese3cb27962016-04-21 08:19:41 +0200446/* dw_i2c_probe - Probe the i2c chip */
Stefan Roeseef6073e2014-10-28 12:12:00 +0100447static int dw_i2c_probe(struct i2c_adapter *adap, u8 dev)
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530448{
Stefan Roese41de7662016-04-21 08:19:40 +0200449 struct i2c_regs *i2c_base = i2c_get_base(adap);
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530450 u32 tmp;
Stefan Roesef6322ebd2012-01-20 11:52:33 +0100451 int ret;
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530452
453 /*
454 * Try to read the first location of the chip.
455 */
Stefan Roese41de7662016-04-21 08:19:40 +0200456 ret = __dw_i2c_read(i2c_base, dev, 0, 1, (uchar *)&tmp, 1);
Stefan Roesef6322ebd2012-01-20 11:52:33 +0100457 if (ret)
Stefan Roeseef6073e2014-10-28 12:12:00 +0100458 dw_i2c_init(adap, adap->speed, adap->slaveaddr);
Stefan Roesef6322ebd2012-01-20 11:52:33 +0100459
460 return ret;
Vipin KUMARfc9589f2010-01-15 19:15:44 +0530461}
Armando Visconti4a7b4ec2012-12-06 00:04:15 +0000462
Stefan Roeseef6073e2014-10-28 12:12:00 +0100463U_BOOT_I2C_ADAP_COMPLETE(dw_0, dw_i2c_init, dw_i2c_probe, dw_i2c_read,
464 dw_i2c_write, dw_i2c_set_bus_speed,
465 CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE, 0)
Armando Visconti4a7b4ec2012-12-06 00:04:15 +0000466
Stefan Roeseef6073e2014-10-28 12:12:00 +0100467#if CONFIG_SYS_I2C_BUS_MAX >= 2
468U_BOOT_I2C_ADAP_COMPLETE(dw_1, dw_i2c_init, dw_i2c_probe, dw_i2c_read,
469 dw_i2c_write, dw_i2c_set_bus_speed,
470 CONFIG_SYS_I2C_SPEED1, CONFIG_SYS_I2C_SLAVE1, 1)
471#endif
Armando Visconti4a7b4ec2012-12-06 00:04:15 +0000472
Stefan Roeseef6073e2014-10-28 12:12:00 +0100473#if CONFIG_SYS_I2C_BUS_MAX >= 3
474U_BOOT_I2C_ADAP_COMPLETE(dw_2, dw_i2c_init, dw_i2c_probe, dw_i2c_read,
475 dw_i2c_write, dw_i2c_set_bus_speed,
476 CONFIG_SYS_I2C_SPEED2, CONFIG_SYS_I2C_SLAVE2, 2)
477#endif
Armando Visconti4a7b4ec2012-12-06 00:04:15 +0000478
Stefan Roeseef6073e2014-10-28 12:12:00 +0100479#if CONFIG_SYS_I2C_BUS_MAX >= 4
480U_BOOT_I2C_ADAP_COMPLETE(dw_3, dw_i2c_init, dw_i2c_probe, dw_i2c_read,
481 dw_i2c_write, dw_i2c_set_bus_speed,
482 CONFIG_SYS_I2C_SPEED3, CONFIG_SYS_I2C_SLAVE3, 3)
Armando Visconti4a7b4ec2012-12-06 00:04:15 +0000483#endif
Stefan Roese3cb27962016-04-21 08:19:41 +0200484
485#else /* CONFIG_DM_I2C */
486/* The DM I2C functions */
487
488static int designware_i2c_xfer(struct udevice *bus, struct i2c_msg *msg,
489 int nmsgs)
490{
491 struct dw_i2c *i2c = dev_get_priv(bus);
492 int ret;
493
494 debug("i2c_xfer: %d messages\n", nmsgs);
495 for (; nmsgs > 0; nmsgs--, msg++) {
496 debug("i2c_xfer: chip=0x%x, len=0x%x\n", msg->addr, msg->len);
497 if (msg->flags & I2C_M_RD) {
498 ret = __dw_i2c_read(i2c->regs, msg->addr, 0, 0,
499 msg->buf, msg->len);
500 } else {
501 ret = __dw_i2c_write(i2c->regs, msg->addr, 0, 0,
502 msg->buf, msg->len);
503 }
504 if (ret) {
505 debug("i2c_write: error sending\n");
506 return -EREMOTEIO;
507 }
508 }
509
510 return 0;
511}
512
513static int designware_i2c_set_bus_speed(struct udevice *bus, unsigned int speed)
514{
515 struct dw_i2c *i2c = dev_get_priv(bus);
516
Stefan Roese38481202016-04-21 08:19:42 +0200517 return __dw_i2c_set_bus_speed(i2c->regs, i2c->scl_sda_cfg, speed);
Stefan Roese3cb27962016-04-21 08:19:41 +0200518}
519
520static int designware_i2c_probe_chip(struct udevice *bus, uint chip_addr,
521 uint chip_flags)
522{
523 struct dw_i2c *i2c = dev_get_priv(bus);
524 struct i2c_regs *i2c_base = i2c->regs;
525 u32 tmp;
526 int ret;
527
528 /* Try to read the first location of the chip */
529 ret = __dw_i2c_read(i2c_base, chip_addr, 0, 1, (uchar *)&tmp, 1);
530 if (ret)
531 __dw_i2c_init(i2c_base, 0, 0);
532
533 return ret;
534}
535
536static int designware_i2c_probe(struct udevice *bus)
537{
538 struct dw_i2c *priv = dev_get_priv(bus);
Dinh Nguyen08794aa2018-04-04 17:18:24 -0500539 int ret;
Stefan Roese3cb27962016-04-21 08:19:41 +0200540
Stefan Roese38481202016-04-21 08:19:42 +0200541 if (device_is_on_pci_bus(bus)) {
542#ifdef CONFIG_DM_PCI
543 /* Save base address from PCI BAR */
544 priv->regs = (struct i2c_regs *)
545 dm_pci_map_bar(bus, PCI_BASE_ADDRESS_0, PCI_REGION_MEM);
546#ifdef CONFIG_X86
547 /* Use BayTrail specific timing values */
548 priv->scl_sda_cfg = &byt_config;
549#endif
550#endif
551 } else {
Simon Glassba1dea42017-05-17 17:18:05 -0600552 priv->regs = (struct i2c_regs *)devfdt_get_addr_ptr(bus);
Stefan Roese38481202016-04-21 08:19:42 +0200553 }
Stefan Roese3cb27962016-04-21 08:19:41 +0200554
Dinh Nguyen08794aa2018-04-04 17:18:24 -0500555 ret = reset_get_by_name(bus, "i2c", &priv->reset_ctl);
556 if (ret)
557 pr_info("reset_get_by_name() failed: %d\n", ret);
558
559 if (&priv->reset_ctl)
560 reset_deassert(&priv->reset_ctl);
561
Stefan Roese3cb27962016-04-21 08:19:41 +0200562 __dw_i2c_init(priv->regs, 0, 0);
563
564 return 0;
565}
566
Stefan Roese38481202016-04-21 08:19:42 +0200567static int designware_i2c_bind(struct udevice *dev)
568{
569 static int num_cards;
570 char name[20];
571
572 /* Create a unique device name for PCI type devices */
573 if (device_is_on_pci_bus(dev)) {
574 /*
575 * ToDo:
576 * Setting req_seq in the driver is probably not recommended.
577 * But without a DT alias the number is not configured. And
578 * using this driver is impossible for PCIe I2C devices.
579 * This can be removed, once a better (correct) way for this
580 * is found and implemented.
581 */
582 dev->req_seq = num_cards;
583 sprintf(name, "i2c_designware#%u", num_cards++);
584 device_set_name(dev, name);
585 }
586
587 return 0;
588}
589
Stefan Roese3cb27962016-04-21 08:19:41 +0200590static const struct dm_i2c_ops designware_i2c_ops = {
591 .xfer = designware_i2c_xfer,
592 .probe_chip = designware_i2c_probe_chip,
593 .set_bus_speed = designware_i2c_set_bus_speed,
594};
595
596static const struct udevice_id designware_i2c_ids[] = {
597 { .compatible = "snps,designware-i2c" },
598 { }
599};
600
601U_BOOT_DRIVER(i2c_designware) = {
602 .name = "i2c_designware",
603 .id = UCLASS_I2C,
604 .of_match = designware_i2c_ids,
Stefan Roese38481202016-04-21 08:19:42 +0200605 .bind = designware_i2c_bind,
Stefan Roese3cb27962016-04-21 08:19:41 +0200606 .probe = designware_i2c_probe,
607 .priv_auto_alloc_size = sizeof(struct dw_i2c),
608 .ops = &designware_i2c_ops,
609};
610
Stefan Roese38481202016-04-21 08:19:42 +0200611#ifdef CONFIG_X86
612static struct pci_device_id designware_pci_supported[] = {
613 /* Intel BayTrail has 7 I2C controller located on the PCI bus */
614 { PCI_VDEVICE(INTEL, 0x0f41) },
615 { PCI_VDEVICE(INTEL, 0x0f42) },
616 { PCI_VDEVICE(INTEL, 0x0f43) },
617 { PCI_VDEVICE(INTEL, 0x0f44) },
618 { PCI_VDEVICE(INTEL, 0x0f45) },
619 { PCI_VDEVICE(INTEL, 0x0f46) },
620 { PCI_VDEVICE(INTEL, 0x0f47) },
621 {},
622};
623
624U_BOOT_PCI_DEVICE(i2c_designware, designware_pci_supported);
625#endif
626
Stefan Roese3cb27962016-04-21 08:19:41 +0200627#endif /* CONFIG_DM_I2C */