1 1.62 thorpej /* $NetBSD: com_pcmcia.c,v 1.62 2018/12/08 17:46:14 thorpej Exp $ */ 2 1.13 mycroft 3 1.13 mycroft /*- 4 1.45 mycroft * Copyright (c) 1998, 2004 The NetBSD Foundation, Inc. 5 1.13 mycroft * All rights reserved. 6 1.13 mycroft * 7 1.13 mycroft * This code is derived from software contributed to The NetBSD Foundation 8 1.13 mycroft * by Charles M. Hannum. 9 1.13 mycroft * 10 1.13 mycroft * Redistribution and use in source and binary forms, with or without 11 1.13 mycroft * modification, are permitted provided that the following conditions 12 1.13 mycroft * are met: 13 1.13 mycroft * 1. Redistributions of source code must retain the above copyright 14 1.13 mycroft * notice, this list of conditions and the following disclaimer. 15 1.13 mycroft * 2. Redistributions in binary form must reproduce the above copyright 16 1.13 mycroft * notice, this list of conditions and the following disclaimer in the 17 1.13 mycroft * documentation and/or other materials provided with the distribution. 18 1.13 mycroft * 19 1.13 mycroft * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 1.13 mycroft * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 21 1.13 mycroft * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 22 1.13 mycroft * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 23 1.13 mycroft * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24 1.13 mycroft * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25 1.13 mycroft * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26 1.13 mycroft * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27 1.13 mycroft * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28 1.13 mycroft * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29 1.13 mycroft * POSSIBILITY OF SUCH DAMAGE. 30 1.13 mycroft */ 31 1.2 thorpej 32 1.2 thorpej /*- 33 1.2 thorpej * Copyright (c) 1991 The Regents of the University of California. 34 1.2 thorpej * All rights reserved. 35 1.2 thorpej * 36 1.2 thorpej * Redistribution and use in source and binary forms, with or without 37 1.2 thorpej * modification, are permitted provided that the following conditions 38 1.2 thorpej * are met: 39 1.2 thorpej * 1. Redistributions of source code must retain the above copyright 40 1.2 thorpej * notice, this list of conditions and the following disclaimer. 41 1.2 thorpej * 2. Redistributions in binary form must reproduce the above copyright 42 1.2 thorpej * notice, this list of conditions and the following disclaimer in the 43 1.2 thorpej * documentation and/or other materials provided with the distribution. 44 1.33 agc * 3. Neither the name of the University nor the names of its contributors 45 1.2 thorpej * may be used to endorse or promote products derived from this software 46 1.2 thorpej * without specific prior written permission. 47 1.2 thorpej * 48 1.2 thorpej * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 49 1.2 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 50 1.2 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 51 1.2 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 52 1.2 thorpej * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 53 1.2 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 54 1.2 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 55 1.2 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 56 1.2 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 57 1.2 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 58 1.2 thorpej * SUCH DAMAGE. 59 1.2 thorpej * 60 1.2 thorpej * @(#)com.c 7.5 (Berkeley) 5/16/91 61 1.2 thorpej */ 62 1.22 lukem 63 1.22 lukem #include <sys/cdefs.h> 64 1.62 thorpej __KERNEL_RCSID(0, "$NetBSD: com_pcmcia.c,v 1.62 2018/12/08 17:46:14 thorpej Exp $"); 65 1.2 thorpej 66 1.2 thorpej #include <sys/param.h> 67 1.2 thorpej #include <sys/systm.h> 68 1.2 thorpej #include <sys/ioctl.h> 69 1.2 thorpej #include <sys/select.h> 70 1.2 thorpej #include <sys/tty.h> 71 1.2 thorpej #include <sys/proc.h> 72 1.2 thorpej #include <sys/conf.h> 73 1.2 thorpej #include <sys/file.h> 74 1.2 thorpej #include <sys/uio.h> 75 1.2 thorpej #include <sys/kernel.h> 76 1.2 thorpej #include <sys/syslog.h> 77 1.2 thorpej #include <sys/device.h> 78 1.2 thorpej 79 1.56 ad #include <sys/intr.h> 80 1.56 ad #include <sys/bus.h> 81 1.2 thorpej 82 1.2 thorpej #include <dev/pcmcia/pcmciavar.h> 83 1.2 thorpej #include <dev/pcmcia/pcmciareg.h> 84 1.9 christos #include <dev/pcmcia/pcmciadevs.h> 85 1.2 thorpej 86 1.2 thorpej #include <dev/ic/comreg.h> 87 1.2 thorpej #include <dev/ic/comvar.h> 88 1.2 thorpej 89 1.2 thorpej #include <dev/isa/isareg.h> 90 1.2 thorpej 91 1.57 cube int com_pcmcia_match(device_t, cfdata_t , void *); 92 1.50 perry int com_pcmcia_validate_config(struct pcmcia_config_entry *); 93 1.57 cube void com_pcmcia_attach(device_t, device_t, void *); 94 1.57 cube int com_pcmcia_detach(device_t, int); 95 1.2 thorpej 96 1.50 perry int com_pcmcia_enable(struct com_softc *); 97 1.50 perry void com_pcmcia_disable(struct com_softc *); 98 1.3 marc 99 1.2 thorpej struct com_pcmcia_softc { 100 1.2 thorpej struct com_softc sc_com; /* real "com" softc */ 101 1.2 thorpej 102 1.2 thorpej /* PCMCIA-specific goo */ 103 1.2 thorpej struct pcmcia_function *sc_pf; /* our PCMCIA function */ 104 1.2 thorpej void *sc_ih; /* interrupt handler */ 105 1.44 mycroft int sc_attached; 106 1.2 thorpej }; 107 1.2 thorpej 108 1.57 cube CFATTACH_DECL_NEW(com_pcmcia, sizeof(struct com_pcmcia_softc), 109 1.60 dyoung com_pcmcia_match, com_pcmcia_attach, com_pcmcia_detach, NULL); 110 1.2 thorpej 111 1.47 mycroft static const struct pcmcia_product com_pcmcia_products[] = { 112 1.47 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID, 113 1.47 mycroft PCMCIA_CIS_MEGAHERTZ_XJ2288 }, 114 1.55 kiyohara { PCMCIA_VENDOR_TDK, PCMCIA_PRODUCT_TDK_BLUETOOTH_PCCARD, 115 1.55 kiyohara PCMCIA_CIS_INVALID }, 116 1.47 mycroft }; 117 1.47 mycroft static const size_t com_pcmcia_nproducts = 118 1.47 mycroft sizeof(com_pcmcia_products) / sizeof(com_pcmcia_products[0]); 119 1.3 marc 120 1.2 thorpej int 121 1.57 cube com_pcmcia_match(device_t parent, cfdata_t match, void *aux) 122 1.2 thorpej { 123 1.11 nathanw int comportmask; 124 1.2 thorpej struct pcmcia_attach_args *pa = aux; 125 1.2 thorpej struct pcmcia_config_entry *cfe; 126 1.2 thorpej 127 1.11 nathanw /* 1. Does it claim to be a serial device? */ 128 1.11 nathanw if (pa->pf->function == PCMCIA_FUNCTION_SERIAL) 129 1.20 christos return 1; 130 1.11 nathanw 131 1.11 nathanw /* 2. Does it have all four 'standard' port ranges? */ 132 1.11 nathanw comportmask = 0; 133 1.29 lukem SIMPLEQ_FOREACH(cfe, &pa->pf->cfe_head, cfe_list) { 134 1.20 christos switch (cfe->iospace[0].start) { 135 1.20 christos case IO_COM1: 136 1.20 christos comportmask |= 1; 137 1.20 christos break; 138 1.20 christos case IO_COM2: 139 1.20 christos comportmask |= 2; 140 1.20 christos break; 141 1.20 christos case IO_COM3: 142 1.20 christos comportmask |= 4; 143 1.20 christos break; 144 1.20 christos case IO_COM4: 145 1.20 christos comportmask |= 8; 146 1.20 christos break; 147 1.20 christos } 148 1.11 nathanw } 149 1.11 nathanw 150 1.11 nathanw if (comportmask == 15) 151 1.20 christos return 1; 152 1.11 nathanw 153 1.11 nathanw /* 3. Is this a card we know about? */ 154 1.47 mycroft if (pcmcia_product_lookup(pa, com_pcmcia_products, com_pcmcia_nproducts, 155 1.47 mycroft sizeof(com_pcmcia_products[0]), NULL)) 156 1.20 christos return 1; 157 1.2 thorpej 158 1.11 nathanw return 0; 159 1.2 thorpej } 160 1.2 thorpej 161 1.44 mycroft int 162 1.57 cube com_pcmcia_validate_config(struct pcmcia_config_entry *cfe) 163 1.44 mycroft { 164 1.44 mycroft if (cfe->iftype != PCMCIA_IFTYPE_IO || 165 1.44 mycroft cfe->num_iospace != 1) 166 1.44 mycroft return (EINVAL); 167 1.44 mycroft /* Some cards have a memory space, but we don't use it. */ 168 1.44 mycroft cfe->num_memspace = 0; 169 1.44 mycroft return (0); 170 1.44 mycroft } 171 1.44 mycroft 172 1.2 thorpej void 173 1.57 cube com_pcmcia_attach(device_t parent, device_t self, void *aux) 174 1.2 thorpej { 175 1.57 cube struct com_pcmcia_softc *psc = device_private(self); 176 1.2 thorpej struct com_softc *sc = &psc->sc_com; 177 1.2 thorpej struct pcmcia_attach_args *pa = aux; 178 1.2 thorpej struct pcmcia_config_entry *cfe; 179 1.44 mycroft int error; 180 1.2 thorpej 181 1.57 cube sc->sc_dev = self; 182 1.2 thorpej psc->sc_pf = pa->pf; 183 1.2 thorpej 184 1.44 mycroft error = pcmcia_function_configure(pa->pf, com_pcmcia_validate_config); 185 1.44 mycroft if (error) { 186 1.57 cube aprint_error_dev(self, "configure failed, error=%d\n", error); 187 1.2 thorpej return; 188 1.2 thorpej } 189 1.42 mycroft 190 1.44 mycroft cfe = pa->pf->cfe; 191 1.62 thorpej com_init_regs(&sc->sc_regs, cfe->iospace[0].handle.iot, 192 1.52 gdamore cfe->iospace[0].handle.ioh, -1); 193 1.44 mycroft 194 1.44 mycroft error = com_pcmcia_enable(sc); 195 1.48 mycroft if (error) 196 1.44 mycroft goto fail; 197 1.42 mycroft 198 1.42 mycroft sc->enabled = 1; 199 1.42 mycroft 200 1.2 thorpej sc->sc_frequency = COM_FREQ; 201 1.2 thorpej 202 1.3 marc sc->enable = com_pcmcia_enable; 203 1.3 marc sc->disable = com_pcmcia_disable; 204 1.20 christos 205 1.57 cube aprint_normal("%s", device_xname(self)); 206 1.5 christos 207 1.2 thorpej com_attach_subr(sc); 208 1.2 thorpej 209 1.59 christos if (!pmf_device_register1(self, com_suspend, com_resume, 210 1.59 christos com_cleanup)) 211 1.59 christos aprint_error_dev(self, "couldn't establish power handler\n"); 212 1.59 christos 213 1.3 marc sc->enabled = 0; 214 1.20 christos 215 1.44 mycroft psc->sc_attached = 1; 216 1.42 mycroft com_pcmcia_disable(sc); 217 1.44 mycroft return; 218 1.44 mycroft 219 1.44 mycroft fail: 220 1.44 mycroft pcmcia_function_unconfigure(pa->pf); 221 1.16 thorpej } 222 1.16 thorpej 223 1.16 thorpej int 224 1.57 cube com_pcmcia_detach(device_t self, int flags) 225 1.16 thorpej { 226 1.57 cube struct com_pcmcia_softc *psc = device_private(self); 227 1.16 thorpej int error; 228 1.16 thorpej 229 1.44 mycroft if (!psc->sc_attached) 230 1.44 mycroft return (0); 231 1.28 christos 232 1.28 christos if ((error = com_detach(self, flags)) != 0) 233 1.28 christos return error; 234 1.16 thorpej 235 1.60 dyoung pmf_device_deregister(self); 236 1.60 dyoung 237 1.44 mycroft pcmcia_function_unconfigure(psc->sc_pf); 238 1.44 mycroft return (0); 239 1.3 marc } 240 1.3 marc 241 1.5 christos int 242 1.57 cube com_pcmcia_enable(struct com_softc *sc) 243 1.3 marc { 244 1.3 marc struct com_pcmcia_softc *psc = (struct com_pcmcia_softc *) sc; 245 1.3 marc struct pcmcia_function *pf = psc->sc_pf; 246 1.25 christos int error; 247 1.25 christos 248 1.2 thorpej /* establish the interrupt. */ 249 1.3 marc psc->sc_ih = pcmcia_intr_establish(pf, IPL_SERIAL, comintr, sc); 250 1.2 thorpej if (psc->sc_ih == NULL) { 251 1.57 cube aprint_error_dev(sc->sc_dev, "couldn't establish interrupt\n"); 252 1.43 mycroft return (1); 253 1.3 marc } 254 1.42 mycroft 255 1.43 mycroft if ((error = pcmcia_function_enable(pf)) != 0) { 256 1.42 mycroft pcmcia_intr_disestablish(pf, psc->sc_ih); 257 1.44 mycroft psc->sc_ih = 0; 258 1.43 mycroft return (error); 259 1.42 mycroft } 260 1.42 mycroft 261 1.19 marc if ((psc->sc_pf->sc->card.product == PCMCIA_PRODUCT_3COM_3C562) || 262 1.21 tron (psc->sc_pf->sc->card.product == PCMCIA_PRODUCT_3COM_3CXEM556) || 263 1.21 tron (psc->sc_pf->sc->card.product == PCMCIA_PRODUCT_3COM_3CXEM556INT)) { 264 1.3 marc int reg; 265 1.3 marc 266 1.3 marc /* turn off the ethernet-disable bit */ 267 1.3 marc reg = pcmcia_ccr_read(pf, PCMCIA_CCR_OPTION); 268 1.3 marc if (reg & 0x08) { 269 1.20 christos reg &= ~0x08; 270 1.20 christos pcmcia_ccr_write(pf, PCMCIA_CCR_OPTION, reg); 271 1.3 marc } 272 1.2 thorpej } 273 1.43 mycroft 274 1.43 mycroft return (0); 275 1.3 marc } 276 1.3 marc 277 1.5 christos void 278 1.57 cube com_pcmcia_disable(struct com_softc *sc) 279 1.5 christos { 280 1.5 christos struct com_pcmcia_softc *psc = (struct com_pcmcia_softc *) sc; 281 1.5 christos 282 1.43 mycroft pcmcia_function_disable(psc->sc_pf); 283 1.24 christos pcmcia_intr_disestablish(psc->sc_pf, psc->sc_ih); 284 1.44 mycroft psc->sc_ih = 0; 285 1.2 thorpej } 286