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>
25 /* Convert this driver to use i2c bus layer someday... */
26 #define I2C_PCF_PIN 0x80
27 #define I2C_PCF_ESO 0x40
28 #define I2C_PCF_ES1 0x20
29 #define I2C_PCF_ES2 0x10
30 #define I2C_PCF_ENI 0x08
31 #define I2C_PCF_STA 0x04
32 #define I2C_PCF_STO 0x02
33 #define I2C_PCF_ACK 0x01
35 #define I2C_PCF_START (I2C_PCF_PIN | I2C_PCF_ESO | I2C_PCF_ENI | I2C_PCF_STA | I2C_PCF_ACK)
36 #define I2C_PCF_STOP (I2C_PCF_PIN | I2C_PCF_ESO | I2C_PCF_STO | I2C_PCF_ACK)
37 #define I2C_PCF_REPSTART ( I2C_PCF_ESO | I2C_PCF_STA | I2C_PCF_ACK)
38 #define I2C_PCF_IDLE (I2C_PCF_PIN | I2C_PCF_ESO | I2C_PCF_ACK)
40 #define I2C_PCF_INI 0x40 /* 1 if not initialized */
41 #define I2C_PCF_STS 0x20
42 #define I2C_PCF_BER 0x10
43 #define I2C_PCF_AD0 0x08
44 #define I2C_PCF_LRB 0x08
45 #define I2C_PCF_AAS 0x04
46 #define I2C_PCF_LAB 0x02
47 #define I2C_PCF_BB 0x01
49 /* The BBC devices have two I2C controllers. The first I2C controller
50 * connects mainly to configuration proms (NVRAM, cpu configuration,
51 * dimm types, etc.). Whereas the second I2C controller connects to
52 * environmental control devices such as fans and temperature sensors.
53 * The second controller also connects to the smartcard reader, if present.
56 #define NUM_CHILDREN 8
58 struct bbc_i2c_bus
*next
;
61 void __iomem
*i2c_bussel_reg
;
62 void __iomem
*i2c_control_regs
;
63 unsigned char own
, clock
;
68 struct linux_ebus_device
*bus_edev
;
70 struct linux_ebus_child
*device
;
75 static struct bbc_i2c_bus
*all_bbc_i2c
;
77 struct bbc_i2c_client
{
78 struct bbc_i2c_bus
*bp
;
79 struct linux_ebus_child
*echild
;
84 static int find_device(struct bbc_i2c_bus
*bp
, struct linux_ebus_child
*echild
)
88 for (i
= 0; i
< NUM_CHILDREN
; i
++) {
89 if (bp
->devs
[i
].device
== echild
) {
90 if (bp
->devs
[i
].client_claimed
)
98 static void set_device_claimage(struct bbc_i2c_bus
*bp
, struct linux_ebus_child
*echild
, int val
)
102 for (i
= 0; i
< NUM_CHILDREN
; i
++) {
103 if (bp
->devs
[i
].device
== echild
) {
104 bp
->devs
[i
].client_claimed
= val
;
110 #define claim_device(BP,ECHILD) set_device_claimage(BP,ECHILD,1)
111 #define release_device(BP,ECHILD) set_device_claimage(BP,ECHILD,0)
113 static struct bbc_i2c_bus
*find_bus_for_device(struct linux_ebus_child
*echild
)
115 struct bbc_i2c_bus
*bp
= all_bbc_i2c
;
118 if (find_device(bp
, echild
) != 0)
126 struct linux_ebus_child
*bbc_i2c_getdev(int index
)
128 struct bbc_i2c_bus
*bp
= all_bbc_i2c
;
129 struct linux_ebus_child
*echild
= NULL
;
133 struct bbc_i2c_bus
*next
= bp
->next
;
136 for (i
= 0; i
< NUM_CHILDREN
; i
++) {
137 if (!(echild
= bp
->devs
[i
].device
))
152 struct bbc_i2c_client
*bbc_i2c_attach(struct linux_ebus_child
*echild
)
154 struct bbc_i2c_bus
*bp
= find_bus_for_device(echild
);
155 struct bbc_i2c_client
*client
;
159 client
= kmalloc(sizeof(*client
), GFP_KERNEL
);
162 memset(client
, 0, sizeof(*client
));
164 client
->echild
= echild
;
165 client
->bus
= echild
->resource
[0].start
;
166 client
->address
= echild
->resource
[1].start
;
168 claim_device(bp
, echild
);
173 void bbc_i2c_detach(struct bbc_i2c_client
*client
)
175 struct bbc_i2c_bus
*bp
= client
->bp
;
176 struct linux_ebus_child
*echild
= client
->echild
;
178 release_device(bp
, echild
);
182 static int wait_for_pin(struct bbc_i2c_bus
*bp
, u8
*status
)
184 DECLARE_WAITQUEUE(wait
, current
);
189 add_wait_queue(&bp
->wq
, &wait
);
190 while (limit
-- > 0) {
193 val
= wait_event_interruptible_timeout(
195 (((*status
= readb(bp
->i2c_control_regs
+ 0))
196 & I2C_PCF_PIN
) == 0),
197 msecs_to_jiffies(250));
203 remove_wait_queue(&bp
->wq
, &wait
);
209 int bbc_i2c_writeb(struct bbc_i2c_client
*client
, unsigned char val
, int off
)
211 struct bbc_i2c_bus
*bp
= client
->bp
;
212 int address
= client
->address
;
216 if (bp
->i2c_bussel_reg
!= NULL
)
217 writeb(client
->bus
, bp
->i2c_bussel_reg
);
219 writeb(address
, bp
->i2c_control_regs
+ 0x1);
220 writeb(I2C_PCF_START
, bp
->i2c_control_regs
+ 0x0);
221 if (wait_for_pin(bp
, &status
))
224 writeb(off
, bp
->i2c_control_regs
+ 0x1);
225 if (wait_for_pin(bp
, &status
) ||
226 (status
& I2C_PCF_LRB
) != 0)
229 writeb(val
, bp
->i2c_control_regs
+ 0x1);
230 if (wait_for_pin(bp
, &status
))
236 writeb(I2C_PCF_STOP
, bp
->i2c_control_regs
+ 0x0);
240 int bbc_i2c_readb(struct bbc_i2c_client
*client
, unsigned char *byte
, int off
)
242 struct bbc_i2c_bus
*bp
= client
->bp
;
243 unsigned char address
= client
->address
, status
;
246 if (bp
->i2c_bussel_reg
!= NULL
)
247 writeb(client
->bus
, bp
->i2c_bussel_reg
);
249 writeb(address
, bp
->i2c_control_regs
+ 0x1);
250 writeb(I2C_PCF_START
, bp
->i2c_control_regs
+ 0x0);
251 if (wait_for_pin(bp
, &status
))
254 writeb(off
, bp
->i2c_control_regs
+ 0x1);
255 if (wait_for_pin(bp
, &status
) ||
256 (status
& I2C_PCF_LRB
) != 0)
259 writeb(I2C_PCF_STOP
, bp
->i2c_control_regs
+ 0x0);
261 address
|= 0x1; /* READ */
263 writeb(address
, bp
->i2c_control_regs
+ 0x1);
264 writeb(I2C_PCF_START
, bp
->i2c_control_regs
+ 0x0);
265 if (wait_for_pin(bp
, &status
))
268 /* Set PIN back to one so the device sends the first
271 (void) readb(bp
->i2c_control_regs
+ 0x1);
272 if (wait_for_pin(bp
, &status
))
275 writeb(I2C_PCF_ESO
| I2C_PCF_ENI
, bp
->i2c_control_regs
+ 0x0);
276 *byte
= readb(bp
->i2c_control_regs
+ 0x1);
277 if (wait_for_pin(bp
, &status
))
283 writeb(I2C_PCF_STOP
, bp
->i2c_control_regs
+ 0x0);
284 (void) readb(bp
->i2c_control_regs
+ 0x1);
289 int bbc_i2c_write_buf(struct bbc_i2c_client
*client
,
290 char *buf
, int len
, int off
)
295 int err
= bbc_i2c_writeb(client
, *buf
, off
);
309 int bbc_i2c_read_buf(struct bbc_i2c_client
*client
,
310 char *buf
, int len
, int off
)
315 int err
= bbc_i2c_readb(client
, buf
, off
);
328 EXPORT_SYMBOL(bbc_i2c_getdev
);
329 EXPORT_SYMBOL(bbc_i2c_attach
);
330 EXPORT_SYMBOL(bbc_i2c_detach
);
331 EXPORT_SYMBOL(bbc_i2c_writeb
);
332 EXPORT_SYMBOL(bbc_i2c_readb
);
333 EXPORT_SYMBOL(bbc_i2c_write_buf
);
334 EXPORT_SYMBOL(bbc_i2c_read_buf
);
336 static irqreturn_t
bbc_i2c_interrupt(int irq
, void *dev_id
)
338 struct bbc_i2c_bus
*bp
= dev_id
;
340 /* PIN going from set to clear is the only event which
341 * makes the i2c assert an interrupt.
344 !(readb(bp
->i2c_control_regs
+ 0x0) & I2C_PCF_PIN
))
345 wake_up_interruptible(&bp
->wq
);
350 static void __init
reset_one_i2c(struct bbc_i2c_bus
*bp
)
352 writeb(I2C_PCF_PIN
, bp
->i2c_control_regs
+ 0x0);
353 writeb(bp
->own
, bp
->i2c_control_regs
+ 0x1);
354 writeb(I2C_PCF_PIN
| I2C_PCF_ES1
, bp
->i2c_control_regs
+ 0x0);
355 writeb(bp
->clock
, bp
->i2c_control_regs
+ 0x1);
356 writeb(I2C_PCF_IDLE
, bp
->i2c_control_regs
+ 0x0);
359 static int __init
attach_one_i2c(struct linux_ebus_device
*edev
, int index
)
361 struct bbc_i2c_bus
*bp
= kmalloc(sizeof(*bp
), GFP_KERNEL
);
362 struct linux_ebus_child
*echild
;
367 memset(bp
, 0, sizeof(*bp
));
369 bp
->i2c_control_regs
= ioremap(edev
->resource
[0].start
, 0x2);
370 if (!bp
->i2c_control_regs
)
373 if (edev
->num_addrs
== 2) {
374 bp
->i2c_bussel_reg
= ioremap(edev
->resource
[1].start
, 0x1);
375 if (!bp
->i2c_bussel_reg
)
380 init_waitqueue_head(&bp
->wq
);
381 if (request_irq(edev
->irqs
[0], bbc_i2c_interrupt
,
382 IRQF_SHARED
, "bbc_i2c", bp
))
388 spin_lock_init(&bp
->lock
);
389 bp
->next
= all_bbc_i2c
;
393 for (echild
= edev
->children
;
395 echild
= echild
->next
, entry
++) {
396 bp
->devs
[entry
].device
= echild
;
397 bp
->devs
[entry
].client_claimed
= 0;
400 writeb(I2C_PCF_PIN
, bp
->i2c_control_regs
+ 0x0);
401 bp
->own
= readb(bp
->i2c_control_regs
+ 0x01);
402 writeb(I2C_PCF_PIN
| I2C_PCF_ES1
, bp
->i2c_control_regs
+ 0x0);
403 bp
->clock
= readb(bp
->i2c_control_regs
+ 0x01);
405 printk(KERN_INFO
"i2c-%d: Regs at %p, %d devices, own %02x, clock %02x.\n",
406 bp
->index
, bp
->i2c_control_regs
, entry
, bp
->own
, bp
->clock
);
413 if (bp
->i2c_bussel_reg
)
414 iounmap(bp
->i2c_bussel_reg
);
415 if (bp
->i2c_control_regs
)
416 iounmap(bp
->i2c_control_regs
);
421 static int __init
bbc_present(void)
423 struct linux_ebus
*ebus
= NULL
;
424 struct linux_ebus_device
*edev
= NULL
;
426 for_each_ebus(ebus
) {
427 for_each_ebusdev(edev
, ebus
) {
428 if (!strcmp(edev
->prom_node
->name
, "bbc"))
435 extern int bbc_envctrl_init(void);
436 extern void bbc_envctrl_cleanup(void);
437 static void bbc_i2c_cleanup(void);
439 static int __init
bbc_i2c_init(void)
441 struct linux_ebus
*ebus
= NULL
;
442 struct linux_ebus_device
*edev
= NULL
;
445 if ((tlb_type
!= cheetah
&& tlb_type
!= cheetah_plus
) ||
449 for_each_ebus(ebus
) {
450 for_each_ebusdev(edev
, ebus
) {
451 if (!strcmp(edev
->prom_node
->name
, "i2c")) {
452 if (!attach_one_i2c(edev
, index
))
461 err
= bbc_envctrl_init();
467 static void bbc_i2c_cleanup(void)
469 struct bbc_i2c_bus
*bp
= all_bbc_i2c
;
471 bbc_envctrl_cleanup();
474 struct bbc_i2c_bus
*next
= bp
->next
;
476 free_irq(bp
->bus_edev
->irqs
[0], bp
);
478 if (bp
->i2c_bussel_reg
)
479 iounmap(bp
->i2c_bussel_reg
);
480 if (bp
->i2c_control_regs
)
481 iounmap(bp
->i2c_control_regs
);
490 module_init(bbc_i2c_init
);
491 module_exit(bbc_i2c_cleanup
);
492 MODULE_LICENSE("GPL");