2008-04-29 00:22:51 +04:00
|
|
|
/* $NetBSD: atppc_isapnp.c,v 1.11 2008/04/28 20:23:52 martin Exp $ */
|
2004-01-28 22:31:07 +03:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2004 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Jaromir Dolecek.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
2008-04-29 00:22:51 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: atppc_isapnp.c,v 1.11 2008/04/28 20:23:52 martin Exp $");
|
2004-01-28 22:31:07 +03:00
|
|
|
|
|
|
|
#include "opt_atppc.h"
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/syslog.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/termios.h>
|
|
|
|
|
2007-10-19 15:59:34 +04:00
|
|
|
#include <sys/bus.h>
|
2004-01-28 22:31:07 +03:00
|
|
|
|
|
|
|
#include <dev/isa/isavar.h>
|
|
|
|
#include <dev/isa/isadmavar.h>
|
|
|
|
|
|
|
|
#include <dev/isapnp/isapnpreg.h>
|
|
|
|
#include <dev/isapnp/isapnpvar.h>
|
|
|
|
#include <dev/isapnp/isapnpdevs.h>
|
|
|
|
|
|
|
|
#include <dev/ic/atppcvar.h>
|
|
|
|
#include <dev/isa/atppc_isadma.h>
|
|
|
|
|
2008-04-16 13:39:01 +04:00
|
|
|
static int atppc_isapnp_match(device_t, cfdata_t, void *);
|
|
|
|
static void atppc_isapnp_attach(device_t, device_t, void *);
|
2004-01-28 22:31:07 +03:00
|
|
|
|
|
|
|
struct atppc_isapnp_softc {
|
|
|
|
struct atppc_softc sc_atppc;
|
|
|
|
|
|
|
|
isa_chipset_tag_t sc_ic;
|
|
|
|
int sc_drq;
|
|
|
|
};
|
|
|
|
|
2008-04-15 19:02:28 +04:00
|
|
|
CFATTACH_DECL_NEW(atppc_isapnp, sizeof(struct atppc_isapnp_softc),
|
2004-01-28 22:31:07 +03:00
|
|
|
atppc_isapnp_match, atppc_isapnp_attach, NULL, NULL);
|
|
|
|
|
2005-02-27 03:26:58 +03:00
|
|
|
static int atppc_isapnp_dma_start(struct atppc_softc *, void *, u_int,
|
2004-01-28 22:31:07 +03:00
|
|
|
u_int8_t);
|
|
|
|
static int atppc_isapnp_dma_finish(struct atppc_softc *);
|
|
|
|
static int atppc_isapnp_dma_abort(struct atppc_softc *);
|
2008-04-16 13:39:01 +04:00
|
|
|
static int atppc_isapnp_dma_malloc(device_t, void **, bus_addr_t *,
|
2004-01-28 22:31:07 +03:00
|
|
|
bus_size_t);
|
2008-04-16 13:39:01 +04:00
|
|
|
static void atppc_isapnp_dma_free(device_t, void **, bus_addr_t *,
|
2004-01-28 22:31:07 +03:00
|
|
|
bus_size_t);
|
|
|
|
/*
|
|
|
|
* atppc_isapnp_match: autoconf(9) match routine
|
|
|
|
*/
|
|
|
|
static int
|
2008-04-16 13:39:01 +04:00
|
|
|
atppc_isapnp_match(device_t parent, cfdata_t match, void *aux)
|
2004-01-28 22:31:07 +03:00
|
|
|
{
|
|
|
|
int pri, variant;
|
|
|
|
|
2004-01-28 22:33:10 +03:00
|
|
|
pri = isapnp_devmatch(aux, &isapnp_atppc_devinfo, &variant);
|
2004-01-28 22:31:07 +03:00
|
|
|
if (pri && variant > 0)
|
|
|
|
pri = 0;
|
|
|
|
return (pri);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-04-16 13:39:01 +04:00
|
|
|
atppc_isapnp_attach(device_t parent, device_t self, void *aux)
|
2004-01-28 22:31:07 +03:00
|
|
|
{
|
2006-03-29 10:51:47 +04:00
|
|
|
struct atppc_softc *sc = device_private(self);
|
|
|
|
struct atppc_isapnp_softc *asc = device_private(self);
|
2004-01-28 22:31:07 +03:00
|
|
|
struct isapnp_attach_args *ipa = aux;
|
|
|
|
|
|
|
|
sc->sc_dev_ok = ATPPC_NOATTACH;
|
|
|
|
|
|
|
|
printf(": AT Parallel Port\n");
|
|
|
|
|
|
|
|
if (isapnp_config(ipa->ipa_iot, ipa->ipa_memt, ipa)) {
|
2008-04-15 19:02:28 +04:00
|
|
|
aprint_error_dev(sc->sc_dev, "error in region allocation\n");
|
2004-01-28 22:31:07 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Attach */
|
2008-04-16 13:39:01 +04:00
|
|
|
sc->sc_dev = self;
|
2004-01-28 22:31:07 +03:00
|
|
|
sc->sc_iot = ipa->ipa_iot;
|
|
|
|
sc->sc_ioh = ipa->ipa_io[0].h;
|
|
|
|
sc->sc_has = 0;
|
|
|
|
asc->sc_ic = ipa->ipa_ic;
|
|
|
|
asc->sc_drq = -1; /* Initialized below */
|
|
|
|
|
|
|
|
sc->sc_dev_ok = ATPPC_ATTACHED;
|
|
|
|
|
|
|
|
sc->sc_ieh = isa_intr_establish(ipa->ipa_ic, ipa->ipa_irq[0].num,
|
|
|
|
ipa->ipa_irq[0].type, IPL_TTY, atppcintr, sc);
|
|
|
|
sc->sc_has |= ATPPC_HAS_INTR;
|
|
|
|
|
|
|
|
/* setup DMA hooks */
|
|
|
|
if (ipa->ipa_ndrq > 0
|
|
|
|
&& atppc_isadma_setup(sc, asc->sc_ic, ipa->ipa_drq[0].num) == 0) {
|
|
|
|
asc->sc_drq = ipa->ipa_drq[0].num;
|
|
|
|
sc->sc_has |= ATPPC_HAS_DMA;
|
|
|
|
sc->sc_dma_start = atppc_isapnp_dma_start;
|
|
|
|
sc->sc_dma_finish = atppc_isapnp_dma_finish;
|
|
|
|
sc->sc_dma_abort = atppc_isapnp_dma_abort;
|
|
|
|
sc->sc_dma_malloc = atppc_isapnp_dma_malloc;
|
|
|
|
sc->sc_dma_free = atppc_isapnp_dma_free;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Run soft configuration attach */
|
|
|
|
atppc_sc_attach(sc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Start DMA operation over ISA bus */
|
2005-02-27 03:26:58 +03:00
|
|
|
static int
|
2004-01-28 22:31:07 +03:00
|
|
|
atppc_isapnp_dma_start(struct atppc_softc *lsc, void *buf, u_int nbytes,
|
|
|
|
u_int8_t mode)
|
|
|
|
{
|
|
|
|
struct atppc_isapnp_softc * sc = (struct atppc_isapnp_softc *) lsc;
|
2005-02-27 03:26:58 +03:00
|
|
|
|
2004-01-28 22:31:07 +03:00
|
|
|
return atppc_isadma_start(sc->sc_ic, sc->sc_drq, buf, nbytes, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Stop DMA operation over ISA bus */
|
2005-02-27 03:26:58 +03:00
|
|
|
static int
|
2004-01-28 22:31:07 +03:00
|
|
|
atppc_isapnp_dma_finish(struct atppc_softc * lsc)
|
|
|
|
{
|
|
|
|
struct atppc_isapnp_softc * sc = (struct atppc_isapnp_softc *) lsc;
|
2005-02-27 03:26:58 +03:00
|
|
|
|
2004-01-28 22:31:07 +03:00
|
|
|
return atppc_isadma_finish(sc->sc_ic, sc->sc_drq);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Abort DMA operation over ISA bus */
|
2005-02-27 03:26:58 +03:00
|
|
|
int
|
2004-01-28 22:31:07 +03:00
|
|
|
atppc_isapnp_dma_abort(struct atppc_softc * lsc)
|
|
|
|
{
|
|
|
|
struct atppc_isapnp_softc * sc = (struct atppc_isapnp_softc *) lsc;
|
2005-02-27 03:26:58 +03:00
|
|
|
|
2004-01-28 22:31:07 +03:00
|
|
|
return atppc_isadma_abort(sc->sc_ic, sc->sc_drq);
|
|
|
|
}
|
|
|
|
|
2005-02-27 03:26:58 +03:00
|
|
|
/* Allocate memory for DMA over ISA bus */
|
2004-01-28 22:31:07 +03:00
|
|
|
int
|
2008-04-16 13:39:01 +04:00
|
|
|
atppc_isapnp_dma_malloc(device_t dev, void ** buf, bus_addr_t * bus_addr,
|
2004-01-28 22:31:07 +03:00
|
|
|
bus_size_t size)
|
|
|
|
{
|
2008-04-16 13:39:01 +04:00
|
|
|
struct atppc_isapnp_softc * sc = device_private(dev);
|
2004-01-28 22:31:07 +03:00
|
|
|
|
|
|
|
return atppc_isadma_malloc(sc->sc_ic, sc->sc_drq, buf, bus_addr, size);
|
|
|
|
}
|
|
|
|
|
2005-02-27 03:26:58 +03:00
|
|
|
/* Free memory allocated by atppc_isa_dma_malloc() */
|
|
|
|
void
|
2008-04-16 13:39:01 +04:00
|
|
|
atppc_isapnp_dma_free(device_t dev, void ** buf, bus_addr_t * bus_addr,
|
2004-01-28 22:31:07 +03:00
|
|
|
bus_size_t size)
|
|
|
|
{
|
2008-04-16 13:39:01 +04:00
|
|
|
struct atppc_isapnp_softc * sc = device_private(dev);
|
2004-01-28 22:31:07 +03:00
|
|
|
|
|
|
|
return atppc_isadma_free(sc->sc_ic, sc->sc_drq, buf, bus_addr, size);
|
|
|
|
}
|