2 * Copyright (c) 1998, 2001 Nicolas Souchu
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * $FreeBSD: src/sys/dev/bktr/bktr_i2c.c,v 1.29 2006/12/31 19:42:47 jmg Exp $
27 * $DragonFly: src/sys/dev/video/bktr/bktr_i2c.c,v 1.10 2007/10/03 19:27:08 swildner Exp $
31 * I2C support for the bti2c chipset.
33 * From brooktree848.c <fsmp@freefall.org>
38 #include <sys/param.h>
39 #include <sys/kernel.h>
40 #include <sys/malloc.h>
41 #include <sys/systm.h>
42 #include <sys/module.h>
43 #include <sys/event.h>
47 #include <bus/pci/pcivar.h>
48 #include <bus/pci/pcireg.h>
50 #include <dev/video/meteor/ioctl_meteor.h>
51 #include <dev/video/bktr/ioctl_bt848.h> /* extensions to ioctl_meteor.h */
52 #include <dev/video/bktr/bktr_reg.h>
53 #include <dev/video/bktr/bktr_i2c.h>
55 #include <bus/smbus/smbconf.h>
56 #include <bus/iicbus/iiconf.h>
60 /* Compilation is void if BKTR_USE_FREEBSD_SMBUS is not
61 * defined. This allows bktr owners to have smbus active for there
62 * motherboard and still use their bktr without smbus.
64 #if defined(BKTR_USE_FREEBSD_SMBUS)
66 #define BTI2C_DEBUG(x) if (bti2c_debug) (x)
67 static int bti2c_debug
= 0;
70 * Call this to pass the address of the bktr device to the
71 * bti2c_i2c layer and initialize all the I2C bus architecture
73 int bt848_i2c_attach(device_t dev
)
75 struct bktr_softc
*bktr_sc
= (struct bktr_softc
*)device_get_softc(dev
);
76 struct bktr_i2c_softc
*sc
= &bktr_sc
->i2c_sc
;
78 sc
->smbus
= device_add_child(dev
, "smbus", -1);
79 sc
->iicbb
= device_add_child(dev
, "iicbb", -1);
81 if (!sc
->iicbb
|| !sc
->smbus
)
84 bus_generic_attach(dev
);
89 int bt848_i2c_detach(device_t dev
)
91 struct bktr_softc
*bktr_sc
= (struct bktr_softc
*)device_get_softc(dev
);
92 struct bktr_i2c_softc
*sc
= &bktr_sc
->i2c_sc
;
95 if ((error
= bus_generic_detach(dev
)))
98 if (sc
->iicbb
&& (error
= device_delete_child(dev
, sc
->iicbb
)))
101 if (sc
->smbus
&& (error
= device_delete_child(dev
, sc
->smbus
)))
108 int bti2c_smb_callback(device_t dev
, int index
, caddr_t
*data
)
110 struct bktr_softc
*bktr_sc
= (struct bktr_softc
*)device_get_softc(dev
);
111 struct bktr_i2c_softc
*sc
= &bktr_sc
->i2c_sc
;
114 /* test each time if we already have/haven't the iicbus
118 case SMB_REQUEST_BUS
:
120 if (!sc
->bus_owned
) {
126 case SMB_RELEASE_BUS
:
141 int bti2c_iic_callback(device_t dev
, int index
, caddr_t
*data
)
143 struct bktr_softc
*bktr_sc
= (struct bktr_softc
*)device_get_softc(dev
);
144 struct bktr_i2c_softc
*sc
= &bktr_sc
->i2c_sc
;
147 /* test each time if we already have/haven't the smbus
151 case IIC_REQUEST_BUS
:
153 if (!sc
->bus_owned
) {
159 case IIC_RELEASE_BUS
:
174 int bti2c_iic_reset(device_t dev
, u_char speed
, u_char addr
, u_char
* oldaddr
)
177 *oldaddr
= 0; /* XXX */
179 return (IIC_ENOADDR
);
182 void bti2c_iic_setsda(device_t dev
, int val
)
184 struct bktr_softc
*sc
= (struct bktr_softc
*)device_get_softc(dev
);
187 clock
= INL(sc
, BKTR_I2C_DATA_CTL
) & 0x2;
190 OUTL(sc
, BKTR_I2C_DATA_CTL
, clock
| 1);
192 OUTL(sc
, BKTR_I2C_DATA_CTL
, clock
);
199 void bti2c_iic_setscl(device_t dev
, int val
)
201 struct bktr_softc
*sc
= (struct bktr_softc
*)device_get_softc(dev
);
204 data
= INL(sc
, BKTR_I2C_DATA_CTL
) & 0x1;
207 OUTL(sc
, BKTR_I2C_DATA_CTL
, 0x2 | data
);
209 OUTL(sc
, BKTR_I2C_DATA_CTL
, data
);
217 bti2c_iic_getsda(device_t dev
)
219 struct bktr_softc
*sc
= (struct bktr_softc
*)device_get_softc(dev
);
221 return (INL(sc
,BKTR_I2C_DATA_CTL
) & 0x1);
225 bti2c_iic_getscl(device_t dev
)
231 bti2c_write(struct bktr_softc
*sc
, u_long data
)
235 /* clear status bits */
236 OUTL(sc
, BKTR_INT_STAT
, (BT848_INT_RACK
| BT848_INT_I2CDONE
));
238 BTI2C_DEBUG(kprintf("w%lx", data
));
240 /* write the address and data */
241 OUTL(sc
, BKTR_I2C_DATA_CTL
, data
);
243 /* wait for completion */
244 for ( x
= 0x7fffffff; x
; --x
) { /* safety valve */
245 if ( INL(sc
, BKTR_INT_STAT
) & BT848_INT_I2CDONE
)
250 if ( !x
|| !( INL(sc
, BKTR_INT_STAT
) & BT848_INT_RACK
) ) {
251 BTI2C_DEBUG(kprintf("%c%c", (!x
)?'+':'-',
252 (!( INL(sc
, BKTR_INT_STAT
) & BT848_INT_RACK
))?'+':'-'));
255 BTI2C_DEBUG(kprintf("+"));
262 bti2c_smb_writeb(device_t dev
, u_char slave
, char cmd
, char byte
)
264 struct bktr_softc
*sc
= (struct bktr_softc
*)device_get_softc(dev
);
267 data
= ((slave
& 0xff) << 24) | ((byte
& 0xff) << 16) | (u_char
)cmd
;
269 return (bti2c_write(sc
, data
));
273 * byte1 becomes low byte of word
274 * byte2 becomes high byte of word
277 bti2c_smb_writew(device_t dev
, u_char slave
, char cmd
, short word
)
279 struct bktr_softc
*sc
= (struct bktr_softc
*)device_get_softc(dev
);
283 low
= (char)(word
& 0xff);
284 high
= (char)((word
& 0xff00) >> 8);
286 data
= ((slave
& 0xff) << 24) | ((low
& 0xff) << 16) |
287 ((high
& 0xff) << 8) | BT848_DATA_CTL_I2CW3B
| (u_char
)cmd
;
289 return (bti2c_write(sc
, data
));
293 * The Bt878 and Bt879 differed on the treatment of i2c commands
296 bti2c_smb_readb(device_t dev
, u_char slave
, char cmd
, char *byte
)
298 struct bktr_softc
*sc
= (struct bktr_softc
*)device_get_softc(dev
);
301 /* clear status bits */
302 OUTL(sc
,BKTR_INT_STAT
, (BT848_INT_RACK
| BT848_INT_I2CDONE
));
304 OUTL(sc
,BKTR_I2C_DATA_CTL
, ((slave
& 0xff) << 24) | (u_char
)cmd
);
306 BTI2C_DEBUG(kprintf("r%lx/", (u_long
)(((slave
& 0xff) << 24) | (u_char
)cmd
)));
308 /* wait for completion */
309 for ( x
= 0x7fffffff; x
; --x
) { /* safety valve */
310 if ( INL(sc
,BKTR_INT_STAT
) & BT848_INT_I2CDONE
)
315 if ( !x
|| !(INL(sc
,BKTR_INT_STAT
) & BT848_INT_RACK
) ) {
316 BTI2C_DEBUG(kprintf("r%c%c", (!x
)?'+':'-',
317 (!( INL(sc
,BKTR_INT_STAT
) & BT848_INT_RACK
))?'+':'-'));
321 *byte
= (char)((INL(sc
,BKTR_I2C_DATA_CTL
) >> 8) & 0xff);
322 BTI2C_DEBUG(kprintf("r%x+", *byte
));
327 #endif /* defined(BKTR_USE_FREEBSD_SMBUS) */