| 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> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/init.h> | 
|  | 27 | #include <linux/interrupt.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/wait.h> | 
| Jean Delvare | 5cedb05 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 29 | #include <linux/isa.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/i2c.h> | 
|  | 31 | #include <linux/i2c-algo-pca.h> | 
|  | 32 |  | 
|  | 33 | #include <asm/io.h> | 
|  | 34 | #include <asm/irq.h> | 
|  | 35 |  | 
| Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 36 | #define DRIVER "i2c-pca-isa" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #define IO_SIZE 4 | 
|  | 38 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | static unsigned long base   = 0x330; | 
|  | 40 | static int irq 	  = 10; | 
|  | 41 |  | 
|  | 42 | /* Data sheet recommends 59kHz for 100kHz operation due to variation | 
|  | 43 | * in the actual clock rate */ | 
|  | 44 | static int clock  = I2C_PCA_CON_59kHz; | 
|  | 45 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | static wait_queue_head_t pca_wait; | 
|  | 47 |  | 
| Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 48 | static void pca_isa_writebyte(void *pd, int reg, int val) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | { | 
|  | 50 | #ifdef DEBUG_IO | 
|  | 51 | static char *names[] = { "T/O", "DAT", "ADR", "CON" }; | 
|  | 52 | printk("*** write %s at %#lx <= %#04x\n", names[reg], base+reg, val); | 
|  | 53 | #endif | 
|  | 54 | outb(val, base+reg); | 
|  | 55 | } | 
|  | 56 |  | 
| Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 57 | static int pca_isa_readbyte(void *pd, int reg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | { | 
|  | 59 | int res = inb(base+reg); | 
|  | 60 | #ifdef DEBUG_IO | 
|  | 61 | { | 
| Wolfram Sang | 3d43829 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 62 | static char *names[] = { "STA", "DAT", "ADR", "CON" }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | printk("*** read  %s => %#04x\n", names[reg], res); | 
|  | 64 | } | 
|  | 65 | #endif | 
|  | 66 | return res; | 
|  | 67 | } | 
|  | 68 |  | 
| Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 69 | static int pca_isa_waitforcompletion(void *pd) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | { | 
|  | 71 | int ret = 0; | 
|  | 72 |  | 
|  | 73 | if (irq > -1) { | 
|  | 74 | ret = wait_event_interruptible(pca_wait, | 
| Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 75 | pca_isa_readbyte(pd, I2C_PCA_CON) & I2C_PCA_CON_SI); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | } else { | 
| Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 77 | while ((pca_isa_readbyte(pd, I2C_PCA_CON) & I2C_PCA_CON_SI) == 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | udelay(100); | 
|  | 79 | } | 
|  | 80 | return ret; | 
|  | 81 | } | 
|  | 82 |  | 
| Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 83 | static void pca_isa_resetchip(void *pd) | 
|  | 84 | { | 
|  | 85 | /* apparently only an external reset will do it. not a lot can be done */ | 
|  | 86 | printk(KERN_WARNING DRIVER ": Haven't figured out how to do a reset yet\n"); | 
|  | 87 | } | 
|  | 88 |  | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 89 | static irqreturn_t pca_handler(int this_irq, void *dev_id) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | wake_up_interruptible(&pca_wait); | 
|  | 91 | return IRQ_HANDLED; | 
|  | 92 | } | 
|  | 93 |  | 
|  | 94 | static struct i2c_algo_pca_data pca_isa_data = { | 
| Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 95 | /* .data intentionally left NULL, not needed with ISA */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | .write_byte		= pca_isa_writebyte, | 
|  | 97 | .read_byte		= pca_isa_readbyte, | 
| Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 98 | .wait_for_completion	= pca_isa_waitforcompletion, | 
|  | 99 | .reset_chip		= pca_isa_resetchip, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | }; | 
|  | 101 |  | 
|  | 102 | static struct i2c_adapter pca_isa_ops = { | 
|  | 103 | .owner          = THIS_MODULE, | 
|  | 104 | .id		= I2C_HW_A_ISA, | 
|  | 105 | .algo_data	= &pca_isa_data, | 
|  | 106 | .name		= "PCA9564 ISA Adapter", | 
| Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 107 | .timeout	= 100, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | }; | 
|  | 109 |  | 
| Jean Delvare | 5cedb05 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 110 | static int __devinit pca_isa_probe(struct device *dev, unsigned int id) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | init_waitqueue_head(&pca_wait); | 
|  | 113 |  | 
| Jean Delvare | 5cedb05 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 114 | dev_info(dev, "i/o base %#08lx. irq %d\n", base, irq); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 |  | 
| Christian Krafft | 104cb57 | 2008-02-24 20:03:42 +0100 | [diff] [blame] | 116 | #ifdef CONFIG_PPC_MERGE | 
|  | 117 | if (check_legacy_ioport(base)) { | 
|  | 118 | dev_err(dev, "I/O address %#08lx is not available\n", base); | 
|  | 119 | goto out; | 
|  | 120 | } | 
|  | 121 | #endif | 
|  | 122 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | if (!request_region(base, IO_SIZE, "i2c-pca-isa")) { | 
| Jean Delvare | 5cedb05 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 124 | dev_err(dev, "I/O address %#08lx is in use\n", base); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | goto out; | 
|  | 126 | } | 
|  | 127 |  | 
|  | 128 | if (irq > -1) { | 
|  | 129 | 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] | 130 | dev_err(dev, "Request irq%d failed\n", irq); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | goto out_region; | 
|  | 132 | } | 
|  | 133 | } | 
|  | 134 |  | 
| Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 135 | pca_isa_data.i2c_clock = clock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | if (i2c_pca_add_bus(&pca_isa_ops) < 0) { | 
| Jean Delvare | 5cedb05 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 137 | dev_err(dev, "Failed to add i2c bus\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | goto out_irq; | 
|  | 139 | } | 
|  | 140 |  | 
|  | 141 | return 0; | 
|  | 142 |  | 
|  | 143 | out_irq: | 
|  | 144 | if (irq > -1) | 
|  | 145 | free_irq(irq, &pca_isa_ops); | 
|  | 146 | out_region: | 
|  | 147 | release_region(base, IO_SIZE); | 
|  | 148 | out: | 
|  | 149 | return -ENODEV; | 
|  | 150 | } | 
|  | 151 |  | 
| Jean Delvare | 5cedb05 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 152 | static int __devexit pca_isa_remove(struct device *dev, unsigned int id) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | { | 
| Jean Delvare | 3269711 | 2006-12-10 21:21:33 +0100 | [diff] [blame] | 154 | i2c_del_adapter(&pca_isa_ops); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 |  | 
|  | 156 | if (irq > 0) { | 
|  | 157 | disable_irq(irq); | 
|  | 158 | free_irq(irq, &pca_isa_ops); | 
|  | 159 | } | 
|  | 160 | release_region(base, IO_SIZE); | 
| Jean Delvare | 5cedb05 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 161 |  | 
|  | 162 | return 0; | 
|  | 163 | } | 
|  | 164 |  | 
|  | 165 | static struct isa_driver pca_isa_driver = { | 
|  | 166 | .probe		= pca_isa_probe, | 
|  | 167 | .remove		= __devexit_p(pca_isa_remove), | 
|  | 168 | .driver = { | 
|  | 169 | .owner	= THIS_MODULE, | 
| Wolfram Sang | c01b083 | 2008-04-22 22:16:46 +0200 | [diff] [blame] | 170 | .name	= DRIVER, | 
| Jean Delvare | 5cedb05 | 2007-05-01 23:26:30 +0200 | [diff] [blame] | 171 | } | 
|  | 172 | }; | 
|  | 173 |  | 
|  | 174 | static int __init pca_isa_init(void) | 
|  | 175 | { | 
|  | 176 | return isa_register_driver(&pca_isa_driver, 1); | 
|  | 177 | } | 
|  | 178 |  | 
|  | 179 | static void __exit pca_isa_exit(void) | 
|  | 180 | { | 
|  | 181 | isa_unregister_driver(&pca_isa_driver); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | } | 
|  | 183 |  | 
|  | 184 | MODULE_AUTHOR("Ian Campbell <icampbell@arcom.com>"); | 
|  | 185 | MODULE_DESCRIPTION("ISA base PCA9564 driver"); | 
|  | 186 | MODULE_LICENSE("GPL"); | 
|  | 187 |  | 
|  | 188 | module_param(base, ulong, 0); | 
|  | 189 | MODULE_PARM_DESC(base, "I/O base address"); | 
|  | 190 |  | 
|  | 191 | module_param(irq, int, 0); | 
|  | 192 | MODULE_PARM_DESC(irq, "IRQ"); | 
|  | 193 | module_param(clock, int, 0); | 
|  | 194 | MODULE_PARM_DESC(clock, "Clock rate as described in table 1 of PCA9564 datasheet"); | 
|  | 195 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | module_init(pca_isa_init); | 
|  | 197 | module_exit(pca_isa_exit); |