Merge tag 'for-linus-20180929' of git://git.kernel.dk/linux-block
[linux-2.6/btrfs-unstable.git] / drivers / i2c / busses / i2c-uniphier.c
blob454f914ae66dbd49931575122bb7c7dea662b11b
1 /*
2 * Copyright (C) 2015 Masahiro Yamada <yamada.masahiro@socionext.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #include <linux/clk.h>
16 #include <linux/i2c.h>
17 #include <linux/interrupt.h>
18 #include <linux/io.h>
19 #include <linux/module.h>
20 #include <linux/platform_device.h>
22 #define UNIPHIER_I2C_DTRM 0x00 /* TX register */
23 #define UNIPHIER_I2C_DTRM_IRQEN BIT(11) /* enable interrupt */
24 #define UNIPHIER_I2C_DTRM_STA BIT(10) /* start condition */
25 #define UNIPHIER_I2C_DTRM_STO BIT(9) /* stop condition */
26 #define UNIPHIER_I2C_DTRM_NACK BIT(8) /* do not return ACK */
27 #define UNIPHIER_I2C_DTRM_RD BIT(0) /* read transaction */
28 #define UNIPHIER_I2C_DREC 0x04 /* RX register */
29 #define UNIPHIER_I2C_DREC_MST BIT(14) /* 1 = master, 0 = slave */
30 #define UNIPHIER_I2C_DREC_TX BIT(13) /* 1 = transmit, 0 = receive */
31 #define UNIPHIER_I2C_DREC_STS BIT(12) /* stop condition detected */
32 #define UNIPHIER_I2C_DREC_LRB BIT(11) /* no ACK */
33 #define UNIPHIER_I2C_DREC_LAB BIT(9) /* arbitration lost */
34 #define UNIPHIER_I2C_DREC_BBN BIT(8) /* bus not busy */
35 #define UNIPHIER_I2C_MYAD 0x08 /* slave address */
36 #define UNIPHIER_I2C_CLK 0x0c /* clock frequency control */
37 #define UNIPHIER_I2C_BRST 0x10 /* bus reset */
38 #define UNIPHIER_I2C_BRST_FOEN BIT(1) /* normal operation */
39 #define UNIPHIER_I2C_BRST_RSCL BIT(0) /* release SCL */
40 #define UNIPHIER_I2C_HOLD 0x14 /* hold time control */
41 #define UNIPHIER_I2C_BSTS 0x18 /* bus status monitor */
42 #define UNIPHIER_I2C_BSTS_SDA BIT(1) /* readback of SDA line */
43 #define UNIPHIER_I2C_BSTS_SCL BIT(0) /* readback of SCL line */
44 #define UNIPHIER_I2C_NOISE 0x1c /* noise filter control */
45 #define UNIPHIER_I2C_SETUP 0x20 /* setup time control */
47 #define UNIPHIER_I2C_DEFAULT_SPEED 100000
48 #define UNIPHIER_I2C_MAX_SPEED 400000
50 struct uniphier_i2c_priv {
51 struct completion comp;
52 struct i2c_adapter adap;
53 void __iomem *membase;
54 struct clk *clk;
55 unsigned int busy_cnt;
56 unsigned int clk_cycle;
59 static irqreturn_t uniphier_i2c_interrupt(int irq, void *dev_id)
61 struct uniphier_i2c_priv *priv = dev_id;
64 * This hardware uses edge triggered interrupt. Do not touch the
65 * hardware registers in this handler to make sure to catch the next
66 * interrupt edge. Just send a complete signal and return.
68 complete(&priv->comp);
70 return IRQ_HANDLED;
73 static int uniphier_i2c_xfer_byte(struct i2c_adapter *adap, u32 txdata,
74 u32 *rxdatap)
76 struct uniphier_i2c_priv *priv = i2c_get_adapdata(adap);
77 unsigned long time_left;
78 u32 rxdata;
80 reinit_completion(&priv->comp);
82 txdata |= UNIPHIER_I2C_DTRM_IRQEN;
83 dev_dbg(&adap->dev, "write data: 0x%04x\n", txdata);
84 writel(txdata, priv->membase + UNIPHIER_I2C_DTRM);
86 time_left = wait_for_completion_timeout(&priv->comp, adap->timeout);
87 if (unlikely(!time_left)) {
88 dev_err(&adap->dev, "transaction timeout\n");
89 return -ETIMEDOUT;
92 rxdata = readl(priv->membase + UNIPHIER_I2C_DREC);
93 dev_dbg(&adap->dev, "read data: 0x%04x\n", rxdata);
95 if (rxdatap)
96 *rxdatap = rxdata;
98 return 0;
101 static int uniphier_i2c_send_byte(struct i2c_adapter *adap, u32 txdata)
103 u32 rxdata;
104 int ret;
106 ret = uniphier_i2c_xfer_byte(adap, txdata, &rxdata);
107 if (ret)
108 return ret;
110 if (unlikely(rxdata & UNIPHIER_I2C_DREC_LAB)) {
111 dev_dbg(&adap->dev, "arbitration lost\n");
112 return -EAGAIN;
114 if (unlikely(rxdata & UNIPHIER_I2C_DREC_LRB)) {
115 dev_dbg(&adap->dev, "could not get ACK\n");
116 return -ENXIO;
119 return 0;
122 static int uniphier_i2c_tx(struct i2c_adapter *adap, u16 addr, u16 len,
123 const u8 *buf)
125 int ret;
127 dev_dbg(&adap->dev, "start condition\n");
128 ret = uniphier_i2c_send_byte(adap, addr << 1 |
129 UNIPHIER_I2C_DTRM_STA |
130 UNIPHIER_I2C_DTRM_NACK);
131 if (ret)
132 return ret;
134 while (len--) {
135 ret = uniphier_i2c_send_byte(adap,
136 UNIPHIER_I2C_DTRM_NACK | *buf++);
137 if (ret)
138 return ret;
141 return 0;
144 static int uniphier_i2c_rx(struct i2c_adapter *adap, u16 addr, u16 len,
145 u8 *buf)
147 int ret;
149 dev_dbg(&adap->dev, "start condition\n");
150 ret = uniphier_i2c_send_byte(adap, addr << 1 |
151 UNIPHIER_I2C_DTRM_STA |
152 UNIPHIER_I2C_DTRM_NACK |
153 UNIPHIER_I2C_DTRM_RD);
154 if (ret)
155 return ret;
157 while (len--) {
158 u32 rxdata;
160 ret = uniphier_i2c_xfer_byte(adap,
161 len ? 0 : UNIPHIER_I2C_DTRM_NACK,
162 &rxdata);
163 if (ret)
164 return ret;
165 *buf++ = rxdata;
168 return 0;
171 static int uniphier_i2c_stop(struct i2c_adapter *adap)
173 dev_dbg(&adap->dev, "stop condition\n");
174 return uniphier_i2c_send_byte(adap, UNIPHIER_I2C_DTRM_STO |
175 UNIPHIER_I2C_DTRM_NACK);
178 static int uniphier_i2c_master_xfer_one(struct i2c_adapter *adap,
179 struct i2c_msg *msg, bool stop)
181 bool is_read = msg->flags & I2C_M_RD;
182 bool recovery = false;
183 int ret;
185 dev_dbg(&adap->dev, "%s: addr=0x%02x, len=%d, stop=%d\n",
186 is_read ? "receive" : "transmit", msg->addr, msg->len, stop);
188 if (is_read)
189 ret = uniphier_i2c_rx(adap, msg->addr, msg->len, msg->buf);
190 else
191 ret = uniphier_i2c_tx(adap, msg->addr, msg->len, msg->buf);
193 if (ret == -EAGAIN) /* could not acquire bus. bail out without STOP */
194 return ret;
196 if (ret == -ETIMEDOUT) {
197 /* This error is fatal. Needs recovery. */
198 stop = false;
199 recovery = true;
202 if (stop) {
203 int ret2 = uniphier_i2c_stop(adap);
205 if (ret2) {
206 /* Failed to issue STOP. The bus needs recovery. */
207 recovery = true;
208 ret = ret ?: ret2;
212 if (recovery)
213 i2c_recover_bus(adap);
215 return ret;
218 static int uniphier_i2c_check_bus_busy(struct i2c_adapter *adap)
220 struct uniphier_i2c_priv *priv = i2c_get_adapdata(adap);
222 if (!(readl(priv->membase + UNIPHIER_I2C_DREC) &
223 UNIPHIER_I2C_DREC_BBN)) {
224 if (priv->busy_cnt++ > 3) {
226 * If bus busy continues too long, it is probably
227 * in a wrong state. Try bus recovery.
229 i2c_recover_bus(adap);
230 priv->busy_cnt = 0;
233 return -EAGAIN;
236 priv->busy_cnt = 0;
237 return 0;
240 static int uniphier_i2c_master_xfer(struct i2c_adapter *adap,
241 struct i2c_msg *msgs, int num)
243 struct i2c_msg *msg, *emsg = msgs + num;
244 int ret;
246 ret = uniphier_i2c_check_bus_busy(adap);
247 if (ret)
248 return ret;
250 for (msg = msgs; msg < emsg; msg++) {
251 /* Emit STOP if it is the last message or I2C_M_STOP is set. */
252 bool stop = (msg + 1 == emsg) || (msg->flags & I2C_M_STOP);
254 ret = uniphier_i2c_master_xfer_one(adap, msg, stop);
255 if (ret)
256 return ret;
259 return num;
262 static u32 uniphier_i2c_functionality(struct i2c_adapter *adap)
264 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
267 static const struct i2c_algorithm uniphier_i2c_algo = {
268 .master_xfer = uniphier_i2c_master_xfer,
269 .functionality = uniphier_i2c_functionality,
272 static void uniphier_i2c_reset(struct uniphier_i2c_priv *priv, bool reset_on)
274 u32 val = UNIPHIER_I2C_BRST_RSCL;
276 val |= reset_on ? 0 : UNIPHIER_I2C_BRST_FOEN;
277 writel(val, priv->membase + UNIPHIER_I2C_BRST);
280 static int uniphier_i2c_get_scl(struct i2c_adapter *adap)
282 struct uniphier_i2c_priv *priv = i2c_get_adapdata(adap);
284 return !!(readl(priv->membase + UNIPHIER_I2C_BSTS) &
285 UNIPHIER_I2C_BSTS_SCL);
288 static void uniphier_i2c_set_scl(struct i2c_adapter *adap, int val)
290 struct uniphier_i2c_priv *priv = i2c_get_adapdata(adap);
292 writel(val ? UNIPHIER_I2C_BRST_RSCL : 0,
293 priv->membase + UNIPHIER_I2C_BRST);
296 static int uniphier_i2c_get_sda(struct i2c_adapter *adap)
298 struct uniphier_i2c_priv *priv = i2c_get_adapdata(adap);
300 return !!(readl(priv->membase + UNIPHIER_I2C_BSTS) &
301 UNIPHIER_I2C_BSTS_SDA);
304 static void uniphier_i2c_unprepare_recovery(struct i2c_adapter *adap)
306 uniphier_i2c_reset(i2c_get_adapdata(adap), false);
309 static struct i2c_bus_recovery_info uniphier_i2c_bus_recovery_info = {
310 .recover_bus = i2c_generic_scl_recovery,
311 .get_scl = uniphier_i2c_get_scl,
312 .set_scl = uniphier_i2c_set_scl,
313 .get_sda = uniphier_i2c_get_sda,
314 .unprepare_recovery = uniphier_i2c_unprepare_recovery,
317 static void uniphier_i2c_hw_init(struct uniphier_i2c_priv *priv)
319 unsigned int cyc = priv->clk_cycle;
321 uniphier_i2c_reset(priv, true);
323 writel((cyc / 2 << 16) | cyc, priv->membase + UNIPHIER_I2C_CLK);
325 uniphier_i2c_reset(priv, false);
328 static int uniphier_i2c_probe(struct platform_device *pdev)
330 struct device *dev = &pdev->dev;
331 struct uniphier_i2c_priv *priv;
332 struct resource *regs;
333 u32 bus_speed;
334 unsigned long clk_rate;
335 int irq, ret;
337 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
338 if (!priv)
339 return -ENOMEM;
341 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
342 priv->membase = devm_ioremap_resource(dev, regs);
343 if (IS_ERR(priv->membase))
344 return PTR_ERR(priv->membase);
346 irq = platform_get_irq(pdev, 0);
347 if (irq < 0) {
348 dev_err(dev, "failed to get IRQ number\n");
349 return irq;
352 if (of_property_read_u32(dev->of_node, "clock-frequency", &bus_speed))
353 bus_speed = UNIPHIER_I2C_DEFAULT_SPEED;
355 if (!bus_speed || bus_speed > UNIPHIER_I2C_MAX_SPEED) {
356 dev_err(dev, "invalid clock-frequency %d\n", bus_speed);
357 return -EINVAL;
360 priv->clk = devm_clk_get(dev, NULL);
361 if (IS_ERR(priv->clk)) {
362 dev_err(dev, "failed to get clock\n");
363 return PTR_ERR(priv->clk);
366 ret = clk_prepare_enable(priv->clk);
367 if (ret)
368 return ret;
370 clk_rate = clk_get_rate(priv->clk);
371 if (!clk_rate) {
372 dev_err(dev, "input clock rate should not be zero\n");
373 ret = -EINVAL;
374 goto disable_clk;
377 priv->clk_cycle = clk_rate / bus_speed;
378 init_completion(&priv->comp);
379 priv->adap.owner = THIS_MODULE;
380 priv->adap.algo = &uniphier_i2c_algo;
381 priv->adap.dev.parent = dev;
382 priv->adap.dev.of_node = dev->of_node;
383 strlcpy(priv->adap.name, "UniPhier I2C", sizeof(priv->adap.name));
384 priv->adap.bus_recovery_info = &uniphier_i2c_bus_recovery_info;
385 i2c_set_adapdata(&priv->adap, priv);
386 platform_set_drvdata(pdev, priv);
388 uniphier_i2c_hw_init(priv);
390 ret = devm_request_irq(dev, irq, uniphier_i2c_interrupt, 0, pdev->name,
391 priv);
392 if (ret) {
393 dev_err(dev, "failed to request irq %d\n", irq);
394 goto disable_clk;
397 ret = i2c_add_adapter(&priv->adap);
398 disable_clk:
399 if (ret)
400 clk_disable_unprepare(priv->clk);
402 return ret;
405 static int uniphier_i2c_remove(struct platform_device *pdev)
407 struct uniphier_i2c_priv *priv = platform_get_drvdata(pdev);
409 i2c_del_adapter(&priv->adap);
410 clk_disable_unprepare(priv->clk);
412 return 0;
415 static int __maybe_unused uniphier_i2c_suspend(struct device *dev)
417 struct uniphier_i2c_priv *priv = dev_get_drvdata(dev);
419 clk_disable_unprepare(priv->clk);
421 return 0;
424 static int __maybe_unused uniphier_i2c_resume(struct device *dev)
426 struct uniphier_i2c_priv *priv = dev_get_drvdata(dev);
427 int ret;
429 ret = clk_prepare_enable(priv->clk);
430 if (ret)
431 return ret;
433 uniphier_i2c_hw_init(priv);
435 return 0;
438 static const struct dev_pm_ops uniphier_i2c_pm_ops = {
439 SET_SYSTEM_SLEEP_PM_OPS(uniphier_i2c_suspend, uniphier_i2c_resume)
442 static const struct of_device_id uniphier_i2c_match[] = {
443 { .compatible = "socionext,uniphier-i2c" },
444 { /* sentinel */ }
446 MODULE_DEVICE_TABLE(of, uniphier_i2c_match);
448 static struct platform_driver uniphier_i2c_drv = {
449 .probe = uniphier_i2c_probe,
450 .remove = uniphier_i2c_remove,
451 .driver = {
452 .name = "uniphier-i2c",
453 .of_match_table = uniphier_i2c_match,
454 .pm = &uniphier_i2c_pm_ops,
457 module_platform_driver(uniphier_i2c_drv);
459 MODULE_AUTHOR("Masahiro Yamada <yamada.masahiro@socionext.com>");
460 MODULE_DESCRIPTION("UniPhier I2C bus driver");
461 MODULE_LICENSE("GPL");