Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * i2c-pca-isa.c driver for PCA9564 on ISA boards |
| 3 | * Copyright (C) 2004 Arcom Control Systems |
Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 4 | * Copyright (C) 2008 Pengutronix |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 19 | */ |
| 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/kernel.h> |
| 22 | #include <linux/ioport.h> |
| 23 | #include <linux/module.h> |
| 24 | #include <linux/moduleparam.h> |
| 25 | #include <linux/delay.h> |
Wolfram Sang | 2378bc0 | 2009-03-28 21:34:45 +0100 | [diff] [blame] | 26 | #include <linux/jiffies.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/init.h> |
| 28 | #include <linux/interrupt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/wait.h> |
Jean Delvare | 5cedb05 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 30 | #include <linux/isa.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/i2c.h> |
| 32 | #include <linux/i2c-algo-pca.h> |
H Hartley Sweeten | 2178218 | 2010-05-21 18:41:01 +0200 | [diff] [blame] | 33 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <asm/irq.h> |
| 36 | |
Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 37 | #define DRIVER "i2c-pca-isa" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #define IO_SIZE 4 |
| 39 | |
Rene Herman | ce56403 | 2008-10-14 17:30:03 +0200 | [diff] [blame] | 40 | static unsigned long base; |
| 41 | static int irq = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
| 43 | /* Data sheet recommends 59kHz for 100kHz operation due to variation |
| 44 | * in the actual clock rate */ |
Marco Aurelio da Costa | eff9ec9 | 2009-03-28 21:34:44 +0100 | [diff] [blame] | 45 | static int clock = 59000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Wolfram Sang | 2378bc0 | 2009-03-28 21:34:45 +0100 | [diff] [blame] | 47 | static struct i2c_adapter pca_isa_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | static wait_queue_head_t pca_wait; |
| 49 | |
Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 50 | static void pca_isa_writebyte(void *pd, int reg, int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | { |
| 52 | #ifdef DEBUG_IO |
| 53 | static char *names[] = { "T/O", "DAT", "ADR", "CON" }; |
Frank Seidel | 154d22b | 2009-03-28 21:34:42 +0100 | [diff] [blame] | 54 | printk(KERN_DEBUG "*** write %s at %#lx <= %#04x\n", names[reg], |
| 55 | base+reg, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #endif |
| 57 | outb(val, base+reg); |
| 58 | } |
| 59 | |
Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 60 | static int pca_isa_readbyte(void *pd, int reg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | { |
| 62 | int res = inb(base+reg); |
| 63 | #ifdef DEBUG_IO |
| 64 | { |
Wolfram Sang | 3d43829 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 65 | static char *names[] = { "STA", "DAT", "ADR", "CON" }; |
Frank Seidel | 154d22b | 2009-03-28 21:34:42 +0100 | [diff] [blame] | 66 | printk(KERN_DEBUG "*** read %s => %#04x\n", names[reg], res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | } |
| 68 | #endif |
| 69 | return res; |
| 70 | } |
| 71 | |
Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 72 | static int pca_isa_waitforcompletion(void *pd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | { |
Wolfram Sang | 2378bc0 | 2009-03-28 21:34:45 +0100 | [diff] [blame] | 74 | unsigned long timeout; |
Yegor Yefremov | 6abb930 | 2010-09-30 14:14:22 +0200 | [diff] [blame] | 75 | long ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
| 77 | if (irq > -1) { |
Wolfram Sang | 22f8b26 | 2010-01-16 20:43:13 +0100 | [diff] [blame] | 78 | ret = wait_event_timeout(pca_wait, |
Wolfram Sang | 2378bc0 | 2009-03-28 21:34:45 +0100 | [diff] [blame] | 79 | pca_isa_readbyte(pd, I2C_PCA_CON) |
| 80 | & I2C_PCA_CON_SI, pca_isa_ops.timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | } else { |
Wolfram Sang | 2378bc0 | 2009-03-28 21:34:45 +0100 | [diff] [blame] | 82 | /* Do polling */ |
| 83 | timeout = jiffies + pca_isa_ops.timeout; |
Yegor Yefremov | 6abb930 | 2010-09-30 14:14:22 +0200 | [diff] [blame] | 84 | do { |
| 85 | ret = time_before(jiffies, timeout); |
| 86 | if (pca_isa_readbyte(pd, I2C_PCA_CON) |
| 87 | & I2C_PCA_CON_SI) |
| 88 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | udelay(100); |
Yegor Yefremov | 6abb930 | 2010-09-30 14:14:22 +0200 | [diff] [blame] | 90 | } while (ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | } |
Yegor Yefremov | 6abb930 | 2010-09-30 14:14:22 +0200 | [diff] [blame] | 92 | |
Wolfram Sang | 2378bc0 | 2009-03-28 21:34:45 +0100 | [diff] [blame] | 93 | return ret > 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | } |
| 95 | |
Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 96 | static void pca_isa_resetchip(void *pd) |
| 97 | { |
| 98 | /* apparently only an external reset will do it. not a lot can be done */ |
| 99 | printk(KERN_WARNING DRIVER ": Haven't figured out how to do a reset yet\n"); |
| 100 | } |
| 101 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 102 | static irqreturn_t pca_handler(int this_irq, void *dev_id) { |
Wolfram Sang | 22f8b26 | 2010-01-16 20:43:13 +0100 | [diff] [blame] | 103 | wake_up(&pca_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | return IRQ_HANDLED; |
| 105 | } |
| 106 | |
| 107 | static struct i2c_algo_pca_data pca_isa_data = { |
Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 108 | /* .data intentionally left NULL, not needed with ISA */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | .write_byte = pca_isa_writebyte, |
| 110 | .read_byte = pca_isa_readbyte, |
Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 111 | .wait_for_completion = pca_isa_waitforcompletion, |
| 112 | .reset_chip = pca_isa_resetchip, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | }; |
| 114 | |
| 115 | static struct i2c_adapter pca_isa_ops = { |
| 116 | .owner = THIS_MODULE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | .algo_data = &pca_isa_data, |
Marco Aurelio da Costa | eff9ec9 | 2009-03-28 21:34:44 +0100 | [diff] [blame] | 118 | .name = "PCA9564/PCA9665 ISA Adapter", |
Wolfram Sang | 8e99ada | 2009-03-28 21:34:45 +0100 | [diff] [blame] | 119 | .timeout = HZ, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | }; |
| 121 | |
Rene Herman | ce56403 | 2008-10-14 17:30:03 +0200 | [diff] [blame] | 122 | static int __devinit pca_isa_match(struct device *dev, unsigned int id) |
| 123 | { |
| 124 | int match = base != 0; |
| 125 | |
| 126 | if (match) { |
| 127 | if (irq <= -1) |
| 128 | dev_warn(dev, "Using polling mode (specify irq)\n"); |
| 129 | } else |
| 130 | dev_err(dev, "Please specify I/O base\n"); |
| 131 | |
| 132 | return match; |
| 133 | } |
| 134 | |
Jean Delvare | 5cedb05 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 135 | static int __devinit pca_isa_probe(struct device *dev, unsigned int id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | init_waitqueue_head(&pca_wait); |
| 138 | |
Jean Delvare | 5cedb05 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 139 | dev_info(dev, "i/o base %#08lx. irq %d\n", base, irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | |
Kumar Gala | 68e1ee6 | 2008-09-22 14:41:31 -0700 | [diff] [blame] | 141 | #ifdef CONFIG_PPC |
Christian Krafft | 104cb57 | 2008-02-24 20:03:42 +0100 | [diff] [blame] | 142 | if (check_legacy_ioport(base)) { |
| 143 | dev_err(dev, "I/O address %#08lx is not available\n", base); |
| 144 | goto out; |
| 145 | } |
| 146 | #endif |
| 147 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | if (!request_region(base, IO_SIZE, "i2c-pca-isa")) { |
Jean Delvare | 5cedb05 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 149 | dev_err(dev, "I/O address %#08lx is in use\n", base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | goto out; |
| 151 | } |
| 152 | |
| 153 | if (irq > -1) { |
| 154 | if (request_irq(irq, pca_handler, 0, "i2c-pca-isa", &pca_isa_ops) < 0) { |
Jean Delvare | 5cedb05 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 155 | dev_err(dev, "Request irq%d failed\n", irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | goto out_region; |
| 157 | } |
| 158 | } |
| 159 | |
Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 160 | pca_isa_data.i2c_clock = clock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | if (i2c_pca_add_bus(&pca_isa_ops) < 0) { |
Jean Delvare | 5cedb05 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 162 | dev_err(dev, "Failed to add i2c bus\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | goto out_irq; |
| 164 | } |
| 165 | |
| 166 | return 0; |
| 167 | |
| 168 | out_irq: |
| 169 | if (irq > -1) |
| 170 | free_irq(irq, &pca_isa_ops); |
| 171 | out_region: |
| 172 | release_region(base, IO_SIZE); |
| 173 | out: |
| 174 | return -ENODEV; |
| 175 | } |
| 176 | |
Jean Delvare | 5cedb05 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 177 | static int __devexit pca_isa_remove(struct device *dev, unsigned int id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | { |
Jean Delvare | 3269711 | 2006-12-10 21:21:33 +0100 | [diff] [blame] | 179 | i2c_del_adapter(&pca_isa_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
Rene Herman | ce56403 | 2008-10-14 17:30:03 +0200 | [diff] [blame] | 181 | if (irq > -1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | disable_irq(irq); |
| 183 | free_irq(irq, &pca_isa_ops); |
| 184 | } |
| 185 | release_region(base, IO_SIZE); |
Jean Delvare | 5cedb05 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 186 | |
| 187 | return 0; |
| 188 | } |
| 189 | |
| 190 | static struct isa_driver pca_isa_driver = { |
Rene Herman | ce56403 | 2008-10-14 17:30:03 +0200 | [diff] [blame] | 191 | .match = pca_isa_match, |
Jean Delvare | 5cedb05 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 192 | .probe = pca_isa_probe, |
| 193 | .remove = __devexit_p(pca_isa_remove), |
| 194 | .driver = { |
| 195 | .owner = THIS_MODULE, |
Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 196 | .name = DRIVER, |
Jean Delvare | 5cedb05 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 197 | } |
| 198 | }; |
| 199 | |
| 200 | static int __init pca_isa_init(void) |
| 201 | { |
| 202 | return isa_register_driver(&pca_isa_driver, 1); |
| 203 | } |
| 204 | |
| 205 | static void __exit pca_isa_exit(void) |
| 206 | { |
| 207 | isa_unregister_driver(&pca_isa_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | MODULE_AUTHOR("Ian Campbell <icampbell@arcom.com>"); |
Marco Aurelio da Costa | eff9ec9 | 2009-03-28 21:34:44 +0100 | [diff] [blame] | 211 | MODULE_DESCRIPTION("ISA base PCA9564/PCA9665 driver"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | MODULE_LICENSE("GPL"); |
| 213 | |
| 214 | module_param(base, ulong, 0); |
| 215 | MODULE_PARM_DESC(base, "I/O base address"); |
| 216 | |
| 217 | module_param(irq, int, 0); |
| 218 | MODULE_PARM_DESC(irq, "IRQ"); |
| 219 | module_param(clock, int, 0); |
Marco Aurelio da Costa | eff9ec9 | 2009-03-28 21:34:44 +0100 | [diff] [blame] | 220 | MODULE_PARM_DESC(clock, "Clock rate in hertz.\n\t\t" |
| 221 | "For PCA9564: 330000,288000,217000,146000," |
| 222 | "88000,59000,44000,36000\n" |
| 223 | "\t\tFor PCA9665:\tStandard: 60300 - 100099\n" |
| 224 | "\t\t\t\tFast: 100100 - 400099\n" |
| 225 | "\t\t\t\tFast+: 400100 - 10000099\n" |
| 226 | "\t\t\t\tTurbo: Up to 1265800"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | module_init(pca_isa_init); |
| 229 | module_exit(pca_isa_exit); |