Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 | // SPDX-License-Identifier: GPL-2.0+ /* * LPC32xx I2C interface driver * * (C) Copyright 2014-2015 DENX Software Engineering GmbH * Written-by: Albert ARIBAUD - 3ADEV <albert.aribaud@3adev.fr> */ #include <config.h> #include <log.h> #include <asm/io.h> #include <i2c.h> #include <linux/errno.h> #include <asm/arch/clk.h> #include <asm/arch/i2c.h> #include <dm.h> #include <mapmem.h> /* * Provide default speed and slave if target did not */ #if !defined(CFG_SYS_I2C_LPC32XX_SPEED) #define CFG_SYS_I2C_LPC32XX_SPEED 350000 #endif #if !defined(CFG_SYS_I2C_LPC32XX_SLAVE) #define CFG_SYS_I2C_LPC32XX_SLAVE 0 #endif /* TX register fields */ #define LPC32XX_I2C_TX_START 0x00000100 #define LPC32XX_I2C_TX_STOP 0x00000200 /* Control register values */ #define LPC32XX_I2C_SOFT_RESET 0x00000100 /* Status register values */ #define LPC32XX_I2C_STAT_TFF 0x00000400 #define LPC32XX_I2C_STAT_RFE 0x00000200 #define LPC32XX_I2C_STAT_NAI 0x00000004 #define LPC32XX_I2C_STAT_TDI 0x00000001 #if !CONFIG_IS_ENABLED(DM_I2C) static struct lpc32xx_i2c_base *lpc32xx_i2c[] = { (struct lpc32xx_i2c_base *)I2C1_BASE, (struct lpc32xx_i2c_base *)I2C2_BASE, (struct lpc32xx_i2c_base *)(USB_BASE + 0x300) }; #endif /* Set I2C bus speed */ static unsigned int __i2c_set_bus_speed(struct lpc32xx_i2c_base *base, unsigned int speed, unsigned int chip) { int half_period; if (speed == 0) return -EINVAL; /* OTG I2C clock source and CLK registers are different */ if (chip == 2) { half_period = (get_periph_clk_rate() / speed) / 2; if (half_period > 0xFF) return -EINVAL; } else { half_period = (get_hclk_clk_rate() / speed) / 2; if (half_period > 0x3FF) return -EINVAL; } writel(half_period, &base->clk_hi); writel(half_period, &base->clk_lo); return 0; } /* I2C init called by cmd_i2c when doing 'i2c reset'. */ static void __i2c_init(struct lpc32xx_i2c_base *base, int requested_speed, int slaveadd, unsigned int chip) { /* soft reset (auto-clears) */ writel(LPC32XX_I2C_SOFT_RESET, &base->ctrl); /* set HI and LO periods for half of the default speed */ __i2c_set_bus_speed(base, requested_speed, chip); } /* I2C probe called by cmd_i2c when doing 'i2c probe'. */ static int __i2c_probe_chip(struct lpc32xx_i2c_base *base, u8 dev) { int stat; /* Soft-reset the controller */ writel(LPC32XX_I2C_SOFT_RESET, &base->ctrl); while (readl(&base->ctrl) & LPC32XX_I2C_SOFT_RESET) ; /* Addre slave for write with start before and stop after */ writel((dev<<1) | LPC32XX_I2C_TX_START | LPC32XX_I2C_TX_STOP, &base->tx); /* wait for end of transation */ while (!((stat = readl(&base->stat)) & LPC32XX_I2C_STAT_TDI)) ; /* was there no acknowledge? */ return (stat & LPC32XX_I2C_STAT_NAI) ? -1 : 0; } /* * I2C read called by cmd_i2c when doing 'i2c read' and by cmd_eeprom.c * Begin write, send address byte(s), begin read, receive data bytes, end. */ static int __i2c_read(struct lpc32xx_i2c_base *base, u8 dev, uint addr, int alen, u8 *data, int length) { int stat, wlen; /* Soft-reset the controller */ writel(LPC32XX_I2C_SOFT_RESET, &base->ctrl); while (readl(&base->ctrl) & LPC32XX_I2C_SOFT_RESET) ; /* do we need to write an address at all? */ if (alen) { /* Address slave in write mode */ writel((dev<<1) | LPC32XX_I2C_TX_START, &base->tx); /* write address bytes */ while (alen--) { /* compute address byte + stop for the last one */ int a = (addr >> (8 * alen)) & 0xff; if (!alen) a |= LPC32XX_I2C_TX_STOP; /* Send address byte */ writel(a, &base->tx); } /* wait for end of transation */ while (!((stat = readl(&base->stat)) & LPC32XX_I2C_STAT_TDI)) ; /* clear end-of-transaction flag */ writel(1, &base->stat); } /* do we have to read data at all? */ if (length) { /* Address slave in read mode */ writel(1 | (dev<<1) | LPC32XX_I2C_TX_START, &base->tx); wlen = length; /* get data */ while (length | wlen) { /* read status for TFF and RFE */ stat = readl(&base->stat); /* must we, can we write a trigger byte? */ if ((wlen > 0) & (!(stat & LPC32XX_I2C_STAT_TFF))) { wlen--; /* write trigger byte + stop if last */ writel(wlen ? 0 : LPC32XX_I2C_TX_STOP, &base->tx); } /* must we, can we read a data byte? */ if ((length > 0) & (!(stat & LPC32XX_I2C_STAT_RFE))) { length--; /* read byte */ *(data++) = readl(&base->rx); } } /* wait for end of transation */ while (!((stat = readl(&base->stat)) & LPC32XX_I2C_STAT_TDI)) ; /* clear end-of-transaction flag */ writel(1, &base->stat); } /* success */ return 0; } /* * I2C write called by cmd_i2c when doing 'i2c write' and by cmd_eeprom.c * Begin write, send address byte(s), send data bytes, end. */ static int __i2c_write(struct lpc32xx_i2c_base *base, u8 dev, uint addr, int alen, u8 *data, int length) { int stat; /* Soft-reset the controller */ writel(LPC32XX_I2C_SOFT_RESET, &base->ctrl); while (readl(&base->ctrl) & LPC32XX_I2C_SOFT_RESET) ; /* do we need to write anything at all? */ if (alen | length) /* Address slave in write mode */ writel((dev<<1) | LPC32XX_I2C_TX_START, &base->tx); else return 0; /* write address bytes */ while (alen) { /* wait for transmit fifo not full */ stat = readl(&base->stat); if (!(stat & LPC32XX_I2C_STAT_TFF)) { alen--; int a = (addr >> (8 * alen)) & 0xff; if (!(alen | length)) a |= LPC32XX_I2C_TX_STOP; /* Send address byte */ writel(a, &base->tx); } } while (length) { /* wait for transmit fifo not full */ stat = readl(&base->stat); if (!(stat & LPC32XX_I2C_STAT_TFF)) { /* compute data byte, add stop if length==0 */ length--; int d = *(data++); if (!length) d |= LPC32XX_I2C_TX_STOP; /* Send data byte */ writel(d, &base->tx); } } /* wait for end of transation */ while (!((stat = readl(&base->stat)) & LPC32XX_I2C_STAT_TDI)) ; /* clear end-of-transaction flag */ writel(1, &base->stat); return 0; } #if !CONFIG_IS_ENABLED(DM_I2C) static void lpc32xx_i2c_init(struct i2c_adapter *adap, int requested_speed, int slaveadd) { __i2c_init(lpc32xx_i2c[adap->hwadapnr], requested_speed, slaveadd, adap->hwadapnr); } static int lpc32xx_i2c_probe_chip(struct i2c_adapter *adap, u8 dev) { return __i2c_probe_chip(lpc32xx_i2c[adap->hwadapnr], dev); } static int lpc32xx_i2c_read(struct i2c_adapter *adap, u8 dev, uint addr, int alen, u8 *data, int length) { return __i2c_read(lpc32xx_i2c[adap->hwadapnr], dev, addr, alen, data, length); } static int lpc32xx_i2c_write(struct i2c_adapter *adap, u8 dev, uint addr, int alen, u8 *data, int length) { return __i2c_write(lpc32xx_i2c[adap->hwadapnr], dev, addr, alen, data, length); } static unsigned int lpc32xx_i2c_set_bus_speed(struct i2c_adapter *adap, unsigned int speed) { return __i2c_set_bus_speed(lpc32xx_i2c[adap->hwadapnr], speed, adap->hwadapnr); } U_BOOT_I2C_ADAP_COMPLETE(lpc32xx_0, lpc32xx_i2c_init, lpc32xx_i2c_probe_chip, lpc32xx_i2c_read, lpc32xx_i2c_write, lpc32xx_i2c_set_bus_speed, CFG_SYS_I2C_LPC32XX_SPEED, CFG_SYS_I2C_LPC32XX_SLAVE, 0) U_BOOT_I2C_ADAP_COMPLETE(lpc32xx_1, lpc32xx_i2c_init, lpc32xx_i2c_probe_chip, lpc32xx_i2c_read, lpc32xx_i2c_write, lpc32xx_i2c_set_bus_speed, CFG_SYS_I2C_LPC32XX_SPEED, CFG_SYS_I2C_LPC32XX_SLAVE, 1) U_BOOT_I2C_ADAP_COMPLETE(lpc32xx_2, lpc32xx_i2c_init, NULL, lpc32xx_i2c_read, lpc32xx_i2c_write, lpc32xx_i2c_set_bus_speed, 100000, 0, 2) #else /* CONFIG_DM_I2C */ static int lpc32xx_i2c_probe(struct udevice *bus) { struct lpc32xx_i2c_dev *dev = dev_get_plat(bus); dev->base = dev_read_addr_ptr(bus); __i2c_init(dev->base, dev->speed, 0, dev->index); return 0; } static int lpc32xx_i2c_probe_chip(struct udevice *bus, u32 chip_addr, u32 chip_flags) { struct lpc32xx_i2c_dev *dev = dev_get_plat(bus); return __i2c_probe_chip(dev->base, chip_addr); } static int lpc32xx_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs) { struct lpc32xx_i2c_dev *dev = dev_get_plat(bus); struct i2c_msg *dmsg, *omsg, dummy; uint i = 0, address = 0; memset(&dummy, 0, sizeof(struct i2c_msg)); /* We expect either two messages (one with an offset and one with the * actual data) or one message (just data) */ if (nmsgs > 2 || nmsgs == 0) { debug("%s: Only one or two messages are supported.", __func__); return -1; } omsg = nmsgs == 1 ? &dummy : msg; dmsg = nmsgs == 1 ? msg : msg + 1; /* the address is expected to be a uint, not a array. */ address = omsg->buf[0]; for (i = 1; i < omsg->len; i++) address = (address << 8) + omsg->buf[i]; if (dmsg->flags & I2C_M_RD) return __i2c_read(dev->base, dmsg->addr, address, omsg->len, dmsg->buf, dmsg->len); else return __i2c_write(dev->base, dmsg->addr, address, omsg->len, dmsg->buf, dmsg->len); } static int lpc32xx_i2c_set_bus_speed(struct udevice *bus, unsigned int speed) { struct lpc32xx_i2c_dev *dev = dev_get_plat(bus); return __i2c_set_bus_speed(dev->base, speed, dev->index); } static int lpc32xx_i2c_reset(struct udevice *bus) { struct lpc32xx_i2c_dev *dev = dev_get_plat(bus); __i2c_init(dev->base, dev->speed, 0, dev->index); return 0; } static const struct dm_i2c_ops lpc32xx_i2c_ops = { .xfer = lpc32xx_i2c_xfer, .probe_chip = lpc32xx_i2c_probe_chip, .deblock = lpc32xx_i2c_reset, .set_bus_speed = lpc32xx_i2c_set_bus_speed, }; static const struct udevice_id lpc32xx_i2c_ids[] = { { .compatible = "nxp,pnx-i2c" }, { } }; U_BOOT_DRIVER(i2c_lpc32xx) = { .name = "i2c_lpc32xx", .id = UCLASS_I2C, .of_match = lpc32xx_i2c_ids, .probe = lpc32xx_i2c_probe, .ops = &lpc32xx_i2c_ops, }; #endif /* CONFIG_DM_I2C */ |