1 /* ------------------------------------------------------------------------- */
2 /* i2c-elektor.c i2c-hw access for PCF8584 style isa bus adaptes */
3 /* ------------------------------------------------------------------------- */
4 /* Copyright (C) 1995-97 Simon G. Vogl
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.
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
15 GNU General Public License for more details. */
16 /* ------------------------------------------------------------------------- */
18 /* With some changes from Kyösti Mälkki <kmalkki@cc.hut.fi> and even
19 Frodo Looijaard <frodol@dds.nl> */
21 /* Partially rewriten by Oleg I. Vdovikin for mmapped support of
22 for Alpha Processor Inc. UP-2000(+) boards */
24 #include <linux/kernel.h>
25 #include <linux/ioport.h>
26 #include <linux/module.h>
27 #include <linux/delay.h>
28 #include <linux/init.h>
29 #include <linux/interrupt.h>
30 #include <linux/pci.h>
31 #include <linux/wait.h>
33 #include <linux/isa.h>
34 #include <linux/i2c.h>
35 #include <linux/i2c-algo-pcf.h>
40 #include "../algos/i2c-algo-pcf.h"
42 #define DEFAULT_BASE 0x330
45 static u8 __iomem
*base_iomem
;
48 static int clock
= 0x1c;
49 static int own
= 0x55;
52 /* vdovikin: removed static struct i2c_pcf_isa gpi; code -
53 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 */
57 static wait_queue_head_t pcf_wait
;
58 static int pcf_pending
;
59 static spinlock_t lock
;
61 static struct i2c_adapter pcf_isa_ops
;
63 /* ----- local functions ---------------------------------------------- */
65 static void pcf_isa_setbyte(void *data
, int ctl
, int val
)
67 u8 __iomem
*address
= ctl
? (base_iomem
+ 1) : base_iomem
;
69 /* enable irq if any specified for serial operation */
70 if (ctl
&& irq
&& (val
& I2C_PCF_ESO
)) {
74 pr_debug("%s: Write %p 0x%02X\n", pcf_isa_ops
.name
, address
, val
);
75 iowrite8(val
, address
);
77 /* API UP2000 needs some hardware fudging to make the write stick */
78 iowrite8(val
, address
);
82 static int pcf_isa_getbyte(void *data
, int ctl
)
84 u8 __iomem
*address
= ctl
? (base_iomem
+ 1) : base_iomem
;
85 int val
= ioread8(address
);
87 pr_debug("%s: Read %p 0x%02X\n", pcf_isa_ops
.name
, address
, val
);
91 static int pcf_isa_getown(void *data
)
97 static int pcf_isa_getclock(void *data
)
102 static void pcf_isa_waitforpin(void *data
)
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) {
118 spin_unlock_irqrestore(&lock
, flags
);
120 finish_wait(&pcf_wait
, &wait
);
123 spin_unlock_irqrestore(&lock
, flags
);
131 static irqreturn_t
pcf_isa_handler(int this_irq
, void *dev_id
) {
135 wake_up_interruptible(&pcf_wait
);
140 static int pcf_isa_init(void)
142 spin_lock_init(&lock
);
144 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
);
149 base_iomem
= ioport_map(base
, 2);
151 printk(KERN_ERR
"%s: remap of I/O region %#x failed\n",
152 pcf_isa_ops
.name
, base
);
153 release_region(base
, 2);
157 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
);
162 base_iomem
= ioremap(base
, 2);
163 if (base_iomem
== NULL
) {
164 printk(KERN_ERR
"%s: remap of memory region %#x "
165 "failed\n", pcf_isa_ops
.name
, base
);
166 release_mem_region(base
, 2);
170 pr_debug("%s: registers %#x remapped to %p\n", pcf_isa_ops
.name
, base
,
174 if (request_irq(irq
, pcf_isa_handler
, 0, pcf_isa_ops
.name
,
176 printk(KERN_ERR
"%s: Request irq%d failed\n",
177 pcf_isa_ops
.name
, irq
);
185 /* ------------------------------------------------------------------------
186 * Encapsulate the above functions in the correct operations structure.
187 * This is only done when more than one hardware adapter is supported.
189 static 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
,
197 static struct i2c_adapter pcf_isa_ops
= {
198 .owner
= THIS_MODULE
,
199 .class = I2C_CLASS_HWMON
| I2C_CLASS_SPD
,
200 .algo_data
= &pcf_isa_data
,
201 .name
= "i2c-elektor",
204 static int elektor_match(struct device
*dev
, unsigned int id
)
207 /* check to see we have memory mapped PCF8584 connected to the
208 Cypress cy82c693 PCI-ISA bridge as on UP2000 board */
210 struct pci_dev
*cy693_dev
;
212 cy693_dev
= pci_get_device(PCI_VENDOR_ID_CONTAQ
,
213 PCI_DEVICE_ID_CONTAQ_82C693
, NULL
);
215 unsigned char config
;
216 /* yeap, we've found cypress, let's check config */
217 if (!pci_read_config_byte(cy693_dev
, 0x47, &config
)) {
219 dev_dbg(dev
, "found cy82c693, config "
220 "register 0x47 = 0x%02x\n", config
);
222 /* UP2000 board has this register set to 0xe1,
223 but the most significant bit as seems can be
224 reset during the proper initialisation
225 sequence if guys from API decides to do that
226 (so, we can even enable Tsunami Pchip
227 window for the upper 1 Gb) */
229 /* so just check for ROMCS at 0xe0000,
230 ROMCS enabled for writes
231 and external XD Bus buffer in use. */
232 if ((config
& 0x7f) == 0x61) {
233 /* seems to be UP2000 like board */
236 /* UP2000 drives ISA with
237 8.25 MHz (PCI/4) clock
238 (this can be read from cypress) */
239 clock
= I2C_PCF_CLK
| I2C_PCF_TRNS90
;
240 dev_info(dev
, "found API UP2000 like "
241 "board, will probe PCF8584 "
245 pci_dev_put(cy693_dev
);
250 /* sanity checks for mmapped I/O */
251 if (mmapped
&& base
< 0xc8000) {
252 dev_err(dev
, "incorrect base address (%#x) specified "
253 "for mmapped I/O\n", base
);
263 static int elektor_probe(struct device
*dev
, unsigned int id
)
265 init_waitqueue_head(&pcf_wait
);
268 pcf_isa_ops
.dev
.parent
= dev
;
269 if (i2c_pcf_add_bus(&pcf_isa_ops
) < 0)
272 dev_info(dev
, "found device at %#x\n", base
);
283 ioport_unmap(base_iomem
);
284 release_region(base
, 2);
287 release_mem_region(base
, 2);
292 static int elektor_remove(struct device
*dev
, unsigned int id
)
294 i2c_del_adapter(&pcf_isa_ops
);
302 ioport_unmap(base_iomem
);
303 release_region(base
, 2);
306 release_mem_region(base
, 2);
312 static struct isa_driver i2c_elektor_driver
= {
313 .match
= elektor_match
,
314 .probe
= elektor_probe
,
315 .remove
= elektor_remove
,
317 .owner
= THIS_MODULE
,
318 .name
= "i2c-elektor",
322 MODULE_AUTHOR("Hans Berglund <hb@spacetec.no>");
323 MODULE_DESCRIPTION("I2C-Bus adapter routines for PCF8584 ISA bus adapter");
324 MODULE_LICENSE("GPL");
326 module_param(base
, int, 0);
327 module_param(irq
, int, 0);
328 module_param(clock
, int, 0);
329 module_param(own
, int, 0);
330 module_param(mmapped
, int, 0);
331 module_isa_driver(i2c_elektor_driver
, 1);