Make audio(9) get_props() optional, remove it from duplex drivers
authorkn <kn@openbsd.org>
Wed, 26 Oct 2022 20:19:06 +0000 (20:19 +0000)
committerkn <kn@openbsd.org>
Wed, 26 Oct 2022 20:19:06 +0000 (20:19 +0000)
commitcc5bdd413dc6810be27950ffc92a3e2dad4ebdcb
tree965f73c510b09f9b9d932f87bf387d2bad684a58
parent819299a5ff1b0a119f271466b98bf31064a6e4a0
Make audio(9) get_props() optional, remove it from duplex drivers

The property bits of audio(9) are obsolete and ought to be removed
completely.

sys/dev/audio.c:audio_open() currently uses get_props() to bail out if
read *and* write was requested on a non-duplex driver.

Drivers that currently support playing but not recording need adjustment
before the API can be cleaned up.

Drivers that advertise themselves as full duplex, i.e. those that always
return AUDIO_PROP_FULLDUPLEX unconditionally in their get_props() currently
always succeed this check.

As this is the only property, losen audio_open()'s DIAGNOSTIC check and only
do the duplex check if the driver provides get_props().

This allows for simple removal of get_props() from full-duplex drivers
without adding any other code or without changing functionality.

This includes all audio drivers under sys/dev/pci/ (maestro(4) being the
only unfinished exception here).

Other drivers as well as the API change can then follow in smaller diffs.

This builds on amd64, arm64, i386, macppc and sparc64.
amd64 with azalia(4) still plays, records as well as plays and records
at the same time on my X230 as tested with

        $ aucat -i play.wav [-o rec.wav]

alpha and hppa tests by miod
OK ratchov miod
35 files changed:
sys/arch/hppa/gsc/harmony.c
sys/arch/macppc/dev/aoa.c
sys/arch/macppc/dev/awacs.c
sys/arch/macppc/dev/daca.c
sys/arch/macppc/dev/i2s.c
sys/arch/macppc/dev/i2svar.h
sys/arch/macppc/dev/onyx.c
sys/arch/macppc/dev/snapper.c
sys/arch/macppc/dev/tumbler.c
sys/arch/sparc64/dev/ce4231.c
sys/dev/audio.c
sys/dev/ic/am7930.c
sys/dev/ic/am7930var.h
sys/dev/pci/auacer.c
sys/dev/pci/auglx.c
sys/dev/pci/auich.c
sys/dev/pci/auixp.c
sys/dev/pci/autri.c
sys/dev/pci/auvia.c
sys/dev/pci/azalia.c
sys/dev/pci/cmpci.c
sys/dev/pci/cs4280.c
sys/dev/pci/cs4281.c
sys/dev/pci/eap.c
sys/dev/pci/emuxki.c
sys/dev/pci/envy.c
sys/dev/pci/esa.c
sys/dev/pci/eso.c
sys/dev/pci/fms.c
sys/dev/pci/neo.c
sys/dev/pci/sv.c
sys/dev/pci/yds.c
sys/dev/sbus/cs4231.c
sys/dev/tc/bba.c
sys/dev/usb/uaudio.c