Merge isaki-audio2 branch, the overhaul of audio subsystem.
- Interrupt-oriented system rather than thread-oriented.
- Improve stability, quality and performance.
- Split playback and record cleanly. Improve halfduplex support.
- Many bugs are fixed including deadlocks, resource leaks, abuses, etc.
- Simplify audio filter mechanism. The encoding/channels/frequency
conversions are completely handled in the upper layer. So the hard-
ware driver only converts its hardware encoding (if necessary).
- audio_hw_if changes:
- Obsoletes query_encoding and add query_format instead.
- Obsoletes set_params and add set_format instead.
- Remove drain, setfd, mappage.
- The call sequences are changed.
- ioctl AUDIO_GETFD/SETFD, AUDIO_GETCHAN/SETCHAN are obsoleted.
- ioctl AUDIO_{QUERY,GET,SET}FORMAT are introduced.
- cleanup config attributes: au*conv and mulaw.
- All hardware drivers should follow it (I've done as much as possible).
Some file paths are changed:
- dev/audio.c -> dev/audio/audio.c (rewritten)
- dev/audiovar.h -> dev/audio/audiovar.h
- dev/audio_dai.h -> dev/audio/audio_dai.h
- dev/audio_if.h -> dev/audio/audio_if.h
- dev/audiobell.c -> dev/audio/audiobell.c
- dev/audiobellvar.h -> dev/audio/audiobellvar.h
- dev/mulaw.[ch] -> dev/audio/mulaw.[ch] + dev/audio/alaw.c
2019-05-08 16:40:13 +03:00
|
|
|
/* $NetBSD: wss_isapnp.c,v 1.28 2019/05/08 13:40:18 isaki Exp $ */
|
1998-06-30 21:28:00 +04:00
|
|
|
|
|
|
|
/*
|
1999-03-22 12:43:12 +03:00
|
|
|
* Copyright (c) 1997, 1999 The NetBSD Foundation, Inc.
|
1998-06-30 21:28:00 +04:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
1998-11-26 01:17:06 +03:00
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
2003-12-04 16:57:30 +03:00
|
|
|
* by Lennart Augustsson (augustss@NetBSD.org).
|
1998-06-30 21:28:00 +04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2001-11-13 10:56:39 +03:00
|
|
|
#include <sys/cdefs.h>
|
Merge isaki-audio2 branch, the overhaul of audio subsystem.
- Interrupt-oriented system rather than thread-oriented.
- Improve stability, quality and performance.
- Split playback and record cleanly. Improve halfduplex support.
- Many bugs are fixed including deadlocks, resource leaks, abuses, etc.
- Simplify audio filter mechanism. The encoding/channels/frequency
conversions are completely handled in the upper layer. So the hard-
ware driver only converts its hardware encoding (if necessary).
- audio_hw_if changes:
- Obsoletes query_encoding and add query_format instead.
- Obsoletes set_params and add set_format instead.
- Remove drain, setfd, mappage.
- The call sequences are changed.
- ioctl AUDIO_GETFD/SETFD, AUDIO_GETCHAN/SETCHAN are obsoleted.
- ioctl AUDIO_{QUERY,GET,SET}FORMAT are introduced.
- cleanup config attributes: au*conv and mulaw.
- All hardware drivers should follow it (I've done as much as possible).
Some file paths are changed:
- dev/audio.c -> dev/audio/audio.c (rewritten)
- dev/audiovar.h -> dev/audio/audiovar.h
- dev/audio_dai.h -> dev/audio/audio_dai.h
- dev/audio_if.h -> dev/audio/audio_if.h
- dev/audiobell.c -> dev/audio/audiobell.c
- dev/audiobellvar.h -> dev/audio/audiobellvar.h
- dev/mulaw.[ch] -> dev/audio/mulaw.[ch] + dev/audio/alaw.c
2019-05-08 16:40:13 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: wss_isapnp.c,v 1.28 2019/05/08 13:40:18 isaki Exp $");
|
2001-11-13 10:56:39 +03:00
|
|
|
|
1998-06-30 21:28:00 +04:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/device.h>
|
1998-08-26 02:35:25 +04:00
|
|
|
#include <sys/errno.h>
|
1998-06-30 21:28:00 +04:00
|
|
|
|
2007-10-19 15:59:34 +04:00
|
|
|
#include <sys/bus.h>
|
1998-06-30 21:28:00 +04:00
|
|
|
|
|
|
|
#include <sys/audioio.h>
|
Merge isaki-audio2 branch, the overhaul of audio subsystem.
- Interrupt-oriented system rather than thread-oriented.
- Improve stability, quality and performance.
- Split playback and record cleanly. Improve halfduplex support.
- Many bugs are fixed including deadlocks, resource leaks, abuses, etc.
- Simplify audio filter mechanism. The encoding/channels/frequency
conversions are completely handled in the upper layer. So the hard-
ware driver only converts its hardware encoding (if necessary).
- audio_hw_if changes:
- Obsoletes query_encoding and add query_format instead.
- Obsoletes set_params and add set_format instead.
- Remove drain, setfd, mappage.
- The call sequences are changed.
- ioctl AUDIO_GETFD/SETFD, AUDIO_GETCHAN/SETCHAN are obsoleted.
- ioctl AUDIO_{QUERY,GET,SET}FORMAT are introduced.
- cleanup config attributes: au*conv and mulaw.
- All hardware drivers should follow it (I've done as much as possible).
Some file paths are changed:
- dev/audio.c -> dev/audio/audio.c (rewritten)
- dev/audiovar.h -> dev/audio/audiovar.h
- dev/audio_dai.h -> dev/audio/audio_dai.h
- dev/audio_if.h -> dev/audio/audio_if.h
- dev/audiobell.c -> dev/audio/audiobell.c
- dev/audiobellvar.h -> dev/audio/audiobellvar.h
- dev/mulaw.[ch] -> dev/audio/mulaw.[ch] + dev/audio/alaw.c
2019-05-08 16:40:13 +03:00
|
|
|
#include <dev/audio/audio_if.h>
|
1998-06-30 21:28:00 +04:00
|
|
|
|
|
|
|
#include <dev/isa/isavar.h>
|
|
|
|
#include <dev/isa/isadmavar.h>
|
|
|
|
|
|
|
|
#include <dev/isapnp/isapnpreg.h>
|
|
|
|
#include <dev/isapnp/isapnpvar.h>
|
1998-07-23 23:30:44 +04:00
|
|
|
#include <dev/isapnp/isapnpdevs.h>
|
1998-06-30 21:28:00 +04:00
|
|
|
|
|
|
|
#include <dev/isa/ad1848var.h>
|
|
|
|
#include <dev/isa/madreg.h>
|
|
|
|
#include <dev/isa/wssreg.h>
|
|
|
|
#include <dev/isa/wssvar.h>
|
1999-03-22 12:43:12 +03:00
|
|
|
#include <dev/isa/sbreg.h>
|
1998-06-30 21:28:00 +04:00
|
|
|
|
2009-05-12 14:16:35 +04:00
|
|
|
int wss_isapnp_match(device_t, cfdata_t, void *);
|
|
|
|
void wss_isapnp_attach(device_t, device_t, void *);
|
1998-06-30 21:28:00 +04:00
|
|
|
|
2011-06-02 18:12:24 +04:00
|
|
|
CFATTACH_DECL_NEW(wss_isapnp, sizeof(struct wss_softc),
|
2002-10-02 20:33:28 +04:00
|
|
|
wss_isapnp_match, wss_isapnp_attach, NULL, NULL);
|
1998-06-30 21:28:00 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Probe / attach routines.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Probe for the WSS hardware.
|
|
|
|
*/
|
|
|
|
int
|
2009-05-12 14:16:35 +04:00
|
|
|
wss_isapnp_match(device_t parent, cfdata_t match, void *aux)
|
1998-06-30 21:28:00 +04:00
|
|
|
{
|
1999-03-22 13:00:09 +03:00
|
|
|
int pri, variant;
|
1999-03-22 12:43:12 +03:00
|
|
|
|
1999-03-22 13:00:09 +03:00
|
|
|
pri = isapnp_devmatch(aux, &isapnp_wss_devinfo, &variant);
|
|
|
|
if (pri && variant > 1)
|
|
|
|
pri = 0;
|
2005-01-13 18:14:03 +03:00
|
|
|
return pri;
|
1998-06-30 21:28:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attach hardware to driver, attach hardware driver to audio
|
|
|
|
* pseudo-device driver.
|
|
|
|
*/
|
|
|
|
void
|
2009-05-12 14:16:35 +04:00
|
|
|
wss_isapnp_attach(device_t parent, device_t self, void *aux)
|
1998-06-30 21:28:00 +04:00
|
|
|
{
|
2005-01-13 18:14:03 +03:00
|
|
|
struct wss_softc *sc;
|
|
|
|
struct ad1848_softc *ac;
|
|
|
|
struct isapnp_attach_args *ipa;
|
1999-03-22 12:43:12 +03:00
|
|
|
int variant;
|
1998-06-30 21:28:00 +04:00
|
|
|
|
2006-03-29 10:51:47 +04:00
|
|
|
sc = device_private(self);
|
2005-01-13 18:14:03 +03:00
|
|
|
ac = &sc->sc_ad1848.sc_ad1848;
|
2011-06-02 18:12:24 +04:00
|
|
|
ac->sc_dev = self;
|
2005-01-13 18:14:03 +03:00
|
|
|
ipa = aux;
|
1998-06-30 21:28:00 +04:00
|
|
|
printf("\n");
|
|
|
|
|
1999-03-22 12:43:12 +03:00
|
|
|
if (!isapnp_devmatch(aux, &isapnp_wss_devinfo, &variant)) {
|
2008-04-09 00:08:49 +04:00
|
|
|
aprint_error_dev(self, "match failed?\n");
|
1999-03-22 12:43:12 +03:00
|
|
|
return;
|
|
|
|
}
|
2005-01-13 18:14:03 +03:00
|
|
|
|
1998-06-30 21:28:00 +04:00
|
|
|
if (isapnp_config(ipa->ipa_iot, ipa->ipa_memt, ipa)) {
|
2008-04-09 00:08:49 +04:00
|
|
|
aprint_error_dev(self, "error in region allocation\n");
|
1998-06-30 21:28:00 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1999-03-22 12:43:12 +03:00
|
|
|
switch (variant) {
|
|
|
|
case 1:
|
|
|
|
/* We have to put the chip into `WSS mode'. */
|
|
|
|
{
|
|
|
|
bus_space_tag_t iot;
|
|
|
|
bus_space_handle_t ioh;
|
|
|
|
|
|
|
|
iot = ipa->ipa_iot;
|
|
|
|
ioh = ipa->ipa_io[0].h;
|
|
|
|
|
|
|
|
while (bus_space_read_1(iot, ioh,
|
|
|
|
SBP_DSP_WSTAT) & SB_DSP_BUSY);
|
|
|
|
bus_space_write_1(iot, ioh, SBP_DSP_WRITE, 0x09);
|
|
|
|
while (bus_space_read_1(iot, ioh,
|
|
|
|
SBP_DSP_WSTAT) & SB_DSP_BUSY);
|
|
|
|
bus_space_write_1(iot, ioh, SBP_DSP_WRITE, 0x00);
|
|
|
|
while (bus_space_read_1(iot, ioh,
|
|
|
|
SBP_DSP_WSTAT) & SB_DSP_BUSY);
|
|
|
|
|
|
|
|
delay(1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
sc->sc_iot = ipa->ipa_iot;
|
2005-01-13 18:14:03 +03:00
|
|
|
sc->sc_ioh = ipa->ipa_io[2].h;
|
1999-03-22 12:43:12 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
sc->sc_iot = ipa->ipa_iot;
|
|
|
|
sc->sc_ioh = ipa->ipa_io[0].h;
|
|
|
|
break;
|
|
|
|
}
|
1998-06-30 21:28:00 +04:00
|
|
|
|
1999-03-22 12:43:12 +03:00
|
|
|
sc->mad_chip_type = MAD_NONE;
|
1998-06-30 21:28:00 +04:00
|
|
|
|
|
|
|
/* Set up AD1848 I/O handle. */
|
1999-03-22 12:43:12 +03:00
|
|
|
ac->sc_iot = sc->sc_iot;
|
1998-08-26 02:35:25 +04:00
|
|
|
ac->sc_ioh = sc->sc_ioh;
|
|
|
|
|
1999-03-22 12:43:12 +03:00
|
|
|
sc->sc_ad1848.sc_ic = ipa->ipa_ic;
|
1998-06-30 21:28:00 +04:00
|
|
|
|
1999-03-22 12:43:12 +03:00
|
|
|
sc->wss_ic = ipa->ipa_ic;
|
1998-06-30 21:28:00 +04:00
|
|
|
sc->wss_irq = ipa->ipa_irq[0].num;
|
1999-02-23 12:14:05 +03:00
|
|
|
sc->wss_playdrq = ipa->ipa_drq[0].num;
|
2005-01-13 18:14:03 +03:00
|
|
|
sc->wss_recdrq =
|
1999-03-22 12:43:12 +03:00
|
|
|
ipa->ipa_ndrq > 1 ? ipa->ipa_drq[1].num : ipa->ipa_drq[0].num;
|
1998-06-30 21:28:00 +04:00
|
|
|
|
1998-08-26 02:35:25 +04:00
|
|
|
if (!ad1848_isa_probe(&sc->sc_ad1848)) {
|
2008-04-09 00:08:49 +04:00
|
|
|
aprint_error_dev(self, "ad1848_probe failed\n");
|
1998-06-30 21:28:00 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-04-09 00:08:49 +04:00
|
|
|
aprint_error_dev(self, "%s %s", ipa->ipa_devident,
|
1999-03-22 12:43:12 +03:00
|
|
|
ipa->ipa_devclass);
|
1998-06-30 21:28:00 +04:00
|
|
|
|
2011-11-22 23:33:38 +04:00
|
|
|
ac->mode = 2;
|
|
|
|
|
1998-06-30 21:28:00 +04:00
|
|
|
wssattach(sc);
|
1999-09-06 22:31:45 +04:00
|
|
|
|
|
|
|
/* set up OPL I/O handle for ISAPNP boards w/o MAD */
|
|
|
|
if (ipa->ipa_nio > 1 && sc->mad_chip_type == MAD_NONE) {
|
|
|
|
struct audio_attach_args arg;
|
|
|
|
|
|
|
|
sc->sc_opl_ioh = ipa->ipa_io[1].h;
|
|
|
|
|
|
|
|
arg.type = AUDIODEV_TYPE_OPL;
|
|
|
|
arg.hwif = 0;
|
|
|
|
arg.hdl = 0;
|
2011-06-02 18:12:24 +04:00
|
|
|
(void)config_found(self, &arg, audioprint);
|
1999-09-06 22:31:45 +04:00
|
|
|
}
|
1998-06-30 21:28:00 +04:00
|
|
|
}
|