spkr_audio.c revision 1.4 1 1.4 nat /* $NetBSD: spkr_audio.c,v 1.4 2017/06/11 03:25:02 nat Exp $ */
2 1.1 christos
3 1.1 christos /*-
4 1.1 christos * Copyright (c) 2016 Nathanial Sloss <nathanialsloss (at) yahoo.com.au>
5 1.1 christos * All rights reserved.
6 1.1 christos *
7 1.1 christos * Redistribution and use in source and binary forms, with or without
8 1.1 christos * modification, are permitted provided that the following conditions
9 1.1 christos * are met:
10 1.1 christos * 1. Redistributions of source code must retain the above copyright
11 1.1 christos * notice, this list of conditions and the following disclaimer.
12 1.1 christos * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 christos * notice, this list of conditions and the following disclaimer in the
14 1.1 christos * documentation and/or other materials provided with the distribution.
15 1.1 christos *
16 1.1 christos * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17 1.1 christos * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 1.1 christos * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 1.1 christos * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20 1.1 christos * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 1.1 christos * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 1.1 christos * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 1.1 christos * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 1.1 christos * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 1.1 christos * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 1.1 christos * POSSIBILITY OF SUCH DAMAGE.
27 1.1 christos */
28 1.1 christos
29 1.1 christos #include <sys/cdefs.h>
30 1.4 nat __KERNEL_RCSID(0, "$NetBSD: spkr_audio.c,v 1.4 2017/06/11 03:25:02 nat Exp $");
31 1.1 christos
32 1.1 christos #include <sys/param.h>
33 1.1 christos #include <sys/systm.h>
34 1.1 christos #include <sys/kernel.h>
35 1.1 christos #include <sys/errno.h>
36 1.1 christos #include <sys/device.h>
37 1.1 christos #include <sys/malloc.h>
38 1.1 christos #include <sys/uio.h>
39 1.1 christos #include <sys/proc.h>
40 1.1 christos #include <sys/ioctl.h>
41 1.1 christos #include <sys/conf.h>
42 1.1 christos #include <sys/sysctl.h>
43 1.1 christos #include <dev/audio_if.h>
44 1.1 christos #include <dev/audiovar.h>
45 1.1 christos
46 1.1 christos #include <dev/audiobellvar.h>
47 1.1 christos
48 1.1 christos #include <dev/spkrvar.h>
49 1.1 christos #include <dev/spkrio.h>
50 1.1 christos
51 1.1 christos static int spkr_audio_probe(device_t, cfdata_t, void *);
52 1.1 christos static void spkr_audio_attach(device_t, device_t, void *);
53 1.1 christos static int spkr_audio_detach(device_t, int);
54 1.1 christos
55 1.1 christos struct spkr_audio_softc {
56 1.1 christos struct spkr_softc sc_spkr;
57 1.1 christos device_t sc_audiodev;
58 1.1 christos };
59 1.1 christos
60 1.1 christos CFATTACH_DECL_NEW(spkr_audio, sizeof(struct spkr_audio_softc),
61 1.1 christos spkr_audio_probe, spkr_audio_attach, spkr_audio_detach, NULL);
62 1.1 christos
63 1.1 christos static void
64 1.1 christos spkr_audio_tone(device_t self, u_int xhz, u_int ticks)
65 1.1 christos {
66 1.1 christos struct spkr_audio_softc *sc = device_private(self);
67 1.1 christos
68 1.1 christos #ifdef SPKRDEBUG
69 1.1 christos aprint_debug_dev(self, "%s: %u %d\n", __func__, xhz, ticks);
70 1.1 christos #endif /* SPKRDEBUG */
71 1.1 christos audiobell(sc->sc_audiodev, xhz, ticks * (1000 / hz), 80, 0);
72 1.1 christos }
73 1.1 christos
74 1.1 christos static void
75 1.1 christos spkr_audio_rest(device_t self, int ticks)
76 1.1 christos {
77 1.1 christos struct spkr_audio_softc *sc = device_private(self);
78 1.1 christos
79 1.1 christos #ifdef SPKRDEBUG
80 1.1 christos aprint_debug_dev(self, "%s: %d\n", __func__, ticks);
81 1.1 christos #endif /* SPKRDEBUG */
82 1.1 christos if (ticks > 0)
83 1.1 christos audiobell(sc->sc_audiodev, 0, ticks * (1000 / hz), 80, 0);
84 1.1 christos }
85 1.1 christos
86 1.1 christos static int
87 1.1 christos spkr_audio_probe(device_t parent, cfdata_t cf, void *aux)
88 1.1 christos {
89 1.1 christos
90 1.1 christos return 1;
91 1.1 christos }
92 1.1 christos
93 1.1 christos static void
94 1.1 christos spkr_audio_attach(device_t parent, device_t self, void *aux)
95 1.1 christos {
96 1.1 christos struct spkr_audio_softc *sc = device_private(self);
97 1.1 christos
98 1.1 christos aprint_naive("\n");
99 1.1 christos aprint_normal(": PC Speaker (synthesized)\n");
100 1.1 christos
101 1.1 christos sc->sc_audiodev = parent;
102 1.1 christos
103 1.1 christos if (!pmf_device_register(self, NULL, NULL))
104 1.1 christos aprint_error_dev(self, "couldn't establish power handler\n");
105 1.1 christos
106 1.1 christos spkr_attach(self, spkr_audio_tone, spkr_audio_rest);
107 1.1 christos }
108 1.1 christos
109 1.1 christos static int
110 1.1 christos spkr_audio_detach(device_t self, int flags)
111 1.1 christos {
112 1.3 pgoyette int error;
113 1.3 pgoyette
114 1.3 pgoyette if ((error = spkr_detach(self, flags)) != 0)
115 1.3 pgoyette return error;
116 1.1 christos
117 1.1 christos pmf_device_deregister(self);
118 1.1 christos
119 1.1 christos return 0;
120 1.1 christos }
121