blob: 0d15f4c1e9f7e3ae17a03f7b39465b47f8cf5abe [file] [log] [blame]
Andy Shevchenko15c566f2018-08-10 13:26:49 +03001// SPDX-License-Identifier: GPL-2.0
Luis Oliveira9f3e0652017-06-22 11:17:32 +01002/*
3 * Synopsys DesignWare I2C adapter driver (slave only).
4 *
5 * Based on the Synopsys DesignWare I2C adapter driver (master).
6 *
7 * Copyright (C) 2016 Synopsys Inc.
Luis Oliveira9f3e0652017-06-22 11:17:32 +01008 */
9#include <linux/delay.h>
10#include <linux/err.h>
11#include <linux/errno.h>
12#include <linux/i2c.h>
13#include <linux/interrupt.h>
14#include <linux/io.h>
15#include <linux/module.h>
16#include <linux/pm_runtime.h>
Serge Semin0daede82020-05-28 12:33:18 +030017#include <linux/regmap.h>
Luis Oliveira9f3e0652017-06-22 11:17:32 +010018
19#include "i2c-designware-core.h"
20
21static void i2c_dw_configure_fifo_slave(struct dw_i2c_dev *dev)
22{
23 /* Configure Tx/Rx FIFO threshold levels. */
Serge Semin0daede82020-05-28 12:33:18 +030024 regmap_write(dev->map, DW_IC_TX_TL, 0);
25 regmap_write(dev->map, DW_IC_RX_TL, 0);
Luis Oliveira9f3e0652017-06-22 11:17:32 +010026
27 /* Configure the I2C slave. */
Serge Semin0daede82020-05-28 12:33:18 +030028 regmap_write(dev->map, DW_IC_CON, dev->slave_cfg);
29 regmap_write(dev->map, DW_IC_INTR_MASK, DW_IC_INTR_SLAVE_MASK);
Luis Oliveira9f3e0652017-06-22 11:17:32 +010030}
31
32/**
33 * i2c_dw_init_slave() - Initialize the designware i2c slave hardware
34 * @dev: device private data
35 *
36 * This function configures and enables the I2C in slave mode.
37 * This function is called during I2C init function, and in case of timeout at
38 * run time.
39 */
Jarkko Nikula21bf4402017-06-28 17:23:28 +030040static int i2c_dw_init_slave(struct dw_i2c_dev *dev)
Luis Oliveira9f3e0652017-06-22 11:17:32 +010041{
Luis Oliveira9f3e0652017-06-22 11:17:32 +010042 int ret;
43
44 ret = i2c_dw_acquire_lock(dev);
45 if (ret)
46 return ret;
47
Luis Oliveira9f3e0652017-06-22 11:17:32 +010048 /* Disable the adapter. */
Alexander Monakov9f4659b2018-04-28 16:56:07 +030049 __i2c_dw_disable(dev);
Luis Oliveira9f3e0652017-06-22 11:17:32 +010050
Jarkko Nikula1080ee72018-06-19 14:23:22 +030051 /* Write SDA hold time if supported */
52 if (dev->sda_hold_time)
Serge Semin0daede82020-05-28 12:33:18 +030053 regmap_write(dev->map, DW_IC_SDA_HOLD, dev->sda_hold_time);
Luis Oliveira9f3e0652017-06-22 11:17:32 +010054
55 i2c_dw_configure_fifo_slave(dev);
56 i2c_dw_release_lock(dev);
57
58 return 0;
59}
Luis Oliveira9f3e0652017-06-22 11:17:32 +010060
61static int i2c_dw_reg_slave(struct i2c_client *slave)
62{
63 struct dw_i2c_dev *dev = i2c_get_adapdata(slave->adapter);
64
65 if (dev->slave)
66 return -EBUSY;
67 if (slave->flags & I2C_CLIENT_TEN)
68 return -EAFNOSUPPORT;
Jarkko Nikula2a86cdd2017-08-15 17:34:45 +030069 pm_runtime_get_sync(dev->dev);
70
Luis Oliveira9f3e0652017-06-22 11:17:32 +010071 /*
72 * Set slave address in the IC_SAR register,
73 * the address to which the DW_apb_i2c responds.
74 */
Alexander Monakov9f4659b2018-04-28 16:56:07 +030075 __i2c_dw_disable_nowait(dev);
Serge Semin0daede82020-05-28 12:33:18 +030076 regmap_write(dev->map, DW_IC_SAR, slave->addr);
Luis Oliveira9f3e0652017-06-22 11:17:32 +010077 dev->slave = slave;
78
Alexander Monakov9f4659b2018-04-28 16:56:07 +030079 __i2c_dw_enable(dev);
Luis Oliveira9f3e0652017-06-22 11:17:32 +010080
81 dev->cmd_err = 0;
82 dev->msg_write_idx = 0;
83 dev->msg_read_idx = 0;
84 dev->msg_err = 0;
85 dev->status = STATUS_IDLE;
86 dev->abort_source = 0;
87 dev->rx_outstanding = 0;
88
89 return 0;
90}
91
92static int i2c_dw_unreg_slave(struct i2c_client *slave)
93{
94 struct dw_i2c_dev *dev = i2c_get_adapdata(slave->adapter);
95
96 dev->disable_int(dev);
97 dev->disable(dev);
Jarkko Nikulac486dcd2019-08-15 16:52:11 +030098 synchronize_irq(dev->irq);
Luis Oliveira9f3e0652017-06-22 11:17:32 +010099 dev->slave = NULL;
Jarkko Nikula2a86cdd2017-08-15 17:34:45 +0300100 pm_runtime_put(dev->dev);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100101
102 return 0;
103}
104
105static u32 i2c_dw_read_clear_intrbits_slave(struct dw_i2c_dev *dev)
106{
Serge Semin0daede82020-05-28 12:33:18 +0300107 u32 stat, dummy;
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100108
109 /*
110 * The IC_INTR_STAT register just indicates "enabled" interrupts.
Andy Shevchenko24d3fdc2020-03-19 17:30:12 +0200111 * The unmasked raw version of interrupt status bits is available
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100112 * in the IC_RAW_INTR_STAT register.
113 *
114 * That is,
Serge Semin0daede82020-05-28 12:33:18 +0300115 * stat = readl(IC_INTR_STAT);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100116 * equals to,
Serge Semin0daede82020-05-28 12:33:18 +0300117 * stat = readl(IC_RAW_INTR_STAT) & readl(IC_INTR_MASK);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100118 *
119 * The raw version might be useful for debugging purposes.
120 */
Serge Semin0daede82020-05-28 12:33:18 +0300121 regmap_read(dev->map, DW_IC_INTR_STAT, &stat);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100122
123 /*
124 * Do not use the IC_CLR_INTR register to clear interrupts, or
125 * you'll miss some interrupts, triggered during the period from
Serge Semin0daede82020-05-28 12:33:18 +0300126 * readl(IC_INTR_STAT) to readl(IC_CLR_INTR).
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100127 *
128 * Instead, use the separately-prepared IC_CLR_* registers.
129 */
130 if (stat & DW_IC_INTR_TX_ABRT)
Serge Semin0daede82020-05-28 12:33:18 +0300131 regmap_read(dev->map, DW_IC_CLR_TX_ABRT, &dummy);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100132 if (stat & DW_IC_INTR_RX_UNDER)
Serge Semin0daede82020-05-28 12:33:18 +0300133 regmap_read(dev->map, DW_IC_CLR_RX_UNDER, &dummy);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100134 if (stat & DW_IC_INTR_RX_OVER)
Serge Semin0daede82020-05-28 12:33:18 +0300135 regmap_read(dev->map, DW_IC_CLR_RX_OVER, &dummy);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100136 if (stat & DW_IC_INTR_TX_OVER)
Serge Semin0daede82020-05-28 12:33:18 +0300137 regmap_read(dev->map, DW_IC_CLR_TX_OVER, &dummy);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100138 if (stat & DW_IC_INTR_RX_DONE)
Serge Semin0daede82020-05-28 12:33:18 +0300139 regmap_read(dev->map, DW_IC_CLR_RX_DONE, &dummy);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100140 if (stat & DW_IC_INTR_ACTIVITY)
Serge Semin0daede82020-05-28 12:33:18 +0300141 regmap_read(dev->map, DW_IC_CLR_ACTIVITY, &dummy);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100142 if (stat & DW_IC_INTR_STOP_DET)
Serge Semin0daede82020-05-28 12:33:18 +0300143 regmap_read(dev->map, DW_IC_CLR_STOP_DET, &dummy);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100144 if (stat & DW_IC_INTR_START_DET)
Serge Semin0daede82020-05-28 12:33:18 +0300145 regmap_read(dev->map, DW_IC_CLR_START_DET, &dummy);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100146 if (stat & DW_IC_INTR_GEN_CALL)
Serge Semin0daede82020-05-28 12:33:18 +0300147 regmap_read(dev->map, DW_IC_CLR_GEN_CALL, &dummy);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100148
149 return stat;
150}
151
152/*
153 * Interrupt service routine. This gets called whenever an I2C slave interrupt
154 * occurs.
155 */
156
157static int i2c_dw_irq_handler_slave(struct dw_i2c_dev *dev)
158{
Serge Semin0daede82020-05-28 12:33:18 +0300159 u32 raw_stat, stat, enabled, tmp;
160 u8 val = 0, slave_activity;
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100161
Serge Semin0daede82020-05-28 12:33:18 +0300162 regmap_read(dev->map, DW_IC_ENABLE, &enabled);
163 regmap_read(dev->map, DW_IC_RAW_INTR_STAT, &raw_stat);
164 regmap_read(dev->map, DW_IC_STATUS, &tmp);
165 slave_activity = ((tmp & DW_IC_STATUS_SLAVE_ACTIVITY) >> 6);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100166
Jarkko Nikula984277a2017-08-11 14:44:55 +0300167 if (!enabled || !(raw_stat & ~DW_IC_INTR_ACTIVITY) || !dev->slave)
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100168 return 0;
169
Michael Wu66b92312020-10-30 16:04:19 +0800170 stat = i2c_dw_read_clear_intrbits_slave(dev);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100171 dev_dbg(dev->dev,
Colin Ian King9809cb82017-06-29 09:22:15 +0100172 "%#x STATUS SLAVE_ACTIVITY=%#x : RAW_INTR_STAT=%#x : INTR_STAT=%#x\n",
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100173 enabled, slave_activity, raw_stat, stat);
174
Michael Wu3b5f7f12020-10-30 16:04:20 +0800175 if (stat & DW_IC_INTR_RX_FULL) {
176 if (dev->status != STATUS_WRITE_IN_PROGRESS) {
177 dev->status = STATUS_WRITE_IN_PROGRESS;
178 i2c_slave_event(dev->slave, I2C_SLAVE_WRITE_REQUESTED,
179 &val);
180 }
181
182 regmap_read(dev->map, DW_IC_DATA_CMD, &tmp);
183 val = tmp;
184 if (!i2c_slave_event(dev->slave, I2C_SLAVE_WRITE_RECEIVED,
185 &val))
186 dev_vdbg(dev->dev, "Byte %X acked!", val);
187 }
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100188
189 if (stat & DW_IC_INTR_RD_REQ) {
190 if (slave_activity) {
Michael Wu3b5f7f12020-10-30 16:04:20 +0800191 regmap_read(dev->map, DW_IC_CLR_RD_REQ, &tmp);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100192
Michael Wu3b5f7f12020-10-30 16:04:20 +0800193 dev->status = STATUS_READ_IN_PROGRESS;
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100194 if (!i2c_slave_event(dev->slave,
195 I2C_SLAVE_READ_REQUESTED,
196 &val))
Serge Semin0daede82020-05-28 12:33:18 +0300197 regmap_write(dev->map, DW_IC_DATA_CMD, val);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100198 }
199 }
200
201 if (stat & DW_IC_INTR_RX_DONE) {
202 if (!i2c_slave_event(dev->slave, I2C_SLAVE_READ_PROCESSED,
203 &val))
Serge Semin0daede82020-05-28 12:33:18 +0300204 regmap_read(dev->map, DW_IC_CLR_RX_DONE, &tmp);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100205 }
206
Michael Wu3b5f7f12020-10-30 16:04:20 +0800207 if (stat & DW_IC_INTR_STOP_DET) {
208 dev->status = STATUS_IDLE;
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100209 i2c_slave_event(dev->slave, I2C_SLAVE_STOP, &val);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100210 }
211
212 return 1;
213}
214
215static irqreturn_t i2c_dw_isr_slave(int this_irq, void *dev_id)
216{
217 struct dw_i2c_dev *dev = dev_id;
218 int ret;
219
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100220 ret = i2c_dw_irq_handler_slave(dev);
221 if (ret > 0)
222 complete(&dev->cmd_complete);
223
224 return IRQ_RETVAL(ret);
225}
226
Gustavo A. R. Silva8dc0f8c2017-07-09 15:57:44 -0500227static const struct i2c_algorithm i2c_dw_algo = {
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100228 .functionality = i2c_dw_func,
229 .reg_slave = i2c_dw_reg_slave,
230 .unreg_slave = i2c_dw_unreg_slave,
231};
232
Andy Shevchenko3ebe40e2020-04-25 16:44:45 +0300233void i2c_dw_configure_slave(struct dw_i2c_dev *dev)
234{
235 dev->functionality = I2C_FUNC_SLAVE | DW_IC_DEFAULT_FUNCTIONALITY;
236
237 dev->slave_cfg = DW_IC_CON_RX_FIFO_FULL_HLD_CTRL |
238 DW_IC_CON_RESTART_EN | DW_IC_CON_STOP_DET_IFADDRESSED;
239
240 dev->mode = DW_IC_SLAVE;
241}
242EXPORT_SYMBOL_GPL(i2c_dw_configure_slave);
243
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100244int i2c_dw_probe_slave(struct dw_i2c_dev *dev)
245{
246 struct i2c_adapter *adap = &dev->adapter;
247 int ret;
248
249 init_completion(&dev->cmd_complete);
250
251 dev->init = i2c_dw_init_slave;
252 dev->disable = i2c_dw_disable;
253 dev->disable_int = i2c_dw_disable_int;
254
Serge Semin0daede82020-05-28 12:33:18 +0300255 ret = i2c_dw_init_regmap(dev);
Jarkko Nikula3aca0bd2018-06-19 14:23:19 +0300256 if (ret)
257 return ret;
258
Jarkko Nikula1080ee72018-06-19 14:23:22 +0300259 ret = i2c_dw_set_sda_hold(dev);
260 if (ret)
261 return ret;
262
Serge Semin0daede82020-05-28 12:33:18 +0300263 ret = i2c_dw_set_fifo_size(dev);
264 if (ret)
265 return ret;
Serge Semin1f1a7142020-03-06 16:19:54 +0300266
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100267 ret = dev->init(dev);
268 if (ret)
269 return ret;
270
271 snprintf(adap->name, sizeof(adap->name),
272 "Synopsys DesignWare I2C Slave adapter");
273 adap->retries = 3;
274 adap->algo = &i2c_dw_algo;
275 adap->dev.parent = dev->dev;
276 i2c_set_adapdata(adap, dev);
277
278 ret = devm_request_irq(dev->dev, dev->irq, i2c_dw_isr_slave,
279 IRQF_SHARED, dev_name(dev->dev), dev);
280 if (ret) {
281 dev_err(dev->dev, "failure requesting irq %i: %d\n",
282 dev->irq, ret);
283 return ret;
284 }
285
286 ret = i2c_add_numbered_adapter(adap);
287 if (ret)
288 dev_err(dev->dev, "failure adding adapter: %d\n", ret);
Luis Oliveira9f3e0652017-06-22 11:17:32 +0100289
290 return ret;
291}
292EXPORT_SYMBOL_GPL(i2c_dw_probe_slave);
293
294MODULE_AUTHOR("Luis Oliveira <lolivei@synopsys.com>");
295MODULE_DESCRIPTION("Synopsys DesignWare I2C bus slave adapter");
296MODULE_LICENSE("GPL v2");