xref: /freebsd/sys/dev/speaker/spkr.c (revision c83d83206a39c7c47139acac46885bea54ee4876)
186cb007fSWarner Losh /*-
2e614aa8aSAndrey A. Chernov  * spkr.c -- device driver for console speaker
35b81b6b3SRodney W. Grimes  *
4e614aa8aSAndrey A. Chernov  * v1.4 by Eric S. Raymond (esr@snark.thyrsus.com) Aug 1993
5e614aa8aSAndrey A. Chernov  * modified for FreeBSD by Andrew A. Chernov <ache@astral.msk.su>
630201b6cSMatthew N. Dodd  * modified for PC98 by Kakefuda
75b81b6b3SRodney W. Grimes  */
85b81b6b3SRodney W. Grimes 
9f540b106SGarrett Wollman #include <sys/param.h>
10f540b106SGarrett Wollman #include <sys/systm.h>
11f540b106SGarrett Wollman #include <sys/kernel.h>
122a50a6d7SMike Smith #include <sys/module.h>
13f540b106SGarrett Wollman #include <sys/uio.h>
1487f6c662SJulian Elischer #include <sys/conf.h>
155b664c7cSPoul-Henning Kamp #include <sys/ctype.h>
16e4961fbfSPoul-Henning Kamp #include <sys/malloc.h>
17b5e8ce9fSBruce Evans #include <machine/clock.h>
186d8200ffSRuslan Ermilov #include <dev/speaker/speaker.h>
195b81b6b3SRodney W. Grimes 
2087f6c662SJulian Elischer static	d_open_t	spkropen;
2187f6c662SJulian Elischer static	d_close_t	spkrclose;
2287f6c662SJulian Elischer static	d_write_t	spkrwrite;
2387f6c662SJulian Elischer static	d_ioctl_t	spkrioctl;
2487f6c662SJulian Elischer 
254e2f199eSPoul-Henning Kamp static struct cdevsw spkr_cdevsw = {
26dc08ffecSPoul-Henning Kamp 	.d_version =	D_VERSION,
27dc08ffecSPoul-Henning Kamp 	.d_flags =	D_NEEDGIANT,
287ac40f5fSPoul-Henning Kamp 	.d_open =	spkropen,
297ac40f5fSPoul-Henning Kamp 	.d_close =	spkrclose,
307ac40f5fSPoul-Henning Kamp 	.d_write =	spkrwrite,
317ac40f5fSPoul-Henning Kamp 	.d_ioctl =	spkrioctl,
327ac40f5fSPoul-Henning Kamp 	.d_name =	"spkr",
334e2f199eSPoul-Henning Kamp };
348af5d536SJulian Elischer 
35959b7375SPoul-Henning Kamp static MALLOC_DEFINE(M_SPKR, "spkr", "Speaker buffer");
36e4961fbfSPoul-Henning Kamp 
37338c585eSPoul-Henning Kamp /*
38338c585eSPoul-Henning Kamp  **************** MACHINE DEPENDENT PART STARTS HERE *************************
395b81b6b3SRodney W. Grimes  * This section defines a function tone() which causes a tone of given
409275c7ccSBruce Evans  * frequency and duration from the ISA console speaker.
415b81b6b3SRodney W. Grimes  * Another function endtone() is defined to force sound off, and there is
425b81b6b3SRodney W. Grimes  * also a rest() entry point to do pauses.
435b81b6b3SRodney W. Grimes  *
445b81b6b3SRodney W. Grimes  * Audible sound is generated using the Programmable Interval Timer (PIT) and
459275c7ccSBruce Evans  * Programmable Peripheral Interface (PPI) attached to the ISA speaker. The
465b81b6b3SRodney W. Grimes  * PPI controls whether sound is passed through at all; the PIT's channel 2 is
475b81b6b3SRodney W. Grimes  * used to generate clicks (a square wave) of whatever frequency is desired.
485b81b6b3SRodney W. Grimes  */
495b81b6b3SRodney W. Grimes 
501e064bd4SAndrey A. Chernov #define SPKRPRI PSOCK
511e064bd4SAndrey A. Chernov static char endtone, endrest;
525b81b6b3SRodney W. Grimes 
53b2424ac0SBrian Somers static void tone(unsigned int thz, unsigned int centisecs);
54b2424ac0SBrian Somers static void rest(int centisecs);
5589c9a483SAlfred Perlstein static void playinit(void);
5689c9a483SAlfred Perlstein static void playtone(int pitch, int value, int sustain);
5789c9a483SAlfred Perlstein static void playstring(char *cp, size_t slen);
580dfe10a6SBruce Evans 
59338c585eSPoul-Henning Kamp /*
60338c585eSPoul-Henning Kamp  * Emit tone of frequency thz for given number of centisecs
61338c585eSPoul-Henning Kamp  */
62f4de22acSJoerg Wunsch static void
tone(unsigned int thz,unsigned int centisecs)63338c585eSPoul-Henning Kamp tone(unsigned int thz, unsigned int centisecs)
645b81b6b3SRodney W. Grimes {
651f770560SWarner Losh 	int timo;
665b81b6b3SRodney W. Grimes 
679714de6aSDavid Greenman 	if (thz <= 0)
689714de6aSDavid Greenman 		return;
699714de6aSDavid Greenman 
705b81b6b3SRodney W. Grimes #ifdef DEBUG
71b2424ac0SBrian Somers 	(void) printf("tone: thz=%d centisecs=%d\n", thz, centisecs);
725b81b6b3SRodney W. Grimes #endif /* DEBUG */
735b81b6b3SRodney W. Grimes 
745b81b6b3SRodney W. Grimes 	/* set timer to generate clicks at given frequency in Hertz */
7524072ca3SYoshihiro Takahashi 	if (timer_spkr_acquire()) {
76bc4ff6e3SSøren Schmidt 		/* enter list of waiting procs ??? */
77bc4ff6e3SSøren Schmidt 		return;
78bc4ff6e3SSøren Schmidt 	}
79f4de22acSJoerg Wunsch 	disable_intr();
80e4659858SPoul-Henning Kamp 	timer_spkr_setfreq(thz);
81f4de22acSJoerg Wunsch 	enable_intr();
825b81b6b3SRodney W. Grimes 
835b81b6b3SRodney W. Grimes 	/*
845b81b6b3SRodney W. Grimes 	 * Set timeout to endtone function, then give up the timeslice.
855b81b6b3SRodney W. Grimes 	 * This is so other processes can execute while the tone is being
865b81b6b3SRodney W. Grimes 	 * emitted.
875b81b6b3SRodney W. Grimes 	 */
88b2424ac0SBrian Somers 	timo = centisecs * hz / 100;
89b2424ac0SBrian Somers 	if (timo > 0)
90b2424ac0SBrian Somers 		tsleep(&endtone, SPKRPRI | PCATCH, "spkrtn", timo);
9124072ca3SYoshihiro Takahashi 	timer_spkr_release();
925b81b6b3SRodney W. Grimes }
935b81b6b3SRodney W. Grimes 
94338c585eSPoul-Henning Kamp /*
95338c585eSPoul-Henning Kamp  * Rest for given number of centisecs
96338c585eSPoul-Henning Kamp  */
97f4de22acSJoerg Wunsch static void
rest(int centisecs)98338c585eSPoul-Henning Kamp rest(int centisecs)
995b81b6b3SRodney W. Grimes {
100b2424ac0SBrian Somers 	int timo;
101b2424ac0SBrian Somers 
1025b81b6b3SRodney W. Grimes 	/*
1035b81b6b3SRodney W. Grimes 	 * Set timeout to endrest function, then give up the timeslice.
1045b81b6b3SRodney W. Grimes 	 * This is so other processes can execute while the rest is being
1055b81b6b3SRodney W. Grimes 	 * waited out.
1065b81b6b3SRodney W. Grimes 	 */
1075b81b6b3SRodney W. Grimes #ifdef DEBUG
108b2424ac0SBrian Somers 	(void) printf("rest: %d\n", centisecs);
1095b81b6b3SRodney W. Grimes #endif /* DEBUG */
110b2424ac0SBrian Somers 	timo = centisecs * hz / 100;
111b2424ac0SBrian Somers 	if (timo > 0)
112b2424ac0SBrian Somers 		tsleep(&endrest, SPKRPRI | PCATCH, "spkrrs", timo);
1135b81b6b3SRodney W. Grimes }
1145b81b6b3SRodney W. Grimes 
115338c585eSPoul-Henning Kamp /*
116338c585eSPoul-Henning Kamp  **************** PLAY STRING INTERPRETER BEGINS HERE **********************
1175b81b6b3SRodney W. Grimes  * Play string interpretation is modelled on IBM BASIC 2.0's PLAY statement;
118e614aa8aSAndrey A. Chernov  * M[LNS] are missing; the ~ synonym and the _ slur mark and the octave-
119e614aa8aSAndrey A. Chernov  * tracking facility are added.
1205b81b6b3SRodney W. Grimes  * Requires tone(), rest(), and endtone(). String play is not interruptible
1215b81b6b3SRodney W. Grimes  * except possibly at physical block boundaries.
1225b81b6b3SRodney W. Grimes  */
1235b81b6b3SRodney W. Grimes 
1245b81b6b3SRodney W. Grimes #define dtoi(c)		((c) - '0')
1255b81b6b3SRodney W. Grimes 
1265b81b6b3SRodney W. Grimes static int octave;	/* currently selected octave */
1275b81b6b3SRodney W. Grimes static int whole;	/* whole-note time at current tempo, in ticks */
1285b81b6b3SRodney W. Grimes static int value;	/* whole divisor for note time, quarter note = 1 */
1295b81b6b3SRodney W. Grimes static int fill;	/* controls spacing of notes */
1305b81b6b3SRodney W. Grimes static bool octtrack;	/* octave-tracking on? */
1315b81b6b3SRodney W. Grimes static bool octprefix;	/* override current octave-tracking state? */
1325b81b6b3SRodney W. Grimes 
1335b81b6b3SRodney W. Grimes /*
1345b81b6b3SRodney W. Grimes  * Magic number avoidance...
1355b81b6b3SRodney W. Grimes  */
1365b81b6b3SRodney W. Grimes #define SECS_PER_MIN	60	/* seconds per minute */
1375b81b6b3SRodney W. Grimes #define WHOLE_NOTE	4	/* quarter notes per whole note */
1385b81b6b3SRodney W. Grimes #define MIN_VALUE	64	/* the most we can divide a note by */
1395b81b6b3SRodney W. Grimes #define DFLT_VALUE	4	/* default value (quarter-note) */
1405b81b6b3SRodney W. Grimes #define FILLTIME	8	/* for articulation, break note in parts */
1415b81b6b3SRodney W. Grimes #define STACCATO	6	/* 6/8 = 3/4 of note is filled */
1425b81b6b3SRodney W. Grimes #define NORMAL		7	/* 7/8ths of note interval is filled */
1435b81b6b3SRodney W. Grimes #define LEGATO		8	/* all of note interval is filled */
1445b81b6b3SRodney W. Grimes #define DFLT_OCTAVE	4	/* default octave */
1455b81b6b3SRodney W. Grimes #define MIN_TEMPO	32	/* minimum tempo */
1465b81b6b3SRodney W. Grimes #define DFLT_TEMPO	120	/* default tempo */
1475b81b6b3SRodney W. Grimes #define MAX_TEMPO	255	/* max tempo */
1485b81b6b3SRodney W. Grimes #define NUM_MULT	3	/* numerator of dot multiplier */
1495b81b6b3SRodney W. Grimes #define DENOM_MULT	2	/* denominator of dot multiplier */
1505b81b6b3SRodney W. Grimes 
1515b81b6b3SRodney W. Grimes /* letter to half-tone:  A   B  C  D  E  F  G */
1525b81b6b3SRodney W. Grimes static int notetab[8] = {9, 11, 0, 2, 4, 5, 7};
1535b81b6b3SRodney W. Grimes 
1545b81b6b3SRodney W. Grimes /*
1555b81b6b3SRodney W. Grimes  * This is the American Standard A440 Equal-Tempered scale with frequencies
1565b81b6b3SRodney W. Grimes  * rounded to nearest integer. Thank Goddess for the good ol' CRC Handbook...
1575b81b6b3SRodney W. Grimes  * our octave 0 is standard octave 2.
1585b81b6b3SRodney W. Grimes  */
1595b81b6b3SRodney W. Grimes #define OCTAVE_NOTES	12	/* semitones per octave */
1605b81b6b3SRodney W. Grimes static int pitchtab[] =
1615b81b6b3SRodney W. Grimes {
1625b81b6b3SRodney W. Grimes /*        C     C#    D     D#    E     F     F#    G     G#    A     A#    B*/
1635b81b6b3SRodney W. Grimes /* 0 */   65,   69,   73,   78,   82,   87,   93,   98,  103,  110,  117,  123,
1645b81b6b3SRodney W. Grimes /* 1 */  131,  139,  147,  156,  165,  175,  185,  196,  208,  220,  233,  247,
1655b81b6b3SRodney W. Grimes /* 2 */  262,  277,  294,  311,  330,  349,  370,  392,  415,  440,  466,  494,
1665b81b6b3SRodney W. Grimes /* 3 */  523,  554,  587,  622,  659,  698,  740,  784,  831,  880,  932,  988,
1675b81b6b3SRodney W. Grimes /* 4 */ 1047, 1109, 1175, 1245, 1319, 1397, 1480, 1568, 1661, 1760, 1865, 1975,
1685b81b6b3SRodney W. Grimes /* 5 */ 2093, 2217, 2349, 2489, 2637, 2794, 2960, 3136, 3322, 3520, 3729, 3951,
1695b81b6b3SRodney W. Grimes /* 6 */ 4186, 4435, 4698, 4978, 5274, 5588, 5920, 6272, 6644, 7040, 7459, 7902,
1705b81b6b3SRodney W. Grimes };
1715b81b6b3SRodney W. Grimes 
172f4de22acSJoerg Wunsch static void
playinit(void)17357c46916SDimitry Andric playinit(void)
1745b81b6b3SRodney W. Grimes {
1755b81b6b3SRodney W. Grimes     octave = DFLT_OCTAVE;
1767344a290SBrian Somers     whole = (100 * SECS_PER_MIN * WHOLE_NOTE) / DFLT_TEMPO;
1775b81b6b3SRodney W. Grimes     fill = NORMAL;
1785b81b6b3SRodney W. Grimes     value = DFLT_VALUE;
179*c83d8320SJohn Baldwin     octtrack = false;
180*c83d8320SJohn Baldwin     octprefix = true;	/* act as though there was an initial O(n) */
1815b81b6b3SRodney W. Grimes }
1825b81b6b3SRodney W. Grimes 
183338c585eSPoul-Henning Kamp /*
184338c585eSPoul-Henning Kamp  * Play tone of proper duration for current rhythm signature
185338c585eSPoul-Henning Kamp  */
186f4de22acSJoerg Wunsch static void
playtone(int pitch,int value,int sustain)187338c585eSPoul-Henning Kamp playtone(int pitch, int value, int sustain)
1885b81b6b3SRodney W. Grimes {
1893e85b721SEd Maste 	int sound, silence, snum = 1, sdenom = 1;
1905b81b6b3SRodney W. Grimes 
1915b81b6b3SRodney W. Grimes 	/* this weirdness avoids floating-point arithmetic */
192338c585eSPoul-Henning Kamp 	for (; sustain; sustain--) {
193e614aa8aSAndrey A. Chernov 		/* See the BUGS section in the man page for discussion */
1945b81b6b3SRodney W. Grimes 		snum *= NUM_MULT;
1955b81b6b3SRodney W. Grimes 		sdenom *= DENOM_MULT;
1965b81b6b3SRodney W. Grimes 	}
1975b81b6b3SRodney W. Grimes 
1989714de6aSDavid Greenman 	if (value == 0 || sdenom == 0)
1999714de6aSDavid Greenman 		return;
2009714de6aSDavid Greenman 
2015b81b6b3SRodney W. Grimes 	if (pitch == -1)
202424e2d04SAndrey A. Chernov 		rest(whole * snum / (value * sdenom));
203338c585eSPoul-Henning Kamp 	else {
2045b81b6b3SRodney W. Grimes 		sound = (whole * snum) / (value * sdenom)
2055b81b6b3SRodney W. Grimes 			- (whole * (FILLTIME - fill)) / (value * FILLTIME);
2065b81b6b3SRodney W. Grimes 		silence = whole * (FILLTIME-fill) * snum / (FILLTIME * value * sdenom);
2075b81b6b3SRodney W. Grimes 
2085b81b6b3SRodney W. Grimes #ifdef DEBUG
209e614aa8aSAndrey A. Chernov 		(void) printf("playtone: pitch %d for %d ticks, rest for %d ticks\n",
2105b81b6b3SRodney W. Grimes 			pitch, sound, silence);
2115b81b6b3SRodney W. Grimes #endif /* DEBUG */
2125b81b6b3SRodney W. Grimes 
213424e2d04SAndrey A. Chernov 		tone(pitchtab[pitch], sound);
2145b81b6b3SRodney W. Grimes 		if (fill != LEGATO)
215424e2d04SAndrey A. Chernov 			rest(silence);
2165b81b6b3SRodney W. Grimes 	}
2175b81b6b3SRodney W. Grimes }
2185b81b6b3SRodney W. Grimes 
219338c585eSPoul-Henning Kamp /*
220338c585eSPoul-Henning Kamp  * Interpret and play an item from a notation string
221338c585eSPoul-Henning Kamp  */
222f4de22acSJoerg Wunsch static void
playstring(char * cp,size_t slen)223338c585eSPoul-Henning Kamp playstring(char *cp, size_t slen)
2245b81b6b3SRodney W. Grimes {
225e614aa8aSAndrey A. Chernov 	int pitch, oldfill, lastpitch = OCTAVE_NOTES * DFLT_OCTAVE;
2265b81b6b3SRodney W. Grimes 
2275b81b6b3SRodney W. Grimes #define GETNUM(cp, v)	for(v=0; isdigit(cp[1]) && slen > 0; ) \
2285b81b6b3SRodney W. Grimes 				{v = v * 10 + (*++cp - '0'); slen--;}
229338c585eSPoul-Henning Kamp 	for (; slen--; cp++) {
2305b81b6b3SRodney W. Grimes 		int sustain, timeval, tempo;
2313e85b721SEd Maste 		char c = toupper(*cp);
2325b81b6b3SRodney W. Grimes 
2335b81b6b3SRodney W. Grimes #ifdef DEBUG
234e614aa8aSAndrey A. Chernov 		(void) printf("playstring: %c (%x)\n", c, c);
2355b81b6b3SRodney W. Grimes #endif /* DEBUG */
2365b81b6b3SRodney W. Grimes 
237338c585eSPoul-Henning Kamp 		switch (c) {
238338c585eSPoul-Henning Kamp 		case 'A':
239338c585eSPoul-Henning Kamp 		case 'B':
240338c585eSPoul-Henning Kamp 		case 'C':
241338c585eSPoul-Henning Kamp 		case 'D':
242338c585eSPoul-Henning Kamp 		case 'E':
243338c585eSPoul-Henning Kamp 		case 'F':
244338c585eSPoul-Henning Kamp 		case 'G':
2455b81b6b3SRodney W. Grimes 			/* compute pitch */
2465b81b6b3SRodney W. Grimes 			pitch = notetab[c - 'A'] + octave * OCTAVE_NOTES;
2475b81b6b3SRodney W. Grimes 
2485b81b6b3SRodney W. Grimes 			/* this may be followed by an accidental sign */
249338c585eSPoul-Henning Kamp 			if (cp[1] == '#' || cp[1] == '+') {
2505b81b6b3SRodney W. Grimes 				++pitch;
2515b81b6b3SRodney W. Grimes 				++cp;
2525b81b6b3SRodney W. Grimes 				slen--;
253338c585eSPoul-Henning Kamp 			} else if (cp[1] == '-') {
2545b81b6b3SRodney W. Grimes 				--pitch;
2555b81b6b3SRodney W. Grimes 				++cp;
2565b81b6b3SRodney W. Grimes 				slen--;
2575b81b6b3SRodney W. Grimes 			}
2585b81b6b3SRodney W. Grimes 
2595b81b6b3SRodney W. Grimes 			/*
2605b81b6b3SRodney W. Grimes 			 * If octave-tracking mode is on, and there has been no octave-
2615b81b6b3SRodney W. Grimes 			 * setting prefix, find the version of the current letter note
2625b81b6b3SRodney W. Grimes 			 * closest to the last regardless of octave.
2635b81b6b3SRodney W. Grimes 			 */
264338c585eSPoul-Henning Kamp 			if (octtrack && !octprefix) {
265338c585eSPoul-Henning Kamp 				if (abs(pitch-lastpitch) > abs(pitch+OCTAVE_NOTES -
266338c585eSPoul-Henning Kamp 					lastpitch)) {
2675b81b6b3SRodney W. Grimes 					++octave;
2685b81b6b3SRodney W. Grimes 					pitch += OCTAVE_NOTES;
2695b81b6b3SRodney W. Grimes 				}
2705b81b6b3SRodney W. Grimes 
271338c585eSPoul-Henning Kamp 				if (abs(pitch-lastpitch) > abs((pitch-OCTAVE_NOTES) -
272338c585eSPoul-Henning Kamp 					lastpitch)) {
2735b81b6b3SRodney W. Grimes 					--octave;
2745b81b6b3SRodney W. Grimes 					pitch -= OCTAVE_NOTES;
2755b81b6b3SRodney W. Grimes 				}
2765b81b6b3SRodney W. Grimes 			}
277*c83d8320SJohn Baldwin 			octprefix = false;
2785b81b6b3SRodney W. Grimes 			lastpitch = pitch;
2795b81b6b3SRodney W. Grimes 
2805b81b6b3SRodney W. Grimes 			/* ...which may in turn be followed by an override time value */
2815b81b6b3SRodney W. Grimes 			GETNUM(cp, timeval);
2825b81b6b3SRodney W. Grimes 			if (timeval <= 0 || timeval > MIN_VALUE)
2835b81b6b3SRodney W. Grimes 				timeval = value;
2845b81b6b3SRodney W. Grimes 
2855b81b6b3SRodney W. Grimes 			/* ...and/or sustain dots */
286338c585eSPoul-Henning Kamp 			for (sustain = 0; cp[1] == '.'; cp++) {
2875b81b6b3SRodney W. Grimes 				slen--;
2885b81b6b3SRodney W. Grimes 				sustain++;
2895b81b6b3SRodney W. Grimes 			}
2905b81b6b3SRodney W. Grimes 
291e614aa8aSAndrey A. Chernov 			/* ...and/or a slur mark */
292e614aa8aSAndrey A. Chernov 			oldfill = fill;
293338c585eSPoul-Henning Kamp 			if (cp[1] == '_') {
294e614aa8aSAndrey A. Chernov 				fill = LEGATO;
295e614aa8aSAndrey A. Chernov 				++cp;
296e614aa8aSAndrey A. Chernov 				slen--;
297e614aa8aSAndrey A. Chernov 			}
298e614aa8aSAndrey A. Chernov 
2995b81b6b3SRodney W. Grimes 			/* time to emit the actual tone */
300424e2d04SAndrey A. Chernov 			playtone(pitch, timeval, sustain);
301e614aa8aSAndrey A. Chernov 
302e614aa8aSAndrey A. Chernov 			fill = oldfill;
3035b81b6b3SRodney W. Grimes 			break;
3045b81b6b3SRodney W. Grimes 		case 'O':
305338c585eSPoul-Henning Kamp 			if (cp[1] == 'N' || cp[1] == 'n') {
306*c83d8320SJohn Baldwin 				octprefix = octtrack = false;
3075b81b6b3SRodney W. Grimes 				++cp;
3085b81b6b3SRodney W. Grimes 				slen--;
309338c585eSPoul-Henning Kamp 			} else if (cp[1] == 'L' || cp[1] == 'l') {
310*c83d8320SJohn Baldwin 				octtrack = true;
3115b81b6b3SRodney W. Grimes 				++cp;
3125b81b6b3SRodney W. Grimes 				slen--;
313338c585eSPoul-Henning Kamp 			} else {
3145b81b6b3SRodney W. Grimes 				GETNUM(cp, octave);
31573a1170aSPedro F. Giffuni 				if (octave >= nitems(pitchtab) / OCTAVE_NOTES)
3165b81b6b3SRodney W. Grimes 					octave = DFLT_OCTAVE;
317*c83d8320SJohn Baldwin 				octprefix = true;
3185b81b6b3SRodney W. Grimes 			}
3195b81b6b3SRodney W. Grimes 			break;
3205b81b6b3SRodney W. Grimes 		case '>':
32173a1170aSPedro F. Giffuni 			if (octave < nitems(pitchtab) / OCTAVE_NOTES - 1)
3225b81b6b3SRodney W. Grimes 				octave++;
323*c83d8320SJohn Baldwin 			octprefix = true;
3245b81b6b3SRodney W. Grimes 			break;
3255b81b6b3SRodney W. Grimes 		case '<':
3265b81b6b3SRodney W. Grimes 			if (octave > 0)
3275b81b6b3SRodney W. Grimes 				octave--;
328*c83d8320SJohn Baldwin 			octprefix = true;
3295b81b6b3SRodney W. Grimes 			break;
3305b81b6b3SRodney W. Grimes 		case 'N':
3315b81b6b3SRodney W. Grimes 			GETNUM(cp, pitch);
332338c585eSPoul-Henning Kamp 			for (sustain = 0; cp[1] == '.'; cp++) {
3335b81b6b3SRodney W. Grimes 				slen--;
3345b81b6b3SRodney W. Grimes 				sustain++;
3355b81b6b3SRodney W. Grimes 			}
336e614aa8aSAndrey A. Chernov 			oldfill = fill;
337338c585eSPoul-Henning Kamp 			if (cp[1] == '_') {
338e614aa8aSAndrey A. Chernov 				fill = LEGATO;
339e614aa8aSAndrey A. Chernov 				++cp;
340e614aa8aSAndrey A. Chernov 				slen--;
341e614aa8aSAndrey A. Chernov 			}
342424e2d04SAndrey A. Chernov 			playtone(pitch - 1, value, sustain);
343e614aa8aSAndrey A. Chernov 			fill = oldfill;
3445b81b6b3SRodney W. Grimes 			break;
3455b81b6b3SRodney W. Grimes 		case 'L':
3465b81b6b3SRodney W. Grimes 			GETNUM(cp, value);
3475b81b6b3SRodney W. Grimes 			if (value <= 0 || value > MIN_VALUE)
3485b81b6b3SRodney W. Grimes 				value = DFLT_VALUE;
3495b81b6b3SRodney W. Grimes 			break;
3505b81b6b3SRodney W. Grimes 		case 'P':
3515b81b6b3SRodney W. Grimes 		case '~':
3525b81b6b3SRodney W. Grimes 			/* this may be followed by an override time value */
3535b81b6b3SRodney W. Grimes 			GETNUM(cp, timeval);
3545b81b6b3SRodney W. Grimes 			if (timeval <= 0 || timeval > MIN_VALUE)
3555b81b6b3SRodney W. Grimes 				timeval = value;
356338c585eSPoul-Henning Kamp 			for (sustain = 0; cp[1] == '.'; cp++) {
3575b81b6b3SRodney W. Grimes 				slen--;
3585b81b6b3SRodney W. Grimes 				sustain++;
3595b81b6b3SRodney W. Grimes 			}
360424e2d04SAndrey A. Chernov 			playtone(-1, timeval, sustain);
3615b81b6b3SRodney W. Grimes 			break;
3625b81b6b3SRodney W. Grimes 		case 'T':
3635b81b6b3SRodney W. Grimes 			GETNUM(cp, tempo);
3645b81b6b3SRodney W. Grimes 			if (tempo < MIN_TEMPO || tempo > MAX_TEMPO)
3655b81b6b3SRodney W. Grimes 				tempo = DFLT_TEMPO;
3667344a290SBrian Somers 			whole = (100 * SECS_PER_MIN * WHOLE_NOTE) / tempo;
3675b81b6b3SRodney W. Grimes 			break;
3685b81b6b3SRodney W. Grimes 		case 'M':
369338c585eSPoul-Henning Kamp 			if (cp[1] == 'N' || cp[1] == 'n') {
3705b81b6b3SRodney W. Grimes 				fill = NORMAL;
3715b81b6b3SRodney W. Grimes 				++cp;
3725b81b6b3SRodney W. Grimes 				slen--;
373338c585eSPoul-Henning Kamp 			} else if (cp[1] == 'L' || cp[1] == 'l') {
3745b81b6b3SRodney W. Grimes 				fill = LEGATO;
3755b81b6b3SRodney W. Grimes 				++cp;
3765b81b6b3SRodney W. Grimes 				slen--;
377338c585eSPoul-Henning Kamp 			} else if (cp[1] == 'S' || cp[1] == 's') {
3785b81b6b3SRodney W. Grimes 				fill = STACCATO;
3795b81b6b3SRodney W. Grimes 				++cp;
3805b81b6b3SRodney W. Grimes 				slen--;
3815b81b6b3SRodney W. Grimes 			}
3825b81b6b3SRodney W. Grimes 			break;
3835b81b6b3SRodney W. Grimes 		}
3845b81b6b3SRodney W. Grimes 	}
3855b81b6b3SRodney W. Grimes }
3865b81b6b3SRodney W. Grimes 
387338c585eSPoul-Henning Kamp /*
388338c585eSPoul-Henning Kamp  * ****************** UNIX DRIVER HOOKS BEGIN HERE **************************
3895b81b6b3SRodney W. Grimes  * This section implements driver hooks to run playstring() and the tone(),
3905b81b6b3SRodney W. Grimes  * endtone(), and rest() functions defined above.
3915b81b6b3SRodney W. Grimes  */
3925b81b6b3SRodney W. Grimes 
393*c83d8320SJohn Baldwin static bool spkr_active = false; /* exclusion flag */
394e4961fbfSPoul-Henning Kamp static char *spkr_inbuf;  /* incoming buf */
3955b81b6b3SRodney W. Grimes 
3963412120fSPoul-Henning Kamp static int
spkropen(struct cdev * dev,int flags,int fmt,struct thread * td)397aa0b4694SMateusz Guzik spkropen(struct cdev *dev, int flags, int fmt, struct thread *td)
3985b81b6b3SRodney W. Grimes {
3995b81b6b3SRodney W. Grimes #ifdef DEBUG
400b8e49f68SBill Fumerola 	(void) printf("spkropen: entering with dev = %s\n", devtoname(dev));
4015b81b6b3SRodney W. Grimes #endif /* DEBUG */
4025b81b6b3SRodney W. Grimes 
4038d456252SEd Schouten 	if (spkr_active)
4045b81b6b3SRodney W. Grimes 		return(EBUSY);
405338c585eSPoul-Henning Kamp 	else {
406e614aa8aSAndrey A. Chernov #ifdef DEBUG
407e614aa8aSAndrey A. Chernov 		(void) printf("spkropen: about to perform play initialization\n");
408e614aa8aSAndrey A. Chernov #endif /* DEBUG */
4095b81b6b3SRodney W. Grimes 		playinit();
410a163d034SWarner Losh 		spkr_inbuf = malloc(DEV_BSIZE, M_SPKR, M_WAITOK);
411*c83d8320SJohn Baldwin 		spkr_active = true;
4125b81b6b3SRodney W. Grimes 		return(0);
4135b81b6b3SRodney W. Grimes     	}
414e614aa8aSAndrey A. Chernov }
4155b81b6b3SRodney W. Grimes 
4163412120fSPoul-Henning Kamp static int
spkrwrite(struct cdev * dev,struct uio * uio,int ioflag)417aa0b4694SMateusz Guzik spkrwrite(struct cdev *dev, struct uio *uio, int ioflag)
4185b81b6b3SRodney W. Grimes {
4195b81b6b3SRodney W. Grimes #ifdef DEBUG
4209f80ce04SKonstantin Belousov 	printf("spkrwrite: entering with dev = %s, count = %zd\n",
421b8e49f68SBill Fumerola 		devtoname(dev), uio->uio_resid);
4225b81b6b3SRodney W. Grimes #endif /* DEBUG */
4238d456252SEd Schouten 
4248d456252SEd Schouten 	if (uio->uio_resid > (DEV_BSIZE - 1))     /* prevent system crashes */
425e614aa8aSAndrey A. Chernov 		return(E2BIG);
426338c585eSPoul-Henning Kamp 	else {
427e614aa8aSAndrey A. Chernov 		unsigned n;
428e614aa8aSAndrey A. Chernov 		char *cp;
429e614aa8aSAndrey A. Chernov 		int error;
430e614aa8aSAndrey A. Chernov 
431e614aa8aSAndrey A. Chernov 		n = uio->uio_resid;
432e4961fbfSPoul-Henning Kamp 		cp = spkr_inbuf;
4333bd9f6dbSPeter Wemm 		error = uiomove(cp, n, uio);
4343bd9f6dbSPeter Wemm 		if (!error) {
4353bd9f6dbSPeter Wemm 			cp[n] = '\0';
436424e2d04SAndrey A. Chernov 			playstring(cp, n);
4373bd9f6dbSPeter Wemm 		}
4385b81b6b3SRodney W. Grimes 	return(error);
4395b81b6b3SRodney W. Grimes 	}
4405b81b6b3SRodney W. Grimes }
4415b81b6b3SRodney W. Grimes 
4423412120fSPoul-Henning Kamp static int
spkrclose(struct cdev * dev,int flags,int fmt,struct thread * td)443aa0b4694SMateusz Guzik spkrclose(struct cdev *dev, int flags, int fmt, struct thread *td)
4445b81b6b3SRodney W. Grimes {
4455b81b6b3SRodney W. Grimes #ifdef DEBUG
446b8e49f68SBill Fumerola 	(void) printf("spkrclose: entering with dev = %s\n", devtoname(dev));
4475b81b6b3SRodney W. Grimes #endif /* DEBUG */
4485b81b6b3SRodney W. Grimes 
449521f364bSDag-Erling Smørgrav 	wakeup(&endtone);
450521f364bSDag-Erling Smørgrav 	wakeup(&endrest);
451e4961fbfSPoul-Henning Kamp 	free(spkr_inbuf, M_SPKR);
452*c83d8320SJohn Baldwin 	spkr_active = false;
4535b81b6b3SRodney W. Grimes 	return(0);
4545b81b6b3SRodney W. Grimes }
4555b81b6b3SRodney W. Grimes 
4563412120fSPoul-Henning Kamp static int
spkrioctl(struct cdev * dev,unsigned long cmd,caddr_t cmdarg,int flags,struct thread * td)457aa0b4694SMateusz Guzik spkrioctl(struct cdev *dev, unsigned long cmd, caddr_t cmdarg, int flags,
458aa0b4694SMateusz Guzik     struct thread *td)
4595b81b6b3SRodney W. Grimes {
4605b81b6b3SRodney W. Grimes #ifdef DEBUG
461d9183205SBruce Evans 	(void) printf("spkrioctl: entering with dev = %s, cmd = %lx\n",
462d9183205SBruce Evans     		devtoname(dev), cmd);
4635b81b6b3SRodney W. Grimes #endif /* DEBUG */
4645b81b6b3SRodney W. Grimes 
4658d456252SEd Schouten 	if (cmd == SPKRTONE) {
4665b81b6b3SRodney W. Grimes 		tone_t	*tp = (tone_t *)cmdarg;
4675b81b6b3SRodney W. Grimes 
4685b81b6b3SRodney W. Grimes 		if (tp->frequency == 0)
469424e2d04SAndrey A. Chernov 			rest(tp->duration);
4705b81b6b3SRodney W. Grimes 		else
471424e2d04SAndrey A. Chernov 			tone(tp->frequency, tp->duration);
472424e2d04SAndrey A. Chernov 		return 0;
473338c585eSPoul-Henning Kamp 	} else if (cmd == SPKRTUNE) {
4745b81b6b3SRodney W. Grimes 		tone_t  *tp = (tone_t *)(*(caddr_t *)cmdarg);
4755b81b6b3SRodney W. Grimes 		tone_t ttp;
4765b81b6b3SRodney W. Grimes 		int error;
4775b81b6b3SRodney W. Grimes 
4785b81b6b3SRodney W. Grimes 		for (; ; tp++) {
4795b81b6b3SRodney W. Grimes 			error = copyin(tp, &ttp, sizeof(tone_t));
4805b81b6b3SRodney W. Grimes 			if (error)
4815b81b6b3SRodney W. Grimes 				return(error);
482338c585eSPoul-Henning Kamp 
4835b81b6b3SRodney W. Grimes 			if (ttp.duration == 0)
4845b81b6b3SRodney W. Grimes 				break;
485338c585eSPoul-Henning Kamp 
4865b81b6b3SRodney W. Grimes 			if (ttp.frequency == 0)
487424e2d04SAndrey A. Chernov 				rest(ttp.duration);
4885b81b6b3SRodney W. Grimes 			else
489424e2d04SAndrey A. Chernov 				tone(ttp.frequency, ttp.duration);
4905b81b6b3SRodney W. Grimes 		}
4915b81b6b3SRodney W. Grimes 		return(0);
4925b81b6b3SRodney W. Grimes 	}
493e614aa8aSAndrey A. Chernov 	return(EINVAL);
494e614aa8aSAndrey A. Chernov }
4955b81b6b3SRodney W. Grimes 
49689c9c53dSPoul-Henning Kamp static struct cdev *speaker_dev;
497ce6d929bSWes Peters 
49893f5134aSPoul-Henning Kamp /*
49993f5134aSPoul-Henning Kamp  * Module handling
50093f5134aSPoul-Henning Kamp  */
5012a50a6d7SMike Smith static int
speaker_modevent(module_t mod,int type,void * data)50293f5134aSPoul-Henning Kamp speaker_modevent(module_t mod, int type, void *data)
5032a50a6d7SMike Smith {
50493f5134aSPoul-Henning Kamp 	int error = 0;
505c7f718ecSMatthew N. Dodd 
50693f5134aSPoul-Henning Kamp 	switch(type) {
50793f5134aSPoul-Henning Kamp 	case MOD_LOAD:
50893f5134aSPoul-Henning Kamp 		speaker_dev = make_dev(&spkr_cdevsw, 0,
50993f5134aSPoul-Henning Kamp 		    UID_ROOT, GID_WHEEL, 0600, "speaker");
51093f5134aSPoul-Henning Kamp 		break;
51193f5134aSPoul-Henning Kamp 	case MOD_SHUTDOWN:
51293f5134aSPoul-Henning Kamp 	case MOD_UNLOAD:
51330201b6cSMatthew N. Dodd 		destroy_dev(speaker_dev);
51493f5134aSPoul-Henning Kamp 		break;
51593f5134aSPoul-Henning Kamp 	default:
51693f5134aSPoul-Henning Kamp 		error = EOPNOTSUPP;
51793f5134aSPoul-Henning Kamp 	}
51893f5134aSPoul-Henning Kamp 	return (error);
5192a50a6d7SMike Smith }
5202a50a6d7SMike Smith 
52193f5134aSPoul-Henning Kamp DEV_MODULE(speaker, speaker_modevent, NULL);
522