2021-04-03 07:10:30 +03:00
|
|
|
/* $NetBSD: spkr_audio.c,v 1.11 2021/04/03 04:10:30 isaki Exp $ */
|
2016-12-08 14:31:08 +03:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2016 Nathanial Sloss <nathanialsloss@yahoo.com.au>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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>
|
2021-04-03 07:10:30 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: spkr_audio.c,v 1.11 2021/04/03 04:10:30 isaki Exp $");
|
2016-12-08 14:31:08 +03:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
2021-02-17 15:37:33 +03:00
|
|
|
#include <sys/audioio.h>
|
2016-12-08 14:31:08 +03:00
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
|
2021-02-17 15:37:33 +03:00
|
|
|
#include <dev/audio/audiovar.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/audiobellvar.h>
|
2016-12-08 14:31:08 +03:00
|
|
|
|
|
|
|
#include <dev/spkrvar.h>
|
2016-12-09 07:32:39 +03:00
|
|
|
#include <dev/spkrio.h>
|
2016-12-08 14:31:08 +03:00
|
|
|
|
2016-12-15 07:36:07 +03:00
|
|
|
static int spkr_audio_probe(device_t, cfdata_t, void *);
|
|
|
|
static void spkr_audio_attach(device_t, device_t, void *);
|
|
|
|
static int spkr_audio_detach(device_t, int);
|
2017-06-12 00:54:22 +03:00
|
|
|
static int spkr_audio_rescan(device_t, const char *, const int *);
|
|
|
|
static void spkr_audio_childdet(device_t, device_t);
|
2016-12-13 23:20:34 +03:00
|
|
|
|
2016-12-15 07:36:07 +03:00
|
|
|
struct spkr_audio_softc {
|
2016-12-13 23:20:34 +03:00
|
|
|
struct spkr_softc sc_spkr;
|
|
|
|
device_t sc_audiodev;
|
|
|
|
};
|
2016-12-08 14:31:08 +03:00
|
|
|
|
2017-06-12 00:54:22 +03:00
|
|
|
CFATTACH_DECL3_NEW(spkr_audio, sizeof(struct spkr_audio_softc),
|
|
|
|
spkr_audio_probe, spkr_audio_attach, spkr_audio_detach, NULL,
|
|
|
|
spkr_audio_rescan, spkr_audio_childdet, 0);
|
2016-12-08 14:31:08 +03:00
|
|
|
|
2016-12-13 23:20:34 +03:00
|
|
|
static void
|
2016-12-15 07:36:07 +03:00
|
|
|
spkr_audio_tone(device_t self, u_int xhz, u_int ticks)
|
2016-12-08 14:31:08 +03:00
|
|
|
{
|
2016-12-15 07:36:07 +03:00
|
|
|
struct spkr_audio_softc *sc = device_private(self);
|
2016-12-13 23:20:34 +03:00
|
|
|
|
|
|
|
#ifdef SPKRDEBUG
|
2021-04-03 06:21:53 +03:00
|
|
|
device_printf(self, "%s: %u %u\n", __func__, xhz, ticks);
|
2016-12-13 23:20:34 +03:00
|
|
|
#endif /* SPKRDEBUG */
|
2016-12-08 14:31:08 +03:00
|
|
|
|
2021-04-03 07:10:30 +03:00
|
|
|
if (xhz == 0 || ticks == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
audiobell(sc->sc_audiodev, xhz, hztoms(ticks), sc->sc_spkr.sc_vol, 0);
|
2016-12-13 23:20:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2016-12-15 07:36:07 +03:00
|
|
|
spkr_audio_probe(device_t parent, cfdata_t cf, void *aux)
|
2016-12-08 14:31:08 +03:00
|
|
|
{
|
2021-02-17 15:37:33 +03:00
|
|
|
struct audio_softc *asc = device_private(parent);
|
2016-12-13 23:20:34 +03:00
|
|
|
|
2021-02-17 15:37:33 +03:00
|
|
|
if ((asc->sc_props & AUDIO_PROP_PLAYBACK))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
2016-12-08 14:31:08 +03:00
|
|
|
}
|
|
|
|
|
2016-12-09 07:32:39 +03:00
|
|
|
static void
|
2016-12-15 07:36:07 +03:00
|
|
|
spkr_audio_attach(device_t parent, device_t self, void *aux)
|
2016-12-08 14:31:08 +03:00
|
|
|
{
|
2016-12-15 07:36:07 +03:00
|
|
|
struct spkr_audio_softc *sc = device_private(self);
|
2016-12-08 14:31:08 +03:00
|
|
|
|
2016-12-15 01:30:42 +03:00
|
|
|
aprint_naive("\n");
|
|
|
|
aprint_normal(": PC Speaker (synthesized)\n");
|
2016-12-13 23:20:34 +03:00
|
|
|
|
|
|
|
sc->sc_audiodev = parent;
|
2017-06-11 06:33:48 +03:00
|
|
|
sc->sc_spkr.sc_vol = 80;
|
2016-12-08 14:31:08 +03:00
|
|
|
|
|
|
|
if (!pmf_device_register(self, NULL, NULL))
|
|
|
|
aprint_error_dev(self, "couldn't establish power handler\n");
|
2016-12-13 23:20:34 +03:00
|
|
|
|
2021-04-03 07:10:30 +03:00
|
|
|
spkr_attach(self, spkr_audio_tone);
|
2016-12-08 14:31:08 +03:00
|
|
|
}
|
|
|
|
|
2016-12-09 07:32:39 +03:00
|
|
|
static int
|
2016-12-15 07:36:07 +03:00
|
|
|
spkr_audio_detach(device_t self, int flags)
|
2016-12-08 14:31:08 +03:00
|
|
|
{
|
2017-01-06 12:32:08 +03:00
|
|
|
int error;
|
|
|
|
|
|
|
|
if ((error = spkr_detach(self, flags)) != 0)
|
|
|
|
return error;
|
2016-12-08 14:31:08 +03:00
|
|
|
|
|
|
|
pmf_device_deregister(self);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2017-06-12 00:54:22 +03:00
|
|
|
|
|
|
|
static int
|
|
|
|
spkr_audio_rescan(device_t self, const char *iattr, const int *locators)
|
|
|
|
{
|
|
|
|
|
|
|
|
return spkr_rescan(self, iattr, locators);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
spkr_audio_childdet(device_t self, device_t child)
|
|
|
|
{
|
|
|
|
|
|
|
|
spkr_childdet(self, child);
|
|
|
|
}
|