2017-07-04 00:28:48 +03:00
|
|
|
.\" $NetBSD: ioasic.9,v 1.13 2017/07/03 21:28:48 wiz Exp $
|
2001-07-01 08:11:13 +04:00
|
|
|
.\"
|
|
|
|
.\" Copyright (c) 2000 The NetBSD Foundation, Inc.
|
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
.\" by Gregory McGarry.
|
|
|
|
.\"
|
|
|
|
.\" 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
|
2001-09-04 06:51:15 +04:00
|
|
|
.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
2001-07-01 08:11:13 +04:00
|
|
|
.\" 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.
|
|
|
|
.\"
|
|
|
|
.Dd August 6, 2000
|
|
|
|
.Dt IOASIC 9
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm IOASIC ,
|
|
|
|
.Nm ioasic_intr_establish ,
|
|
|
|
.Nm ioasic_intr_disestablish ,
|
|
|
|
.Nm ioasic_intr_evcnt ,
|
|
|
|
.Nm ioasic_attach_devs ,
|
|
|
|
.Nm ioasic_submatch
|
|
|
|
.Nd baseboard I/O control ASIC for DEC TURBOchannel systems
|
|
|
|
.Sh SYNOPSIS
|
2011-07-01 21:34:44 +04:00
|
|
|
.In sys/bus.h
|
2003-04-16 17:34:34 +04:00
|
|
|
.In dev/tc/tcvar.h
|
|
|
|
.In dev/tc/ioasicreg.h
|
|
|
|
.In dev/tc/ioasicvar.h
|
2001-07-01 08:11:13 +04:00
|
|
|
.Ft void
|
|
|
|
.Fn ioasic_intr_establish "struct device *dev" "void *cookie" "int level" \
|
|
|
|
"int (*handler)(void *)" "void *arg"
|
|
|
|
.Ft void
|
|
|
|
.Fn ioasic_intr_disestablish "struct device *dev" "void *cookie"
|
|
|
|
.Ft const struct evcnt *
|
|
|
|
.Fn ioasic_intr_evcnt "struct device *dev" "void *cookie"
|
|
|
|
.Ft void
|
|
|
|
.Fn ioasic_attach_devs "struct ioasic_softc *sc" \
|
|
|
|
"struct ioasic_dev *ioasic_devs" "int ioasic_ndevs"
|
|
|
|
.Ft int
|
|
|
|
.Fn ioasic_submatch "struct cfdata *match" "struct ioasicdev_attach_args *ia"
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Nm
|
2001-09-09 08:23:19 +04:00
|
|
|
device provides support for the DEC proprietary IOCTL ASIC found on
|
2001-07-01 08:11:13 +04:00
|
|
|
all DEC TURBOchannel machines with MIPS (DECstation 5000 series,
|
2002-10-14 17:34:41 +04:00
|
|
|
excluding the 5000/200) and Alpha (3000-series) systems.
|
|
|
|
The
|
2001-07-01 08:11:13 +04:00
|
|
|
.Nm
|
|
|
|
is memory-mapped into the TURBOchannel system slot to interface up to
|
2002-10-14 17:34:41 +04:00
|
|
|
sixteen I/O devices.
|
|
|
|
It connects the TURBOchannel to a 16-bit wide I/O bus and supplies
|
|
|
|
various control signals to the devices that share this bus.
|
2001-07-01 08:11:13 +04:00
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Nm
|
2002-10-14 17:34:41 +04:00
|
|
|
provides hardware DMA channels and interrupt support.
|
|
|
|
DMA transfers are between one and four 32-bit words (16 bytes) in
|
|
|
|
length, depending on the device.
|
|
|
|
The
|
2001-07-01 08:11:13 +04:00
|
|
|
.Nm
|
2002-10-14 17:34:41 +04:00
|
|
|
stores the data in internal data registers.
|
|
|
|
The data is transferred to and from the registers in 16-bit words
|
|
|
|
to the device.
|
|
|
|
Various interrupts are signalled on DMA pointer-related conditions.
|
2001-07-01 08:11:13 +04:00
|
|
|
.Sh DATA TYPES
|
|
|
|
Drivers for devices attached to the
|
|
|
|
.Nm
|
|
|
|
will make use of the following data types:
|
|
|
|
.Bl -tag -width compact
|
|
|
|
.It Fa struct ioasicdev_attach_args
|
|
|
|
A structure used to inform the driver of the
|
|
|
|
.Nm
|
2002-10-14 17:34:41 +04:00
|
|
|
device properties.
|
|
|
|
It contains the following members:
|
2001-07-01 08:11:13 +04:00
|
|
|
.Bd -literal
|
|
|
|
char iada_modname
|
|
|
|
tc_offset_t iada_offset
|
|
|
|
tc_addr_t iada_addr
|
|
|
|
void *iada_cookie;
|
|
|
|
.Ed
|
|
|
|
.It Fa struct ioasic_softc
|
|
|
|
The parent structure which contains at the following members which are
|
|
|
|
useful for drivers:
|
|
|
|
.Bd -literal
|
|
|
|
bus_space_tag_t sc_bst;
|
|
|
|
bus_space_handle_t sc_bsh;
|
|
|
|
bus_dma_tag_t sc_dmat;
|
|
|
|
.Ed
|
|
|
|
.It Fa struct ioasic_dev
|
|
|
|
A structure describing the machine-dependent devices attached to the
|
|
|
|
.Nm
|
|
|
|
containing the following members:
|
|
|
|
.Bd -literal
|
|
|
|
char *iad_modname;
|
|
|
|
tc_offset_t iad_offset;
|
|
|
|
void *iad_cookie;
|
2005-12-26 22:40:14 +03:00
|
|
|
uint32_t iad_intrbits;
|
2001-07-01 08:11:13 +04:00
|
|
|
.Ed
|
|
|
|
.El
|
|
|
|
.Sh FUNCTIONS
|
|
|
|
.Bl -tag -width compact
|
|
|
|
.It Fn ioasic_intr_establish "dev" "cookie" "level" "handler" "arg"
|
|
|
|
Establish an interrupt handler with device
|
|
|
|
.Fa dev
|
|
|
|
for the interrupt described completely by
|
|
|
|
.Fa cookie .
|
|
|
|
The priority of the interrupt is specified by
|
|
|
|
.Fa level .
|
|
|
|
When the interrupt occurs the function
|
|
|
|
.Fa handler
|
|
|
|
is called with argument
|
|
|
|
.Fa arg .
|
|
|
|
.It Fn ioasic_intr_disestablish "dev" "cookie"
|
|
|
|
Dis-establish the interrupt handler with device
|
|
|
|
.Fa dev
|
|
|
|
for the interrupt described complete ly
|
|
|
|
.Fa cookie .
|
|
|
|
.It Fn ioasic_intr_evcnt "dev" "cookie"
|
|
|
|
Do interrupt event counting with device
|
|
|
|
.Fa dev
|
|
|
|
for the event described completely by
|
|
|
|
.Fa cookie .
|
|
|
|
.It Fn ioasic_attach_devs "sc" "ioasic_devs" "ioasic_ndevs"
|
|
|
|
Configure each of the
|
|
|
|
.Fa ioasic_ndevs
|
|
|
|
devices in
|
|
|
|
.Fa ioasic_devs .
|
|
|
|
.It Fn ioasic_submatch "match" "ia"
|
|
|
|
Check that the device offset is not OASIC_OFFSET_UNKNOWN.
|
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fn ioasic_intr_establish ,
|
|
|
|
.Fn ioasic_intr_disestablish ,
|
|
|
|
and
|
|
|
|
.Fn ioasic_intr_evcnt
|
|
|
|
functions are likely to used by all
|
|
|
|
.Nm
|
2002-10-14 17:34:41 +04:00
|
|
|
device drivers.
|
|
|
|
The
|
2001-07-01 08:11:13 +04:00
|
|
|
.Fn ioasic_attach_devs
|
|
|
|
function is used by ioasic driver internally and is of interest to
|
|
|
|
driver writers because it must be aware of your device for it to be
|
|
|
|
found during autoconfiguration.
|
|
|
|
.Sh AUTOCONFIGURATION
|
2002-10-14 17:34:41 +04:00
|
|
|
The IOASIC is a direct-connection bus.
|
|
|
|
During autoconfiguration, machine-dependent code will provide an array of
|
2001-07-01 08:11:13 +04:00
|
|
|
.Fa struct ioasic_devs
|
|
|
|
describing devices attached to the
|
|
|
|
.Nm
|
2002-10-14 17:34:41 +04:00
|
|
|
to be used by the ioasic driver.
|
|
|
|
The ioasic driver will pass this array to
|
2001-07-01 08:11:13 +04:00
|
|
|
.Fn ioasic_attach_devs
|
|
|
|
to attach the drivers with the devices.
|
|
|
|
.Pp
|
|
|
|
Drivers match the device using
|
|
|
|
.Fa iada_modname .
|
|
|
|
.Pp
|
|
|
|
During attach, all drivers should use the parent's bus_space and
|
|
|
|
bus_dma resources, and map the appropriate bus_space region using
|
|
|
|
.Fn bus_space_subregion
|
|
|
|
with
|
2001-09-04 07:00:46 +04:00
|
|
|
.Fa iada_offset .
|
2001-07-01 08:11:13 +04:00
|
|
|
.Sh DMA SUPPORT
|
|
|
|
No additional support is provided for
|
|
|
|
.Nm
|
|
|
|
DMA beyond the facilities provided by the
|
|
|
|
.Xr bus_dma 9
|
|
|
|
interface.
|
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
provides two pairs of DMA address pointers (transmitting and
|
2002-10-14 17:34:41 +04:00
|
|
|
receiving) for each DMA-capable device.
|
|
|
|
The pair of address pointers point to consecutive (but not necessarily
|
|
|
|
contiguous) DMA blocks of size IOASIC_DMA_BLOCKSIZE.
|
|
|
|
Upon successful transfer of the first block, DMA continues to the next
|
|
|
|
block and an interrupt is posted to signal an address pointer update.
|
|
|
|
DMA transfers are enabled and disabled by bits inside the
|
2001-07-01 08:11:13 +04:00
|
|
|
.Nm
|
|
|
|
status (CSR) register.
|
|
|
|
.Pp
|
|
|
|
The interrupt handler must update the address pointers to point to the
|
2002-10-14 17:34:41 +04:00
|
|
|
next block in the DMA transfer.
|
|
|
|
The address pointer update must be completed before the completion of
|
|
|
|
the second DMA block, otherwise a DMA overrun error condition will occur.
|
2001-07-01 08:11:13 +04:00
|
|
|
.Sh CODE REFERENCES
|
|
|
|
The IOASIC subsystem itself is implemented within the file
|
|
|
|
.Pa sys/dev/tc/ioasic_subr.c .
|
|
|
|
Machine-dependent portions can be found in
|
2017-07-04 00:28:48 +03:00
|
|
|
.Pa sys/arch/<arch>/tc/ioasic.c .
|
2001-07-01 08:11:13 +04:00
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr ioasic 4 ,
|
|
|
|
.Xr autoconf 9 ,
|
|
|
|
.Xr bus_dma 9 ,
|
|
|
|
.Xr bus_space 9 ,
|
2001-09-09 08:23:19 +04:00
|
|
|
.Xr driver 9
|