blob: 92e8c0ce16258111add80ecb60ce2ee37949309a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* ------------------------------------------------------------------------- */
2/* i2c-elektor.c i2c-hw access for PCF8584 style isa bus adaptes */
3/* ------------------------------------------------------------------------- */
4/* Copyright (C) 1995-97 Simon G. Vogl
5 1998-99 Hans Berglund
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Wolfram Sangca1f8da2014-11-04 23:46:27 +010015 GNU General Public License for more details. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070016/* ------------------------------------------------------------------------- */
17
Jan Engelhardt96de0e22007-10-19 23:21:04 +020018/* With some changes from Kyösti Mälkki <kmalkki@cc.hut.fi> and even
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 Frodo Looijaard <frodol@dds.nl> */
20
Lucas De Marchi25985ed2011-03-30 22:57:33 -030021/* Partially rewriten by Oleg I. Vdovikin for mmapped support of
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 for Alpha Processor Inc. UP-2000(+) boards */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/kernel.h>
25#include <linux/ioport.h>
26#include <linux/module.h>
27#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/init.h>
29#include <linux/interrupt.h>
30#include <linux/pci.h>
31#include <linux/wait.h>
32
Jean Delvare4a5d3032007-05-01 23:26:30 +020033#include <linux/isa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/i2c.h>
35#include <linux/i2c-algo-pcf.h>
H Hartley Sweeten21782182010-05-21 18:41:01 +020036#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/irq.h>
39
40#include "../algos/i2c-algo-pcf.h"
41
42#define DEFAULT_BASE 0x330
43
44static int base;
Stig Telfer3634ff62005-10-08 00:21:48 +020045static u8 __iomem *base_iomem;
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047static int irq;
48static int clock = 0x1c;
49static int own = 0x55;
50static int mmapped;
51
Stig Telferfe3d6a92005-10-08 00:23:27 +020052/* vdovikin: removed static struct i2c_pcf_isa gpi; code -
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 this module in real supports only one device, due to missing arguments
54 in some functions, called from the algo-pcf module. Sometimes it's
55 need to be rewriten - but for now just remove this for simpler reading */
56
57static wait_queue_head_t pcf_wait;
58static int pcf_pending;
59static spinlock_t lock;
60
Stig Telferfe3d6a92005-10-08 00:23:27 +020061static struct i2c_adapter pcf_isa_ops;
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/* ----- local functions ---------------------------------------------- */
64
65static void pcf_isa_setbyte(void *data, int ctl, int val)
66{
Stig Telfer3634ff62005-10-08 00:21:48 +020067 u8 __iomem *address = ctl ? (base_iomem + 1) : base_iomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 /* enable irq if any specified for serial operation */
70 if (ctl && irq && (val & I2C_PCF_ESO)) {
71 val |= I2C_PCF_ENI;
72 }
73
Stig Telferfe3d6a92005-10-08 00:23:27 +020074 pr_debug("%s: Write %p 0x%02X\n", pcf_isa_ops.name, address, val);
Stig Telfer3634ff62005-10-08 00:21:48 +020075 iowrite8(val, address);
76#ifdef __alpha__
77 /* API UP2000 needs some hardware fudging to make the write stick */
78 iowrite8(val, address);
79#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
81
82static int pcf_isa_getbyte(void *data, int ctl)
83{
Stig Telfer3634ff62005-10-08 00:21:48 +020084 u8 __iomem *address = ctl ? (base_iomem + 1) : base_iomem;
85 int val = ioread8(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Stig Telferfe3d6a92005-10-08 00:23:27 +020087 pr_debug("%s: Read %p 0x%02X\n", pcf_isa_ops.name, address, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 return (val);
89}
90
91static int pcf_isa_getown(void *data)
92{
93 return (own);
94}
95
96
97static int pcf_isa_getclock(void *data)
98{
99 return (clock);
100}
101
David Miller08e53382008-10-22 20:21:29 +0200102static void pcf_isa_waitforpin(void *data)
103{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 DEFINE_WAIT(wait);
105 int timeout = 2;
106 unsigned long flags;
107
108 if (irq > 0) {
109 spin_lock_irqsave(&lock, flags);
110 if (pcf_pending == 0) {
111 spin_unlock_irqrestore(&lock, flags);
112 prepare_to_wait(&pcf_wait, &wait, TASK_INTERRUPTIBLE);
113 if (schedule_timeout(timeout*HZ)) {
114 spin_lock_irqsave(&lock, flags);
115 if (pcf_pending == 1) {
116 pcf_pending = 0;
117 }
118 spin_unlock_irqrestore(&lock, flags);
119 }
120 finish_wait(&pcf_wait, &wait);
121 } else {
122 pcf_pending = 0;
123 spin_unlock_irqrestore(&lock, flags);
124 }
125 } else {
126 udelay(100);
127 }
128}
129
130
David Howells7d12e782006-10-05 14:55:46 +0100131static irqreturn_t pcf_isa_handler(int this_irq, void *dev_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 spin_lock(&lock);
133 pcf_pending = 1;
134 spin_unlock(&lock);
135 wake_up_interruptible(&pcf_wait);
136 return IRQ_HANDLED;
137}
138
139
140static int pcf_isa_init(void)
141{
142 spin_lock_init(&lock);
143 if (!mmapped) {
Stig Telferfe3d6a92005-10-08 00:23:27 +0200144 if (!request_region(base, 2, pcf_isa_ops.name)) {
145 printk(KERN_ERR "%s: requested I/O region (%#x:2) is "
146 "in use\n", pcf_isa_ops.name, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 return -ENODEV;
148 }
Stig Telfer3634ff62005-10-08 00:21:48 +0200149 base_iomem = ioport_map(base, 2);
150 if (!base_iomem) {
Stig Telferfe3d6a92005-10-08 00:23:27 +0200151 printk(KERN_ERR "%s: remap of I/O region %#x failed\n",
152 pcf_isa_ops.name, base);
Stig Telfer3634ff62005-10-08 00:21:48 +0200153 release_region(base, 2);
154 return -ENODEV;
155 }
156 } else {
Stig Telferfe3d6a92005-10-08 00:23:27 +0200157 if (!request_mem_region(base, 2, pcf_isa_ops.name)) {
158 printk(KERN_ERR "%s: requested memory region (%#x:2) "
159 "is in use\n", pcf_isa_ops.name, base);
Stig Telfer3634ff62005-10-08 00:21:48 +0200160 return -ENODEV;
161 }
162 base_iomem = ioremap(base, 2);
163 if (base_iomem == NULL) {
Stig Telferfe3d6a92005-10-08 00:23:27 +0200164 printk(KERN_ERR "%s: remap of memory region %#x "
165 "failed\n", pcf_isa_ops.name, base);
Stig Telfer3634ff62005-10-08 00:21:48 +0200166 release_mem_region(base, 2);
167 return -ENODEV;
168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 }
Stig Telferfe3d6a92005-10-08 00:23:27 +0200170 pr_debug("%s: registers %#x remapped to %p\n", pcf_isa_ops.name, base,
Stig Telfer3634ff62005-10-08 00:21:48 +0200171 base_iomem);
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (irq > 0) {
Stig Telferfe3d6a92005-10-08 00:23:27 +0200174 if (request_irq(irq, pcf_isa_handler, 0, pcf_isa_ops.name,
175 NULL) < 0) {
176 printk(KERN_ERR "%s: Request irq%d failed\n",
177 pcf_isa_ops.name, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 irq = 0;
179 } else
180 enable_irq(irq);
181 }
182 return 0;
183}
184
185/* ------------------------------------------------------------------------
186 * Encapsulate the above functions in the correct operations structure.
187 * This is only done when more than one hardware adapter is supported.
188 */
189static struct i2c_algo_pcf_data pcf_isa_data = {
190 .setpcf = pcf_isa_setbyte,
191 .getpcf = pcf_isa_getbyte,
192 .getown = pcf_isa_getown,
193 .getclock = pcf_isa_getclock,
194 .waitforpin = pcf_isa_waitforpin,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195};
196
197static struct i2c_adapter pcf_isa_ops = {
198 .owner = THIS_MODULE,
Jean Delvare3401b2f2008-07-14 22:38:29 +0200199 .class = I2C_CLASS_HWMON | I2C_CLASS_SPD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 .algo_data = &pcf_isa_data,
Stig Telferfe3d6a92005-10-08 00:23:27 +0200201 .name = "i2c-elektor",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202};
203
Bill Pemberton0b255e92012-11-27 15:59:38 -0500204static int elektor_match(struct device *dev, unsigned int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206#ifdef __alpha__
Stig Telferfe3d6a92005-10-08 00:23:27 +0200207 /* check to see we have memory mapped PCF8584 connected to the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 Cypress cy82c693 PCI-ISA bridge as on UP2000 board */
209 if (base == 0) {
210 struct pci_dev *cy693_dev;
Stig Telferfe3d6a92005-10-08 00:23:27 +0200211
212 cy693_dev = pci_get_device(PCI_VENDOR_ID_CONTAQ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 PCI_DEVICE_ID_CONTAQ_82C693, NULL);
214 if (cy693_dev) {
Stig Telfer3634ff62005-10-08 00:21:48 +0200215 unsigned char config;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 /* yeap, we've found cypress, let's check config */
217 if (!pci_read_config_byte(cy693_dev, 0x47, &config)) {
Stig Telferfe3d6a92005-10-08 00:23:27 +0200218
Jean Delvare4a5d3032007-05-01 23:26:30 +0200219 dev_dbg(dev, "found cy82c693, config "
220 "register 0x47 = 0x%02x\n", config);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 /* UP2000 board has this register set to 0xe1,
Stig Telferfe3d6a92005-10-08 00:23:27 +0200223 but the most significant bit as seems can be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 reset during the proper initialisation
Stig Telferfe3d6a92005-10-08 00:23:27 +0200225 sequence if guys from API decides to do that
226 (so, we can even enable Tsunami Pchip
227 window for the upper 1 Gb) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 /* so just check for ROMCS at 0xe0000,
Stig Telferfe3d6a92005-10-08 00:23:27 +0200230 ROMCS enabled for writes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 and external XD Bus buffer in use. */
232 if ((config & 0x7f) == 0x61) {
233 /* seems to be UP2000 like board */
234 base = 0xe0000;
Stig Telfer3634ff62005-10-08 00:21:48 +0200235 mmapped = 1;
Stig Telferfe3d6a92005-10-08 00:23:27 +0200236 /* UP2000 drives ISA with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 8.25 MHz (PCI/4) clock
238 (this can be read from cypress) */
239 clock = I2C_PCF_CLK | I2C_PCF_TRNS90;
Jean Delvare4a5d3032007-05-01 23:26:30 +0200240 dev_info(dev, "found API UP2000 like "
241 "board, will probe PCF8584 "
242 "later\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
244 }
245 pci_dev_put(cy693_dev);
246 }
247 }
248#endif
249
250 /* sanity checks for mmapped I/O */
251 if (mmapped && base < 0xc8000) {
Jean Delvare4a5d3032007-05-01 23:26:30 +0200252 dev_err(dev, "incorrect base address (%#x) specified "
253 "for mmapped I/O\n", base);
254 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 if (base == 0) {
258 base = DEFAULT_BASE;
259 }
Jean Delvare4a5d3032007-05-01 23:26:30 +0200260 return 1;
261}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Bill Pemberton0b255e92012-11-27 15:59:38 -0500263static int elektor_probe(struct device *dev, unsigned int id)
Jean Delvare4a5d3032007-05-01 23:26:30 +0200264{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 init_waitqueue_head(&pcf_wait);
266 if (pcf_isa_init())
267 return -ENODEV;
Jean Delvare4a5d3032007-05-01 23:26:30 +0200268 pcf_isa_ops.dev.parent = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 if (i2c_pcf_add_bus(&pcf_isa_ops) < 0)
270 goto fail;
Stig Telferfe3d6a92005-10-08 00:23:27 +0200271
Jean Delvare4a5d3032007-05-01 23:26:30 +0200272 dev_info(dev, "found device at %#x\n", base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 return 0;
275
276 fail:
277 if (irq > 0) {
278 disable_irq(irq);
279 free_irq(irq, NULL);
280 }
281
Stig Telfer3634ff62005-10-08 00:21:48 +0200282 if (!mmapped) {
283 ioport_unmap(base_iomem);
Stig Telferfe3d6a92005-10-08 00:23:27 +0200284 release_region(base, 2);
Stig Telfer3634ff62005-10-08 00:21:48 +0200285 } else {
286 iounmap(base_iomem);
287 release_mem_region(base, 2);
288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return -ENODEV;
290}
291
Bill Pemberton0b255e92012-11-27 15:59:38 -0500292static int elektor_remove(struct device *dev, unsigned int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Jean Delvare32697112006-12-10 21:21:33 +0100294 i2c_del_adapter(&pcf_isa_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 if (irq > 0) {
297 disable_irq(irq);
298 free_irq(irq, NULL);
299 }
300
Stig Telfer3634ff62005-10-08 00:21:48 +0200301 if (!mmapped) {
302 ioport_unmap(base_iomem);
Stig Telferfe3d6a92005-10-08 00:23:27 +0200303 release_region(base, 2);
Stig Telfer3634ff62005-10-08 00:21:48 +0200304 } else {
305 iounmap(base_iomem);
306 release_mem_region(base, 2);
307 }
Jean Delvare4a5d3032007-05-01 23:26:30 +0200308
309 return 0;
310}
311
312static struct isa_driver i2c_elektor_driver = {
313 .match = elektor_match,
314 .probe = elektor_probe,
Bill Pemberton0b255e92012-11-27 15:59:38 -0500315 .remove = elektor_remove,
Jean Delvare4a5d3032007-05-01 23:26:30 +0200316 .driver = {
317 .owner = THIS_MODULE,
318 .name = "i2c-elektor",
319 },
320};
321
322static int __init i2c_pcfisa_init(void)
323{
324 return isa_register_driver(&i2c_elektor_driver, 1);
325}
326
327static void __exit i2c_pcfisa_exit(void)
328{
329 isa_unregister_driver(&i2c_elektor_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
332MODULE_AUTHOR("Hans Berglund <hb@spacetec.no>");
333MODULE_DESCRIPTION("I2C-Bus adapter routines for PCF8584 ISA bus adapter");
334MODULE_LICENSE("GPL");
335
336module_param(base, int, 0);
337module_param(irq, int, 0);
338module_param(clock, int, 0);
339module_param(own, int, 0);
340module_param(mmapped, int, 0);
341
342module_init(i2c_pcfisa_init);
343module_exit(i2c_pcfisa_exit);