2 * (C) Copyright 2003-2004
3 * Humboldt Solutions Ltd, adrian@humboldt.co.uk.
5 * This is a combined i2c adapter and algorithm driver for the
6 * MPC107/Tsi107 PowerPC northbridge and processors that include
7 * the same I2C unit (8240, 8245, 85xx).
11 * This file is licensed under the terms of the GNU General Public
12 * License version 2. This program is licensed "as is" without any
13 * warranty of any kind, whether express or implied.
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/sched.h>
19 #include <linux/init.h>
20 #include <linux/platform_device.h>
23 #include <linux/fsl_devices.h>
24 #include <linux/i2c.h>
25 #include <linux/interrupt.h>
26 #include <linux/delay.h>
28 #define MPC_I2C_ADDR 0x00
29 #define MPC_I2C_FDR 0x04
30 #define MPC_I2C_CR 0x08
31 #define MPC_I2C_SR 0x0c
32 #define MPC_I2C_DR 0x10
33 #define MPC_I2C_DFSRR 0x14
34 #define MPC_I2C_REGION 0x20
54 wait_queue_head_t queue;
55 struct i2c_adapter adap;
60 static __inline__ void writeccr(struct mpc_i2c *i2c, u32 x)
62 writeb(x, i2c->base + MPC_I2C_CR);
65 static irqreturn_t mpc_i2c_isr(int irq, void *dev_id)
67 struct mpc_i2c *i2c = dev_id;
68 if (readb(i2c->base + MPC_I2C_SR) & CSR_MIF) {
69 /* Read again to allow register to stabilise */
70 i2c->interrupt = readb(i2c->base + MPC_I2C_SR);
71 writeb(0, i2c->base + MPC_I2C_SR);
72 wake_up_interruptible(&i2c->queue);
77 /* Sometimes 9th clock pulse isn't generated, and slave doesn't release
78 * the bus, because it wants to send ACK.
79 * Following sequence of enabling/disabling and sending start/stop generates
80 * the pulse, so it's all OK.
82 static void mpc_i2c_fixup(struct mpc_i2c *i2c)
86 writeccr(i2c, CCR_MEN);
88 writeccr(i2c, CCR_MSTA | CCR_MTX);
90 writeccr(i2c, CCR_MSTA | CCR_MTX | CCR_MEN);
92 writeccr(i2c, CCR_MEN);
96 static int i2c_wait(struct mpc_i2c *i2c, unsigned timeout, int writing)
98 unsigned long orig_jiffies = jiffies;
102 if (i2c->irq == NO_IRQ)
104 while (!(readb(i2c->base + MPC_I2C_SR) & CSR_MIF)) {
106 if (time_after(jiffies, orig_jiffies + timeout)) {
107 pr_debug("I2C: timeout\n");
113 x = readb(i2c->base + MPC_I2C_SR);
114 writeb(0, i2c->base + MPC_I2C_SR);
117 result = wait_event_interruptible_timeout(i2c->queue,
118 (i2c->interrupt & CSR_MIF), timeout * HZ);
120 if (unlikely(result < 0)) {
121 pr_debug("I2C: wait interrupted\n");
123 } else if (unlikely(!(i2c->interrupt & CSR_MIF))) {
124 pr_debug("I2C: wait timeout\n");
136 if (!(x & CSR_MCF)) {
137 pr_debug("I2C: unfinished\n");
142 pr_debug("I2C: MAL\n");
146 if (writing && (x & CSR_RXAK)) {
147 pr_debug("I2C: No RXAK\n");
149 writeccr(i2c, CCR_MEN);
155 static void mpc_i2c_setclock(struct mpc_i2c *i2c)
157 /* Set clock and filters */
158 if (i2c->flags & FSL_I2C_DEV_SEPARATE_DFSRR) {
159 writeb(0x31, i2c->base + MPC_I2C_FDR);
160 writeb(0x10, i2c->base + MPC_I2C_DFSRR);
161 } else if (i2c->flags & FSL_I2C_DEV_CLOCK_5200)
162 writeb(0x3f, i2c->base + MPC_I2C_FDR);
164 writel(0x1031, i2c->base + MPC_I2C_FDR);
167 static void mpc_i2c_start(struct mpc_i2c *i2c)
169 /* Clear arbitration */
170 writeb(0, i2c->base + MPC_I2C_SR);
172 writeccr(i2c, CCR_MEN);
175 static void mpc_i2c_stop(struct mpc_i2c *i2c)
177 writeccr(i2c, CCR_MEN);
180 static int mpc_write(struct mpc_i2c *i2c, int target,
181 const u8 * data, int length, int restart)
184 unsigned timeout = i2c->adap.timeout;
185 u32 flags = restart ? CCR_RSTA : 0;
189 writeccr(i2c, CCR_MEN);
190 /* Start as master */
191 writeccr(i2c, CCR_MIEN | CCR_MEN | CCR_MSTA | CCR_MTX | flags);
192 /* Write target byte */
193 writeb((target << 1), i2c->base + MPC_I2C_DR);
195 result = i2c_wait(i2c, timeout, 1);
199 for (i = 0; i < length; i++) {
200 /* Write data byte */
201 writeb(data[i], i2c->base + MPC_I2C_DR);
203 result = i2c_wait(i2c, timeout, 1);
211 static int mpc_read(struct mpc_i2c *i2c, int target,
212 u8 * data, int length, int restart)
214 unsigned timeout = i2c->adap.timeout;
216 u32 flags = restart ? CCR_RSTA : 0;
220 writeccr(i2c, CCR_MEN);
221 /* Switch to read - restart */
222 writeccr(i2c, CCR_MIEN | CCR_MEN | CCR_MSTA | CCR_MTX | flags);
223 /* Write target address byte - this time with the read flag set */
224 writeb((target << 1) | 1, i2c->base + MPC_I2C_DR);
226 result = i2c_wait(i2c, timeout, 1);
232 writeccr(i2c, CCR_MIEN | CCR_MEN | CCR_MSTA | CCR_TXAK);
234 writeccr(i2c, CCR_MIEN | CCR_MEN | CCR_MSTA);
236 readb(i2c->base + MPC_I2C_DR);
239 for (i = 0; i < length; i++) {
240 result = i2c_wait(i2c, timeout, 0);
244 /* Generate txack on next to last byte */
246 writeccr(i2c, CCR_MIEN | CCR_MEN | CCR_MSTA | CCR_TXAK);
247 /* Generate stop on last byte */
249 writeccr(i2c, CCR_MIEN | CCR_MEN | CCR_TXAK);
250 data[i] = readb(i2c->base + MPC_I2C_DR);
256 static int mpc_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
258 struct i2c_msg *pmsg;
261 unsigned long orig_jiffies = jiffies;
262 struct mpc_i2c *i2c = i2c_get_adapdata(adap);
266 /* Allow bus up to 1s to become not busy */
267 while (readb(i2c->base + MPC_I2C_SR) & CSR_MBB) {
268 if (signal_pending(current)) {
269 pr_debug("I2C: Interrupted\n");
273 if (time_after(jiffies, orig_jiffies + HZ)) {
274 pr_debug("I2C: timeout\n");
275 if (readb(i2c->base + MPC_I2C_SR) ==
276 (CSR_MCF | CSR_MBB | CSR_RXAK))
283 for (i = 0; ret >= 0 && i < num; i++) {
285 pr_debug("Doing %s %d bytes to 0x%02x - %d of %d messages\n",
286 pmsg->flags & I2C_M_RD ? "read" : "write",
287 pmsg->len, pmsg->addr, i + 1, num);
288 if (pmsg->flags & I2C_M_RD)
290 mpc_read(i2c, pmsg->addr, pmsg->buf, pmsg->len, i);
293 mpc_write(i2c, pmsg->addr, pmsg->buf, pmsg->len, i);
296 return (ret < 0) ? ret : num;
299 static u32 mpc_functionality(struct i2c_adapter *adap)
301 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
304 static const struct i2c_algorithm mpc_algo = {
305 .master_xfer = mpc_xfer,
306 .functionality = mpc_functionality,
309 static struct i2c_adapter mpc_ops = {
310 .owner = THIS_MODULE,
311 .name = "MPC adapter",
314 .class = I2C_CLASS_HWMON | I2C_CLASS_SPD,
318 static int fsl_i2c_probe(struct platform_device *pdev)
322 struct fsl_i2c_platform_data *pdata;
323 struct resource *r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
325 pdata = (struct fsl_i2c_platform_data *) pdev->dev.platform_data;
327 i2c = kzalloc(sizeof(*i2c), GFP_KERNEL);
331 i2c->irq = platform_get_irq(pdev, 0);
333 i2c->irq = NO_IRQ; /* Use polling */
335 i2c->flags = pdata->device_flags;
336 init_waitqueue_head(&i2c->queue);
338 i2c->base = ioremap((phys_addr_t)r->start, MPC_I2C_REGION);
341 printk(KERN_ERR "i2c-mpc - failed to map controller\n");
346 if (i2c->irq != NO_IRQ)
347 if ((result = request_irq(i2c->irq, mpc_i2c_isr,
348 IRQF_SHARED, "i2c-mpc", i2c)) < 0) {
350 "i2c-mpc - failed to attach interrupt\n");
354 mpc_i2c_setclock(i2c);
355 platform_set_drvdata(pdev, i2c);
358 i2c->adap.nr = pdev->id;
359 i2c_set_adapdata(&i2c->adap, i2c);
360 i2c->adap.dev.parent = &pdev->dev;
361 if ((result = i2c_add_numbered_adapter(&i2c->adap)) < 0) {
362 printk(KERN_ERR "i2c-mpc - failed to add adapter\n");
369 if (i2c->irq != NO_IRQ)
370 free_irq(i2c->irq, i2c);
378 static int fsl_i2c_remove(struct platform_device *pdev)
380 struct mpc_i2c *i2c = platform_get_drvdata(pdev);
382 i2c_del_adapter(&i2c->adap);
383 platform_set_drvdata(pdev, NULL);
385 if (i2c->irq != NO_IRQ)
386 free_irq(i2c->irq, i2c);
393 /* work with hotplug and coldplug */
394 MODULE_ALIAS("platform:fsl-i2c");
396 /* Structure for a device driver */
397 static struct platform_driver fsl_i2c_driver = {
398 .probe = fsl_i2c_probe,
399 .remove = fsl_i2c_remove,
401 .owner = THIS_MODULE,
406 static int __init fsl_i2c_init(void)
408 return platform_driver_register(&fsl_i2c_driver);
411 static void __exit fsl_i2c_exit(void)
413 platform_driver_unregister(&fsl_i2c_driver);
416 module_init(fsl_i2c_init);
417 module_exit(fsl_i2c_exit);
419 MODULE_AUTHOR("Adrian Cox <adrian@humboldt.co.uk>");
421 ("I2C-Bus adapter for MPC107 bridge and MPC824x/85xx/52xx processors");
422 MODULE_LICENSE("GPL");