Satellite receiver driver for ISA cards from PlanetConnect by Jason and

Herb for Canada Connect Corp.
This commit is contained in:
hpeyerl 1997-07-13 19:09:46 +00:00
parent ddfce6c70c
commit d1f899bc4c
4 changed files with 579 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: files.isa,v 1.30 1997/05/17 20:58:47 pk Exp $
# $NetBSD: files.isa,v 1.31 1997/07/13 19:09:51 hpeyerl Exp $
#
# Config.new file and device description for machine-independent ISA code.
# Included by ports that need it. Requires that the SCSI files be
@ -242,3 +242,10 @@ file dev/isa/wss.c wss needs-flag
device gus: audio, isadma, ics2101, ad1848, mulaw
attach gus at isa
file dev/isa/gus.c gus needs-flag
#
# PlanetConnect satellite receiver driver.
#
device satlink: isadma
attach satlink at isa
file dev/isa/satlink.c satlink

455
sys/dev/isa/satlink.c Normal file
View File

@ -0,0 +1,455 @@
/* $NetBSD: satlink.c,v 1.1 1997/07/13 19:09:46 hpeyerl Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Canada Connect Corp.
*
* 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.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* 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 REGENTS 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.
*/
/*
* Device driver for SatLink interface.
*
* This thing is really simple. We essentially DMA into a ring buffer
* which the user then reads from, and provide an ioctl interface to
* reset the card, etc.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/device.h>
#include <sys/conf.h>
#include <sys/proc.h>
#include <sys/uio.h>
#include <sys/select.h>
#include <sys/poll.h>
#include <sys/kernel.h>
#include <sys/file.h>
#include <sys/tty.h>
#include <machine/cpu.h>
#include <machine/bus.h>
#include <machine/intr.h>
#include <dev/isa/isareg.h>
#include <dev/isa/isavar.h>
#include <dev/isa/isadmavar.h>
#include <dev/isa/satlinkreg.h>
#include <dev/isa/satlinkio.h>
struct satlink_softc {
struct device sc_dev; /* device glue */
bus_space_tag_t sc_iot; /* space tag */
bus_space_handle_t sc_ioh; /* space handle */
int sc_drq; /* the DRQ we're using */
caddr_t sc_buf; /* ring buffer for incoming data */
int sc_uptr; /* user index into ring buffer */
int sc_sptr; /* satlink index into ring buffer */
int sc_flags; /* misc. flags. */
int sc_lastresid; /* residual */
struct selinfo sc_selq; /* our select/poll queue */
struct satlink_id sc_id; /* ID cached at attach time */
};
/* sc_flags */
#define SATF_ISOPEN 0x01 /* device is open */
#define SATF_DATA 0x02 /* waiting for data */
/*
* Our pesudo-interrupt. Since up to 328 bytes can arrive in 1/100 of
* a second, this gives us 3280 bytes per timeout.
*/
#define SATLINK_TIMEOUT (hz/5)
/* max that the DMA controller allows! */
#define SATLINK_BUFSIZE 65535
#ifdef __BROKEN_INDIRECT_CONFIG
int satlinkprobe __P((struct device *, void *, void *));
#else
int satlinkprobe __P((struct device *, struct cfdata *, void *));
#endif
void satlinkattach __P((struct device *, struct device *, void *));
void satlinktimeout __P((void *));
struct cfattach satlink_ca = {
sizeof(struct satlink_softc), satlinkprobe, satlinkattach
};
struct cfdriver satlink_cd = {
NULL, "satlink", DV_DULL
};
cdev_decl(satlink);
int
satlinkprobe(parent, match, aux)
struct device *parent;
#ifdef __BROKEN_INDIRECT_CONFIG
void *match;
#else
struct cfdata *match;
#endif
void *aux;
{
struct isa_attach_args *ia = aux;
bus_space_tag_t iot = ia->ia_iot;
bus_space_handle_t ioh;
int rv = 0;
/* Don't allow wildcarding of iobase or drq. */
if (ia->ia_iobase == -1)
return (0);
if (ia->ia_drq == -1)
return (0);
if (bus_space_map(iot, ia->ia_iobase, SATLINK_IOSIZE, 0, &ioh))
return (0);
/*
* XXX Should check manufacturer ID here, or something.
*/
rv = 1;
ia->ia_iosize = SATLINK_IOSIZE;
ia->ia_msize = 0;
bus_space_unmap(iot, ioh, SATLINK_IOSIZE);
return (rv);
}
void
satlinkattach(parent, self, aux)
struct device *parent, *self;
void *aux;
{
struct satlink_softc *sc = (struct satlink_softc *)self;
struct isa_attach_args *ia = aux;
bus_space_tag_t iot = ia->ia_iot;
bus_space_handle_t ioh;
bus_addr_t ringaddr;
printf("\n");
/* Map the card. */
if (bus_space_map(iot, ia->ia_iobase, ia->ia_iosize, 0, &ioh)) {
printf("%s: can't map i/o space\n", sc->sc_dev.dv_xname);
return;
}
sc->sc_iot = iot;
sc->sc_ioh = ioh;
sc->sc_drq = ia->ia_drq;
/* Reset the card. */
bus_space_write_1(iot, ioh, SATLINK_COMMAND, SATLINK_CMD_RESET);
/* Read ID from the card. */
sc->sc_id.sid_mfrid =
bus_space_read_1(iot, ioh, SATLINK_MFRID_L) |
(bus_space_read_1(iot, ioh, SATLINK_MFRID_H) << 8);
sc->sc_id.sid_grpid = bus_space_read_1(iot, ioh, SATLINK_GRPID);
sc->sc_id.sid_userid =
bus_space_read_1(iot, ioh, SATLINK_USERID_L) |
(bus_space_read_1(iot, ioh, SATLINK_USERID_H) << 8);
sc->sc_id.sid_serial =
bus_space_read_1(iot, ioh, SATLINK_SER_L) |
(bus_space_read_1(iot, ioh, SATLINK_SER_M0) << 8) |
(bus_space_read_1(iot, ioh, SATLINK_SER_M1) << 16) |
(bus_space_read_1(iot, ioh, SATLINK_SER_H) << 24);
printf("%s: mfrid 0x%x, grpid 0x%x, userid 0x%x, serial %d\n",
sc->sc_dev.dv_xname, sc->sc_id.sid_mfrid,
sc->sc_id.sid_grpid, sc->sc_id.sid_userid,
sc->sc_id.sid_serial);
/* Allocate and map the ring buffer. */
if (isa_dmamem_alloc(parent, sc->sc_drq, SATLINK_BUFSIZE,
&ringaddr, BUS_DMA_NOWAIT)) {
printf("%s: can't allocate ring buffer\n",
sc->sc_dev.dv_xname);
return;
}
if (isa_dmamem_map(parent, sc->sc_drq, ringaddr, SATLINK_BUFSIZE,
&sc->sc_buf, BUS_DMA_NOWAIT|BUS_DMAMEM_NOSYNC)) {
printf("%s: can't map ring buffer\n", sc->sc_dev.dv_xname);
isa_dmamem_free(parent, sc->sc_drq, ringaddr, SATLINK_BUFSIZE);
return;
}
/* Create the DMA map. */
if (isa_dmamap_create(parent, sc->sc_drq, SATLINK_BUFSIZE,
BUS_DMA_NOWAIT)) {
printf("%s: can't create DMA map\n", sc->sc_dev.dv_xname);
isa_dmamem_unmap(parent, sc->sc_drq, sc->sc_buf,
SATLINK_BUFSIZE);
isa_dmamem_free(parent, sc->sc_drq, ringaddr, SATLINK_BUFSIZE);
return;
}
}
int
satlinkopen(dev, flags, fmt, p)
dev_t dev;
int flags, fmt;
struct proc *p;
{
int error, unit = minor(dev);
struct satlink_softc *sc;
if (unit >= satlink_cd.cd_ndevs ||
(sc = satlink_cd.cd_devs[unit]) == NULL)
return (ENXIO);
if (sc->sc_flags & SATF_ISOPEN)
return (EBUSY);
bus_space_write_1(sc->sc_iot, sc->sc_ioh, SATLINK_COMMAND,
SATLINK_CMD_RESET);
/* Reset the ring buffer, and start the DMA loop. */
sc->sc_uptr = 0;
sc->sc_sptr = 0;
sc->sc_lastresid = SATLINK_BUFSIZE;
bzero(sc->sc_buf, SATLINK_BUFSIZE);
error = isa_dmastart(sc->sc_dev.dv_parent, sc->sc_drq, sc->sc_buf,
SATLINK_BUFSIZE, NULL, DMAMODE_READ|DMAMODE_LOOP, BUS_DMA_WAITOK);
if (error)
return (error);
sc->sc_flags |= SATF_ISOPEN;
timeout(satlinktimeout, sc, SATLINK_TIMEOUT);
return (0);
}
int
satlinkclose(dev, flags, fmt, p)
dev_t dev;
int flags, fmt;
struct proc *p;
{
int unit = minor(dev);
struct satlink_softc *sc = satlink_cd.cd_devs[unit];
int s;
s = splsoftclock();
sc->sc_flags &= ~SATF_ISOPEN;
splx(s);
isa_dmaabort(sc->sc_dev.dv_parent, sc->sc_drq);
untimeout(satlinktimeout, sc);
return (0);
}
int
satlinkread(dev, uio, flags)
dev_t dev;
struct uio *uio;
int flags;
{
int unit = minor(dev);
struct satlink_softc *sc = satlink_cd.cd_devs[unit];
int error, s, count, sptr;
int wrapcnt, oresid;
s = splsoftclock();
/* Wait for data to be available. */
while (sc->sc_sptr == sc->sc_uptr) {
if (flags & O_NONBLOCK) {
splx(s);
return (EWOULDBLOCK);
}
sc->sc_flags |= SATF_DATA;
if ((error = tsleep(sc, TTIPRI | PCATCH, "satio", 0)) != 0) {
splx(s);
return (error);
}
}
sptr = sc->sc_sptr;
splx(s);
/* Compute number of readable bytes. */
if (sptr > sc->sc_uptr)
count = sptr - sc->sc_uptr;
else
count = SATLINK_BUFSIZE - sc->sc_uptr + sptr;
if (count > uio->uio_resid)
count = uio->uio_resid;
/* Send data out to user. */
if (sptr > sc->sc_uptr) {
/*
* Easy case - no wrap-around.
*/
error = uiomove(&sc->sc_buf[sc->sc_uptr], count, uio);
if (error == 0) {
sc->sc_uptr += count;
if (sc->sc_uptr == SATLINK_BUFSIZE)
sc->sc_uptr = 0;
}
return (error);
}
/*
* We wrap around. Copy to the end of the ring...
*/
wrapcnt = SATLINK_BUFSIZE - sc->sc_uptr;
oresid = uio->uio_resid;
if (wrapcnt > uio->uio_resid)
wrapcnt = uio->uio_resid;
error = uiomove(&sc->sc_buf[sc->sc_uptr], wrapcnt, uio);
sc->sc_uptr = 0;
if (error != 0 || wrapcnt == oresid)
return (error);
/* ...and the rest. */
count -= wrapcnt;
error = uiomove(sc->sc_buf, count, uio);
sc->sc_uptr += count;
if (sc->sc_uptr == SATLINK_BUFSIZE)
sc->sc_uptr = 0;
return (error);
}
int
satlinkwrite(dev, uio, flags)
dev_t dev;
struct uio *uio;
int flags;
{
return (ENODEV);
}
int
satlinkioctl(dev, cmd, data, flags, p)
dev_t dev;
u_long cmd;
caddr_t data;
int flags;
struct proc *p;
{
int unit = minor(dev);
struct satlink_softc *sc = satlink_cd.cd_devs[unit];
switch (cmd) {
case SATIORESET:
bus_space_write_1(sc->sc_iot, sc->sc_ioh, SATLINK_COMMAND,
SATLINK_CMD_RESET);
sc->sc_uptr = isa_dmacount(sc->sc_dev.dv_parent, sc->sc_drq);
sc->sc_sptr = sc->sc_uptr;
break;
case SATIOGID:
bcopy(&sc->sc_id, data, sizeof(sc->sc_id));
break;
default:
return (ENOTTY);
}
return (0);
}
int
satlinkpoll(dev, events, p)
dev_t dev;
int events;
struct proc *p;
{
int unit = minor(dev);
struct satlink_softc *sc = satlink_cd.cd_devs[unit];
int s, revents;
revents = events & (POLLOUT | POLLWRNORM);
/* Attempt to save some work. */
if ((events & (POLLIN | POLLRDNORM)) == 0)
return (revents);
/* We're timeout-driven, so must block the clock. */
s = splsoftclock();
if (sc->sc_uptr != sc->sc_sptr)
revents |= events & (POLLIN | POLLRDNORM);
else
selrecord(p, &sc->sc_selq);
splx(s);
return (revents);
}
void
satlinktimeout(arg)
void *arg;
{
struct satlink_softc *sc = arg;
bus_size_t resid;
int newidx;
if ((sc->sc_flags & SATF_ISOPEN) == 0)
return;
/*
* Get the current residual count from the DMA controller
* and compute the satlink's index into the ring buffer.
*/
resid = isa_dmacount(sc->sc_dev.dv_parent, sc->sc_drq);
newidx = SATLINK_BUFSIZE - resid;
if (newidx == SATLINK_BUFSIZE)
newidx = 0;
if (newidx == sc->sc_sptr)
goto out;
sc->sc_sptr = newidx;
/* Wake up anyone blocked in read... */
if (sc->sc_flags & SATF_DATA) {
sc->sc_flags &= ~SATF_DATA;
wakeup(sc);
}
/* Wake up anyone blocked in poll... */
selwakeup(&sc->sc_selq);
out:
timeout(satlinktimeout, sc, SATLINK_TIMEOUT);
}

56
sys/dev/isa/satlinkio.h Normal file
View File

@ -0,0 +1,56 @@
/* $NetBSD: satlinkio.h,v 1.1 1997/07/13 19:09:48 hpeyerl Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Canada Connect Corp.
*
* 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.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* 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 REGENTS 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.
*/
#ifndef _DEV_ISA_SATLINKIO_H_
#define _DEV_ISA_SATLINKIO_H_
/*
* ioctl definitions for SatLink interface.
*/
struct satlink_id {
u_int16_t sid_mfrid; /* manufacturer ID */
u_int8_t sid_grpid; /* group ID */
u_int16_t sid_userid; /* user ID */
u_int32_t sid_serial; /* serial number */
};
#define SATIORESET _IO('s', 0) /* reset interface */
#define SATIOGID _IOR('s', 1, struct satlink_id) /* read ID */
#define SATIOSBUFSIZE _IOW('s', 2, int) /* set buffer size */
#endif /* _DEV_ISA_SATLINKIO_H_ */

60
sys/dev/isa/satlinkreg.h Normal file
View File

@ -0,0 +1,60 @@
/* $NetBSD: satlinkreg.h,v 1.1 1997/07/13 19:09:49 hpeyerl Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Canada Connect Corp.
*
* 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.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* 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 REGENTS 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.
*/
#ifndef _DEV_ISA_SATLINKREG_H_
#define _DEV_ISA_SATLINKREG_H_
/*
* Register definitions for the SatLink interface.
*/
#define SATLINK_IOSIZE 0x20
#define SATLINK_COMMAND 0x00 /* command register */
#define SATLINK_MFRID_L 0x1c /* Manufacturer ID (low) */
#define SATLINK_MFRID_H 0x1b /* (high) */
#define SATLINK_GRPID 0x1d /* Group ID */
#define SATLINK_USERID_L 0x1f /* User ID (low) */
#define SATLINK_USERID_H 0x1e /* (high) */
#define SATLINK_SER_L 0x10 /* Serial number (low) */
#define SATLINK_SER_M0 0x11 /* . */
#define SATLINK_SER_M1 0x12 /* . */
#define SATLINK_SER_H 0x13 /* (high) */
#define SATLINK_CMD_RESET 0x0c /* reset card */
#endif /* _DEV_ISA_SATLINKREG_H_ */