Home | History | Annotate | Line # | Download | only in pci
joy_eap.c revision 1.3.2.3
      1  1.3.2.3      yamt /* $NetBSD: joy_eap.c,v 1.3.2.3 2008/01/21 09:44:05 yamt Exp $ */
      2  1.3.2.3      yamt 
      3  1.3.2.3      yamt #include <sys/cdefs.h>
      4  1.3.2.3      yamt __KERNEL_RCSID(0, "$NetBSD: joy_eap.c,v 1.3.2.3 2008/01/21 09:44:05 yamt Exp $");
      5      1.1  drochner 
      6      1.1  drochner #include <sys/param.h>
      7      1.1  drochner #include <sys/systm.h>
      8      1.1  drochner #include <sys/kernel.h>
      9      1.1  drochner #include <sys/device.h>
     10      1.1  drochner #include <sys/audioio.h>
     11      1.1  drochner #include <dev/audio_if.h>
     12  1.3.2.2      yamt #include <sys/bus.h>
     13      1.1  drochner 
     14      1.1  drochner #include <dev/pci/eapreg.h>
     15      1.1  drochner #include <dev/pci/eapvar.h>
     16      1.1  drochner #include <dev/ic/joyvar.h>
     17      1.1  drochner 
     18      1.1  drochner struct joy_eap_aa {
     19      1.1  drochner 	struct audio_attach_args aa_aaa;
     20      1.1  drochner 	bus_space_tag_t aa_iot;
     21      1.1  drochner 	bus_space_handle_t aa_ioh;
     22      1.1  drochner };
     23      1.1  drochner 
     24      1.1  drochner struct device *
     25      1.1  drochner eap_joy_attach(struct device *eapdev, struct eap_gameport_args *gpa)
     26      1.1  drochner {
     27      1.1  drochner 	int i;
     28      1.1  drochner 	bus_space_handle_t ioh;
     29      1.1  drochner 	u_int32_t icsc;
     30      1.1  drochner 	struct joy_eap_aa aa;
     31      1.1  drochner 	struct device *joydev;
     32      1.1  drochner 
     33      1.1  drochner 	/*
     34      1.1  drochner 	 * There are 4 possible locations. Just try to map one of them.
     35      1.1  drochner 	 * XXX This is questionable for 2 reasons:
     36      1.1  drochner 	 * - We don't know whether these addresses are usable on our
     37      1.1  drochner 	 *   PCI bus (might be a secondary one).
     38      1.1  drochner 	 * - PCI probing is early. ISA devices might conflict.
     39      1.1  drochner 	 */
     40      1.1  drochner 	for (i = 0; i < 4; i++) {
     41      1.1  drochner 		if (bus_space_map(gpa->gpa_iot, 0x200 + i * 8, 1,
     42      1.1  drochner 		    0, &ioh) == 0)
     43      1.1  drochner 			break;
     44      1.1  drochner 	}
     45      1.1  drochner 	if (i == 4)
     46      1.1  drochner 		return (0);
     47      1.1  drochner 
     48      1.1  drochner 	printf("%s: enabling gameport at legacy io port 0x%x\n",
     49      1.1  drochner 		eapdev->dv_xname, 0x200 + i * 8);
     50      1.1  drochner 
     51      1.1  drochner 	/* enable gameport on eap */
     52      1.1  drochner 	icsc = bus_space_read_4(gpa->gpa_iot, gpa->gpa_ioh, EAP_ICSC);
     53      1.1  drochner 	icsc &= ~E1371_JOY_ASELBITS;
     54      1.1  drochner 	icsc |= EAP_JYSTK_EN | E1371_JOY_ASEL(i);
     55      1.1  drochner 	bus_space_write_4(gpa->gpa_iot, gpa->gpa_ioh, EAP_ICSC, icsc);
     56      1.1  drochner 
     57      1.1  drochner 	aa.aa_aaa.type = AUDIODEV_TYPE_AUX;
     58      1.1  drochner 	aa.aa_iot = gpa->gpa_iot;
     59      1.1  drochner 	aa.aa_ioh = ioh;
     60      1.1  drochner 	joydev = config_found(eapdev, &aa, 0);
     61      1.1  drochner 	/* this cannot fail */
     62      1.1  drochner 	KASSERT(joydev != NULL);
     63      1.1  drochner 
     64      1.1  drochner 	return (joydev);
     65      1.1  drochner }
     66      1.1  drochner 
     67      1.1  drochner int
     68      1.1  drochner eap_joy_detach(struct device *joydev, struct eap_gameport_args *gpa)
     69      1.1  drochner {
     70      1.1  drochner 	int res;
     71      1.1  drochner 	struct joy_softc *sc = (struct joy_softc *)joydev;
     72      1.1  drochner 	u_int32_t icsc;
     73      1.1  drochner 
     74      1.1  drochner 	res = config_detach(joydev, 0);
     75      1.1  drochner 	if (res)
     76      1.1  drochner 		return (res);
     77      1.1  drochner 
     78      1.1  drochner 	/* disable gameport on eap */
     79      1.1  drochner 	icsc = bus_space_read_4(gpa->gpa_iot, gpa->gpa_ioh, EAP_ICSC);
     80      1.1  drochner 	icsc &= ~EAP_JYSTK_EN;
     81      1.1  drochner 	bus_space_write_4(gpa->gpa_iot, gpa->gpa_ioh, EAP_ICSC, icsc);
     82      1.1  drochner 
     83      1.1  drochner 	bus_space_unmap(sc->sc_iot, sc->sc_ioh, 1);
     84      1.1  drochner 	return (0);
     85      1.1  drochner }
     86      1.1  drochner 
     87      1.3   thorpej static int
     88  1.3.2.1      yamt joy_eap_match(struct device *parent, struct cfdata *match,
     89  1.3.2.1      yamt     void *aux)
     90      1.1  drochner {
     91      1.1  drochner 	struct joy_eap_aa *eaa = aux;
     92      1.1  drochner 
     93      1.1  drochner 	if (eaa->aa_aaa.type != AUDIODEV_TYPE_AUX)
     94      1.1  drochner 		return (0);
     95      1.1  drochner 	return (1);
     96      1.1  drochner }
     97      1.1  drochner 
     98      1.3   thorpej static void
     99      1.1  drochner joy_eap_attach(struct device *parent, struct device *self, void *aux)
    100      1.1  drochner {
    101      1.1  drochner 	struct joy_softc *sc = (struct joy_softc *)self;
    102      1.1  drochner 	struct joy_eap_aa *eaa = aux;
    103      1.1  drochner 
    104      1.1  drochner 	printf("\n");
    105      1.1  drochner 
    106      1.1  drochner 	sc->sc_iot = eaa->aa_iot;
    107      1.1  drochner 	sc->sc_ioh = eaa->aa_ioh;
    108      1.1  drochner 
    109      1.1  drochner 	joyattach(sc);
    110      1.1  drochner }
    111      1.1  drochner 
    112      1.3   thorpej static int
    113      1.1  drochner joy_eap_detach(struct device *self, int flags)
    114      1.1  drochner {
    115      1.1  drochner 
    116      1.2  drochner 	return (joydetach((struct joy_softc *)self, flags));
    117      1.1  drochner }
    118      1.3   thorpej 
    119      1.3   thorpej CFATTACH_DECL(joy_eap, sizeof (struct joy_softc),
    120      1.3   thorpej 	joy_eap_match, joy_eap_attach, joy_eap_detach, NULL);
    121