1 /*- 2 * Copyright (c) 1998 Nicolas Souchu, Marc Bouget 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 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. 13 * 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 24 * SUCH DAMAGE. 25 * 26 * $FreeBSD$ 27 * 28 */ 29 30 /* 31 * I2C Bit-Banging over parallel port 32 * 33 * See the Official Philips interface description in lpbb(4) 34 */ 35 36 #include <sys/param.h> 37 #include <sys/kernel.h> 38 #include <sys/systm.h> 39 #include <sys/module.h> 40 #include <sys/bus.h> 41 #include <sys/conf.h> 42 #include <sys/buf.h> 43 #include <sys/uio.h> 44 #include <sys/malloc.h> 45 46 #include <machine/clock.h> 47 48 #include <dev/ppbus/ppbconf.h> 49 #include "ppbus_if.h" 50 #include <dev/ppbus/ppbio.h> 51 52 #include <dev/iicbus/iiconf.h> 53 #include <dev/iicbus/iicbus.h> 54 55 #include "iicbb_if.h" 56 57 static int lpbb_detect(device_t dev); 58 59 static void 60 lpbb_identify(driver_t *driver, device_t parent) 61 { 62 63 BUS_ADD_CHILD(parent, 0, "lpbb", 0); 64 } 65 66 static int 67 lpbb_probe(device_t dev) 68 { 69 70 /* Perhaps call this during identify instead? */ 71 if (!lpbb_detect(dev)) 72 return (ENXIO); 73 74 device_set_desc(dev, "Parallel I2C bit-banging interface"); 75 76 return (0); 77 } 78 79 static int 80 lpbb_attach(device_t dev) 81 { 82 device_t bitbang, iicbus; 83 84 /* add generic bit-banging code */ 85 bitbang = device_add_child(dev, "iicbb", -1); 86 87 /* add the iicbus to the tree */ 88 iicbus = iicbus_alloc_bus(bitbang); 89 90 device_probe_and_attach(bitbang); 91 92 /* XXX should be in iicbb_attach! */ 93 device_probe_and_attach(iicbus); 94 95 return (0); 96 } 97 98 static int 99 lpbb_callback(device_t dev, int index, caddr_t *data) 100 { 101 device_t ppbus = device_get_parent(dev); 102 int error = 0; 103 int how; 104 105 switch (index) { 106 case IIC_REQUEST_BUS: 107 /* request the ppbus */ 108 how = *(int *)data; 109 error = ppb_request_bus(ppbus, dev, how); 110 break; 111 112 case IIC_RELEASE_BUS: 113 /* release the ppbus */ 114 error = ppb_release_bus(ppbus, dev); 115 break; 116 117 default: 118 error = EINVAL; 119 } 120 121 return (error); 122 } 123 124 #define SDA_out 0x80 125 #define SCL_out 0x08 126 #define SDA_in 0x80 127 #define SCL_in 0x08 128 #define ALIM 0x20 129 #define I2CKEY 0x50 130 131 static int getSDA(device_t ppbus) 132 { 133 if((ppb_rstr(ppbus)&SDA_in)==SDA_in) 134 return 1; 135 else 136 return 0; 137 } 138 139 static void setSDA(device_t ppbus, char val) 140 { 141 if(val==0) 142 ppb_wdtr(ppbus, (u_char)SDA_out); 143 else 144 ppb_wdtr(ppbus, (u_char)~SDA_out); 145 } 146 147 static void setSCL(device_t ppbus, unsigned char val) 148 { 149 if(val==0) 150 ppb_wctr(ppbus, (u_char)(ppb_rctr(ppbus)&~SCL_out)); 151 else 152 ppb_wctr(ppbus, (u_char)(ppb_rctr(ppbus)|SCL_out)); 153 } 154 155 static int lpbb_detect(device_t dev) 156 { 157 device_t ppbus = device_get_parent(dev); 158 159 if (ppb_request_bus(ppbus, dev, PPB_DONTWAIT)) { 160 device_printf(dev, "can't allocate ppbus\n"); 161 return (0); 162 } 163 164 /* reset bus */ 165 setSDA(ppbus, 1); 166 setSCL(ppbus, 1); 167 168 if ((ppb_rstr(ppbus) & I2CKEY) || 169 ((ppb_rstr(ppbus) & ALIM) != ALIM)) { 170 171 ppb_release_bus(ppbus, dev); 172 return (0); 173 } 174 175 ppb_release_bus(ppbus, dev); 176 177 return (1); 178 } 179 180 static int 181 lpbb_reset(device_t dev, u_char speed, u_char addr, u_char * oldaddr) 182 { 183 device_t ppbus = device_get_parent(dev); 184 185 /* reset bus */ 186 setSDA(ppbus, 1); 187 setSCL(ppbus, 1); 188 189 return (IIC_ENOADDR); 190 } 191 192 static void 193 lpbb_setlines(device_t dev, int ctrl, int data) 194 { 195 device_t ppbus = device_get_parent(dev); 196 197 setSCL(ppbus, ctrl); 198 setSDA(ppbus, data); 199 } 200 201 static int 202 lpbb_getdataline(device_t dev) 203 { 204 device_t ppbus = device_get_parent(dev); 205 206 return (getSDA(ppbus)); 207 } 208 209 static devclass_t lpbb_devclass; 210 211 static device_method_t lpbb_methods[] = { 212 /* device interface */ 213 DEVMETHOD(device_identify, lpbb_identify), 214 DEVMETHOD(device_probe, lpbb_probe), 215 DEVMETHOD(device_attach, lpbb_attach), 216 217 /* bus interface */ 218 DEVMETHOD(bus_print_child, bus_generic_print_child), 219 220 /* iicbb interface */ 221 DEVMETHOD(iicbb_callback, lpbb_callback), 222 DEVMETHOD(iicbb_setlines, lpbb_setlines), 223 DEVMETHOD(iicbb_getdataline, lpbb_getdataline), 224 DEVMETHOD(iicbb_reset, lpbb_reset), 225 226 { 0, 0 } 227 }; 228 229 static driver_t lpbb_driver = { 230 "lpbb", 231 lpbb_methods, 232 1, 233 }; 234 235 DRIVER_MODULE(lpbb, ppbus, lpbb_driver, lpbb_devclass, 0, 0); 236