1 /* $Id: bbc_i2c.c,v 1.2 2001/04/02 09:59:08 davem Exp $
2 * bbc_i2c.c: I2C low-level driver for BBC device on UltraSPARC-III
5 * Copyright (C) 2001 David S. Miller (davem@redhat.com)
8 #include <linux/module.h>
9 #include <linux/kernel.h>
10 #include <linux/types.h>
11 #include <linux/slab.h>
12 #include <linux/sched.h>
13 #include <linux/wait.h>
14 #include <linux/delay.h>
15 #include <linux/init.h>
16 #include <linux/interrupt.h>
17 #include <asm/oplib.h>
19 #include <asm/spitfire.h>
24 /* Convert this driver to use i2c bus layer someday... */
25 #define I2C_PCF_PIN 0x80
26 #define I2C_PCF_ESO 0x40
27 #define I2C_PCF_ES1 0x20
28 #define I2C_PCF_ES2 0x10
29 #define I2C_PCF_ENI 0x08
30 #define I2C_PCF_STA 0x04
31 #define I2C_PCF_STO 0x02
32 #define I2C_PCF_ACK 0x01
34 #define I2C_PCF_START (I2C_PCF_PIN | I2C_PCF_ESO | I2C_PCF_ENI | I2C_PCF_STA | I2C_PCF_ACK)
35 #define I2C_PCF_STOP (I2C_PCF_PIN | I2C_PCF_ESO | I2C_PCF_STO | I2C_PCF_ACK)
36 #define I2C_PCF_REPSTART ( I2C_PCF_ESO | I2C_PCF_STA | I2C_PCF_ACK)
37 #define I2C_PCF_IDLE (I2C_PCF_PIN | I2C_PCF_ESO | I2C_PCF_ACK)
39 #define I2C_PCF_INI 0x40 /* 1 if not initialized */
40 #define I2C_PCF_STS 0x20
41 #define I2C_PCF_BER 0x10
42 #define I2C_PCF_AD0 0x08
43 #define I2C_PCF_LRB 0x08
44 #define I2C_PCF_AAS 0x04
45 #define I2C_PCF_LAB 0x02
46 #define I2C_PCF_BB 0x01
48 /* The BBC devices have two I2C controllers. The first I2C controller
49 * connects mainly to configuration proms (NVRAM, cpu configuration,
50 * dimm types, etc.). Whereas the second I2C controller connects to
51 * environmental control devices such as fans and temperature sensors.
52 * The second controller also connects to the smartcard reader, if present.
55 #define NUM_CHILDREN 8
57 struct bbc_i2c_bus *next;
60 void __iomem *i2c_bussel_reg;
61 void __iomem *i2c_control_regs;
62 unsigned char own, clock;
67 struct linux_ebus_device *bus_edev;
69 struct linux_ebus_child *device;
74 static struct bbc_i2c_bus *all_bbc_i2c;
76 struct bbc_i2c_client {
77 struct bbc_i2c_bus *bp;
78 struct linux_ebus_child *echild;
83 static int find_device(struct bbc_i2c_bus *bp, struct linux_ebus_child *echild)
87 for (i = 0; i < NUM_CHILDREN; i++) {
88 if (bp->devs[i].device == echild) {
89 if (bp->devs[i].client_claimed)
97 static void set_device_claimage(struct bbc_i2c_bus *bp, struct linux_ebus_child *echild, int val)
101 for (i = 0; i < NUM_CHILDREN; i++) {
102 if (bp->devs[i].device == echild) {
103 bp->devs[i].client_claimed = val;
109 #define claim_device(BP,ECHILD) set_device_claimage(BP,ECHILD,1)
110 #define release_device(BP,ECHILD) set_device_claimage(BP,ECHILD,0)
112 static struct bbc_i2c_bus *find_bus_for_device(struct linux_ebus_child *echild)
114 struct bbc_i2c_bus *bp = all_bbc_i2c;
117 if (find_device(bp, echild) != 0)
125 struct linux_ebus_child *bbc_i2c_getdev(int index)
127 struct bbc_i2c_bus *bp = all_bbc_i2c;
128 struct linux_ebus_child *echild = NULL;
132 struct bbc_i2c_bus *next = bp->next;
135 for (i = 0; i < NUM_CHILDREN; i++) {
136 if (!(echild = bp->devs[i].device))
151 struct bbc_i2c_client *bbc_i2c_attach(struct linux_ebus_child *echild)
153 struct bbc_i2c_bus *bp = find_bus_for_device(echild);
154 struct bbc_i2c_client *client;
158 client = kmalloc(sizeof(*client), GFP_KERNEL);
161 memset(client, 0, sizeof(*client));
163 client->echild = echild;
164 client->bus = echild->resource[0].start;
165 client->address = echild->resource[1].start;
167 claim_device(bp, echild);
172 void bbc_i2c_detach(struct bbc_i2c_client *client)
174 struct bbc_i2c_bus *bp = client->bp;
175 struct linux_ebus_child *echild = client->echild;
177 release_device(bp, echild);
181 static int wait_for_pin(struct bbc_i2c_bus *bp, u8 *status)
183 DECLARE_WAITQUEUE(wait, current);
188 add_wait_queue(&bp->wq, &wait);
189 while (limit-- > 0) {
192 set_current_state(TASK_INTERRUPTIBLE);
193 *status = val = readb(bp->i2c_control_regs + 0);
194 if ((val & I2C_PCF_PIN) == 0) {
198 msleep_interruptible(250);
200 remove_wait_queue(&bp->wq, &wait);
202 current->state = TASK_RUNNING;
207 int bbc_i2c_writeb(struct bbc_i2c_client *client, unsigned char val, int off)
209 struct bbc_i2c_bus *bp = client->bp;
210 int address = client->address;
214 if (bp->i2c_bussel_reg != NULL)
215 writeb(client->bus, bp->i2c_bussel_reg);
217 writeb(address, bp->i2c_control_regs + 0x1);
218 writeb(I2C_PCF_START, bp->i2c_control_regs + 0x0);
219 if (wait_for_pin(bp, &status))
222 writeb(off, bp->i2c_control_regs + 0x1);
223 if (wait_for_pin(bp, &status) ||
224 (status & I2C_PCF_LRB) != 0)
227 writeb(val, bp->i2c_control_regs + 0x1);
228 if (wait_for_pin(bp, &status))
234 writeb(I2C_PCF_STOP, bp->i2c_control_regs + 0x0);
238 int bbc_i2c_readb(struct bbc_i2c_client *client, unsigned char *byte, int off)
240 struct bbc_i2c_bus *bp = client->bp;
241 unsigned char address = client->address, status;
244 if (bp->i2c_bussel_reg != NULL)
245 writeb(client->bus, bp->i2c_bussel_reg);
247 writeb(address, bp->i2c_control_regs + 0x1);
248 writeb(I2C_PCF_START, bp->i2c_control_regs + 0x0);
249 if (wait_for_pin(bp, &status))
252 writeb(off, bp->i2c_control_regs + 0x1);
253 if (wait_for_pin(bp, &status) ||
254 (status & I2C_PCF_LRB) != 0)
257 writeb(I2C_PCF_STOP, bp->i2c_control_regs + 0x0);
259 address |= 0x1; /* READ */
261 writeb(address, bp->i2c_control_regs + 0x1);
262 writeb(I2C_PCF_START, bp->i2c_control_regs + 0x0);
263 if (wait_for_pin(bp, &status))
266 /* Set PIN back to one so the device sends the first
269 (void) readb(bp->i2c_control_regs + 0x1);
270 if (wait_for_pin(bp, &status))
273 writeb(I2C_PCF_ESO | I2C_PCF_ENI, bp->i2c_control_regs + 0x0);
274 *byte = readb(bp->i2c_control_regs + 0x1);
275 if (wait_for_pin(bp, &status))
281 writeb(I2C_PCF_STOP, bp->i2c_control_regs + 0x0);
282 (void) readb(bp->i2c_control_regs + 0x1);
287 int bbc_i2c_write_buf(struct bbc_i2c_client *client,
288 char *buf, int len, int off)
293 int err = bbc_i2c_writeb(client, *buf, off);
307 int bbc_i2c_read_buf(struct bbc_i2c_client *client,
308 char *buf, int len, int off)
313 int err = bbc_i2c_readb(client, buf, off);
326 EXPORT_SYMBOL(bbc_i2c_getdev);
327 EXPORT_SYMBOL(bbc_i2c_attach);
328 EXPORT_SYMBOL(bbc_i2c_detach);
329 EXPORT_SYMBOL(bbc_i2c_writeb);
330 EXPORT_SYMBOL(bbc_i2c_readb);
331 EXPORT_SYMBOL(bbc_i2c_write_buf);
332 EXPORT_SYMBOL(bbc_i2c_read_buf);
334 static irqreturn_t bbc_i2c_interrupt(int irq, void *dev_id, struct pt_regs *regs)
336 struct bbc_i2c_bus *bp = dev_id;
338 /* PIN going from set to clear is the only event which
339 * makes the i2c assert an interrupt.
342 !(readb(bp->i2c_control_regs + 0x0) & I2C_PCF_PIN))
348 static void __init reset_one_i2c(struct bbc_i2c_bus *bp)
350 writeb(I2C_PCF_PIN, bp->i2c_control_regs + 0x0);
351 writeb(bp->own, bp->i2c_control_regs + 0x1);
352 writeb(I2C_PCF_PIN | I2C_PCF_ES1, bp->i2c_control_regs + 0x0);
353 writeb(bp->clock, bp->i2c_control_regs + 0x1);
354 writeb(I2C_PCF_IDLE, bp->i2c_control_regs + 0x0);
357 static int __init attach_one_i2c(struct linux_ebus_device *edev, int index)
359 struct bbc_i2c_bus *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
360 struct linux_ebus_child *echild;
365 memset(bp, 0, sizeof(*bp));
367 bp->i2c_control_regs = ioremap(edev->resource[0].start, 0x2);
368 if (!bp->i2c_control_regs)
371 if (edev->num_addrs == 2) {
372 bp->i2c_bussel_reg = ioremap(edev->resource[1].start, 0x1);
373 if (!bp->i2c_bussel_reg)
378 init_waitqueue_head(&bp->wq);
379 if (request_irq(edev->irqs[0], bbc_i2c_interrupt,
380 SA_SHIRQ, "bbc_i2c", bp))
386 spin_lock_init(&bp->lock);
387 bp->next = all_bbc_i2c;
391 for (echild = edev->children;
393 echild = echild->next, entry++) {
394 bp->devs[entry].device = echild;
395 bp->devs[entry].client_claimed = 0;
398 writeb(I2C_PCF_PIN, bp->i2c_control_regs + 0x0);
399 bp->own = readb(bp->i2c_control_regs + 0x01);
400 writeb(I2C_PCF_PIN | I2C_PCF_ES1, bp->i2c_control_regs + 0x0);
401 bp->clock = readb(bp->i2c_control_regs + 0x01);
403 printk(KERN_INFO "i2c-%d: Regs at %p, %d devices, own %02x, clock %02x.\n",
404 bp->index, bp->i2c_control_regs, entry, bp->own, bp->clock);
411 if (bp->i2c_bussel_reg)
412 iounmap(bp->i2c_bussel_reg);
413 if (bp->i2c_control_regs)
414 iounmap(bp->i2c_control_regs);
419 static int __init bbc_present(void)
421 struct linux_ebus *ebus = NULL;
422 struct linux_ebus_device *edev = NULL;
424 for_each_ebus(ebus) {
425 for_each_ebusdev(edev, ebus) {
426 if (!strcmp(edev->prom_name, "bbc"))
433 extern int bbc_envctrl_init(void);
434 extern void bbc_envctrl_cleanup(void);
435 static void bbc_i2c_cleanup(void);
437 static int __init bbc_i2c_init(void)
439 struct linux_ebus *ebus = NULL;
440 struct linux_ebus_device *edev = NULL;
443 if ((tlb_type != cheetah && tlb_type != cheetah_plus) ||
447 for_each_ebus(ebus) {
448 for_each_ebusdev(edev, ebus) {
449 if (!strcmp(edev->prom_name, "i2c")) {
450 if (!attach_one_i2c(edev, index))
459 err = bbc_envctrl_init();
465 static void bbc_i2c_cleanup(void)
467 struct bbc_i2c_bus *bp = all_bbc_i2c;
469 bbc_envctrl_cleanup();
472 struct bbc_i2c_bus *next = bp->next;
474 free_irq(bp->bus_edev->irqs[0], bp);
476 if (bp->i2c_bussel_reg)
477 iounmap(bp->i2c_bussel_reg);
478 if (bp->i2c_control_regs)
479 iounmap(bp->i2c_control_regs);
488 module_init(bbc_i2c_init);
489 module_exit(bbc_i2c_cleanup);
490 MODULE_LICENSE("GPL");