Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Freescale MXS I2C bus driver |
| 3 | * |
Wolfram Sang | 82fa63b | 2012-10-12 11:55:16 +0100 | [diff] [blame] | 4 | * Copyright (C) 2011-2012 Wolfram Sang, Pengutronix e.K. |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 5 | * |
| 6 | * based on a (non-working) driver which was: |
| 7 | * |
| 8 | * Copyright (C) 2009-2010 Freescale Semiconductor, Inc. All Rights Reserved. |
| 9 | * |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | */ |
| 16 | |
| 17 | #include <linux/slab.h> |
| 18 | #include <linux/device.h> |
| 19 | #include <linux/module.h> |
| 20 | #include <linux/i2c.h> |
| 21 | #include <linux/err.h> |
| 22 | #include <linux/interrupt.h> |
| 23 | #include <linux/completion.h> |
| 24 | #include <linux/platform_device.h> |
| 25 | #include <linux/jiffies.h> |
| 26 | #include <linux/io.h> |
Wolfram Sang | 6b866c1 | 2011-08-31 20:37:50 +0200 | [diff] [blame] | 27 | #include <linux/stmp_device.h> |
Shawn Guo | b237866 | 2012-05-12 13:43:32 +0800 | [diff] [blame] | 28 | #include <linux/of.h> |
| 29 | #include <linux/of_device.h> |
| 30 | #include <linux/of_i2c.h> |
Marek Vasut | 62885f5 | 2012-08-24 05:44:31 +0200 | [diff] [blame] | 31 | #include <linux/dma-mapping.h> |
| 32 | #include <linux/dmaengine.h> |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 33 | |
| 34 | #define DRIVER_NAME "mxs-i2c" |
| 35 | |
| 36 | #define MXS_I2C_CTRL0 (0x00) |
| 37 | #define MXS_I2C_CTRL0_SET (0x04) |
| 38 | |
| 39 | #define MXS_I2C_CTRL0_SFTRST 0x80000000 |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 40 | #define MXS_I2C_CTRL0_RUN 0x20000000 |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 41 | #define MXS_I2C_CTRL0_SEND_NAK_ON_LAST 0x02000000 |
| 42 | #define MXS_I2C_CTRL0_RETAIN_CLOCK 0x00200000 |
| 43 | #define MXS_I2C_CTRL0_POST_SEND_STOP 0x00100000 |
| 44 | #define MXS_I2C_CTRL0_PRE_SEND_START 0x00080000 |
| 45 | #define MXS_I2C_CTRL0_MASTER_MODE 0x00020000 |
| 46 | #define MXS_I2C_CTRL0_DIRECTION 0x00010000 |
| 47 | #define MXS_I2C_CTRL0_XFER_COUNT(v) ((v) & 0x0000FFFF) |
| 48 | |
Marek Vasut | cd4f2d4 | 2012-07-09 18:22:53 +0200 | [diff] [blame] | 49 | #define MXS_I2C_TIMING0 (0x10) |
| 50 | #define MXS_I2C_TIMING1 (0x20) |
| 51 | #define MXS_I2C_TIMING2 (0x30) |
| 52 | |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 53 | #define MXS_I2C_CTRL1 (0x40) |
| 54 | #define MXS_I2C_CTRL1_SET (0x44) |
| 55 | #define MXS_I2C_CTRL1_CLR (0x48) |
| 56 | |
Lucas Stach | 92b775c | 2013-04-15 00:16:55 +0000 | [diff] [blame] | 57 | #define MXS_I2C_CTRL1_CLR_GOT_A_NAK 0x10000000 |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 58 | #define MXS_I2C_CTRL1_BUS_FREE_IRQ 0x80 |
| 59 | #define MXS_I2C_CTRL1_DATA_ENGINE_CMPLT_IRQ 0x40 |
| 60 | #define MXS_I2C_CTRL1_NO_SLAVE_ACK_IRQ 0x20 |
| 61 | #define MXS_I2C_CTRL1_OVERSIZE_XFER_TERM_IRQ 0x10 |
| 62 | #define MXS_I2C_CTRL1_EARLY_TERM_IRQ 0x08 |
| 63 | #define MXS_I2C_CTRL1_MASTER_LOSS_IRQ 0x04 |
| 64 | #define MXS_I2C_CTRL1_SLAVE_STOP_IRQ 0x02 |
| 65 | #define MXS_I2C_CTRL1_SLAVE_IRQ 0x01 |
| 66 | |
Lucas Stach | 535ebd2 | 2013-04-15 00:16:54 +0000 | [diff] [blame] | 67 | #define MXS_I2C_STAT (0x50) |
| 68 | #define MXS_I2C_STAT_BUS_BUSY 0x00000800 |
| 69 | #define MXS_I2C_STAT_CLK_GEN_BUSY 0x00000400 |
| 70 | |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 71 | #define MXS_I2C_DATA (0xa0) |
| 72 | |
| 73 | #define MXS_I2C_DEBUG0 (0xb0) |
| 74 | #define MXS_I2C_DEBUG0_CLR (0xb8) |
| 75 | |
| 76 | #define MXS_I2C_DEBUG0_DMAREQ 0x80000000 |
| 77 | |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 78 | #define MXS_I2C_IRQ_MASK (MXS_I2C_CTRL1_DATA_ENGINE_CMPLT_IRQ | \ |
| 79 | MXS_I2C_CTRL1_NO_SLAVE_ACK_IRQ | \ |
| 80 | MXS_I2C_CTRL1_EARLY_TERM_IRQ | \ |
| 81 | MXS_I2C_CTRL1_MASTER_LOSS_IRQ | \ |
| 82 | MXS_I2C_CTRL1_SLAVE_STOP_IRQ | \ |
| 83 | MXS_I2C_CTRL1_SLAVE_IRQ) |
| 84 | |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 85 | |
| 86 | #define MXS_CMD_I2C_SELECT (MXS_I2C_CTRL0_RETAIN_CLOCK | \ |
| 87 | MXS_I2C_CTRL0_PRE_SEND_START | \ |
| 88 | MXS_I2C_CTRL0_MASTER_MODE | \ |
| 89 | MXS_I2C_CTRL0_DIRECTION | \ |
| 90 | MXS_I2C_CTRL0_XFER_COUNT(1)) |
| 91 | |
| 92 | #define MXS_CMD_I2C_WRITE (MXS_I2C_CTRL0_PRE_SEND_START | \ |
| 93 | MXS_I2C_CTRL0_MASTER_MODE | \ |
| 94 | MXS_I2C_CTRL0_DIRECTION) |
| 95 | |
| 96 | #define MXS_CMD_I2C_READ (MXS_I2C_CTRL0_SEND_NAK_ON_LAST | \ |
| 97 | MXS_I2C_CTRL0_MASTER_MODE) |
| 98 | |
| 99 | /** |
| 100 | * struct mxs_i2c_dev - per device, private MXS-I2C data |
| 101 | * |
| 102 | * @dev: driver model device node |
| 103 | * @regs: IO registers pointer |
| 104 | * @cmd_complete: completion object for transaction wait |
| 105 | * @cmd_err: error code for last transaction |
| 106 | * @adapter: i2c subsystem adapter node |
| 107 | */ |
| 108 | struct mxs_i2c_dev { |
| 109 | struct device *dev; |
| 110 | void __iomem *regs; |
| 111 | struct completion cmd_complete; |
Fabio Estevam | 0f40cbc | 2013-01-07 22:32:06 -0200 | [diff] [blame] | 112 | int cmd_err; |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 113 | struct i2c_adapter adapter; |
Marek Vasut | 626f0a2 | 2012-11-30 18:48:35 +0100 | [diff] [blame] | 114 | |
| 115 | uint32_t timing0; |
| 116 | uint32_t timing1; |
Marek Vasut | 62885f5 | 2012-08-24 05:44:31 +0200 | [diff] [blame] | 117 | |
| 118 | /* DMA support components */ |
Marek Vasut | 62885f5 | 2012-08-24 05:44:31 +0200 | [diff] [blame] | 119 | struct dma_chan *dmach; |
Marek Vasut | 62885f5 | 2012-08-24 05:44:31 +0200 | [diff] [blame] | 120 | uint32_t pio_data[2]; |
| 121 | uint32_t addr_data; |
| 122 | struct scatterlist sg_io[2]; |
| 123 | bool dma_read; |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 124 | }; |
| 125 | |
Fabio Estevam | 63151c5 | 2013-07-10 22:19:28 -0300 | [diff] [blame^] | 126 | static int mxs_i2c_reset(struct mxs_i2c_dev *i2c) |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 127 | { |
Fabio Estevam | 63151c5 | 2013-07-10 22:19:28 -0300 | [diff] [blame^] | 128 | int ret = stmp_reset_block(i2c->regs); |
| 129 | if (ret) |
| 130 | return ret; |
Marek Vasut | cd4f2d4 | 2012-07-09 18:22:53 +0200 | [diff] [blame] | 131 | |
Marek Vasut | 626f0a2 | 2012-11-30 18:48:35 +0100 | [diff] [blame] | 132 | /* |
| 133 | * Configure timing for the I2C block. The I2C TIMING2 register has to |
| 134 | * be programmed with this particular magic number. The rest is derived |
| 135 | * from the XTAL speed and requested I2C speed. |
| 136 | * |
| 137 | * For details, see i.MX233 [25.4.2 - 25.4.4] and i.MX28 [27.5.2 - 27.5.4]. |
| 138 | */ |
| 139 | writel(i2c->timing0, i2c->regs + MXS_I2C_TIMING0); |
| 140 | writel(i2c->timing1, i2c->regs + MXS_I2C_TIMING1); |
| 141 | writel(0x00300030, i2c->regs + MXS_I2C_TIMING2); |
Marek Vasut | cd4f2d4 | 2012-07-09 18:22:53 +0200 | [diff] [blame] | 142 | |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 143 | writel(MXS_I2C_IRQ_MASK << 8, i2c->regs + MXS_I2C_CTRL1_SET); |
Fabio Estevam | 63151c5 | 2013-07-10 22:19:28 -0300 | [diff] [blame^] | 144 | |
| 145 | return 0; |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 146 | } |
| 147 | |
Marek Vasut | 62885f5 | 2012-08-24 05:44:31 +0200 | [diff] [blame] | 148 | static void mxs_i2c_dma_finish(struct mxs_i2c_dev *i2c) |
| 149 | { |
| 150 | if (i2c->dma_read) { |
| 151 | dma_unmap_sg(i2c->dev, &i2c->sg_io[0], 1, DMA_TO_DEVICE); |
| 152 | dma_unmap_sg(i2c->dev, &i2c->sg_io[1], 1, DMA_FROM_DEVICE); |
| 153 | } else { |
| 154 | dma_unmap_sg(i2c->dev, i2c->sg_io, 2, DMA_TO_DEVICE); |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | static void mxs_i2c_dma_irq_callback(void *param) |
| 159 | { |
| 160 | struct mxs_i2c_dev *i2c = param; |
| 161 | |
| 162 | complete(&i2c->cmd_complete); |
| 163 | mxs_i2c_dma_finish(i2c); |
| 164 | } |
| 165 | |
| 166 | static int mxs_i2c_dma_setup_xfer(struct i2c_adapter *adap, |
| 167 | struct i2c_msg *msg, uint32_t flags) |
| 168 | { |
| 169 | struct dma_async_tx_descriptor *desc; |
| 170 | struct mxs_i2c_dev *i2c = i2c_get_adapdata(adap); |
| 171 | |
| 172 | if (msg->flags & I2C_M_RD) { |
| 173 | i2c->dma_read = 1; |
| 174 | i2c->addr_data = (msg->addr << 1) | I2C_SMBUS_READ; |
| 175 | |
| 176 | /* |
| 177 | * SELECT command. |
| 178 | */ |
| 179 | |
| 180 | /* Queue the PIO register write transfer. */ |
| 181 | i2c->pio_data[0] = MXS_CMD_I2C_SELECT; |
| 182 | desc = dmaengine_prep_slave_sg(i2c->dmach, |
| 183 | (struct scatterlist *)&i2c->pio_data[0], |
| 184 | 1, DMA_TRANS_NONE, 0); |
| 185 | if (!desc) { |
| 186 | dev_err(i2c->dev, |
| 187 | "Failed to get PIO reg. write descriptor.\n"); |
| 188 | goto select_init_pio_fail; |
| 189 | } |
| 190 | |
| 191 | /* Queue the DMA data transfer. */ |
| 192 | sg_init_one(&i2c->sg_io[0], &i2c->addr_data, 1); |
| 193 | dma_map_sg(i2c->dev, &i2c->sg_io[0], 1, DMA_TO_DEVICE); |
| 194 | desc = dmaengine_prep_slave_sg(i2c->dmach, &i2c->sg_io[0], 1, |
| 195 | DMA_MEM_TO_DEV, |
| 196 | DMA_PREP_INTERRUPT | DMA_CTRL_ACK); |
| 197 | if (!desc) { |
| 198 | dev_err(i2c->dev, |
| 199 | "Failed to get DMA data write descriptor.\n"); |
| 200 | goto select_init_dma_fail; |
| 201 | } |
| 202 | |
| 203 | /* |
| 204 | * READ command. |
| 205 | */ |
| 206 | |
| 207 | /* Queue the PIO register write transfer. */ |
| 208 | i2c->pio_data[1] = flags | MXS_CMD_I2C_READ | |
| 209 | MXS_I2C_CTRL0_XFER_COUNT(msg->len); |
| 210 | desc = dmaengine_prep_slave_sg(i2c->dmach, |
| 211 | (struct scatterlist *)&i2c->pio_data[1], |
| 212 | 1, DMA_TRANS_NONE, DMA_PREP_INTERRUPT); |
| 213 | if (!desc) { |
| 214 | dev_err(i2c->dev, |
| 215 | "Failed to get PIO reg. write descriptor.\n"); |
| 216 | goto select_init_dma_fail; |
| 217 | } |
| 218 | |
| 219 | /* Queue the DMA data transfer. */ |
| 220 | sg_init_one(&i2c->sg_io[1], msg->buf, msg->len); |
| 221 | dma_map_sg(i2c->dev, &i2c->sg_io[1], 1, DMA_FROM_DEVICE); |
| 222 | desc = dmaengine_prep_slave_sg(i2c->dmach, &i2c->sg_io[1], 1, |
| 223 | DMA_DEV_TO_MEM, |
| 224 | DMA_PREP_INTERRUPT | DMA_CTRL_ACK); |
| 225 | if (!desc) { |
| 226 | dev_err(i2c->dev, |
| 227 | "Failed to get DMA data write descriptor.\n"); |
| 228 | goto read_init_dma_fail; |
| 229 | } |
| 230 | } else { |
| 231 | i2c->dma_read = 0; |
| 232 | i2c->addr_data = (msg->addr << 1) | I2C_SMBUS_WRITE; |
| 233 | |
| 234 | /* |
| 235 | * WRITE command. |
| 236 | */ |
| 237 | |
| 238 | /* Queue the PIO register write transfer. */ |
| 239 | i2c->pio_data[0] = flags | MXS_CMD_I2C_WRITE | |
| 240 | MXS_I2C_CTRL0_XFER_COUNT(msg->len + 1); |
| 241 | desc = dmaengine_prep_slave_sg(i2c->dmach, |
| 242 | (struct scatterlist *)&i2c->pio_data[0], |
| 243 | 1, DMA_TRANS_NONE, 0); |
| 244 | if (!desc) { |
| 245 | dev_err(i2c->dev, |
| 246 | "Failed to get PIO reg. write descriptor.\n"); |
| 247 | goto write_init_pio_fail; |
| 248 | } |
| 249 | |
| 250 | /* Queue the DMA data transfer. */ |
| 251 | sg_init_table(i2c->sg_io, 2); |
| 252 | sg_set_buf(&i2c->sg_io[0], &i2c->addr_data, 1); |
| 253 | sg_set_buf(&i2c->sg_io[1], msg->buf, msg->len); |
| 254 | dma_map_sg(i2c->dev, i2c->sg_io, 2, DMA_TO_DEVICE); |
| 255 | desc = dmaengine_prep_slave_sg(i2c->dmach, i2c->sg_io, 2, |
| 256 | DMA_MEM_TO_DEV, |
| 257 | DMA_PREP_INTERRUPT | DMA_CTRL_ACK); |
| 258 | if (!desc) { |
| 259 | dev_err(i2c->dev, |
| 260 | "Failed to get DMA data write descriptor.\n"); |
| 261 | goto write_init_dma_fail; |
| 262 | } |
| 263 | } |
| 264 | |
| 265 | /* |
| 266 | * The last descriptor must have this callback, |
| 267 | * to finish the DMA transaction. |
| 268 | */ |
| 269 | desc->callback = mxs_i2c_dma_irq_callback; |
| 270 | desc->callback_param = i2c; |
| 271 | |
| 272 | /* Start the transfer. */ |
| 273 | dmaengine_submit(desc); |
| 274 | dma_async_issue_pending(i2c->dmach); |
| 275 | return 0; |
| 276 | |
| 277 | /* Read failpath. */ |
| 278 | read_init_dma_fail: |
| 279 | dma_unmap_sg(i2c->dev, &i2c->sg_io[1], 1, DMA_FROM_DEVICE); |
| 280 | select_init_dma_fail: |
| 281 | dma_unmap_sg(i2c->dev, &i2c->sg_io[0], 1, DMA_TO_DEVICE); |
| 282 | select_init_pio_fail: |
Marek Vasut | c35d3cf | 2012-11-18 06:25:07 +0100 | [diff] [blame] | 283 | dmaengine_terminate_all(i2c->dmach); |
Marek Vasut | 62885f5 | 2012-08-24 05:44:31 +0200 | [diff] [blame] | 284 | return -EINVAL; |
| 285 | |
| 286 | /* Write failpath. */ |
| 287 | write_init_dma_fail: |
| 288 | dma_unmap_sg(i2c->dev, i2c->sg_io, 2, DMA_TO_DEVICE); |
| 289 | write_init_pio_fail: |
Marek Vasut | c35d3cf | 2012-11-18 06:25:07 +0100 | [diff] [blame] | 290 | dmaengine_terminate_all(i2c->dmach); |
Marek Vasut | 62885f5 | 2012-08-24 05:44:31 +0200 | [diff] [blame] | 291 | return -EINVAL; |
| 292 | } |
| 293 | |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 294 | static int mxs_i2c_pio_wait_dmareq(struct mxs_i2c_dev *i2c) |
| 295 | { |
| 296 | unsigned long timeout = jiffies + msecs_to_jiffies(1000); |
| 297 | |
| 298 | while (!(readl(i2c->regs + MXS_I2C_DEBUG0) & |
| 299 | MXS_I2C_DEBUG0_DMAREQ)) { |
| 300 | if (time_after(jiffies, timeout)) |
| 301 | return -ETIMEDOUT; |
| 302 | cond_resched(); |
| 303 | } |
| 304 | |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 305 | return 0; |
| 306 | } |
| 307 | |
Lucas Stach | 535ebd2 | 2013-04-15 00:16:54 +0000 | [diff] [blame] | 308 | static int mxs_i2c_pio_wait_cplt(struct mxs_i2c_dev *i2c, int last) |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 309 | { |
| 310 | unsigned long timeout = jiffies + msecs_to_jiffies(1000); |
| 311 | |
| 312 | /* |
| 313 | * We do not use interrupts in the PIO mode. Due to the |
| 314 | * maximum transfer length being 8 bytes in PIO mode, the |
| 315 | * overhead of interrupt would be too large and this would |
| 316 | * neglect the gain from using the PIO mode. |
| 317 | */ |
| 318 | |
| 319 | while (!(readl(i2c->regs + MXS_I2C_CTRL1) & |
| 320 | MXS_I2C_CTRL1_DATA_ENGINE_CMPLT_IRQ)) { |
| 321 | if (time_after(jiffies, timeout)) |
| 322 | return -ETIMEDOUT; |
| 323 | cond_resched(); |
| 324 | } |
| 325 | |
| 326 | writel(MXS_I2C_CTRL1_DATA_ENGINE_CMPLT_IRQ, |
| 327 | i2c->regs + MXS_I2C_CTRL1_CLR); |
| 328 | |
Lucas Stach | 535ebd2 | 2013-04-15 00:16:54 +0000 | [diff] [blame] | 329 | /* |
| 330 | * When ending a transfer with a stop, we have to wait for the bus to |
| 331 | * go idle before we report the transfer as completed. Otherwise the |
| 332 | * start of the next transfer may race with the end of the current one. |
| 333 | */ |
| 334 | while (last && (readl(i2c->regs + MXS_I2C_STAT) & |
| 335 | (MXS_I2C_STAT_BUS_BUSY | MXS_I2C_STAT_CLK_GEN_BUSY))) { |
| 336 | if (time_after(jiffies, timeout)) |
| 337 | return -ETIMEDOUT; |
| 338 | cond_resched(); |
| 339 | } |
| 340 | |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 341 | return 0; |
| 342 | } |
| 343 | |
Lucas Stach | 92b775c | 2013-04-15 00:16:55 +0000 | [diff] [blame] | 344 | static int mxs_i2c_pio_check_error_state(struct mxs_i2c_dev *i2c) |
| 345 | { |
| 346 | u32 state; |
| 347 | |
| 348 | state = readl(i2c->regs + MXS_I2C_CTRL1_CLR) & MXS_I2C_IRQ_MASK; |
| 349 | |
| 350 | if (state & MXS_I2C_CTRL1_NO_SLAVE_ACK_IRQ) |
| 351 | i2c->cmd_err = -ENXIO; |
| 352 | else if (state & (MXS_I2C_CTRL1_EARLY_TERM_IRQ | |
| 353 | MXS_I2C_CTRL1_MASTER_LOSS_IRQ | |
| 354 | MXS_I2C_CTRL1_SLAVE_STOP_IRQ | |
| 355 | MXS_I2C_CTRL1_SLAVE_IRQ)) |
| 356 | i2c->cmd_err = -EIO; |
| 357 | |
| 358 | return i2c->cmd_err; |
| 359 | } |
| 360 | |
Lucas Stach | 535ebd2 | 2013-04-15 00:16:54 +0000 | [diff] [blame] | 361 | static void mxs_i2c_pio_trigger_cmd(struct mxs_i2c_dev *i2c, u32 cmd) |
| 362 | { |
| 363 | u32 reg; |
| 364 | |
| 365 | writel(cmd, i2c->regs + MXS_I2C_CTRL0); |
| 366 | |
| 367 | /* readback makes sure the write is latched into hardware */ |
| 368 | reg = readl(i2c->regs + MXS_I2C_CTRL0); |
| 369 | reg |= MXS_I2C_CTRL0_RUN; |
| 370 | writel(reg, i2c->regs + MXS_I2C_CTRL0); |
| 371 | } |
| 372 | |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 373 | static int mxs_i2c_pio_setup_xfer(struct i2c_adapter *adap, |
| 374 | struct i2c_msg *msg, uint32_t flags) |
| 375 | { |
| 376 | struct mxs_i2c_dev *i2c = i2c_get_adapdata(adap); |
| 377 | uint32_t addr_data = msg->addr << 1; |
| 378 | uint32_t data = 0; |
| 379 | int i, shifts_left, ret; |
| 380 | |
| 381 | /* Mute IRQs coming from this block. */ |
| 382 | writel(MXS_I2C_IRQ_MASK << 8, i2c->regs + MXS_I2C_CTRL1_CLR); |
| 383 | |
| 384 | if (msg->flags & I2C_M_RD) { |
| 385 | addr_data |= I2C_SMBUS_READ; |
| 386 | |
| 387 | /* SELECT command. */ |
Lucas Stach | 535ebd2 | 2013-04-15 00:16:54 +0000 | [diff] [blame] | 388 | mxs_i2c_pio_trigger_cmd(i2c, MXS_CMD_I2C_SELECT); |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 389 | |
| 390 | ret = mxs_i2c_pio_wait_dmareq(i2c); |
| 391 | if (ret) |
| 392 | return ret; |
| 393 | |
| 394 | writel(addr_data, i2c->regs + MXS_I2C_DATA); |
Lucas Stach | 535ebd2 | 2013-04-15 00:16:54 +0000 | [diff] [blame] | 395 | writel(MXS_I2C_DEBUG0_DMAREQ, i2c->regs + MXS_I2C_DEBUG0_CLR); |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 396 | |
Lucas Stach | 535ebd2 | 2013-04-15 00:16:54 +0000 | [diff] [blame] | 397 | ret = mxs_i2c_pio_wait_cplt(i2c, 0); |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 398 | if (ret) |
| 399 | return ret; |
| 400 | |
Lucas Stach | 92b775c | 2013-04-15 00:16:55 +0000 | [diff] [blame] | 401 | if (mxs_i2c_pio_check_error_state(i2c)) |
| 402 | goto cleanup; |
| 403 | |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 404 | /* READ command. */ |
Lucas Stach | 535ebd2 | 2013-04-15 00:16:54 +0000 | [diff] [blame] | 405 | mxs_i2c_pio_trigger_cmd(i2c, |
| 406 | MXS_CMD_I2C_READ | flags | |
| 407 | MXS_I2C_CTRL0_XFER_COUNT(msg->len)); |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 408 | |
| 409 | for (i = 0; i < msg->len; i++) { |
| 410 | if ((i & 3) == 0) { |
| 411 | ret = mxs_i2c_pio_wait_dmareq(i2c); |
| 412 | if (ret) |
| 413 | return ret; |
| 414 | data = readl(i2c->regs + MXS_I2C_DATA); |
Lucas Stach | 535ebd2 | 2013-04-15 00:16:54 +0000 | [diff] [blame] | 415 | writel(MXS_I2C_DEBUG0_DMAREQ, |
| 416 | i2c->regs + MXS_I2C_DEBUG0_CLR); |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 417 | } |
| 418 | msg->buf[i] = data & 0xff; |
| 419 | data >>= 8; |
| 420 | } |
| 421 | } else { |
| 422 | addr_data |= I2C_SMBUS_WRITE; |
| 423 | |
| 424 | /* WRITE command. */ |
Lucas Stach | 535ebd2 | 2013-04-15 00:16:54 +0000 | [diff] [blame] | 425 | mxs_i2c_pio_trigger_cmd(i2c, |
| 426 | MXS_CMD_I2C_WRITE | flags | |
| 427 | MXS_I2C_CTRL0_XFER_COUNT(msg->len + 1)); |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 428 | |
| 429 | /* |
| 430 | * The LSB of data buffer is the first byte blasted across |
| 431 | * the bus. Higher order bytes follow. Thus the following |
| 432 | * filling schematic. |
| 433 | */ |
| 434 | data = addr_data << 24; |
| 435 | for (i = 0; i < msg->len; i++) { |
| 436 | data >>= 8; |
| 437 | data |= (msg->buf[i] << 24); |
| 438 | if ((i & 3) == 2) { |
| 439 | ret = mxs_i2c_pio_wait_dmareq(i2c); |
| 440 | if (ret) |
| 441 | return ret; |
| 442 | writel(data, i2c->regs + MXS_I2C_DATA); |
Lucas Stach | 535ebd2 | 2013-04-15 00:16:54 +0000 | [diff] [blame] | 443 | writel(MXS_I2C_DEBUG0_DMAREQ, |
| 444 | i2c->regs + MXS_I2C_DEBUG0_CLR); |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 445 | } |
| 446 | } |
| 447 | |
| 448 | shifts_left = 24 - (i & 3) * 8; |
| 449 | if (shifts_left) { |
| 450 | data >>= shifts_left; |
| 451 | ret = mxs_i2c_pio_wait_dmareq(i2c); |
| 452 | if (ret) |
| 453 | return ret; |
| 454 | writel(data, i2c->regs + MXS_I2C_DATA); |
Lucas Stach | 535ebd2 | 2013-04-15 00:16:54 +0000 | [diff] [blame] | 455 | writel(MXS_I2C_DEBUG0_DMAREQ, |
| 456 | i2c->regs + MXS_I2C_DEBUG0_CLR); |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 457 | } |
| 458 | } |
| 459 | |
Lucas Stach | 535ebd2 | 2013-04-15 00:16:54 +0000 | [diff] [blame] | 460 | ret = mxs_i2c_pio_wait_cplt(i2c, flags & MXS_I2C_CTRL0_POST_SEND_STOP); |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 461 | if (ret) |
| 462 | return ret; |
| 463 | |
Lucas Stach | 92b775c | 2013-04-15 00:16:55 +0000 | [diff] [blame] | 464 | /* make sure we capture any occurred error into cmd_err */ |
| 465 | mxs_i2c_pio_check_error_state(i2c); |
| 466 | |
| 467 | cleanup: |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 468 | /* Clear any dangling IRQs and re-enable interrupts. */ |
| 469 | writel(MXS_I2C_IRQ_MASK, i2c->regs + MXS_I2C_CTRL1_CLR); |
| 470 | writel(MXS_I2C_IRQ_MASK << 8, i2c->regs + MXS_I2C_CTRL1_SET); |
| 471 | |
| 472 | return 0; |
| 473 | } |
| 474 | |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 475 | /* |
| 476 | * Low level master read/write transaction. |
| 477 | */ |
| 478 | static int mxs_i2c_xfer_msg(struct i2c_adapter *adap, struct i2c_msg *msg, |
| 479 | int stop) |
| 480 | { |
| 481 | struct mxs_i2c_dev *i2c = i2c_get_adapdata(adap); |
Fabio Estevam | 63151c5 | 2013-07-10 22:19:28 -0300 | [diff] [blame^] | 482 | int ret, err; |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 483 | int flags; |
| 484 | |
Marek Vasut | 62885f5 | 2012-08-24 05:44:31 +0200 | [diff] [blame] | 485 | flags = stop ? MXS_I2C_CTRL0_POST_SEND_STOP : 0; |
| 486 | |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 487 | dev_dbg(i2c->dev, "addr: 0x%04x, len: %d, flags: 0x%x, stop: %d\n", |
| 488 | msg->addr, msg->len, msg->flags, stop); |
| 489 | |
| 490 | if (msg->len == 0) |
| 491 | return -EINVAL; |
| 492 | |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 493 | /* |
| 494 | * The current boundary to select between PIO/DMA transfer method |
| 495 | * is set to 8 bytes, transfers shorter than 8 bytes are transfered |
| 496 | * using PIO mode while longer transfers use DMA. The 8 byte border is |
| 497 | * based on this empirical measurement and a lot of previous frobbing. |
| 498 | */ |
Lucas Stach | 92b775c | 2013-04-15 00:16:55 +0000 | [diff] [blame] | 499 | i2c->cmd_err = 0; |
Fabio Estevam | d6e102f | 2013-07-01 18:14:21 -0300 | [diff] [blame] | 500 | if (0) { /* disable PIO mode until a proper fix is made */ |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 501 | ret = mxs_i2c_pio_setup_xfer(adap, msg, flags); |
Fabio Estevam | 63151c5 | 2013-07-10 22:19:28 -0300 | [diff] [blame^] | 502 | if (ret) { |
| 503 | err = mxs_i2c_reset(i2c); |
| 504 | if (err) |
| 505 | return err; |
| 506 | } |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 507 | } else { |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 508 | INIT_COMPLETION(i2c->cmd_complete); |
| 509 | ret = mxs_i2c_dma_setup_xfer(adap, msg, flags); |
| 510 | if (ret) |
| 511 | return ret; |
Wolfram Sang | 844990d | 2012-01-13 12:14:26 +0100 | [diff] [blame] | 512 | |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 513 | ret = wait_for_completion_timeout(&i2c->cmd_complete, |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 514 | msecs_to_jiffies(1000)); |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 515 | if (ret == 0) |
| 516 | goto timeout; |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 517 | } |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 518 | |
Lucas Stach | 92b775c | 2013-04-15 00:16:55 +0000 | [diff] [blame] | 519 | if (i2c->cmd_err == -ENXIO) { |
| 520 | /* |
| 521 | * If the transfer fails with a NAK from the slave the |
| 522 | * controller halts until it gets told to return to idle state. |
| 523 | */ |
| 524 | writel(MXS_I2C_CTRL1_CLR_GOT_A_NAK, |
| 525 | i2c->regs + MXS_I2C_CTRL1_SET); |
| 526 | } |
| 527 | |
| 528 | ret = i2c->cmd_err; |
| 529 | |
Marek Vasut | fc91e40 | 2013-01-24 13:56:21 +0100 | [diff] [blame] | 530 | dev_dbg(i2c->dev, "Done with err=%d\n", ret); |
| 531 | |
| 532 | return ret; |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 533 | |
| 534 | timeout: |
| 535 | dev_dbg(i2c->dev, "Timeout!\n"); |
Wolfram Sang | 82fa63b | 2012-10-12 11:55:16 +0100 | [diff] [blame] | 536 | mxs_i2c_dma_finish(i2c); |
Fabio Estevam | 63151c5 | 2013-07-10 22:19:28 -0300 | [diff] [blame^] | 537 | ret = mxs_i2c_reset(i2c); |
| 538 | if (ret) |
| 539 | return ret; |
| 540 | |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 541 | return -ETIMEDOUT; |
| 542 | } |
| 543 | |
| 544 | static int mxs_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], |
| 545 | int num) |
| 546 | { |
| 547 | int i; |
| 548 | int err; |
| 549 | |
| 550 | for (i = 0; i < num; i++) { |
| 551 | err = mxs_i2c_xfer_msg(adap, &msgs[i], i == (num - 1)); |
| 552 | if (err) |
| 553 | return err; |
| 554 | } |
| 555 | |
| 556 | return num; |
| 557 | } |
| 558 | |
| 559 | static u32 mxs_i2c_func(struct i2c_adapter *adap) |
| 560 | { |
Marek Vasut | 8f41405 | 2012-11-18 06:25:08 +0100 | [diff] [blame] | 561 | return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL; |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 562 | } |
| 563 | |
| 564 | static irqreturn_t mxs_i2c_isr(int this_irq, void *dev_id) |
| 565 | { |
| 566 | struct mxs_i2c_dev *i2c = dev_id; |
| 567 | u32 stat = readl(i2c->regs + MXS_I2C_CTRL1) & MXS_I2C_IRQ_MASK; |
| 568 | |
| 569 | if (!stat) |
| 570 | return IRQ_NONE; |
| 571 | |
| 572 | if (stat & MXS_I2C_CTRL1_NO_SLAVE_ACK_IRQ) |
| 573 | i2c->cmd_err = -ENXIO; |
| 574 | else if (stat & (MXS_I2C_CTRL1_EARLY_TERM_IRQ | |
| 575 | MXS_I2C_CTRL1_MASTER_LOSS_IRQ | |
| 576 | MXS_I2C_CTRL1_SLAVE_STOP_IRQ | MXS_I2C_CTRL1_SLAVE_IRQ)) |
| 577 | /* MXS_I2C_CTRL1_OVERSIZE_XFER_TERM_IRQ is only for slaves */ |
| 578 | i2c->cmd_err = -EIO; |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 579 | |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 580 | writel(stat, i2c->regs + MXS_I2C_CTRL1_CLR); |
Wolfram Sang | 844990d | 2012-01-13 12:14:26 +0100 | [diff] [blame] | 581 | |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 582 | return IRQ_HANDLED; |
| 583 | } |
| 584 | |
| 585 | static const struct i2c_algorithm mxs_i2c_algo = { |
| 586 | .master_xfer = mxs_i2c_xfer, |
| 587 | .functionality = mxs_i2c_func, |
| 588 | }; |
| 589 | |
Marek Vasut | 626f0a2 | 2012-11-30 18:48:35 +0100 | [diff] [blame] | 590 | static void mxs_i2c_derive_timing(struct mxs_i2c_dev *i2c, int speed) |
| 591 | { |
| 592 | /* The I2C block clock run at 24MHz */ |
| 593 | const uint32_t clk = 24000000; |
| 594 | uint32_t base; |
| 595 | uint16_t high_count, low_count, rcv_count, xmit_count; |
| 596 | struct device *dev = i2c->dev; |
| 597 | |
| 598 | if (speed > 540000) { |
| 599 | dev_warn(dev, "Speed too high (%d Hz), using 540 kHz\n", speed); |
| 600 | speed = 540000; |
| 601 | } else if (speed < 12000) { |
| 602 | dev_warn(dev, "Speed too low (%d Hz), using 12 kHz\n", speed); |
| 603 | speed = 12000; |
| 604 | } |
| 605 | |
| 606 | /* |
| 607 | * The timing derivation algorithm. There is no documentation for this |
| 608 | * algorithm available, it was derived by using the scope and fiddling |
| 609 | * with constants until the result observed on the scope was good enough |
| 610 | * for 20kHz, 50kHz, 100kHz, 200kHz, 300kHz and 400kHz. It should be |
| 611 | * possible to assume the algorithm works for other frequencies as well. |
| 612 | * |
| 613 | * Note it was necessary to cap the frequency on both ends as it's not |
| 614 | * possible to configure completely arbitrary frequency for the I2C bus |
| 615 | * clock. |
| 616 | */ |
| 617 | base = ((clk / speed) - 38) / 2; |
| 618 | high_count = base + 3; |
| 619 | low_count = base - 3; |
| 620 | rcv_count = (high_count * 3) / 4; |
| 621 | xmit_count = low_count / 4; |
| 622 | |
| 623 | i2c->timing0 = (high_count << 16) | rcv_count; |
| 624 | i2c->timing1 = (low_count << 16) | xmit_count; |
| 625 | } |
| 626 | |
Marek Vasut | cd4f2d4 | 2012-07-09 18:22:53 +0200 | [diff] [blame] | 627 | static int mxs_i2c_get_ofdata(struct mxs_i2c_dev *i2c) |
| 628 | { |
| 629 | uint32_t speed; |
| 630 | struct device *dev = i2c->dev; |
| 631 | struct device_node *node = dev->of_node; |
| 632 | int ret; |
| 633 | |
Marek Vasut | cd4f2d4 | 2012-07-09 18:22:53 +0200 | [diff] [blame] | 634 | ret = of_property_read_u32(node, "clock-frequency", &speed); |
Marek Vasut | 626f0a2 | 2012-11-30 18:48:35 +0100 | [diff] [blame] | 635 | if (ret) { |
Marek Vasut | cd4f2d4 | 2012-07-09 18:22:53 +0200 | [diff] [blame] | 636 | dev_warn(dev, "No I2C speed selected, using 100kHz\n"); |
Marek Vasut | 626f0a2 | 2012-11-30 18:48:35 +0100 | [diff] [blame] | 637 | speed = 100000; |
| 638 | } |
| 639 | |
| 640 | mxs_i2c_derive_timing(i2c, speed); |
Marek Vasut | cd4f2d4 | 2012-07-09 18:22:53 +0200 | [diff] [blame] | 641 | |
| 642 | return 0; |
| 643 | } |
| 644 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 645 | static int mxs_i2c_probe(struct platform_device *pdev) |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 646 | { |
| 647 | struct device *dev = &pdev->dev; |
| 648 | struct mxs_i2c_dev *i2c; |
| 649 | struct i2c_adapter *adap; |
| 650 | struct resource *res; |
| 651 | resource_size_t res_size; |
Shawn Guo | e5aba13 | 2013-02-26 11:20:22 +0800 | [diff] [blame] | 652 | int err, irq; |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 653 | |
| 654 | i2c = devm_kzalloc(dev, sizeof(struct mxs_i2c_dev), GFP_KERNEL); |
| 655 | if (!i2c) |
| 656 | return -ENOMEM; |
| 657 | |
| 658 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Marek Vasut | 62885f5 | 2012-08-24 05:44:31 +0200 | [diff] [blame] | 659 | irq = platform_get_irq(pdev, 0); |
Marek Vasut | 62885f5 | 2012-08-24 05:44:31 +0200 | [diff] [blame] | 660 | |
Shawn Guo | e5aba13 | 2013-02-26 11:20:22 +0800 | [diff] [blame] | 661 | if (!res || irq < 0) |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 662 | return -ENOENT; |
| 663 | |
| 664 | res_size = resource_size(res); |
| 665 | if (!devm_request_mem_region(dev, res->start, res_size, res->name)) |
| 666 | return -EBUSY; |
| 667 | |
| 668 | i2c->regs = devm_ioremap_nocache(dev, res->start, res_size); |
| 669 | if (!i2c->regs) |
| 670 | return -EBUSY; |
| 671 | |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 672 | err = devm_request_irq(dev, irq, mxs_i2c_isr, 0, dev_name(dev), i2c); |
| 673 | if (err) |
| 674 | return err; |
| 675 | |
| 676 | i2c->dev = dev; |
Marek Vasut | cd4f2d4 | 2012-07-09 18:22:53 +0200 | [diff] [blame] | 677 | |
Marek Vasut | 85de7fa | 2012-11-21 06:19:06 +0100 | [diff] [blame] | 678 | init_completion(&i2c->cmd_complete); |
| 679 | |
Wolfram Sang | 72ee734 | 2012-09-08 17:28:06 +0200 | [diff] [blame] | 680 | if (dev->of_node) { |
| 681 | err = mxs_i2c_get_ofdata(i2c); |
| 682 | if (err) |
| 683 | return err; |
| 684 | } |
Marek Vasut | cd4f2d4 | 2012-07-09 18:22:53 +0200 | [diff] [blame] | 685 | |
Marek Vasut | 62885f5 | 2012-08-24 05:44:31 +0200 | [diff] [blame] | 686 | /* Setup the DMA */ |
Shawn Guo | e5aba13 | 2013-02-26 11:20:22 +0800 | [diff] [blame] | 687 | i2c->dmach = dma_request_slave_channel(dev, "rx-tx"); |
Wolfram Sang | 82fa63b | 2012-10-12 11:55:16 +0100 | [diff] [blame] | 688 | if (!i2c->dmach) { |
| 689 | dev_err(dev, "Failed to request dma\n"); |
| 690 | return -ENODEV; |
Marek Vasut | 62885f5 | 2012-08-24 05:44:31 +0200 | [diff] [blame] | 691 | } |
| 692 | |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 693 | platform_set_drvdata(pdev, i2c); |
| 694 | |
| 695 | /* Do reset to enforce correct startup after pinmuxing */ |
Fabio Estevam | 63151c5 | 2013-07-10 22:19:28 -0300 | [diff] [blame^] | 696 | err = mxs_i2c_reset(i2c); |
| 697 | if (err) |
| 698 | return err; |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 699 | |
| 700 | adap = &i2c->adapter; |
| 701 | strlcpy(adap->name, "MXS I2C adapter", sizeof(adap->name)); |
| 702 | adap->owner = THIS_MODULE; |
| 703 | adap->algo = &mxs_i2c_algo; |
| 704 | adap->dev.parent = dev; |
| 705 | adap->nr = pdev->id; |
Shawn Guo | b237866 | 2012-05-12 13:43:32 +0800 | [diff] [blame] | 706 | adap->dev.of_node = pdev->dev.of_node; |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 707 | i2c_set_adapdata(adap, i2c); |
| 708 | err = i2c_add_numbered_adapter(adap); |
| 709 | if (err) { |
| 710 | dev_err(dev, "Failed to add adapter (%d)\n", err); |
| 711 | writel(MXS_I2C_CTRL0_SFTRST, |
| 712 | i2c->regs + MXS_I2C_CTRL0_SET); |
| 713 | return err; |
| 714 | } |
| 715 | |
Shawn Guo | b237866 | 2012-05-12 13:43:32 +0800 | [diff] [blame] | 716 | of_i2c_register_devices(adap); |
| 717 | |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 718 | return 0; |
| 719 | } |
| 720 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 721 | static int mxs_i2c_remove(struct platform_device *pdev) |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 722 | { |
| 723 | struct mxs_i2c_dev *i2c = platform_get_drvdata(pdev); |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 724 | |
Lars-Peter Clausen | bf51a8c | 2013-03-09 08:16:46 +0000 | [diff] [blame] | 725 | i2c_del_adapter(&i2c->adapter); |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 726 | |
Marek Vasut | 62885f5 | 2012-08-24 05:44:31 +0200 | [diff] [blame] | 727 | if (i2c->dmach) |
| 728 | dma_release_channel(i2c->dmach); |
| 729 | |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 730 | writel(MXS_I2C_CTRL0_SFTRST, i2c->regs + MXS_I2C_CTRL0_SET); |
| 731 | |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 732 | return 0; |
| 733 | } |
| 734 | |
Shawn Guo | b237866 | 2012-05-12 13:43:32 +0800 | [diff] [blame] | 735 | static const struct of_device_id mxs_i2c_dt_ids[] = { |
| 736 | { .compatible = "fsl,imx28-i2c", }, |
| 737 | { /* sentinel */ } |
| 738 | }; |
| 739 | MODULE_DEVICE_TABLE(of, mxs_i2c_dt_ids); |
| 740 | |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 741 | static struct platform_driver mxs_i2c_driver = { |
| 742 | .driver = { |
| 743 | .name = DRIVER_NAME, |
| 744 | .owner = THIS_MODULE, |
Shawn Guo | b237866 | 2012-05-12 13:43:32 +0800 | [diff] [blame] | 745 | .of_match_table = mxs_i2c_dt_ids, |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 746 | }, |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 747 | .remove = mxs_i2c_remove, |
Wolfram Sang | a8da7fe | 2011-02-16 13:39:16 +0100 | [diff] [blame] | 748 | }; |
| 749 | |
| 750 | static int __init mxs_i2c_init(void) |
| 751 | { |
| 752 | return platform_driver_probe(&mxs_i2c_driver, mxs_i2c_probe); |
| 753 | } |
| 754 | subsys_initcall(mxs_i2c_init); |
| 755 | |
| 756 | static void __exit mxs_i2c_exit(void) |
| 757 | { |
| 758 | platform_driver_unregister(&mxs_i2c_driver); |
| 759 | } |
| 760 | module_exit(mxs_i2c_exit); |
| 761 | |
| 762 | MODULE_AUTHOR("Wolfram Sang <w.sang@pengutronix.de>"); |
| 763 | MODULE_DESCRIPTION("MXS I2C Bus Driver"); |
| 764 | MODULE_LICENSE("GPL"); |
| 765 | MODULE_ALIAS("platform:" DRIVER_NAME); |