blob: ad11e978ccdfc291be8e7c411d3b422046ba4e9d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +02002/*
3 * LPC32xx I2C interface driver
4 *
Sylvain Lemieux1933af12015-08-04 17:04:41 -04005 * (C) Copyright 2014-2015 DENX Software Engineering GmbH
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +02006 * Written-by: Albert ARIBAUD - 3ADEV <albert.aribaud@3adev.fr>
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +02007 */
8
9#include <common.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060010#include <log.h>
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +020011#include <asm/io.h>
12#include <i2c.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090013#include <linux/errno.h>
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +020014#include <asm/arch/clk.h>
Liam Beguinfb0578802017-03-14 11:24:44 -040015#include <asm/arch/i2c.h>
Liam Beguind61c7ad2017-03-27 11:13:12 -040016#include <dm.h>
17#include <mapmem.h>
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +020018
19/*
20 * Provide default speed and slave if target did not
21 */
22
23#if !defined(CONFIG_SYS_I2C_LPC32XX_SPEED)
24#define CONFIG_SYS_I2C_LPC32XX_SPEED 350000
25#endif
26
27#if !defined(CONFIG_SYS_I2C_LPC32XX_SLAVE)
28#define CONFIG_SYS_I2C_LPC32XX_SLAVE 0
29#endif
30
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +020031/* TX register fields */
32#define LPC32XX_I2C_TX_START 0x00000100
33#define LPC32XX_I2C_TX_STOP 0x00000200
34
35/* Control register values */
36#define LPC32XX_I2C_SOFT_RESET 0x00000100
37
38/* Status register values */
39#define LPC32XX_I2C_STAT_TFF 0x00000400
40#define LPC32XX_I2C_STAT_RFE 0x00000200
41#define LPC32XX_I2C_STAT_DRMI 0x00000008
42#define LPC32XX_I2C_STAT_NAI 0x00000004
43#define LPC32XX_I2C_STAT_TDI 0x00000001
44
Liam Beguind61c7ad2017-03-27 11:13:12 -040045#ifndef CONFIG_DM_I2C
Liam Beguineddac8e2017-03-27 11:11:36 -040046static struct lpc32xx_i2c_base *lpc32xx_i2c[] = {
47 (struct lpc32xx_i2c_base *)I2C1_BASE,
48 (struct lpc32xx_i2c_base *)I2C2_BASE,
49 (struct lpc32xx_i2c_base *)(USB_BASE + 0x300)
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +020050};
Liam Beguind61c7ad2017-03-27 11:13:12 -040051#endif
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +020052
53/* Set I2C bus speed */
Liam Beguineddac8e2017-03-27 11:11:36 -040054static unsigned int __i2c_set_bus_speed(struct lpc32xx_i2c_base *base,
55 unsigned int speed, unsigned int chip)
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +020056{
57 int half_period;
58
59 if (speed == 0)
60 return -EINVAL;
61
Vladimir Zapolskiyea16c6a2015-08-12 20:22:13 +030062 /* OTG I2C clock source and CLK registers are different */
Liam Beguineddac8e2017-03-27 11:11:36 -040063 if (chip == 2) {
Vladimir Zapolskiyea16c6a2015-08-12 20:22:13 +030064 half_period = (get_periph_clk_rate() / speed) / 2;
65 if (half_period > 0xFF)
66 return -EINVAL;
67 } else {
68 half_period = (get_hclk_clk_rate() / speed) / 2;
69 if (half_period > 0x3FF)
70 return -EINVAL;
71 }
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +020072
Liam Beguineddac8e2017-03-27 11:11:36 -040073 writel(half_period, &base->clk_hi);
74 writel(half_period, &base->clk_lo);
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +020075 return 0;
76}
77
78/* I2C init called by cmd_i2c when doing 'i2c reset'. */
Liam Beguineddac8e2017-03-27 11:11:36 -040079static void __i2c_init(struct lpc32xx_i2c_base *base,
80 int requested_speed, int slaveadd, unsigned int chip)
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +020081{
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +020082 /* soft reset (auto-clears) */
Liam Beguineddac8e2017-03-27 11:11:36 -040083 writel(LPC32XX_I2C_SOFT_RESET, &base->ctrl);
Vladimir Zapolskiyea16c6a2015-08-12 20:22:13 +030084 /* set HI and LO periods for half of the default speed */
Liam Beguineddac8e2017-03-27 11:11:36 -040085 __i2c_set_bus_speed(base, requested_speed, chip);
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +020086}
87
88/* I2C probe called by cmd_i2c when doing 'i2c probe'. */
Liam Beguineddac8e2017-03-27 11:11:36 -040089static int __i2c_probe_chip(struct lpc32xx_i2c_base *base, u8 dev)
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +020090{
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +020091 int stat;
92
93 /* Soft-reset the controller */
Liam Beguineddac8e2017-03-27 11:11:36 -040094 writel(LPC32XX_I2C_SOFT_RESET, &base->ctrl);
95 while (readl(&base->ctrl) & LPC32XX_I2C_SOFT_RESET)
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +020096 ;
97 /* Addre slave for write with start before and stop after */
98 writel((dev<<1) | LPC32XX_I2C_TX_START | LPC32XX_I2C_TX_STOP,
Liam Beguineddac8e2017-03-27 11:11:36 -040099 &base->tx);
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200100 /* wait for end of transation */
Liam Beguineddac8e2017-03-27 11:11:36 -0400101 while (!((stat = readl(&base->stat)) & LPC32XX_I2C_STAT_TDI))
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200102 ;
103 /* was there no acknowledge? */
104 return (stat & LPC32XX_I2C_STAT_NAI) ? -1 : 0;
105}
106
107/*
108 * I2C read called by cmd_i2c when doing 'i2c read' and by cmd_eeprom.c
109 * Begin write, send address byte(s), begin read, receive data bytes, end.
110 */
Liam Beguineddac8e2017-03-27 11:11:36 -0400111static int __i2c_read(struct lpc32xx_i2c_base *base, u8 dev, uint addr,
112 int alen, u8 *data, int length)
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200113{
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200114 int stat, wlen;
115
116 /* Soft-reset the controller */
Liam Beguineddac8e2017-03-27 11:11:36 -0400117 writel(LPC32XX_I2C_SOFT_RESET, &base->ctrl);
118 while (readl(&base->ctrl) & LPC32XX_I2C_SOFT_RESET)
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200119 ;
120 /* do we need to write an address at all? */
121 if (alen) {
122 /* Address slave in write mode */
Liam Beguineddac8e2017-03-27 11:11:36 -0400123 writel((dev<<1) | LPC32XX_I2C_TX_START, &base->tx);
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200124 /* write address bytes */
125 while (alen--) {
126 /* compute address byte + stop for the last one */
127 int a = (addr >> (8 * alen)) & 0xff;
128 if (!alen)
129 a |= LPC32XX_I2C_TX_STOP;
130 /* Send address byte */
Liam Beguineddac8e2017-03-27 11:11:36 -0400131 writel(a, &base->tx);
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200132 }
133 /* wait for end of transation */
Liam Beguineddac8e2017-03-27 11:11:36 -0400134 while (!((stat = readl(&base->stat)) & LPC32XX_I2C_STAT_TDI))
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200135 ;
136 /* clear end-of-transaction flag */
Liam Beguineddac8e2017-03-27 11:11:36 -0400137 writel(1, &base->stat);
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200138 }
139 /* do we have to read data at all? */
140 if (length) {
141 /* Address slave in read mode */
Liam Beguineddac8e2017-03-27 11:11:36 -0400142 writel(1 | (dev<<1) | LPC32XX_I2C_TX_START, &base->tx);
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200143 wlen = length;
144 /* get data */
145 while (length | wlen) {
146 /* read status for TFF and RFE */
Liam Beguineddac8e2017-03-27 11:11:36 -0400147 stat = readl(&base->stat);
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200148 /* must we, can we write a trigger byte? */
149 if ((wlen > 0)
150 & (!(stat & LPC32XX_I2C_STAT_TFF))) {
151 wlen--;
152 /* write trigger byte + stop if last */
153 writel(wlen ? 0 :
Liam Beguineddac8e2017-03-27 11:11:36 -0400154 LPC32XX_I2C_TX_STOP, &base->tx);
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200155 }
156 /* must we, can we read a data byte? */
157 if ((length > 0)
158 & (!(stat & LPC32XX_I2C_STAT_RFE))) {
159 length--;
160 /* read byte */
Liam Beguineddac8e2017-03-27 11:11:36 -0400161 *(data++) = readl(&base->rx);
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200162 }
163 }
Sylvain Lemieux3d2b6a22015-07-27 13:37:38 -0400164 /* wait for end of transation */
Liam Beguineddac8e2017-03-27 11:11:36 -0400165 while (!((stat = readl(&base->stat)) & LPC32XX_I2C_STAT_TDI))
Sylvain Lemieux3d2b6a22015-07-27 13:37:38 -0400166 ;
167 /* clear end-of-transaction flag */
Liam Beguineddac8e2017-03-27 11:11:36 -0400168 writel(1, &base->stat);
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200169 }
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200170 /* success */
171 return 0;
172}
173
174/*
175 * I2C write called by cmd_i2c when doing 'i2c write' and by cmd_eeprom.c
176 * Begin write, send address byte(s), send data bytes, end.
177 */
Liam Beguineddac8e2017-03-27 11:11:36 -0400178static int __i2c_write(struct lpc32xx_i2c_base *base, u8 dev, uint addr,
179 int alen, u8 *data, int length)
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200180{
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200181 int stat;
182
183 /* Soft-reset the controller */
Liam Beguineddac8e2017-03-27 11:11:36 -0400184 writel(LPC32XX_I2C_SOFT_RESET, &base->ctrl);
185 while (readl(&base->ctrl) & LPC32XX_I2C_SOFT_RESET)
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200186 ;
187 /* do we need to write anything at all? */
188 if (alen | length)
189 /* Address slave in write mode */
Liam Beguineddac8e2017-03-27 11:11:36 -0400190 writel((dev<<1) | LPC32XX_I2C_TX_START, &base->tx);
Sylvain Lemieux58243002015-07-27 13:37:39 -0400191 else
192 return 0;
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200193 /* write address bytes */
194 while (alen) {
195 /* wait for transmit fifo not full */
Liam Beguineddac8e2017-03-27 11:11:36 -0400196 stat = readl(&base->stat);
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200197 if (!(stat & LPC32XX_I2C_STAT_TFF)) {
198 alen--;
199 int a = (addr >> (8 * alen)) & 0xff;
200 if (!(alen | length))
201 a |= LPC32XX_I2C_TX_STOP;
202 /* Send address byte */
Liam Beguineddac8e2017-03-27 11:11:36 -0400203 writel(a, &base->tx);
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200204 }
205 }
206 while (length) {
207 /* wait for transmit fifo not full */
Liam Beguineddac8e2017-03-27 11:11:36 -0400208 stat = readl(&base->stat);
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200209 if (!(stat & LPC32XX_I2C_STAT_TFF)) {
210 /* compute data byte, add stop if length==0 */
211 length--;
212 int d = *(data++);
213 if (!length)
214 d |= LPC32XX_I2C_TX_STOP;
215 /* Send data byte */
Liam Beguineddac8e2017-03-27 11:11:36 -0400216 writel(d, &base->tx);
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200217 }
218 }
219 /* wait for end of transation */
Liam Beguineddac8e2017-03-27 11:11:36 -0400220 while (!((stat = readl(&base->stat)) & LPC32XX_I2C_STAT_TDI))
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200221 ;
222 /* clear end-of-transaction flag */
Liam Beguineddac8e2017-03-27 11:11:36 -0400223 writel(1, &base->stat);
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200224 return 0;
225}
226
Liam Beguind61c7ad2017-03-27 11:13:12 -0400227#ifndef CONFIG_DM_I2C
Liam Beguin552531e2017-03-14 11:24:40 -0400228static void lpc32xx_i2c_init(struct i2c_adapter *adap,
229 int requested_speed, int slaveadd)
230{
Liam Beguineddac8e2017-03-27 11:11:36 -0400231 __i2c_init(lpc32xx_i2c[adap->hwadapnr], requested_speed, slaveadd,
232 adap->hwadapnr);
Liam Beguin552531e2017-03-14 11:24:40 -0400233}
234
235static int lpc32xx_i2c_probe_chip(struct i2c_adapter *adap, u8 dev)
236{
Liam Beguineddac8e2017-03-27 11:11:36 -0400237 return __i2c_probe_chip(lpc32xx_i2c[adap->hwadapnr], dev);
Liam Beguin552531e2017-03-14 11:24:40 -0400238}
239
240static int lpc32xx_i2c_read(struct i2c_adapter *adap, u8 dev, uint addr,
241 int alen, u8 *data, int length)
242{
Liam Beguineddac8e2017-03-27 11:11:36 -0400243 return __i2c_read(lpc32xx_i2c[adap->hwadapnr], dev, addr,
244 alen, data, length);
Liam Beguin552531e2017-03-14 11:24:40 -0400245}
246
247static int lpc32xx_i2c_write(struct i2c_adapter *adap, u8 dev, uint addr,
248 int alen, u8 *data, int length)
249{
Liam Beguineddac8e2017-03-27 11:11:36 -0400250 return __i2c_write(lpc32xx_i2c[adap->hwadapnr], dev, addr,
251 alen, data, length);
Liam Beguin552531e2017-03-14 11:24:40 -0400252}
253
254static unsigned int lpc32xx_i2c_set_bus_speed(struct i2c_adapter *adap,
255 unsigned int speed)
256{
Liam Beguineddac8e2017-03-27 11:11:36 -0400257 return __i2c_set_bus_speed(lpc32xx_i2c[adap->hwadapnr], speed,
258 adap->hwadapnr);
Liam Beguin552531e2017-03-14 11:24:40 -0400259}
260
261U_BOOT_I2C_ADAP_COMPLETE(lpc32xx_0, lpc32xx_i2c_init, lpc32xx_i2c_probe_chip,
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200262 lpc32xx_i2c_read, lpc32xx_i2c_write,
263 lpc32xx_i2c_set_bus_speed,
264 CONFIG_SYS_I2C_LPC32XX_SPEED,
265 CONFIG_SYS_I2C_LPC32XX_SLAVE,
266 0)
267
Liam Beguin552531e2017-03-14 11:24:40 -0400268U_BOOT_I2C_ADAP_COMPLETE(lpc32xx_1, lpc32xx_i2c_init, lpc32xx_i2c_probe_chip,
Albert ARIBAUD \(3ADEV\)5e862b92015-03-31 11:40:45 +0200269 lpc32xx_i2c_read, lpc32xx_i2c_write,
270 lpc32xx_i2c_set_bus_speed,
271 CONFIG_SYS_I2C_LPC32XX_SPEED,
272 CONFIG_SYS_I2C_LPC32XX_SLAVE,
273 1)
Sylvain Lemieux1933af12015-08-04 17:04:41 -0400274
Liam Beguin552531e2017-03-14 11:24:40 -0400275U_BOOT_I2C_ADAP_COMPLETE(lpc32xx_2, lpc32xx_i2c_init, NULL,
Sylvain Lemieux1933af12015-08-04 17:04:41 -0400276 lpc32xx_i2c_read, lpc32xx_i2c_write,
277 lpc32xx_i2c_set_bus_speed,
278 100000,
279 0,
280 2)
Liam Beguind61c7ad2017-03-27 11:13:12 -0400281#else /* CONFIG_DM_I2C */
282static int lpc32xx_i2c_probe(struct udevice *bus)
283{
Simon Glassc69cda22020-12-03 16:55:20 -0700284 struct lpc32xx_i2c_dev *dev = dev_get_plat(bus);
Simon Glass8b85dfc2020-12-16 21:20:07 -0700285
286 /*
287 * FIXME: This is not permitted
288 * dev_seq(bus) = dev->index;
289 */
Liam Beguind61c7ad2017-03-27 11:13:12 -0400290
291 __i2c_init(dev->base, dev->speed, 0, dev->index);
292 return 0;
293}
294
295static int lpc32xx_i2c_probe_chip(struct udevice *bus, u32 chip_addr,
296 u32 chip_flags)
297{
Simon Glassc69cda22020-12-03 16:55:20 -0700298 struct lpc32xx_i2c_dev *dev = dev_get_plat(bus);
Liam Beguind61c7ad2017-03-27 11:13:12 -0400299 return __i2c_probe_chip(dev->base, chip_addr);
300}
301
302static int lpc32xx_i2c_xfer(struct udevice *bus, struct i2c_msg *msg,
303 int nmsgs)
304{
Simon Glassc69cda22020-12-03 16:55:20 -0700305 struct lpc32xx_i2c_dev *dev = dev_get_plat(bus);
Liam Beguind61c7ad2017-03-27 11:13:12 -0400306 struct i2c_msg *dmsg, *omsg, dummy;
307 uint i = 0, address = 0;
308
309 memset(&dummy, 0, sizeof(struct i2c_msg));
310
311 /* We expect either two messages (one with an offset and one with the
312 * actual data) or one message (just data)
313 */
314 if (nmsgs > 2 || nmsgs == 0) {
315 debug("%s: Only one or two messages are supported.", __func__);
316 return -1;
317 }
318
319 omsg = nmsgs == 1 ? &dummy : msg;
320 dmsg = nmsgs == 1 ? msg : msg + 1;
321
322 /* the address is expected to be a uint, not a array. */
323 address = omsg->buf[0];
324 for (i = 1; i < omsg->len; i++)
325 address = (address << 8) + omsg->buf[i];
326
327 if (dmsg->flags & I2C_M_RD)
328 return __i2c_read(dev->base, dmsg->addr, address,
329 omsg->len, dmsg->buf, dmsg->len);
330 else
331 return __i2c_write(dev->base, dmsg->addr, address,
332 omsg->len, dmsg->buf, dmsg->len);
333}
334
335static int lpc32xx_i2c_set_bus_speed(struct udevice *bus, unsigned int speed)
336{
Simon Glassc69cda22020-12-03 16:55:20 -0700337 struct lpc32xx_i2c_dev *dev = dev_get_plat(bus);
Liam Beguind61c7ad2017-03-27 11:13:12 -0400338 return __i2c_set_bus_speed(dev->base, speed, dev->index);
339}
340
341static int lpc32xx_i2c_reset(struct udevice *bus)
342{
Simon Glassc69cda22020-12-03 16:55:20 -0700343 struct lpc32xx_i2c_dev *dev = dev_get_plat(bus);
Liam Beguind61c7ad2017-03-27 11:13:12 -0400344
345 __i2c_init(dev->base, dev->speed, 0, dev->index);
346 return 0;
347}
348
349static const struct dm_i2c_ops lpc32xx_i2c_ops = {
350 .xfer = lpc32xx_i2c_xfer,
351 .probe_chip = lpc32xx_i2c_probe_chip,
352 .deblock = lpc32xx_i2c_reset,
353 .set_bus_speed = lpc32xx_i2c_set_bus_speed,
354};
355
356U_BOOT_DRIVER(i2c_lpc32xx) = {
357 .id = UCLASS_I2C,
358 .name = "i2c_lpc32xx",
359 .probe = lpc32xx_i2c_probe,
360 .ops = &lpc32xx_i2c_ops,
361};
362#endif /* CONFIG_DM_I2C */