Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 1 | /* |
Shinya Kuribayashi | a0e06ea | 2009-11-06 21:52:22 +0900 | [diff] [blame] | 2 | * Synopsys DesignWare I2C adapter driver (master only). |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 3 | * |
| 4 | * Based on the TI DAVINCI I2C adapter driver. |
| 5 | * |
| 6 | * Copyright (C) 2006 Texas Instruments. |
| 7 | * Copyright (C) 2007 MontaVista Software Inc. |
| 8 | * Copyright (C) 2009 Provigent Ltd. |
| 9 | * |
| 10 | * ---------------------------------------------------------------------------- |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License as published by |
| 14 | * the Free Software Foundation; either version 2 of the License, or |
| 15 | * (at your option) any later version. |
| 16 | * |
| 17 | * This program is distributed in the hope that it will be useful, |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | * GNU General Public License for more details. |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 21 | * ---------------------------------------------------------------------------- |
| 22 | * |
| 23 | */ |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 24 | #include <linux/delay.h> |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 25 | #include <linux/err.h> |
Luis Oliveira | 9031235 | 2017-06-14 11:43:23 +0100 | [diff] [blame] | 26 | #include <linux/errno.h> |
| 27 | #include <linux/export.h> |
Dirk Brandewie | 2373f6b | 2011-10-29 10:57:23 +0100 | [diff] [blame] | 28 | #include <linux/i2c.h> |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 29 | #include <linux/interrupt.h> |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 30 | #include <linux/io.h> |
Mika Westerberg | 9dd3162 | 2013-01-17 12:31:04 +0200 | [diff] [blame] | 31 | #include <linux/module.h> |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 32 | #include <linux/pm_runtime.h> |
Shinya Kuribayashi | ce6eb57 | 2009-11-06 21:51:57 +0900 | [diff] [blame] | 33 | |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 34 | #include "i2c-designware-core.h" |
Jean-Hugues Deschenes | 7f27960 | 2011-10-06 11:26:25 -0700 | [diff] [blame] | 35 | |
Luis Oliveira | 89a1e1b | 2017-06-14 11:43:22 +0100 | [diff] [blame] | 36 | static void i2c_dw_configure_fifo_master(struct dw_i2c_dev *dev) |
| 37 | { |
| 38 | /* Configure Tx/Rx FIFO threshold levels */ |
| 39 | dw_writel(dev, dev->tx_fifo_depth / 2, DW_IC_TX_TL); |
| 40 | dw_writel(dev, 0, DW_IC_RX_TL); |
| 41 | |
| 42 | /* Configure the I2C master */ |
| 43 | dw_writel(dev, dev->master_cfg, DW_IC_CON); |
| 44 | } |
| 45 | |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 46 | /** |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 47 | * i2c_dw_init() - Initialize the designware I2C master hardware |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 48 | * @dev: device private data |
| 49 | * |
| 50 | * This functions configures and enables the I2C master. |
| 51 | * This function is called during I2C init function, and in case of timeout at |
| 52 | * run time. |
| 53 | */ |
Jarkko Nikula | 21bf440 | 2017-06-28 17:23:28 +0300 | [diff] [blame] | 54 | static int i2c_dw_init_master(struct dw_i2c_dev *dev) |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 55 | { |
Dirk Brandewie | e18563f | 2011-10-06 11:26:32 -0700 | [diff] [blame] | 56 | u32 hcnt, lcnt; |
Weifeng Voon | b6e6714 | 2016-08-12 17:02:51 +0300 | [diff] [blame] | 57 | u32 reg, comp_param1; |
Romain Baeriswyl | 6468276 | 2014-01-20 17:43:43 +0100 | [diff] [blame] | 58 | u32 sda_falling_time, scl_falling_time; |
David Box | c0601d2 | 2015-01-15 01:12:16 -0800 | [diff] [blame] | 59 | int ret; |
| 60 | |
Lucas De Marchi | 8c5660b | 2016-08-23 19:18:54 -0300 | [diff] [blame] | 61 | ret = i2c_dw_acquire_lock(dev); |
| 62 | if (ret) |
| 63 | return ret; |
Dirk Brandewie | 4a423a8 | 2011-10-06 11:26:28 -0700 | [diff] [blame] | 64 | |
Dirk Brandewie | 4a423a8 | 2011-10-06 11:26:28 -0700 | [diff] [blame] | 65 | reg = dw_readl(dev, DW_IC_COMP_TYPE); |
| 66 | if (reg == ___constant_swab32(DW_IC_COMP_TYPE_VALUE)) { |
Stefan Roese | a8a9f3f | 2012-04-18 15:01:41 +0200 | [diff] [blame] | 67 | /* Configure register endianess access */ |
Hans de Goede | 86524e5 | 2017-02-10 11:27:53 +0100 | [diff] [blame] | 68 | dev->flags |= ACCESS_SWAP; |
Stefan Roese | a8a9f3f | 2012-04-18 15:01:41 +0200 | [diff] [blame] | 69 | } else if (reg == (DW_IC_COMP_TYPE_VALUE & 0x0000ffff)) { |
| 70 | /* Configure register access mode 16bit */ |
Hans de Goede | 86524e5 | 2017-02-10 11:27:53 +0100 | [diff] [blame] | 71 | dev->flags |= ACCESS_16BIT; |
Stefan Roese | a8a9f3f | 2012-04-18 15:01:41 +0200 | [diff] [blame] | 72 | } else if (reg != DW_IC_COMP_TYPE_VALUE) { |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 73 | dev_err(dev->dev, |
| 74 | "Unknown Synopsys component type: 0x%08x\n", reg); |
Lucas De Marchi | 8c5660b | 2016-08-23 19:18:54 -0300 | [diff] [blame] | 75 | i2c_dw_release_lock(dev); |
Dirk Brandewie | 4a423a8 | 2011-10-06 11:26:28 -0700 | [diff] [blame] | 76 | return -ENODEV; |
| 77 | } |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 78 | |
Weifeng Voon | b6e6714 | 2016-08-12 17:02:51 +0300 | [diff] [blame] | 79 | comp_param1 = dw_readl(dev, DW_IC_COMP_PARAM_1); |
| 80 | |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 81 | /* Disable the adapter */ |
José Roberto de Souza | 2702ea7 | 2016-08-23 19:18:53 -0300 | [diff] [blame] | 82 | __i2c_dw_enable_and_wait(dev, false); |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 83 | |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 84 | /* Set standard and fast speed deviders for high/low periods */ |
Shinya Kuribayashi | d60c7e8 | 2009-11-06 21:47:01 +0900 | [diff] [blame] | 85 | |
Romain Baeriswyl | 6468276 | 2014-01-20 17:43:43 +0100 | [diff] [blame] | 86 | sda_falling_time = dev->sda_falling_time ?: 300; /* ns */ |
| 87 | scl_falling_time = dev->scl_falling_time ?: 300; /* ns */ |
| 88 | |
Jarkko Nikula | 42ffd39 | 2015-01-23 11:35:55 +0200 | [diff] [blame] | 89 | /* Set SCL timing parameters for standard-mode */ |
Mika Westerberg | defc0b2 | 2013-08-19 15:07:53 +0300 | [diff] [blame] | 90 | if (dev->ss_hcnt && dev->ss_lcnt) { |
| 91 | hcnt = dev->ss_hcnt; |
| 92 | lcnt = dev->ss_lcnt; |
Jarkko Nikula | 42ffd39 | 2015-01-23 11:35:55 +0200 | [diff] [blame] | 93 | } else { |
Suravee Suthikulpanit | b33af11 | 2016-01-04 09:17:35 -0600 | [diff] [blame] | 94 | hcnt = i2c_dw_scl_hcnt(i2c_dw_clk_rate(dev), |
Jarkko Nikula | 42ffd39 | 2015-01-23 11:35:55 +0200 | [diff] [blame] | 95 | 4000, /* tHD;STA = tHIGH = 4.0 us */ |
| 96 | sda_falling_time, |
| 97 | 0, /* 0: DW default, 1: Ideal */ |
| 98 | 0); /* No offset */ |
Suravee Suthikulpanit | b33af11 | 2016-01-04 09:17:35 -0600 | [diff] [blame] | 99 | lcnt = i2c_dw_scl_lcnt(i2c_dw_clk_rate(dev), |
Jarkko Nikula | 42ffd39 | 2015-01-23 11:35:55 +0200 | [diff] [blame] | 100 | 4700, /* tLOW = 4.7 us */ |
| 101 | scl_falling_time, |
| 102 | 0); /* No offset */ |
Mika Westerberg | defc0b2 | 2013-08-19 15:07:53 +0300 | [diff] [blame] | 103 | } |
Jean-Hugues Deschenes | 7f27960 | 2011-10-06 11:26:25 -0700 | [diff] [blame] | 104 | dw_writel(dev, hcnt, DW_IC_SS_SCL_HCNT); |
| 105 | dw_writel(dev, lcnt, DW_IC_SS_SCL_LCNT); |
Shinya Kuribayashi | d60c7e8 | 2009-11-06 21:47:01 +0900 | [diff] [blame] | 106 | dev_dbg(dev->dev, "Standard-mode HCNT:LCNT = %d:%d\n", hcnt, lcnt); |
| 107 | |
Weifeng Voon | d608c3d | 2016-08-12 17:02:49 +0300 | [diff] [blame] | 108 | /* Set SCL timing parameters for fast-mode or fast-mode plus */ |
| 109 | if ((dev->clk_freq == 1000000) && dev->fp_hcnt && dev->fp_lcnt) { |
| 110 | hcnt = dev->fp_hcnt; |
| 111 | lcnt = dev->fp_lcnt; |
| 112 | } else if (dev->fs_hcnt && dev->fs_lcnt) { |
Mika Westerberg | defc0b2 | 2013-08-19 15:07:53 +0300 | [diff] [blame] | 113 | hcnt = dev->fs_hcnt; |
| 114 | lcnt = dev->fs_lcnt; |
Jarkko Nikula | 42ffd39 | 2015-01-23 11:35:55 +0200 | [diff] [blame] | 115 | } else { |
Suravee Suthikulpanit | b33af11 | 2016-01-04 09:17:35 -0600 | [diff] [blame] | 116 | hcnt = i2c_dw_scl_hcnt(i2c_dw_clk_rate(dev), |
Jarkko Nikula | 42ffd39 | 2015-01-23 11:35:55 +0200 | [diff] [blame] | 117 | 600, /* tHD;STA = tHIGH = 0.6 us */ |
| 118 | sda_falling_time, |
| 119 | 0, /* 0: DW default, 1: Ideal */ |
| 120 | 0); /* No offset */ |
Suravee Suthikulpanit | b33af11 | 2016-01-04 09:17:35 -0600 | [diff] [blame] | 121 | lcnt = i2c_dw_scl_lcnt(i2c_dw_clk_rate(dev), |
Jarkko Nikula | 42ffd39 | 2015-01-23 11:35:55 +0200 | [diff] [blame] | 122 | 1300, /* tLOW = 1.3 us */ |
| 123 | scl_falling_time, |
| 124 | 0); /* No offset */ |
Mika Westerberg | defc0b2 | 2013-08-19 15:07:53 +0300 | [diff] [blame] | 125 | } |
Jean-Hugues Deschenes | 7f27960 | 2011-10-06 11:26:25 -0700 | [diff] [blame] | 126 | dw_writel(dev, hcnt, DW_IC_FS_SCL_HCNT); |
| 127 | dw_writel(dev, lcnt, DW_IC_FS_SCL_LCNT); |
Shinya Kuribayashi | d60c7e8 | 2009-11-06 21:47:01 +0900 | [diff] [blame] | 128 | dev_dbg(dev->dev, "Fast-mode HCNT:LCNT = %d:%d\n", hcnt, lcnt); |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 129 | |
Weifeng Voon | b6e6714 | 2016-08-12 17:02:51 +0300 | [diff] [blame] | 130 | if ((dev->master_cfg & DW_IC_CON_SPEED_MASK) == |
| 131 | DW_IC_CON_SPEED_HIGH) { |
| 132 | if ((comp_param1 & DW_IC_COMP_PARAM_1_SPEED_MODE_MASK) |
| 133 | != DW_IC_COMP_PARAM_1_SPEED_MODE_HIGH) { |
| 134 | dev_err(dev->dev, "High Speed not supported!\n"); |
| 135 | dev->master_cfg &= ~DW_IC_CON_SPEED_MASK; |
| 136 | dev->master_cfg |= DW_IC_CON_SPEED_FAST; |
| 137 | } else if (dev->hs_hcnt && dev->hs_lcnt) { |
| 138 | hcnt = dev->hs_hcnt; |
| 139 | lcnt = dev->hs_lcnt; |
| 140 | dw_writel(dev, hcnt, DW_IC_HS_SCL_HCNT); |
| 141 | dw_writel(dev, lcnt, DW_IC_HS_SCL_LCNT); |
| 142 | dev_dbg(dev->dev, "HighSpeed-mode HCNT:LCNT = %d:%d\n", |
| 143 | hcnt, lcnt); |
| 144 | } |
| 145 | } |
| 146 | |
Christian Ruppert | 9803f86 | 2013-06-26 10:55:06 +0200 | [diff] [blame] | 147 | /* Configure SDA Hold Time if required */ |
Zhuo-hao Lee | 664d58b | 2016-08-27 15:39:30 +0800 | [diff] [blame] | 148 | reg = dw_readl(dev, DW_IC_COMP_VERSION); |
| 149 | if (reg >= DW_IC_SDA_HOLD_MIN_VERS) { |
Jarkko Nikula | 171e23e | 2016-09-29 16:04:59 +0300 | [diff] [blame] | 150 | if (!dev->sda_hold_time) { |
Zhuo-hao Lee | 664d58b | 2016-08-27 15:39:30 +0800 | [diff] [blame] | 151 | /* Keep previous hold time setting if no one set it */ |
| 152 | dev->sda_hold_time = dw_readl(dev, DW_IC_SDA_HOLD); |
| 153 | } |
Jarkko Nikula | 171e23e | 2016-09-29 16:04:59 +0300 | [diff] [blame] | 154 | /* |
| 155 | * Workaround for avoiding TX arbitration lost in case I2C |
| 156 | * slave pulls SDA down "too quickly" after falling egde of |
| 157 | * SCL by enabling non-zero SDA RX hold. Specification says it |
| 158 | * extends incoming SDA low to high transition while SCL is |
| 159 | * high but it apprears to help also above issue. |
| 160 | */ |
| 161 | if (!(dev->sda_hold_time & DW_IC_SDA_HOLD_RX_MASK)) |
| 162 | dev->sda_hold_time |= 1 << DW_IC_SDA_HOLD_RX_SHIFT; |
| 163 | dw_writel(dev, dev->sda_hold_time, DW_IC_SDA_HOLD); |
Zhuo-hao Lee | 664d58b | 2016-08-27 15:39:30 +0800 | [diff] [blame] | 164 | } else { |
| 165 | dev_warn(dev->dev, |
| 166 | "Hardware too old to adjust SDA hold time.\n"); |
Christian Ruppert | 9803f86 | 2013-06-26 10:55:06 +0200 | [diff] [blame] | 167 | } |
| 168 | |
Luis Oliveira | 89a1e1b | 2017-06-14 11:43:22 +0100 | [diff] [blame] | 169 | i2c_dw_configure_fifo_master(dev); |
Lucas De Marchi | 8c5660b | 2016-08-23 19:18:54 -0300 | [diff] [blame] | 170 | i2c_dw_release_lock(dev); |
| 171 | |
Dirk Brandewie | 4a423a8 | 2011-10-06 11:26:28 -0700 | [diff] [blame] | 172 | return 0; |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 173 | } |
| 174 | |
Shinya Kuribayashi | 81e798b | 2009-11-06 21:48:55 +0900 | [diff] [blame] | 175 | static void i2c_dw_xfer_init(struct dw_i2c_dev *dev) |
| 176 | { |
| 177 | struct i2c_msg *msgs = dev->msgs; |
Jarkko Nikula | 12688dc | 2017-02-13 11:18:19 +0200 | [diff] [blame] | 178 | u32 ic_con, ic_tar = 0; |
Shinya Kuribayashi | 81e798b | 2009-11-06 21:48:55 +0900 | [diff] [blame] | 179 | |
Jarkko Nikula | 89119f0 | 2016-11-25 17:22:27 +0200 | [diff] [blame] | 180 | /* Disable the adapter */ |
| 181 | __i2c_dw_enable_and_wait(dev, false); |
Chew, Chiau Ee | bd63ace | 2013-09-27 02:57:35 +0800 | [diff] [blame] | 182 | |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 183 | /* If the slave address is ten bit address, enable 10BITADDR */ |
Jarkko Nikula | 12688dc | 2017-02-13 11:18:19 +0200 | [diff] [blame] | 184 | ic_con = dw_readl(dev, DW_IC_CON); |
| 185 | if (msgs[dev->msg_write_idx].flags & I2C_M_TEN) { |
| 186 | ic_con |= DW_IC_CON_10BITADDR_MASTER; |
Mika Westerberg | 3ca4ed8 | 2013-04-10 00:36:40 +0000 | [diff] [blame] | 187 | /* |
Shinya Kuribayashi | 81e798b | 2009-11-06 21:48:55 +0900 | [diff] [blame] | 188 | * If I2C_DYNAMIC_TAR_UPDATE is set, the 10-bit addressing |
Jarkko Nikula | 12688dc | 2017-02-13 11:18:19 +0200 | [diff] [blame] | 189 | * mode has to be enabled via bit 12 of IC_TAR register. |
| 190 | * We set it always as I2C_DYNAMIC_TAR_UPDATE can't be |
| 191 | * detected from registers. |
Shinya Kuribayashi | 81e798b | 2009-11-06 21:48:55 +0900 | [diff] [blame] | 192 | */ |
Jarkko Nikula | 12688dc | 2017-02-13 11:18:19 +0200 | [diff] [blame] | 193 | ic_tar = DW_IC_TAR_10BITADDR_MASTER; |
Shinya Kuribayashi | 81e798b | 2009-11-06 21:48:55 +0900 | [diff] [blame] | 194 | } else { |
Jarkko Nikula | 12688dc | 2017-02-13 11:18:19 +0200 | [diff] [blame] | 195 | ic_con &= ~DW_IC_CON_10BITADDR_MASTER; |
Lucas De Marchi | 63d0f0a6 | 2016-08-23 19:18:55 -0300 | [diff] [blame] | 196 | } |
Shinya Kuribayashi | 81e798b | 2009-11-06 21:48:55 +0900 | [diff] [blame] | 197 | |
Jarkko Nikula | 12688dc | 2017-02-13 11:18:19 +0200 | [diff] [blame] | 198 | dw_writel(dev, ic_con, DW_IC_CON); |
| 199 | |
Chew, Chiau Ee | bd63ace | 2013-09-27 02:57:35 +0800 | [diff] [blame] | 200 | /* |
| 201 | * Set the slave (target) address and enable 10-bit addressing mode |
| 202 | * if applicable. |
| 203 | */ |
| 204 | dw_writel(dev, msgs[dev->msg_write_idx].addr | ic_tar, DW_IC_TAR); |
| 205 | |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 206 | /* Enforce disabled interrupts (due to HW issues) */ |
Du, Wenkai | 47bb27e | 2014-04-10 23:03:19 +0000 | [diff] [blame] | 207 | i2c_dw_disable_int(dev); |
| 208 | |
Jarkko Nikula | 89119f0 | 2016-11-25 17:22:27 +0200 | [diff] [blame] | 209 | /* Enable the adapter */ |
| 210 | __i2c_dw_enable(dev, true); |
Shinya Kuribayashi | 201d6a7 | 2009-11-06 21:50:40 +0900 | [diff] [blame] | 211 | |
Mika Westerberg | 2a2d95e | 2013-05-13 00:54:30 +0000 | [diff] [blame] | 212 | /* Clear and enable interrupts */ |
Jarkko Nikula | c335631 | 2015-08-31 17:31:28 +0300 | [diff] [blame] | 213 | dw_readl(dev, DW_IC_CLR_INTR); |
Luis Oliveira | 89a1e1b | 2017-06-14 11:43:22 +0100 | [diff] [blame] | 214 | dw_writel(dev, DW_IC_INTR_MASTER_MASK, DW_IC_INTR_MASK); |
Shinya Kuribayashi | 81e798b | 2009-11-06 21:48:55 +0900 | [diff] [blame] | 215 | } |
| 216 | |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 217 | /* |
Shinya Kuribayashi | 201d6a7 | 2009-11-06 21:50:40 +0900 | [diff] [blame] | 218 | * Initiate (and continue) low level master read/write transaction. |
| 219 | * This function is only called from i2c_dw_isr, and pumping i2c_msg |
| 220 | * messages into the tx buffer. Even if the size of i2c_msg data is |
| 221 | * longer than the size of the tx buffer, it handles everything. |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 222 | */ |
Jean Delvare | bccd780 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 223 | static void |
Shinya Kuribayashi | e77cf23 | 2009-11-06 21:46:04 +0900 | [diff] [blame] | 224 | i2c_dw_xfer_msg(struct dw_i2c_dev *dev) |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 225 | { |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 226 | struct i2c_msg *msgs = dev->msgs; |
Shinya Kuribayashi | 81e798b | 2009-11-06 21:48:55 +0900 | [diff] [blame] | 227 | u32 intr_mask; |
Shinya Kuribayashi | ae72222 | 2009-11-06 21:49:39 +0900 | [diff] [blame] | 228 | int tx_limit, rx_limit; |
Shinya Kuribayashi | ed5e1dd | 2009-11-06 21:43:52 +0900 | [diff] [blame] | 229 | u32 addr = msgs[dev->msg_write_idx].addr; |
| 230 | u32 buf_len = dev->tx_buf_len; |
Justin P. Mattock | 6993248 | 2011-07-26 23:06:29 -0700 | [diff] [blame] | 231 | u8 *buf = dev->tx_buf; |
Chew, Chiau Ee | 8256424 | 2013-06-21 15:05:28 +0800 | [diff] [blame] | 232 | bool need_restart = false; |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 233 | |
Luis Oliveira | 89a1e1b | 2017-06-14 11:43:22 +0100 | [diff] [blame] | 234 | intr_mask = DW_IC_INTR_MASTER_MASK; |
Shinya Kuribayashi | c70c5cd | 2009-11-06 21:47:30 +0900 | [diff] [blame] | 235 | |
Shinya Kuribayashi | 6d2ea48 | 2009-11-06 21:46:29 +0900 | [diff] [blame] | 236 | for (; dev->msg_write_idx < dev->msgs_num; dev->msg_write_idx++) { |
Tin Huynh | c3ae106 | 2016-11-10 09:56:33 +0700 | [diff] [blame] | 237 | u32 flags = msgs[dev->msg_write_idx].flags; |
| 238 | |
Shinya Kuribayashi | a0e06ea | 2009-11-06 21:52:22 +0900 | [diff] [blame] | 239 | /* |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 240 | * If target address has changed, we need to |
| 241 | * reprogram the target address in the I2C |
| 242 | * adapter when we are done with this transfer. |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 243 | */ |
Shinya Kuribayashi | 8f588e4 | 2009-11-06 21:51:18 +0900 | [diff] [blame] | 244 | if (msgs[dev->msg_write_idx].addr != addr) { |
| 245 | dev_err(dev->dev, |
| 246 | "%s: invalid target address\n", __func__); |
| 247 | dev->msg_err = -EINVAL; |
| 248 | break; |
| 249 | } |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 250 | |
| 251 | if (msgs[dev->msg_write_idx].len == 0) { |
| 252 | dev_err(dev->dev, |
| 253 | "%s: invalid message length\n", __func__); |
| 254 | dev->msg_err = -EINVAL; |
Shinya Kuribayashi | 8f588e4 | 2009-11-06 21:51:18 +0900 | [diff] [blame] | 255 | break; |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 256 | } |
| 257 | |
| 258 | if (!(dev->status & STATUS_WRITE_IN_PROGRESS)) { |
| 259 | /* new i2c_msg */ |
Shinya Kuribayashi | 26ea15b | 2009-11-06 21:49:14 +0900 | [diff] [blame] | 260 | buf = msgs[dev->msg_write_idx].buf; |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 261 | buf_len = msgs[dev->msg_write_idx].len; |
Chew, Chiau Ee | 8256424 | 2013-06-21 15:05:28 +0800 | [diff] [blame] | 262 | |
| 263 | /* If both IC_EMPTYFIFO_HOLD_MASTER_EN and |
| 264 | * IC_RESTART_EN are set, we must manually |
| 265 | * set restart bit between messages. |
| 266 | */ |
| 267 | if ((dev->master_cfg & DW_IC_CON_RESTART_EN) && |
| 268 | (dev->msg_write_idx > 0)) |
| 269 | need_restart = true; |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 270 | } |
| 271 | |
Jean-Hugues Deschenes | 7f27960 | 2011-10-06 11:26:25 -0700 | [diff] [blame] | 272 | tx_limit = dev->tx_fifo_depth - dw_readl(dev, DW_IC_TXFLR); |
| 273 | rx_limit = dev->rx_fifo_depth - dw_readl(dev, DW_IC_RXFLR); |
Shinya Kuribayashi | ae72222 | 2009-11-06 21:49:39 +0900 | [diff] [blame] | 274 | |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 275 | while (buf_len > 0 && tx_limit > 0 && rx_limit > 0) { |
Mika Westerberg | 17a76b4 | 2013-01-17 12:31:05 +0200 | [diff] [blame] | 276 | u32 cmd = 0; |
| 277 | |
| 278 | /* |
| 279 | * If IC_EMPTYFIFO_HOLD_MASTER_EN is set we must |
| 280 | * manually set the stop bit. However, it cannot be |
| 281 | * detected from the registers so we set it always |
| 282 | * when writing/reading the last byte. |
| 283 | */ |
Tin Huynh | c3ae106 | 2016-11-10 09:56:33 +0700 | [diff] [blame] | 284 | |
| 285 | /* |
Wolfram Sang | 91ed534 | 2017-05-23 11:08:04 +0200 | [diff] [blame] | 286 | * i2c-core always sets the buffer length of |
Tin Huynh | c3ae106 | 2016-11-10 09:56:33 +0700 | [diff] [blame] | 287 | * I2C_FUNC_SMBUS_BLOCK_DATA to 1. The length will |
| 288 | * be adjusted when receiving the first byte. |
| 289 | * Thus we can't stop the transaction here. |
| 290 | */ |
Mika Westerberg | 17a76b4 | 2013-01-17 12:31:05 +0200 | [diff] [blame] | 291 | if (dev->msg_write_idx == dev->msgs_num - 1 && |
Tin Huynh | c3ae106 | 2016-11-10 09:56:33 +0700 | [diff] [blame] | 292 | buf_len == 1 && !(flags & I2C_M_RECV_LEN)) |
Mika Westerberg | 17a76b4 | 2013-01-17 12:31:05 +0200 | [diff] [blame] | 293 | cmd |= BIT(9); |
| 294 | |
Chew, Chiau Ee | 8256424 | 2013-06-21 15:05:28 +0800 | [diff] [blame] | 295 | if (need_restart) { |
| 296 | cmd |= BIT(10); |
| 297 | need_restart = false; |
| 298 | } |
| 299 | |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 300 | if (msgs[dev->msg_write_idx].flags & I2C_M_RD) { |
Josef Ahmad | e6f34ce | 2013-04-19 17:28:10 +0100 | [diff] [blame] | 301 | |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 302 | /* Avoid rx buffer overrun */ |
Russell King | 4d6d5f1 | 2016-11-18 19:40:10 +0000 | [diff] [blame] | 303 | if (dev->rx_outstanding >= dev->rx_fifo_depth) |
Josef Ahmad | e6f34ce | 2013-04-19 17:28:10 +0100 | [diff] [blame] | 304 | break; |
| 305 | |
Mika Westerberg | 17a76b4 | 2013-01-17 12:31:05 +0200 | [diff] [blame] | 306 | dw_writel(dev, cmd | 0x100, DW_IC_DATA_CMD); |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 307 | rx_limit--; |
Josef Ahmad | e6f34ce | 2013-04-19 17:28:10 +0100 | [diff] [blame] | 308 | dev->rx_outstanding++; |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 309 | } else |
Mika Westerberg | 17a76b4 | 2013-01-17 12:31:05 +0200 | [diff] [blame] | 310 | dw_writel(dev, cmd | *buf++, DW_IC_DATA_CMD); |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 311 | tx_limit--; buf_len--; |
| 312 | } |
Shinya Kuribayashi | c70c5cd | 2009-11-06 21:47:30 +0900 | [diff] [blame] | 313 | |
Shinya Kuribayashi | 26ea15b | 2009-11-06 21:49:14 +0900 | [diff] [blame] | 314 | dev->tx_buf = buf; |
Shinya Kuribayashi | c70c5cd | 2009-11-06 21:47:30 +0900 | [diff] [blame] | 315 | dev->tx_buf_len = buf_len; |
| 316 | |
Tin Huynh | c3ae106 | 2016-11-10 09:56:33 +0700 | [diff] [blame] | 317 | /* |
| 318 | * Because we don't know the buffer length in the |
| 319 | * I2C_FUNC_SMBUS_BLOCK_DATA case, we can't stop |
| 320 | * the transaction here. |
| 321 | */ |
| 322 | if (buf_len > 0 || flags & I2C_M_RECV_LEN) { |
Shinya Kuribayashi | c70c5cd | 2009-11-06 21:47:30 +0900 | [diff] [blame] | 323 | /* more bytes to be written */ |
Shinya Kuribayashi | c70c5cd | 2009-11-06 21:47:30 +0900 | [diff] [blame] | 324 | dev->status |= STATUS_WRITE_IN_PROGRESS; |
| 325 | break; |
Shinya Kuribayashi | 69151e5 | 2009-11-06 21:51:00 +0900 | [diff] [blame] | 326 | } else |
Shinya Kuribayashi | c70c5cd | 2009-11-06 21:47:30 +0900 | [diff] [blame] | 327 | dev->status &= ~STATUS_WRITE_IN_PROGRESS; |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 328 | } |
| 329 | |
Shinya Kuribayashi | 69151e5 | 2009-11-06 21:51:00 +0900 | [diff] [blame] | 330 | /* |
| 331 | * If i2c_msg index search is completed, we don't need TX_EMPTY |
| 332 | * interrupt any more. |
| 333 | */ |
| 334 | if (dev->msg_write_idx == dev->msgs_num) |
| 335 | intr_mask &= ~DW_IC_INTR_TX_EMPTY; |
| 336 | |
Shinya Kuribayashi | 8f588e4 | 2009-11-06 21:51:18 +0900 | [diff] [blame] | 337 | if (dev->msg_err) |
| 338 | intr_mask = 0; |
| 339 | |
Dirk Brandewie | 2373f6b | 2011-10-29 10:57:23 +0100 | [diff] [blame] | 340 | dw_writel(dev, intr_mask, DW_IC_INTR_MASK); |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 341 | } |
| 342 | |
Tin Huynh | c3ae106 | 2016-11-10 09:56:33 +0700 | [diff] [blame] | 343 | static u8 |
| 344 | i2c_dw_recv_len(struct dw_i2c_dev *dev, u8 len) |
| 345 | { |
| 346 | struct i2c_msg *msgs = dev->msgs; |
| 347 | u32 flags = msgs[dev->msg_read_idx].flags; |
| 348 | |
| 349 | /* |
| 350 | * Adjust the buffer length and mask the flag |
| 351 | * after receiving the first byte. |
| 352 | */ |
| 353 | len += (flags & I2C_CLIENT_PEC) ? 2 : 1; |
| 354 | dev->tx_buf_len = len - min_t(u8, len, dev->rx_outstanding); |
| 355 | msgs[dev->msg_read_idx].len = len; |
| 356 | msgs[dev->msg_read_idx].flags &= ~I2C_M_RECV_LEN; |
| 357 | |
| 358 | return len; |
| 359 | } |
| 360 | |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 361 | static void |
Shinya Kuribayashi | 78839bd | 2009-11-06 21:45:39 +0900 | [diff] [blame] | 362 | i2c_dw_read(struct dw_i2c_dev *dev) |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 363 | { |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 364 | struct i2c_msg *msgs = dev->msgs; |
Shinya Kuribayashi | ae72222 | 2009-11-06 21:49:39 +0900 | [diff] [blame] | 365 | int rx_valid; |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 366 | |
Shinya Kuribayashi | 6d2ea48 | 2009-11-06 21:46:29 +0900 | [diff] [blame] | 367 | for (; dev->msg_read_idx < dev->msgs_num; dev->msg_read_idx++) { |
Shinya Kuribayashi | ed5e1dd | 2009-11-06 21:43:52 +0900 | [diff] [blame] | 368 | u32 len; |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 369 | u8 *buf; |
| 370 | |
| 371 | if (!(msgs[dev->msg_read_idx].flags & I2C_M_RD)) |
| 372 | continue; |
| 373 | |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 374 | if (!(dev->status & STATUS_READ_IN_PROGRESS)) { |
| 375 | len = msgs[dev->msg_read_idx].len; |
| 376 | buf = msgs[dev->msg_read_idx].buf; |
| 377 | } else { |
| 378 | len = dev->rx_buf_len; |
| 379 | buf = dev->rx_buf; |
| 380 | } |
| 381 | |
Jean-Hugues Deschenes | 7f27960 | 2011-10-06 11:26:25 -0700 | [diff] [blame] | 382 | rx_valid = dw_readl(dev, DW_IC_RXFLR); |
Shinya Kuribayashi | ae72222 | 2009-11-06 21:49:39 +0900 | [diff] [blame] | 383 | |
Josef Ahmad | e6f34ce | 2013-04-19 17:28:10 +0100 | [diff] [blame] | 384 | for (; len > 0 && rx_valid > 0; len--, rx_valid--) { |
Tin Huynh | c3ae106 | 2016-11-10 09:56:33 +0700 | [diff] [blame] | 385 | u32 flags = msgs[dev->msg_read_idx].flags; |
| 386 | |
| 387 | *buf = dw_readl(dev, DW_IC_DATA_CMD); |
| 388 | /* Ensure length byte is a valid value */ |
| 389 | if (flags & I2C_M_RECV_LEN && |
| 390 | *buf <= I2C_SMBUS_BLOCK_MAX && *buf > 0) { |
| 391 | len = i2c_dw_recv_len(dev, *buf); |
| 392 | } |
| 393 | buf++; |
Josef Ahmad | e6f34ce | 2013-04-19 17:28:10 +0100 | [diff] [blame] | 394 | dev->rx_outstanding--; |
| 395 | } |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 396 | |
| 397 | if (len > 0) { |
| 398 | dev->status |= STATUS_READ_IN_PROGRESS; |
| 399 | dev->rx_buf_len = len; |
| 400 | dev->rx_buf = buf; |
| 401 | return; |
| 402 | } else |
| 403 | dev->status &= ~STATUS_READ_IN_PROGRESS; |
| 404 | } |
| 405 | } |
| 406 | |
| 407 | /* |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 408 | * Prepare controller for a transaction and call i2c_dw_xfer_msg. |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 409 | */ |
Jarkko Nikula | d80d134 | 2015-10-12 16:55:35 +0300 | [diff] [blame] | 410 | static int |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 411 | i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num) |
| 412 | { |
| 413 | struct dw_i2c_dev *dev = i2c_get_adapdata(adap); |
| 414 | int ret; |
| 415 | |
| 416 | dev_dbg(dev->dev, "%s: msgs: %d\n", __func__, num); |
| 417 | |
Dirk Brandewie | 18dbdda | 2011-10-06 11:26:36 -0700 | [diff] [blame] | 418 | pm_runtime_get_sync(dev->dev); |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 419 | |
Wolfram Sang | 16735d0 | 2013-11-14 14:32:02 -0800 | [diff] [blame] | 420 | reinit_completion(&dev->cmd_complete); |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 421 | dev->msgs = msgs; |
| 422 | dev->msgs_num = num; |
| 423 | dev->cmd_err = 0; |
| 424 | dev->msg_write_idx = 0; |
| 425 | dev->msg_read_idx = 0; |
| 426 | dev->msg_err = 0; |
| 427 | dev->status = STATUS_IDLE; |
Shinya Kuribayashi | ce6eb57 | 2009-11-06 21:51:57 +0900 | [diff] [blame] | 428 | dev->abort_source = 0; |
Josef Ahmad | e6f34ce | 2013-04-19 17:28:10 +0100 | [diff] [blame] | 429 | dev->rx_outstanding = 0; |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 430 | |
Lucas De Marchi | 8c5660b | 2016-08-23 19:18:54 -0300 | [diff] [blame] | 431 | ret = i2c_dw_acquire_lock(dev); |
| 432 | if (ret) |
| 433 | goto done_nolock; |
David Box | c0601d2 | 2015-01-15 01:12:16 -0800 | [diff] [blame] | 434 | |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 435 | ret = i2c_dw_wait_bus_not_busy(dev); |
| 436 | if (ret < 0) |
| 437 | goto done; |
| 438 | |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 439 | /* Start the transfers */ |
Shinya Kuribayashi | 81e798b | 2009-11-06 21:48:55 +0900 | [diff] [blame] | 440 | i2c_dw_xfer_init(dev); |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 441 | |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 442 | /* Wait for tx to complete */ |
Weifeng Voon | d0bcd8d | 2016-06-17 09:46:35 +0800 | [diff] [blame] | 443 | if (!wait_for_completion_timeout(&dev->cmd_complete, adap->timeout)) { |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 444 | dev_err(dev->dev, "controller timed out\n"); |
Christian Ruppert | 38d7fad | 2013-06-07 10:51:23 +0200 | [diff] [blame] | 445 | /* i2c_dw_init implicitly disables the adapter */ |
Jarkko Nikula | 21bf440 | 2017-06-28 17:23:28 +0300 | [diff] [blame] | 446 | i2c_dw_init_master(dev); |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 447 | ret = -ETIMEDOUT; |
| 448 | goto done; |
Mika Westerberg | e42dba5 | 2013-05-22 13:03:11 +0300 | [diff] [blame] | 449 | } |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 450 | |
Jarkko Nikula | 89119f0 | 2016-11-25 17:22:27 +0200 | [diff] [blame] | 451 | /* |
| 452 | * We must disable the adapter before returning and signaling the end |
| 453 | * of the current transfer. Otherwise the hardware might continue |
| 454 | * generating interrupts which in turn causes a race condition with |
| 455 | * the following transfer. Needs some more investigation if the |
| 456 | * additional interrupts are a hardware bug or this driver doesn't |
| 457 | * handle them correctly yet. |
| 458 | */ |
| 459 | __i2c_dw_enable(dev, false); |
| 460 | |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 461 | if (dev->msg_err) { |
| 462 | ret = dev->msg_err; |
| 463 | goto done; |
| 464 | } |
| 465 | |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 466 | /* No error */ |
Russell King | 2bf413d | 2016-11-18 19:40:04 +0000 | [diff] [blame] | 467 | if (likely(!dev->cmd_err && !dev->status)) { |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 468 | ret = num; |
| 469 | goto done; |
| 470 | } |
| 471 | |
| 472 | /* We have an error */ |
| 473 | if (dev->cmd_err == DW_IC_ERR_TX_ABRT) { |
Shinya Kuribayashi | ce6eb57 | 2009-11-06 21:51:57 +0900 | [diff] [blame] | 474 | ret = i2c_dw_handle_tx_abort(dev); |
| 475 | goto done; |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 476 | } |
Russell King | 2bf413d | 2016-11-18 19:40:04 +0000 | [diff] [blame] | 477 | |
| 478 | if (dev->status) |
| 479 | dev_err(dev->dev, |
| 480 | "transfer terminated early - interrupt latency too high?\n"); |
| 481 | |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 482 | ret = -EIO; |
| 483 | |
| 484 | done: |
Lucas De Marchi | 8c5660b | 2016-08-23 19:18:54 -0300 | [diff] [blame] | 485 | i2c_dw_release_lock(dev); |
David Box | c0601d2 | 2015-01-15 01:12:16 -0800 | [diff] [blame] | 486 | |
| 487 | done_nolock: |
Mika Westerberg | 4345233 | 2013-04-10 00:36:42 +0000 | [diff] [blame] | 488 | pm_runtime_mark_last_busy(dev->dev); |
| 489 | pm_runtime_put_autosuspend(dev->dev); |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 490 | |
| 491 | return ret; |
| 492 | } |
| 493 | |
Bhumika Goyal | 92d9d0d | 2017-01-27 23:36:17 +0530 | [diff] [blame] | 494 | static const struct i2c_algorithm i2c_dw_algo = { |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 495 | .master_xfer = i2c_dw_xfer, |
| 496 | .functionality = i2c_dw_func, |
Jarkko Nikula | d80d134 | 2015-10-12 16:55:35 +0300 | [diff] [blame] | 497 | }; |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 498 | |
Shinya Kuribayashi | e28000a | 2009-11-06 21:44:37 +0900 | [diff] [blame] | 499 | static u32 i2c_dw_read_clear_intrbits(struct dw_i2c_dev *dev) |
| 500 | { |
| 501 | u32 stat; |
| 502 | |
| 503 | /* |
| 504 | * The IC_INTR_STAT register just indicates "enabled" interrupts. |
| 505 | * Ths unmasked raw version of interrupt status bits are available |
| 506 | * in the IC_RAW_INTR_STAT register. |
| 507 | * |
| 508 | * That is, |
Dirk Brandewie | 2373f6b | 2011-10-29 10:57:23 +0100 | [diff] [blame] | 509 | * stat = dw_readl(IC_INTR_STAT); |
Shinya Kuribayashi | e28000a | 2009-11-06 21:44:37 +0900 | [diff] [blame] | 510 | * equals to, |
Dirk Brandewie | 2373f6b | 2011-10-29 10:57:23 +0100 | [diff] [blame] | 511 | * stat = dw_readl(IC_RAW_INTR_STAT) & dw_readl(IC_INTR_MASK); |
Shinya Kuribayashi | e28000a | 2009-11-06 21:44:37 +0900 | [diff] [blame] | 512 | * |
| 513 | * The raw version might be useful for debugging purposes. |
| 514 | */ |
Jean-Hugues Deschenes | 7f27960 | 2011-10-06 11:26:25 -0700 | [diff] [blame] | 515 | stat = dw_readl(dev, DW_IC_INTR_STAT); |
Shinya Kuribayashi | e28000a | 2009-11-06 21:44:37 +0900 | [diff] [blame] | 516 | |
| 517 | /* |
| 518 | * Do not use the IC_CLR_INTR register to clear interrupts, or |
| 519 | * you'll miss some interrupts, triggered during the period from |
Dirk Brandewie | 2373f6b | 2011-10-29 10:57:23 +0100 | [diff] [blame] | 520 | * dw_readl(IC_INTR_STAT) to dw_readl(IC_CLR_INTR). |
Shinya Kuribayashi | e28000a | 2009-11-06 21:44:37 +0900 | [diff] [blame] | 521 | * |
| 522 | * Instead, use the separately-prepared IC_CLR_* registers. |
| 523 | */ |
| 524 | if (stat & DW_IC_INTR_RX_UNDER) |
Jean-Hugues Deschenes | 7f27960 | 2011-10-06 11:26:25 -0700 | [diff] [blame] | 525 | dw_readl(dev, DW_IC_CLR_RX_UNDER); |
Shinya Kuribayashi | e28000a | 2009-11-06 21:44:37 +0900 | [diff] [blame] | 526 | if (stat & DW_IC_INTR_RX_OVER) |
Jean-Hugues Deschenes | 7f27960 | 2011-10-06 11:26:25 -0700 | [diff] [blame] | 527 | dw_readl(dev, DW_IC_CLR_RX_OVER); |
Shinya Kuribayashi | e28000a | 2009-11-06 21:44:37 +0900 | [diff] [blame] | 528 | if (stat & DW_IC_INTR_TX_OVER) |
Jean-Hugues Deschenes | 7f27960 | 2011-10-06 11:26:25 -0700 | [diff] [blame] | 529 | dw_readl(dev, DW_IC_CLR_TX_OVER); |
Shinya Kuribayashi | e28000a | 2009-11-06 21:44:37 +0900 | [diff] [blame] | 530 | if (stat & DW_IC_INTR_RD_REQ) |
Jean-Hugues Deschenes | 7f27960 | 2011-10-06 11:26:25 -0700 | [diff] [blame] | 531 | dw_readl(dev, DW_IC_CLR_RD_REQ); |
Shinya Kuribayashi | e28000a | 2009-11-06 21:44:37 +0900 | [diff] [blame] | 532 | if (stat & DW_IC_INTR_TX_ABRT) { |
| 533 | /* |
| 534 | * The IC_TX_ABRT_SOURCE register is cleared whenever |
| 535 | * the IC_CLR_TX_ABRT is read. Preserve it beforehand. |
| 536 | */ |
Jean-Hugues Deschenes | 7f27960 | 2011-10-06 11:26:25 -0700 | [diff] [blame] | 537 | dev->abort_source = dw_readl(dev, DW_IC_TX_ABRT_SOURCE); |
| 538 | dw_readl(dev, DW_IC_CLR_TX_ABRT); |
Shinya Kuribayashi | e28000a | 2009-11-06 21:44:37 +0900 | [diff] [blame] | 539 | } |
| 540 | if (stat & DW_IC_INTR_RX_DONE) |
Jean-Hugues Deschenes | 7f27960 | 2011-10-06 11:26:25 -0700 | [diff] [blame] | 541 | dw_readl(dev, DW_IC_CLR_RX_DONE); |
Shinya Kuribayashi | e28000a | 2009-11-06 21:44:37 +0900 | [diff] [blame] | 542 | if (stat & DW_IC_INTR_ACTIVITY) |
Jean-Hugues Deschenes | 7f27960 | 2011-10-06 11:26:25 -0700 | [diff] [blame] | 543 | dw_readl(dev, DW_IC_CLR_ACTIVITY); |
Shinya Kuribayashi | e28000a | 2009-11-06 21:44:37 +0900 | [diff] [blame] | 544 | if (stat & DW_IC_INTR_STOP_DET) |
Jean-Hugues Deschenes | 7f27960 | 2011-10-06 11:26:25 -0700 | [diff] [blame] | 545 | dw_readl(dev, DW_IC_CLR_STOP_DET); |
Shinya Kuribayashi | e28000a | 2009-11-06 21:44:37 +0900 | [diff] [blame] | 546 | if (stat & DW_IC_INTR_START_DET) |
Jean-Hugues Deschenes | 7f27960 | 2011-10-06 11:26:25 -0700 | [diff] [blame] | 547 | dw_readl(dev, DW_IC_CLR_START_DET); |
Shinya Kuribayashi | e28000a | 2009-11-06 21:44:37 +0900 | [diff] [blame] | 548 | if (stat & DW_IC_INTR_GEN_CALL) |
Jean-Hugues Deschenes | 7f27960 | 2011-10-06 11:26:25 -0700 | [diff] [blame] | 549 | dw_readl(dev, DW_IC_CLR_GEN_CALL); |
Shinya Kuribayashi | e28000a | 2009-11-06 21:44:37 +0900 | [diff] [blame] | 550 | |
| 551 | return stat; |
| 552 | } |
| 553 | |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 554 | /* |
Luis Oliveira | 89a1e1b | 2017-06-14 11:43:22 +0100 | [diff] [blame] | 555 | * Interrupt service routine. This gets called whenever an I2C master interrupt |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 556 | * occurs. |
| 557 | */ |
Luis Oliveira | 89a1e1b | 2017-06-14 11:43:22 +0100 | [diff] [blame] | 558 | static int i2c_dw_irq_handler_master(struct dw_i2c_dev *dev) |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 559 | { |
Luis Oliveira | 89a1e1b | 2017-06-14 11:43:22 +0100 | [diff] [blame] | 560 | u32 stat; |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 561 | |
Shinya Kuribayashi | e28000a | 2009-11-06 21:44:37 +0900 | [diff] [blame] | 562 | stat = i2c_dw_read_clear_intrbits(dev); |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 563 | if (stat & DW_IC_INTR_TX_ABRT) { |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 564 | dev->cmd_err |= DW_IC_ERR_TX_ABRT; |
| 565 | dev->status = STATUS_IDLE; |
Shinya Kuribayashi | 597fe31 | 2009-11-06 21:51:36 +0900 | [diff] [blame] | 566 | |
| 567 | /* |
| 568 | * Anytime TX_ABRT is set, the contents of the tx/rx |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 569 | * buffers are flushed. Make sure to skip them. |
Shinya Kuribayashi | 597fe31 | 2009-11-06 21:51:36 +0900 | [diff] [blame] | 570 | */ |
Jean-Hugues Deschenes | 7f27960 | 2011-10-06 11:26:25 -0700 | [diff] [blame] | 571 | dw_writel(dev, 0, DW_IC_INTR_MASK); |
Shinya Kuribayashi | 597fe31 | 2009-11-06 21:51:36 +0900 | [diff] [blame] | 572 | goto tx_aborted; |
Shinya Kuribayashi | 0774539 | 2009-11-06 21:47:51 +0900 | [diff] [blame] | 573 | } |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 574 | |
Shinya Kuribayashi | 21a89d4 | 2009-11-06 21:48:33 +0900 | [diff] [blame] | 575 | if (stat & DW_IC_INTR_RX_FULL) |
Shinya Kuribayashi | 0774539 | 2009-11-06 21:47:51 +0900 | [diff] [blame] | 576 | i2c_dw_read(dev); |
Shinya Kuribayashi | 21a89d4 | 2009-11-06 21:48:33 +0900 | [diff] [blame] | 577 | |
| 578 | if (stat & DW_IC_INTR_TX_EMPTY) |
Shinya Kuribayashi | 0774539 | 2009-11-06 21:47:51 +0900 | [diff] [blame] | 579 | i2c_dw_xfer_msg(dev); |
Shinya Kuribayashi | 0774539 | 2009-11-06 21:47:51 +0900 | [diff] [blame] | 580 | |
| 581 | /* |
| 582 | * No need to modify or disable the interrupt mask here. |
| 583 | * i2c_dw_xfer_msg() will take care of it according to |
| 584 | * the current transmit status. |
| 585 | */ |
| 586 | |
Shinya Kuribayashi | 597fe31 | 2009-11-06 21:51:36 +0900 | [diff] [blame] | 587 | tx_aborted: |
Jarkko Nikula | 89119f0 | 2016-11-25 17:22:27 +0200 | [diff] [blame] | 588 | if ((stat & (DW_IC_INTR_TX_ABRT | DW_IC_INTR_STOP_DET)) || dev->msg_err) |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 589 | complete(&dev->cmd_complete); |
Hans de Goede | 86524e5 | 2017-02-10 11:27:53 +0100 | [diff] [blame] | 590 | else if (unlikely(dev->flags & ACCESS_INTR_MASK)) { |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 591 | /* Workaround to trigger pending interrupt */ |
Xiangliang Yu | 2d244c8 | 2015-12-11 20:02:53 +0800 | [diff] [blame] | 592 | stat = dw_readl(dev, DW_IC_INTR_MASK); |
| 593 | i2c_dw_disable_int(dev); |
| 594 | dw_writel(dev, stat, DW_IC_INTR_MASK); |
| 595 | } |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 596 | |
Luis Oliveira | 89a1e1b | 2017-06-14 11:43:22 +0100 | [diff] [blame] | 597 | return 0; |
| 598 | } |
| 599 | |
| 600 | static irqreturn_t i2c_dw_isr(int this_irq, void *dev_id) |
| 601 | { |
| 602 | struct dw_i2c_dev *dev = dev_id; |
| 603 | u32 stat, enabled; |
| 604 | |
| 605 | enabled = dw_readl(dev, DW_IC_ENABLE); |
| 606 | stat = dw_readl(dev, DW_IC_RAW_INTR_STAT); |
| 607 | dev_dbg(dev->dev, "enabled=%#x stat=%#x\n", enabled, stat); |
| 608 | if (!enabled || !(stat & ~DW_IC_INTR_ACTIVITY)) |
| 609 | return IRQ_NONE; |
| 610 | |
| 611 | i2c_dw_irq_handler_master(dev); |
| 612 | |
Baruch Siach | 1ab52cf | 2009-06-22 16:36:29 +0300 | [diff] [blame] | 613 | return IRQ_HANDLED; |
| 614 | } |
Dirk Brandewie | f3fa9f3 | 2011-10-06 11:26:34 -0700 | [diff] [blame] | 615 | |
Jarkko Nikula | d80d134 | 2015-10-12 16:55:35 +0300 | [diff] [blame] | 616 | int i2c_dw_probe(struct dw_i2c_dev *dev) |
| 617 | { |
| 618 | struct i2c_adapter *adap = &dev->adapter; |
Hans de Goede | 41c80b8 | 2017-03-13 23:25:09 +0100 | [diff] [blame] | 619 | unsigned long irq_flags; |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 620 | int ret; |
Jarkko Nikula | d80d134 | 2015-10-12 16:55:35 +0300 | [diff] [blame] | 621 | |
| 622 | init_completion(&dev->cmd_complete); |
Jarkko Nikula | d80d134 | 2015-10-12 16:55:35 +0300 | [diff] [blame] | 623 | |
Jarkko Nikula | 21bf440 | 2017-06-28 17:23:28 +0300 | [diff] [blame] | 624 | dev->init = i2c_dw_init_master; |
Luis Oliveira | 9031235 | 2017-06-14 11:43:23 +0100 | [diff] [blame] | 625 | dev->disable = i2c_dw_disable; |
| 626 | dev->disable_int = i2c_dw_disable_int; |
| 627 | |
| 628 | ret = dev->init(dev); |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 629 | if (ret) |
| 630 | return ret; |
Jarkko Nikula | d80d134 | 2015-10-12 16:55:35 +0300 | [diff] [blame] | 631 | |
| 632 | snprintf(adap->name, sizeof(adap->name), |
| 633 | "Synopsys DesignWare I2C adapter"); |
Baruch Siach | 8d22f30 | 2015-12-23 18:43:24 +0200 | [diff] [blame] | 634 | adap->retries = 3; |
Jarkko Nikula | d80d134 | 2015-10-12 16:55:35 +0300 | [diff] [blame] | 635 | adap->algo = &i2c_dw_algo; |
| 636 | adap->dev.parent = dev->dev; |
| 637 | i2c_set_adapdata(adap, dev); |
| 638 | |
Hans de Goede | 41c80b8 | 2017-03-13 23:25:09 +0100 | [diff] [blame] | 639 | if (dev->pm_disabled) { |
| 640 | dev_pm_syscore_device(dev->dev, true); |
| 641 | irq_flags = IRQF_NO_SUSPEND; |
| 642 | } else { |
| 643 | irq_flags = IRQF_SHARED | IRQF_COND_SUSPEND; |
| 644 | } |
| 645 | |
Jarkko Nikula | d80d134 | 2015-10-12 16:55:35 +0300 | [diff] [blame] | 646 | i2c_dw_disable_int(dev); |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 647 | ret = devm_request_irq(dev->dev, dev->irq, i2c_dw_isr, irq_flags, |
| 648 | dev_name(dev->dev), dev); |
| 649 | if (ret) { |
Jarkko Nikula | d80d134 | 2015-10-12 16:55:35 +0300 | [diff] [blame] | 650 | dev_err(dev->dev, "failure requesting irq %i: %d\n", |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 651 | dev->irq, ret); |
| 652 | return ret; |
Jarkko Nikula | d80d134 | 2015-10-12 16:55:35 +0300 | [diff] [blame] | 653 | } |
| 654 | |
Jarkko Nikula | cd998de | 2016-02-11 16:36:03 +0200 | [diff] [blame] | 655 | /* |
| 656 | * Increment PM usage count during adapter registration in order to |
| 657 | * avoid possible spurious runtime suspend when adapter device is |
| 658 | * registered to the device core and immediate resume in case bus has |
| 659 | * registered I2C slaves that do I2C transfers in their probe. |
| 660 | */ |
| 661 | pm_runtime_get_noresume(dev->dev); |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 662 | ret = i2c_add_numbered_adapter(adap); |
| 663 | if (ret) |
| 664 | dev_err(dev->dev, "failure adding adapter: %d\n", ret); |
Jarkko Nikula | cd998de | 2016-02-11 16:36:03 +0200 | [diff] [blame] | 665 | pm_runtime_put_noidle(dev->dev); |
Jarkko Nikula | d80d134 | 2015-10-12 16:55:35 +0300 | [diff] [blame] | 666 | |
Luis Oliveira | e393f67 | 2017-06-14 11:43:21 +0100 | [diff] [blame] | 667 | return ret; |
Jarkko Nikula | d80d134 | 2015-10-12 16:55:35 +0300 | [diff] [blame] | 668 | } |
| 669 | EXPORT_SYMBOL_GPL(i2c_dw_probe); |
| 670 | |
Luis Oliveira | 9031235 | 2017-06-14 11:43:23 +0100 | [diff] [blame] | 671 | MODULE_DESCRIPTION("Synopsys DesignWare I2C bus master adapter"); |
Mika Westerberg | 9dd3162 | 2013-01-17 12:31:04 +0200 | [diff] [blame] | 672 | MODULE_LICENSE("GPL"); |