2 * drivers/sbus/char/vfc_i2c.c
4 * Driver for the Videopix Frame Grabber.
6 * Functions that support the Phillips i2c(I squared C) bus on the vfc
7 * Documentation for the Phillips I2C bus can be found on the
10 * Copyright (C) 1996 Manish Vachharajani (mvachhar@noc.rutgers.edu)
14 /* NOTE: It seems to me that the documentation regarding the
15 pcd8584t/pcf8584 does not show the correct way to address the i2c bus.
16 Based on the information on the I2C bus itself and the remainder of
17 the Phillips docs the following algorithims apper to be correct. I am
18 fairly certain that the flowcharts in the phillips docs are wrong. */
21 #include <linux/kernel.h>
22 #include <linux/string.h>
23 #include <linux/slab.h>
24 #include <linux/errno.h>
25 #include <linux/sched.h>
26 #include <linux/wait.h>
27 #include <linux/delay.h>
28 #include <asm/openprom.h>
29 #include <asm/oplib.h>
31 #include <asm/system.h>
41 #define WRITE_S1(__val) \
42 sbus_writel(__val, &dev->regs->i2c_s1)
43 #define WRITE_REG(__val) \
44 sbus_writel(__val, &dev->regs->i2c_reg)
46 #define VFC_I2C_READ (0x1)
47 #define VFC_I2C_WRITE (0x0)
50 The i2c bus controller chip on the VFC is a pcd8584t, but
51 phillips claims it doesn't exist. As far as I can tell it is
52 identical to the PCF8584 so I treat it like it is the pcf8584.
54 NOTE: The pcf8584 only cares
55 about the msb of the word you feed it
58 int vfc_pcf8584_init(struct vfc_dev
*dev
)
60 /* This will also choose register S0_OWN so we can set it. */
63 /* The pcf8584 shifts this value left one bit and uses
64 * it as its i2c bus address.
66 WRITE_REG(0x55000000);
68 /* This will set the i2c bus at the same speed sun uses,
69 * and set another magic bit.
72 WRITE_REG(0x14000000);
74 /* Enable the serial port, idle the i2c bus and set
77 WRITE_S1(CLEAR_I2C_BUS
);
82 void vfc_i2c_delay_wakeup(struct vfc_dev
*dev
)
84 /* Used to profile code and eliminate too many delays */
85 VFC_I2C_DEBUG_PRINTK(("vfc%d: Delaying\n", dev
->instance
));
86 wake_up(&dev
->poll_wait
);
89 void vfc_i2c_delay_no_busy(struct vfc_dev
*dev
, unsigned long usecs
)
91 init_timer(&dev
->poll_timer
);
92 dev
->poll_timer
.expires
= jiffies
+
93 ((unsigned long)usecs
*(HZ
))/1000000;
94 dev
->poll_timer
.data
=(unsigned long)dev
;
95 dev
->poll_timer
.function
=(void *)(unsigned long)vfc_i2c_delay_wakeup
;
96 add_timer(&dev
->poll_timer
);
97 sleep_on(&dev
->poll_wait
);
98 del_timer(&dev
->poll_timer
);
101 void inline vfc_i2c_delay(struct vfc_dev
*dev
)
103 vfc_i2c_delay_no_busy(dev
, 100);
106 int vfc_init_i2c_bus(struct vfc_dev
*dev
)
108 WRITE_S1(ENABLE_SERIAL
| SELECT(S0
) | ACK
);
109 vfc_i2c_reset_bus(dev
);
113 int vfc_i2c_reset_bus(struct vfc_dev
*dev
)
115 VFC_I2C_DEBUG_PRINTK((KERN_DEBUG
"vfc%d: Resetting the i2c bus\n",
119 if(dev
->regs
== NULL
)
121 WRITE_S1(SEND_I2C_STOP
);
122 WRITE_S1(SEND_I2C_STOP
| ACK
);
124 WRITE_S1(CLEAR_I2C_BUS
);
125 VFC_I2C_DEBUG_PRINTK((KERN_DEBUG
"vfc%d: I2C status %x\n",
127 sbus_readl(&dev
->regs
->i2c_s1
)));
131 int vfc_i2c_wait_for_bus(struct vfc_dev
*dev
)
135 while(!(sbus_readl(&dev
->regs
->i2c_s1
) & BB
)) {
143 int vfc_i2c_wait_for_pin(struct vfc_dev
*dev
, int ack
)
148 while ((s1
= sbus_readl(&dev
->regs
->i2c_s1
)) & PIN
) {
153 if (ack
== VFC_I2C_ACK_CHECK
) {
160 #define SHIFT(a) ((a) << 24)
161 int vfc_i2c_xmit_addr(struct vfc_dev
*dev
, unsigned char addr
, char mode
)
165 WRITE_S1(SEND_I2C_STOP
| ACK
);
166 WRITE_S1(SELECT(S0
) | ENABLE_SERIAL
);
172 raddr
= SHIFT(((unsigned int)addr
| 0x1));
174 VFC_I2C_DEBUG_PRINTK(("vfc%d: receiving from i2c addr 0x%x\n",
175 dev
->instance
, addr
| 0x1));
178 raddr
= SHIFT((unsigned int)addr
& ~0x1);
180 VFC_I2C_DEBUG_PRINTK(("vfc%d: sending to i2c addr 0x%x\n",
181 dev
->instance
, addr
& ~0x1));
187 WRITE_S1(SEND_I2C_START
);
189 ret
= vfc_i2c_wait_for_pin(dev
,VFC_I2C_ACK_CHECK
); /* We wait
198 printk(KERN_ERR
"vfc%d: VFC xmit addr timed out or no ack\n",
201 } else if (mode
== VFC_I2C_READ
) {
202 if ((ret
= sbus_readl(&dev
->regs
->i2c_reg
) & 0xff000000) != raddr
) {
204 "vfc%d: returned slave address "
206 dev
->instance
, raddr
, ret
);
212 int vfc_i2c_xmit_byte(struct vfc_dev
*dev
,unsigned char *byte
)
215 u32 val
= SHIFT((unsigned int)*byte
);
219 ret
= vfc_i2c_wait_for_pin(dev
, VFC_I2C_ACK_CHECK
);
222 printk(KERN_ERR
"vfc%d: VFC xmit byte timed out or no ack\n",
226 ret
= XMIT_LAST_BYTE
;
235 int vfc_i2c_recv_byte(struct vfc_dev
*dev
, unsigned char *byte
, int last
)
240 WRITE_REG(NEGATIVE_ACK
);
241 VFC_I2C_DEBUG_PRINTK(("vfc%d: sending negative ack\n",
247 ret
= vfc_i2c_wait_for_pin(dev
, VFC_I2C_NO_ACK_CHECK
);
249 printk(KERN_ERR
"vfc%d: "
250 "VFC recv byte timed out\n",
253 *byte
= (sbus_readl(&dev
->regs
->i2c_reg
)) >> 24;
257 int vfc_i2c_recvbuf(struct vfc_dev
*dev
, unsigned char addr
,
258 char *buf
, int count
)
262 if(!(count
&& buf
&& dev
&& dev
->regs
) )
265 if ((ret
= vfc_i2c_wait_for_bus(dev
))) {
266 printk(KERN_ERR
"vfc%d: VFC I2C bus busy\n", dev
->instance
);
270 if ((ret
= vfc_i2c_xmit_addr(dev
, addr
, VFC_I2C_READ
))) {
271 WRITE_S1(SEND_I2C_STOP
);
280 if ((ret
= vfc_i2c_recv_byte(dev
, buf
, last
))) {
281 printk(KERN_ERR
"vfc%d: "
282 "VFC error while receiving byte\n",
284 WRITE_S1(SEND_I2C_STOP
);
289 WRITE_S1(SEND_I2C_STOP
| ACK
);
294 int vfc_i2c_sendbuf(struct vfc_dev
*dev
, unsigned char addr
,
295 char *buf
, int count
)
299 if (!(buf
&& dev
&& dev
->regs
))
302 if ((ret
= vfc_i2c_wait_for_bus(dev
))) {
303 printk(KERN_ERR
"vfc%d: VFC I2C bus busy\n", dev
->instance
);
307 if ((ret
= vfc_i2c_xmit_addr(dev
, addr
, VFC_I2C_WRITE
))) {
308 WRITE_S1(SEND_I2C_STOP
);
314 ret
= vfc_i2c_xmit_byte(dev
, buf
);
317 VFC_I2C_DEBUG_PRINTK(("vfc%d: "
318 "Receiver ended transmission with "
319 " %d bytes remaining\n",
320 dev
->instance
, count
));
327 printk(KERN_ERR
"vfc%d: "
328 "VFC error while sending byte\n", dev
->instance
);
335 WRITE_S1(SEND_I2C_STOP
| ACK
);