Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[deliverable/linux.git] / drivers / i2c / busses / i2c-au1550.c
CommitLineData
1da177e4
LT
1/*
2 * i2c-au1550.c: SMBus (i2c) adapter for Alchemy PSC interface
3 * Copyright (C) 2004 Embedded Edge, LLC <dan@embeddededge.com>
4 *
5 * 2.6 port by Matt Porter <mporter@kernel.crashing.org>
6 *
7 * The documentation describes this as an SMBus controller, but it doesn't
8 * understand any of the SMBus protocol in hardware. It's really an I2C
9 * controller that could emulate most of the SMBus in software.
10 *
11 * This is just a skeleton adapter to use with the Au1550 PSC
12 * algorithm. It was developed for the Pb1550, but will work with
13 * any Au1550 board that has a similar PSC configuration.
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version 2
18 * of the License, or (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
1da177e4
LT
24 */
25
1da177e4
LT
26#include <linux/delay.h>
27#include <linux/kernel.h>
28#include <linux/module.h>
8b798c4d 29#include <linux/platform_device.h>
1da177e4
LT
30#include <linux/errno.h>
31#include <linux/i2c.h>
8b798c4d 32#include <linux/slab.h>
1da177e4 33
50d5676e 34#include <asm/mach-au1x00/au1000.h>
1da177e4
LT
35#include <asm/mach-au1x00/au1xxx_psc.h>
36
c5de6467
ML
37#define PSC_SEL 0x00
38#define PSC_CTRL 0x04
39#define PSC_SMBCFG 0x08
40#define PSC_SMBMSK 0x0C
41#define PSC_SMBPCR 0x10
42#define PSC_SMBSTAT 0x14
43#define PSC_SMBEVNT 0x18
44#define PSC_SMBTXRX 0x1C
45#define PSC_SMBTMR 0x20
46
8b798c4d 47struct i2c_au1550_data {
c5de6467 48 void __iomem *psc_base;
8b798c4d 49 int xfer_timeout;
8b798c4d 50 struct i2c_adapter adap;
8b798c4d 51};
1da177e4 52
c5de6467 53static inline void WR(struct i2c_au1550_data *a, int r, unsigned long v)
1da177e4 54{
c5de6467
ML
55 __raw_writel(v, a->psc_base + r);
56 wmb();
57}
1da177e4 58
c5de6467
ML
59static inline unsigned long RD(struct i2c_au1550_data *a, int r)
60{
61 return __raw_readl(a->psc_base + r);
62}
1da177e4 63
c5de6467
ML
64static int wait_xfer_done(struct i2c_au1550_data *adap)
65{
66 int i;
67
68 /* Wait for Tx Buffer Empty */
1da177e4 69 for (i = 0; i < adap->xfer_timeout; i++) {
c5de6467 70 if (RD(adap, PSC_SMBSTAT) & PSC_SMBSTAT_TE)
1da177e4 71 return 0;
a202707e 72
1da177e4
LT
73 udelay(1);
74 }
75
76 return -ETIMEDOUT;
77}
78
c5de6467 79static int wait_ack(struct i2c_au1550_data *adap)
1da177e4 80{
c5de6467 81 unsigned long stat;
1da177e4
LT
82
83 if (wait_xfer_done(adap))
84 return -ETIMEDOUT;
85
c5de6467 86 stat = RD(adap, PSC_SMBEVNT);
1da177e4
LT
87 if ((stat & (PSC_SMBEVNT_DN | PSC_SMBEVNT_AN | PSC_SMBEVNT_AL)) != 0)
88 return -ETIMEDOUT;
89
90 return 0;
91}
92
c5de6467 93static int wait_master_done(struct i2c_au1550_data *adap)
1da177e4 94{
c5de6467 95 int i;
1da177e4 96
c5de6467 97 /* Wait for Master Done. */
84785f12 98 for (i = 0; i < 2 * adap->xfer_timeout; i++) {
c5de6467 99 if ((RD(adap, PSC_SMBEVNT) & PSC_SMBEVNT_MD) != 0)
1da177e4
LT
100 return 0;
101 udelay(1);
102 }
103
104 return -ETIMEDOUT;
105}
106
107static int
91f27958 108do_address(struct i2c_au1550_data *adap, unsigned int addr, int rd, int q)
1da177e4 109{
c5de6467 110 unsigned long stat;
1da177e4 111
c5de6467
ML
112 /* Reset the FIFOs, clear events. */
113 stat = RD(adap, PSC_SMBSTAT);
114 WR(adap, PSC_SMBEVNT, PSC_SMBEVNT_ALLCLR);
8859942e
DP
115
116 if (!(stat & PSC_SMBSTAT_TE) || !(stat & PSC_SMBSTAT_RE)) {
c5de6467
ML
117 WR(adap, PSC_SMBPCR, PSC_SMBPCR_DC);
118 while ((RD(adap, PSC_SMBPCR) & PSC_SMBPCR_DC) != 0)
119 cpu_relax();
8859942e
DP
120 udelay(50);
121 }
1da177e4 122
c5de6467 123 /* Write out the i2c chip address and specify operation */
1da177e4
LT
124 addr <<= 1;
125 if (rd)
126 addr |= 1;
127
91f27958
ML
128 /* zero-byte xfers stop immediately */
129 if (q)
130 addr |= PSC_SMBTXRX_STP;
131
c5de6467
ML
132 /* Put byte into fifo, start up master. */
133 WR(adap, PSC_SMBTXRX, addr);
134 WR(adap, PSC_SMBPCR, PSC_SMBPCR_MS);
1da177e4
LT
135 if (wait_ack(adap))
136 return -EIO;
91f27958 137 return (q) ? wait_master_done(adap) : 0;
1da177e4
LT
138}
139
c5de6467 140static int wait_for_rx_byte(struct i2c_au1550_data *adap, unsigned char *out)
1da177e4 141{
c5de6467 142 int j;
1da177e4
LT
143
144 if (wait_xfer_done(adap))
145 return -EIO;
146
1da177e4
LT
147 j = adap->xfer_timeout * 100;
148 do {
149 j--;
150 if (j <= 0)
151 return -EIO;
152
c5de6467 153 if ((RD(adap, PSC_SMBSTAT) & PSC_SMBSTAT_RE) == 0)
1da177e4
LT
154 j = 0;
155 else
156 udelay(1);
157 } while (j > 0);
c5de6467
ML
158
159 *out = RD(adap, PSC_SMBTXRX);
1da177e4
LT
160
161 return 0;
162}
163
c5de6467 164static int i2c_read(struct i2c_au1550_data *adap, unsigned char *buf,
1da177e4
LT
165 unsigned int len)
166{
c5de6467 167 int i;
1da177e4
LT
168
169 if (len == 0)
170 return 0;
171
172 /* A read is performed by stuffing the transmit fifo with
173 * zero bytes for timing, waiting for bytes to appear in the
174 * receive fifo, then reading the bytes.
175 */
1da177e4 176 i = 0;
c5de6467
ML
177 while (i < (len - 1)) {
178 WR(adap, PSC_SMBTXRX, 0);
179 if (wait_for_rx_byte(adap, &buf[i]))
1da177e4
LT
180 return -EIO;
181
1da177e4
LT
182 i++;
183 }
184
c5de6467
ML
185 /* The last byte has to indicate transfer done. */
186 WR(adap, PSC_SMBTXRX, PSC_SMBTXRX_STP);
1da177e4
LT
187 if (wait_master_done(adap))
188 return -EIO;
189
c5de6467 190 buf[i] = (unsigned char)(RD(adap, PSC_SMBTXRX) & 0xff);
1da177e4
LT
191 return 0;
192}
193
c5de6467 194static int i2c_write(struct i2c_au1550_data *adap, unsigned char *buf,
1da177e4
LT
195 unsigned int len)
196{
c5de6467
ML
197 int i;
198 unsigned long data;
1da177e4
LT
199
200 if (len == 0)
201 return 0;
202
1da177e4
LT
203 i = 0;
204 while (i < (len-1)) {
205 data = buf[i];
c5de6467 206 WR(adap, PSC_SMBTXRX, data);
1da177e4
LT
207 if (wait_ack(adap))
208 return -EIO;
209 i++;
210 }
211
c5de6467 212 /* The last byte has to indicate transfer done. */
1da177e4
LT
213 data = buf[i];
214 data |= PSC_SMBTXRX_STP;
c5de6467 215 WR(adap, PSC_SMBTXRX, data);
1da177e4
LT
216 if (wait_master_done(adap))
217 return -EIO;
218 return 0;
219}
220
221static int
222au1550_xfer(struct i2c_adapter *i2c_adap, struct i2c_msg *msgs, int num)
223{
224 struct i2c_au1550_data *adap = i2c_adap->algo_data;
225 struct i2c_msg *p;
226 int i, err = 0;
227
c5de6467 228 WR(adap, PSC_CTRL, PSC_CTRL_ENABLE);
f09f71b2 229
1da177e4
LT
230 for (i = 0; !err && i < num; i++) {
231 p = &msgs[i];
91f27958
ML
232 err = do_address(adap, p->addr, p->flags & I2C_M_RD,
233 (p->len == 0));
1da177e4
LT
234 if (err || !p->len)
235 continue;
236 if (p->flags & I2C_M_RD)
237 err = i2c_read(adap, p->buf, p->len);
238 else
239 err = i2c_write(adap, p->buf, p->len);
240 }
241
242 /* Return the number of messages processed, or the error code.
243 */
244 if (err == 0)
245 err = num;
f09f71b2 246
c5de6467 247 WR(adap, PSC_CTRL, PSC_CTRL_SUSPEND);
f09f71b2 248
1da177e4
LT
249 return err;
250}
251
c5de6467 252static u32 au1550_func(struct i2c_adapter *adap)
1da177e4 253{
6ed07134 254 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
1da177e4
LT
255}
256
8f9082c5 257static const struct i2c_algorithm au1550_algo = {
1da177e4
LT
258 .master_xfer = au1550_xfer,
259 .functionality = au1550_func,
260};
261
f09f71b2
ML
262static void i2c_au1550_setup(struct i2c_au1550_data *priv)
263{
c5de6467 264 unsigned long cfg;
f09f71b2 265
c5de6467
ML
266 WR(priv, PSC_CTRL, PSC_CTRL_DISABLE);
267 WR(priv, PSC_SEL, PSC_SEL_PS_SMBUSMODE);
268 WR(priv, PSC_SMBCFG, 0);
269 WR(priv, PSC_CTRL, PSC_CTRL_ENABLE);
270 while ((RD(priv, PSC_SMBSTAT) & PSC_SMBSTAT_SR) == 0)
271 cpu_relax();
272
273 cfg = PSC_SMBCFG_RT_FIFO8 | PSC_SMBCFG_TT_FIFO8 | PSC_SMBCFG_DD_DISABLE;
274 WR(priv, PSC_SMBCFG, cfg);
f09f71b2
ML
275
276 /* Divide by 8 to get a 6.25 MHz clock. The later protocol
277 * timings are based on this clock.
278 */
c5de6467
ML
279 cfg |= PSC_SMBCFG_SET_DIV(PSC_SMBCFG_DIV8);
280 WR(priv, PSC_SMBCFG, cfg);
281 WR(priv, PSC_SMBMSK, PSC_SMBMSK_ALLMASK);
f09f71b2
ML
282
283 /* Set the protocol timer values. See Table 71 in the
284 * Au1550 Data Book for standard timing values.
285 */
8a5e3d47
ML
286 WR(priv, PSC_SMBTMR, PSC_SMBTMR_SET_TH(0) | PSC_SMBTMR_SET_PS(20) | \
287 PSC_SMBTMR_SET_PU(20) | PSC_SMBTMR_SET_SH(20) | \
288 PSC_SMBTMR_SET_SU(20) | PSC_SMBTMR_SET_CL(20) | \
289 PSC_SMBTMR_SET_CH(20));
f09f71b2 290
c5de6467
ML
291 cfg |= PSC_SMBCFG_DE_ENABLE;
292 WR(priv, PSC_SMBCFG, cfg);
293 while ((RD(priv, PSC_SMBSTAT) & PSC_SMBSTAT_SR) == 0)
294 cpu_relax();
f09f71b2 295
c5de6467 296 WR(priv, PSC_CTRL, PSC_CTRL_SUSPEND);
f09f71b2
ML
297}
298
299static void i2c_au1550_disable(struct i2c_au1550_data *priv)
300{
c5de6467
ML
301 WR(priv, PSC_SMBCFG, 0);
302 WR(priv, PSC_CTRL, PSC_CTRL_DISABLE);
f09f71b2
ML
303}
304
1da177e4
LT
305/*
306 * registering functions to load algorithms at runtime
307 * Prior to calling us, the 50MHz clock frequency and routing
308 * must have been set up for the PSC indicated by the adapter.
309 */
0b255e92 310static int
8b798c4d 311i2c_au1550_probe(struct platform_device *pdev)
1da177e4 312{
8b798c4d 313 struct i2c_au1550_data *priv;
8b798c4d 314 struct resource *r;
8b798c4d
ML
315 int ret;
316
174f2366
AL
317 priv = devm_kzalloc(&pdev->dev, sizeof(struct i2c_au1550_data),
318 GFP_KERNEL);
319 if (!priv)
320 return -ENOMEM;
1da177e4 321
174f2366
AL
322 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
323 priv->psc_base = devm_ioremap_resource(&pdev->dev, r);
324 if (IS_ERR(priv->psc_base))
325 return PTR_ERR(priv->psc_base);
8b798c4d 326
8b798c4d 327 priv->xfer_timeout = 200;
8b798c4d 328
8b798c4d
ML
329 priv->adap.nr = pdev->id;
330 priv->adap.algo = &au1550_algo;
331 priv->adap.algo_data = priv;
332 priv->adap.dev.parent = &pdev->dev;
333 strlcpy(priv->adap.name, "Au1xxx PSC I2C", sizeof(priv->adap.name));
1da177e4 334
c5de6467 335 /* Now, set up the PSC for SMBus PIO mode. */
f09f71b2 336 i2c_au1550_setup(priv);
1da177e4 337
8b798c4d 338 ret = i2c_add_numbered_adapter(&priv->adap);
174f2366
AL
339 if (ret) {
340 i2c_au1550_disable(priv);
341 return ret;
8b798c4d
ML
342 }
343
174f2366
AL
344 platform_set_drvdata(pdev, priv);
345 return 0;
8b798c4d 346}
1da177e4 347
0b255e92 348static int i2c_au1550_remove(struct platform_device *pdev)
1da177e4 349{
8b798c4d 350 struct i2c_au1550_data *priv = platform_get_drvdata(pdev);
8b798c4d 351
8b798c4d 352 i2c_del_adapter(&priv->adap);
f09f71b2 353 i2c_au1550_disable(priv);
8b798c4d 354 return 0;
1da177e4
LT
355}
356
f09f71b2 357#ifdef CONFIG_PM
46f344e2 358static int i2c_au1550_suspend(struct device *dev)
1da177e4 359{
46f344e2 360 struct i2c_au1550_data *priv = dev_get_drvdata(dev);
8b798c4d 361
f09f71b2
ML
362 i2c_au1550_disable(priv);
363
1da177e4
LT
364 return 0;
365}
366
46f344e2 367static int i2c_au1550_resume(struct device *dev)
1da177e4 368{
46f344e2 369 struct i2c_au1550_data *priv = dev_get_drvdata(dev);
8b798c4d 370
f09f71b2
ML
371 i2c_au1550_setup(priv);
372
1da177e4
LT
373 return 0;
374}
46f344e2
ML
375
376static const struct dev_pm_ops i2c_au1550_pmops = {
377 .suspend = i2c_au1550_suspend,
378 .resume = i2c_au1550_resume,
379};
380
381#define AU1XPSC_SMBUS_PMOPS (&i2c_au1550_pmops)
382
f09f71b2 383#else
46f344e2 384#define AU1XPSC_SMBUS_PMOPS NULL
f09f71b2 385#endif
1da177e4 386
8b798c4d
ML
387static struct platform_driver au1xpsc_smbus_driver = {
388 .driver = {
389 .name = "au1xpsc_smbus",
46f344e2 390 .pm = AU1XPSC_SMBUS_PMOPS,
8b798c4d
ML
391 },
392 .probe = i2c_au1550_probe,
0b255e92 393 .remove = i2c_au1550_remove,
1da177e4
LT
394};
395
a3664b51 396module_platform_driver(au1xpsc_smbus_driver);
1da177e4
LT
397
398MODULE_AUTHOR("Dan Malek, Embedded Edge, LLC.");
399MODULE_DESCRIPTION("SMBus adapter Alchemy pb1550");
400MODULE_LICENSE("GPL");
add8eda7 401MODULE_ALIAS("platform:au1xpsc_smbus");
This page took 1.021667 seconds and 5 git commands to generate.