Home | History | Annotate | Line # | Download | only in isa
pcppi.c revision 1.16.2.5
      1 /* $NetBSD: pcppi.c,v 1.16.2.5 2008/02/04 09:23:26 yamt Exp $ */
      2 
      3 /*
      4  * Copyright (c) 1996 Carnegie-Mellon University.
      5  * All rights reserved.
      6  *
      7  * Author: Chris G. Demetriou
      8  *
      9  * Permission to use, copy, modify and distribute this software and
     10  * its documentation is hereby granted, provided that both the copyright
     11  * notice and this permission notice appear in all copies of the
     12  * software, derivative works or modified versions, and any portions
     13  * thereof, and that both notices appear in supporting documentation.
     14  *
     15  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     16  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
     17  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     18  *
     19  * Carnegie Mellon requests users of this software to return to
     20  *
     21  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     22  *  School of Computer Science
     23  *  Carnegie Mellon University
     24  *  Pittsburgh PA 15213-3890
     25  *
     26  * any improvements or extensions that they make and grant Carnegie the
     27  * rights to redistribute these changes.
     28  */
     29 
     30 #include <sys/cdefs.h>
     31 __KERNEL_RCSID(0, "$NetBSD: pcppi.c,v 1.16.2.5 2008/02/04 09:23:26 yamt Exp $");
     32 
     33 #include "attimer.h"
     34 
     35 #include <sys/param.h>
     36 #include <sys/systm.h>
     37 #include <sys/callout.h>
     38 #include <sys/kernel.h>
     39 #include <sys/proc.h>
     40 #include <sys/device.h>
     41 #include <sys/errno.h>
     42 
     43 #include <sys/bus.h>
     44 
     45 #include <dev/ic/attimervar.h>
     46 
     47 #include <dev/isa/isareg.h>
     48 #include <dev/isa/isavar.h>
     49 #include <dev/isa/pcppireg.h>
     50 #include <dev/isa/pcppivar.h>
     51 
     52 #include "pckbd.h"
     53 #if NPCKBD > 0
     54 #include <dev/pckbport/pckbdvar.h>
     55 
     56 void	pcppi_pckbd_bell(void *, u_int, u_int, u_int, int);
     57 #endif
     58 
     59 int	pcppi_match(struct device *, struct cfdata *, void *);
     60 void	pcppi_isa_attach(struct device *, struct device *, void *);
     61 
     62 CFATTACH_DECL(pcppi, sizeof(struct pcppi_softc),
     63     pcppi_match, pcppi_isa_attach, pcppi_detach, NULL);
     64 
     65 static int pcppisearch(device_t, cfdata_t, const int *, void *);
     66 static void pcppi_bell_stop(void*);
     67 
     68 #if NATTIMER > 0
     69 static void pcppi_attach_speaker(struct device *);
     70 #endif
     71 
     72 #define PCPPIPRI (PZERO - 1)
     73 
     74 int
     75 pcppi_match(struct device *parent, struct cfdata *match,
     76     void *aux)
     77 {
     78 	struct isa_attach_args *ia = aux;
     79 	bus_space_handle_t ppi_ioh;
     80 	int have_ppi, rv;
     81 	u_int8_t v, nv;
     82 
     83 	if (ISA_DIRECT_CONFIG(ia))
     84 		return (0);
     85 
     86 	/* If values are hardwired to something that they can't be, punt. */
     87 	if (ia->ia_nio < 1 ||
     88 	    (ia->ia_io[0].ir_addr != ISA_UNKNOWN_PORT &&
     89 	    ia->ia_io[0].ir_addr != IO_PPI))
     90 		return (0);
     91 
     92 	if (ia->ia_niomem > 0 &&
     93 	    (ia->ia_iomem[0].ir_addr != ISA_UNKNOWN_IOMEM))
     94 		return (0);
     95 
     96 	if (ia->ia_nirq > 0 &&
     97 	    (ia->ia_irq[0].ir_irq != ISA_UNKNOWN_IRQ))
     98 		return (0);
     99 
    100 	if (ia->ia_ndrq > 0 &&
    101 	    (ia->ia_drq[0].ir_drq != ISA_UNKNOWN_DRQ))
    102 		return (0);
    103 
    104 	rv = 0;
    105 	have_ppi = 0;
    106 
    107 	if (bus_space_map(ia->ia_iot, IO_PPI, 1, 0, &ppi_ioh))
    108 		goto lose;
    109 	have_ppi = 1;
    110 
    111 	/*
    112 	 * Check for existence of PPI.  Realistically, this is either going to
    113 	 * be here or nothing is going to be here.
    114 	 *
    115 	 * We don't want to have any chance of changing speaker output (which
    116 	 * this test might, if it crashes in the middle, or something;
    117 	 * normally it's be to quick to produce anthing audible), but
    118 	 * many "combo chip" mock-PPI's don't seem to support the top bit
    119 	 * of Port B as a settable bit.  The bottom bit has to be settable,
    120 	 * since the speaker driver hardware still uses it.
    121 	 */
    122 	v = bus_space_read_1(ia->ia_iot, ppi_ioh, 0);		/* XXX */
    123 	bus_space_write_1(ia->ia_iot, ppi_ioh, 0, v ^ 0x01);	/* XXX */
    124 	nv = bus_space_read_1(ia->ia_iot, ppi_ioh, 0);		/* XXX */
    125 	if (((nv ^ v) & 0x01) == 0x01)
    126 		rv = 1;
    127 	bus_space_write_1(ia->ia_iot, ppi_ioh, 0, v);		/* XXX */
    128 	nv = bus_space_read_1(ia->ia_iot, ppi_ioh, 0);		/* XXX */
    129 	if (((nv ^ v) & 0x01) != 0x00) {
    130 		rv = 0;
    131 		goto lose;
    132 	}
    133 
    134 	/*
    135 	 * We assume that the programmable interval timer is there.
    136 	 */
    137 
    138 lose:
    139 	if (have_ppi)
    140 		bus_space_unmap(ia->ia_iot, ppi_ioh, 1);
    141 	if (rv) {
    142 		ia->ia_io[0].ir_addr = IO_PPI;
    143 		ia->ia_io[0].ir_size = 1;
    144 		ia->ia_nio = 1;
    145 
    146 		ia->ia_niomem = 0;
    147 		ia->ia_nirq = 0;
    148 		ia->ia_ndrq = 0;
    149 	}
    150 	return (rv);
    151 }
    152 
    153 void
    154 pcppi_isa_attach(struct device *parent, struct device *self, void *aux)
    155 {
    156         struct pcppi_softc *sc = (struct pcppi_softc *)self;
    157         struct isa_attach_args *ia = aux;
    158         bus_space_tag_t iot;
    159 
    160         sc->sc_iot = iot = ia->ia_iot;
    161 
    162         sc->sc_size = 1;
    163         if (bus_space_map(iot, IO_PPI, sc->sc_size, 0, &sc->sc_ppi_ioh))
    164                 panic("pcppi_attach: couldn't map");
    165 
    166         printf("\n");
    167 
    168         pcppi_attach(sc);
    169 }
    170 
    171 int
    172 pcppi_detach(device_t self, int flags)
    173 {
    174 	int rc;
    175 	struct pcppi_softc *sc = device_private(self);
    176 
    177 	if ((rc = config_detach_children(&sc->sc_dv, flags)) != 0)
    178 		return rc;
    179 
    180 	pmf_device_deregister(self);
    181 
    182 #if NPCKBD > 0
    183 	pckbd_unhook_bell(pcppi_pckbd_bell, sc);
    184 #endif
    185 	pcppi_bell_stop(sc);
    186 
    187 	callout_stop(&sc->sc_bell_ch);
    188 	callout_destroy(&sc->sc_bell_ch);
    189 	bus_space_unmap(sc->sc_iot, sc->sc_ppi_ioh, sc->sc_size);
    190 	return 0;
    191 }
    192 
    193 void
    194 pcppi_attach(struct pcppi_softc *sc)
    195 {
    196         struct pcppi_attach_args pa;
    197 	struct device *self = (struct device *)sc;
    198 
    199         callout_init(&sc->sc_bell_ch, 0);
    200 
    201         sc->sc_bellactive = sc->sc_bellpitch = sc->sc_slp = 0;
    202 
    203 #if NPCKBD > 0
    204 	/* Provide a beeper for the PC Keyboard, if there isn't one already. */
    205 	pckbd_hookup_bell(pcppi_pckbd_bell, sc);
    206 #endif
    207 #if NATTIMER > 0
    208 	config_defer(&sc->sc_dv, pcppi_attach_speaker);
    209 #endif
    210         if (!device_pmf_is_registered(self))
    211 		if (!pmf_device_register(self, NULL, NULL))
    212 			aprint_error_dev(self,
    213 			    "couldn't establish power handler\n");
    214 
    215 	pa.pa_cookie = sc;
    216 	config_search_loc(pcppisearch, &sc->sc_dv, "pcppi", NULL, &pa);
    217 }
    218 
    219 static int
    220 pcppisearch(device_t parent, cfdata_t cf, const int *locs, void *aux)
    221 {
    222 
    223 	if (config_match(parent, cf, aux))
    224 		config_attach_loc(parent, cf, locs, aux, NULL);
    225 
    226 	return 0;
    227 }
    228 
    229 #if NATTIMER > 0
    230 static void
    231 pcppi_attach_speaker(struct device *self)
    232 {
    233 	struct pcppi_softc *sc = (struct pcppi_softc *)self;
    234 
    235 	if ((sc->sc_timer = attimer_attach_speaker()) == NULL)
    236 		aprint_error("%s: could not find any available timer\n",
    237 		    sc->sc_dv.dv_xname);
    238 	else
    239 		aprint_normal("%s: attached to %s\n", sc->sc_dv.dv_xname,
    240 		    sc->sc_timer->sc_dev.dv_xname);
    241 }
    242 #endif
    243 
    244 void
    245 pcppi_bell(pcppi_tag_t self, int pitch, int period, int slp)
    246 {
    247 	struct pcppi_softc *sc = self;
    248 	int s;
    249 
    250 	s = spltty(); /* ??? */
    251 	if (sc->sc_bellactive) {
    252 		if (sc->sc_timeout) {
    253 			sc->sc_timeout = 0;
    254 			callout_stop(&sc->sc_bell_ch);
    255 		}
    256 		if (sc->sc_slp)
    257 			wakeup(pcppi_bell_stop);
    258 	}
    259 	if (pitch == 0 || period == 0) {
    260 		pcppi_bell_stop(sc);
    261 		sc->sc_bellpitch = 0;
    262 		splx(s);
    263 		return;
    264 	}
    265 	if (!sc->sc_bellactive || sc->sc_bellpitch != pitch) {
    266 #if NATTIMER > 0
    267 		if (sc->sc_timer != NULL)
    268 			attimer_set_pitch(sc->sc_timer, pitch);
    269 #endif
    270 		/* enable speaker */
    271 		bus_space_write_1(sc->sc_iot, sc->sc_ppi_ioh, 0,
    272 			bus_space_read_1(sc->sc_iot, sc->sc_ppi_ioh, 0)
    273 			| PIT_SPKR);
    274 	}
    275 	sc->sc_bellpitch = pitch;
    276 
    277 	sc->sc_bellactive = 1;
    278 	if (slp & PCPPI_BELL_POLL) {
    279 		delay((period * 1000000) / hz);
    280 		pcppi_bell_stop(sc);
    281 	} else {
    282 		sc->sc_timeout = 1;
    283 		callout_reset(&sc->sc_bell_ch, period, pcppi_bell_stop, sc);
    284 		if (slp & PCPPI_BELL_SLEEP) {
    285 			sc->sc_slp = 1;
    286 			tsleep(pcppi_bell_stop, PCPPIPRI | PCATCH, "bell", 0);
    287 			sc->sc_slp = 0;
    288 		}
    289 	}
    290 	splx(s);
    291 }
    292 
    293 static void
    294 pcppi_bell_stop(void *arg)
    295 {
    296 	struct pcppi_softc *sc = arg;
    297 	int s;
    298 
    299 	s = spltty(); /* ??? */
    300 	sc->sc_timeout = 0;
    301 
    302 	/* disable bell */
    303 	bus_space_write_1(sc->sc_iot, sc->sc_ppi_ioh, 0,
    304 			  bus_space_read_1(sc->sc_iot, sc->sc_ppi_ioh, 0)
    305 			  & ~PIT_SPKR);
    306 	sc->sc_bellactive = 0;
    307 	if (sc->sc_slp)
    308 		wakeup(pcppi_bell_stop);
    309 	splx(s);
    310 }
    311 
    312 #if NPCKBD > 0
    313 void
    314 pcppi_pckbd_bell(void *arg, u_int pitch, u_int period, u_int volume,
    315     int poll)
    316 {
    317 
    318 	/*
    319 	 * Comes in as ms, goes out at ticks; volume ignored.
    320 	 */
    321 	pcppi_bell(arg, pitch, (period * hz) / 1000,
    322 	    poll ? PCPPI_BELL_POLL : 0);
    323 }
    324 #endif /* NPCKBD > 0 */
    325