xref: /freebsd/sys/dev/speaker/spkr.c (revision 9714de6a380b0890129069c68e6204b979a3d279)
15b81b6b3SRodney W. Grimes /*
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>
66f78ca60SRodney W. Grimes  *
79714de6aSDavid Greenman  *    $Id: spkr.c,v 1.12 1995/03/16 18:12:05 bde Exp $
85b81b6b3SRodney W. Grimes  */
95b81b6b3SRodney W. Grimes 
105b81b6b3SRodney W. Grimes #include "speaker.h"
115b81b6b3SRodney W. Grimes 
125b81b6b3SRodney W. Grimes #if NSPEAKER > 0
135b81b6b3SRodney W. Grimes 
14f540b106SGarrett Wollman #include <sys/param.h>
15f540b106SGarrett Wollman #include <sys/systm.h>
16f540b106SGarrett Wollman #include <sys/kernel.h>
17f540b106SGarrett Wollman #include <sys/errno.h>
18f540b106SGarrett Wollman #include <sys/buf.h>
19b5e8ce9fSBruce Evans #include <sys/proc.h>
20f540b106SGarrett Wollman #include <sys/uio.h>
21f540b106SGarrett Wollman #include <i386/isa/isa.h>
22f540b106SGarrett Wollman #include <i386/isa/timerreg.h>
23b5e8ce9fSBruce Evans #include <machine/clock.h>
24f540b106SGarrett Wollman #include <machine/speaker.h>
255b81b6b3SRodney W. Grimes 
265b81b6b3SRodney W. Grimes /**************** MACHINE DEPENDENT PART STARTS HERE *************************
275b81b6b3SRodney W. Grimes  *
285b81b6b3SRodney W. Grimes  * This section defines a function tone() which causes a tone of given
295b81b6b3SRodney W. Grimes  * frequency and duration from the 80x86's console speaker.
305b81b6b3SRodney W. Grimes  * Another function endtone() is defined to force sound off, and there is
315b81b6b3SRodney W. Grimes  * also a rest() entry point to do pauses.
325b81b6b3SRodney W. Grimes  *
335b81b6b3SRodney W. Grimes  * Audible sound is generated using the Programmable Interval Timer (PIT) and
345b81b6b3SRodney W. Grimes  * Programmable Peripheral Interface (PPI) attached to the 80x86's speaker. The
355b81b6b3SRodney W. Grimes  * PPI controls whether sound is passed through at all; the PIT's channel 2 is
365b81b6b3SRodney W. Grimes  * used to generate clicks (a square wave) of whatever frequency is desired.
375b81b6b3SRodney W. Grimes  */
385b81b6b3SRodney W. Grimes 
395b81b6b3SRodney W. Grimes /*
405b81b6b3SRodney W. Grimes  * PIT and PPI port addresses and control values
415b81b6b3SRodney W. Grimes  *
425b81b6b3SRodney W. Grimes  * Most of the magic is hidden in the TIMER_PREP value, which selects PIT
435b81b6b3SRodney W. Grimes  * channel 2, frequency LSB first, square-wave mode and binary encoding.
445b81b6b3SRodney W. Grimes  * The encoding is as follows:
455b81b6b3SRodney W. Grimes  *
465b81b6b3SRodney W. Grimes  * +----------+----------+---------------+-----+
475b81b6b3SRodney W. Grimes  * |  1    0  |  1    1  |  0    1    1  |  0  |
485b81b6b3SRodney W. Grimes  * | SC1  SC0 | RW1  RW0 | M2   M1   M0  | BCD |
495b81b6b3SRodney W. Grimes  * +----------+----------+---------------+-----+
505b81b6b3SRodney W. Grimes  *   Counter     Write        Mode 3      Binary
515b81b6b3SRodney W. Grimes  *  Channel 2  LSB first,  (Square Wave) Encoding
525b81b6b3SRodney W. Grimes  *             MSB second
535b81b6b3SRodney W. Grimes  */
545b81b6b3SRodney W. Grimes #define PPI_SPKR	0x03	/* turn these PPI bits on to pass sound */
555b81b6b3SRodney W. Grimes #define PIT_MODE	0xB6	/* set timer mode for sound generation */
565b81b6b3SRodney W. Grimes 
575b81b6b3SRodney W. Grimes /*
585b81b6b3SRodney W. Grimes  * Magic numbers for timer control.
595b81b6b3SRodney W. Grimes  */
605b81b6b3SRodney W. Grimes #define TIMER_CLK	1193180L	/* corresponds to 18.2 MHz tick rate */
615b81b6b3SRodney W. Grimes 
621e064bd4SAndrey A. Chernov #define SPKRPRI PSOCK
631e064bd4SAndrey A. Chernov static char endtone, endrest;
645b81b6b3SRodney W. Grimes 
65424e2d04SAndrey A. Chernov static void tone(thz, ticks)
661e064bd4SAndrey A. Chernov /* emit tone of frequency thz for given number of ticks */
671e064bd4SAndrey A. Chernov unsigned int thz, ticks;
685b81b6b3SRodney W. Grimes {
699714de6aSDavid Greenman     unsigned int divisor;
70424e2d04SAndrey A. Chernov     int sps;
715b81b6b3SRodney W. Grimes 
729714de6aSDavid Greenman     if (thz <= 0)
739714de6aSDavid Greenman 	return;
749714de6aSDavid Greenman 
759714de6aSDavid Greenman     divisor = TIMER_CLK / thz;
769714de6aSDavid Greenman 
775b81b6b3SRodney W. Grimes #ifdef DEBUG
781e064bd4SAndrey A. Chernov     (void) printf("tone: thz=%d ticks=%d\n", thz, ticks);
795b81b6b3SRodney W. Grimes #endif /* DEBUG */
805b81b6b3SRodney W. Grimes 
815b81b6b3SRodney W. Grimes     /* set timer to generate clicks at given frequency in Hertz */
825b81b6b3SRodney W. Grimes     sps = spltty();
83bc4ff6e3SSøren Schmidt 
84bc4ff6e3SSøren Schmidt     if (acquire_timer2(PIT_MODE)) {
85bc4ff6e3SSøren Schmidt 	/* enter list of waiting procs ??? */
86bc4ff6e3SSøren Schmidt 	return;
87bc4ff6e3SSøren Schmidt     }
88bc4ff6e3SSøren Schmidt     outb(TIMER_CNTR2, (divisor & 0xff));	/* send lo byte */
89bc4ff6e3SSøren Schmidt     outb(TIMER_CNTR2, (divisor >> 8));	/* send hi byte */
905b81b6b3SRodney W. Grimes     splx(sps);
915b81b6b3SRodney W. Grimes 
925b81b6b3SRodney W. Grimes     /* turn the speaker on */
93bc4ff6e3SSøren Schmidt     outb(IO_PPI, inb(IO_PPI) | PPI_SPKR);
945b81b6b3SRodney W. Grimes 
955b81b6b3SRodney W. Grimes     /*
965b81b6b3SRodney W. Grimes      * Set timeout to endtone function, then give up the timeslice.
975b81b6b3SRodney W. Grimes      * This is so other processes can execute while the tone is being
985b81b6b3SRodney W. Grimes      * emitted.
995b81b6b3SRodney W. Grimes      */
1003bdc031eSAndrey A. Chernov     if (ticks > 0)
1013bdc031eSAndrey A. Chernov 	tsleep((caddr_t)&endtone, SPKRPRI | PCATCH, "spkrtn", ticks);
102bc4ff6e3SSøren Schmidt     outb(IO_PPI, inb(IO_PPI) & ~PPI_SPKR);
103bc4ff6e3SSøren Schmidt     release_timer2();
1045b81b6b3SRodney W. Grimes }
1055b81b6b3SRodney W. Grimes 
106424e2d04SAndrey A. Chernov static void rest(ticks)
1075b81b6b3SRodney W. Grimes /* rest for given number of ticks */
1085b81b6b3SRodney W. Grimes int	ticks;
1095b81b6b3SRodney W. Grimes {
1105b81b6b3SRodney W. Grimes     /*
1115b81b6b3SRodney W. Grimes      * Set timeout to endrest function, then give up the timeslice.
1125b81b6b3SRodney W. Grimes      * This is so other processes can execute while the rest is being
1135b81b6b3SRodney W. Grimes      * waited out.
1145b81b6b3SRodney W. Grimes      */
1155b81b6b3SRodney W. Grimes #ifdef DEBUG
116e614aa8aSAndrey A. Chernov     (void) printf("rest: %d\n", ticks);
1175b81b6b3SRodney W. Grimes #endif /* DEBUG */
1183bdc031eSAndrey A. Chernov     if (ticks > 0)
1193bdc031eSAndrey A. Chernov 	tsleep((caddr_t)&endrest, SPKRPRI | PCATCH, "spkrrs", ticks);
1205b81b6b3SRodney W. Grimes }
1215b81b6b3SRodney W. Grimes 
1225b81b6b3SRodney W. Grimes /**************** PLAY STRING INTERPRETER BEGINS HERE **********************
1235b81b6b3SRodney W. Grimes  *
1245b81b6b3SRodney W. Grimes  * Play string interpretation is modelled on IBM BASIC 2.0's PLAY statement;
125e614aa8aSAndrey A. Chernov  * M[LNS] are missing; the ~ synonym and the _ slur mark and the octave-
126e614aa8aSAndrey A. Chernov  * tracking facility are added.
1275b81b6b3SRodney W. Grimes  * Requires tone(), rest(), and endtone(). String play is not interruptible
1285b81b6b3SRodney W. Grimes  * except possibly at physical block boundaries.
1295b81b6b3SRodney W. Grimes  */
1305b81b6b3SRodney W. Grimes 
1315b81b6b3SRodney W. Grimes typedef int	bool;
1325b81b6b3SRodney W. Grimes #define TRUE	1
1335b81b6b3SRodney W. Grimes #define FALSE	0
1345b81b6b3SRodney W. Grimes 
1355b81b6b3SRodney W. Grimes #define toupper(c)	((c) - ' ' * (((c) >= 'a') && ((c) <= 'z')))
1365b81b6b3SRodney W. Grimes #define isdigit(c)	(((c) >= '0') && ((c) <= '9'))
1375b81b6b3SRodney W. Grimes #define dtoi(c)		((c) - '0')
1385b81b6b3SRodney W. Grimes 
1395b81b6b3SRodney W. Grimes static int octave;	/* currently selected octave */
1405b81b6b3SRodney W. Grimes static int whole;	/* whole-note time at current tempo, in ticks */
1415b81b6b3SRodney W. Grimes static int value;	/* whole divisor for note time, quarter note = 1 */
1425b81b6b3SRodney W. Grimes static int fill;	/* controls spacing of notes */
1435b81b6b3SRodney W. Grimes static bool octtrack;	/* octave-tracking on? */
1445b81b6b3SRodney W. Grimes static bool octprefix;	/* override current octave-tracking state? */
1455b81b6b3SRodney W. Grimes 
1465b81b6b3SRodney W. Grimes /*
1475b81b6b3SRodney W. Grimes  * Magic number avoidance...
1485b81b6b3SRodney W. Grimes  */
1495b81b6b3SRodney W. Grimes #define SECS_PER_MIN	60	/* seconds per minute */
1505b81b6b3SRodney W. Grimes #define WHOLE_NOTE	4	/* quarter notes per whole note */
1515b81b6b3SRodney W. Grimes #define MIN_VALUE	64	/* the most we can divide a note by */
1525b81b6b3SRodney W. Grimes #define DFLT_VALUE	4	/* default value (quarter-note) */
1535b81b6b3SRodney W. Grimes #define FILLTIME	8	/* for articulation, break note in parts */
1545b81b6b3SRodney W. Grimes #define STACCATO	6	/* 6/8 = 3/4 of note is filled */
1555b81b6b3SRodney W. Grimes #define NORMAL		7	/* 7/8ths of note interval is filled */
1565b81b6b3SRodney W. Grimes #define LEGATO		8	/* all of note interval is filled */
1575b81b6b3SRodney W. Grimes #define DFLT_OCTAVE	4	/* default octave */
1585b81b6b3SRodney W. Grimes #define MIN_TEMPO	32	/* minimum tempo */
1595b81b6b3SRodney W. Grimes #define DFLT_TEMPO	120	/* default tempo */
1605b81b6b3SRodney W. Grimes #define MAX_TEMPO	255	/* max tempo */
1615b81b6b3SRodney W. Grimes #define NUM_MULT	3	/* numerator of dot multiplier */
1625b81b6b3SRodney W. Grimes #define DENOM_MULT	2	/* denominator of dot multiplier */
1635b81b6b3SRodney W. Grimes 
1645b81b6b3SRodney W. Grimes /* letter to half-tone:  A   B  C  D  E  F  G */
1655b81b6b3SRodney W. Grimes static int notetab[8] = {9, 11, 0, 2, 4, 5, 7};
1665b81b6b3SRodney W. Grimes 
1675b81b6b3SRodney W. Grimes /*
1685b81b6b3SRodney W. Grimes  * This is the American Standard A440 Equal-Tempered scale with frequencies
1695b81b6b3SRodney W. Grimes  * rounded to nearest integer. Thank Goddess for the good ol' CRC Handbook...
1705b81b6b3SRodney W. Grimes  * our octave 0 is standard octave 2.
1715b81b6b3SRodney W. Grimes  */
1725b81b6b3SRodney W. Grimes #define OCTAVE_NOTES	12	/* semitones per octave */
1735b81b6b3SRodney W. Grimes static int pitchtab[] =
1745b81b6b3SRodney W. Grimes {
1755b81b6b3SRodney W. Grimes /*        C     C#    D     D#    E     F     F#    G     G#    A     A#    B*/
1765b81b6b3SRodney W. Grimes /* 0 */   65,   69,   73,   78,   82,   87,   93,   98,  103,  110,  117,  123,
1775b81b6b3SRodney W. Grimes /* 1 */  131,  139,  147,  156,  165,  175,  185,  196,  208,  220,  233,  247,
1785b81b6b3SRodney W. Grimes /* 2 */  262,  277,  294,  311,  330,  349,  370,  392,  415,  440,  466,  494,
1795b81b6b3SRodney W. Grimes /* 3 */  523,  554,  587,  622,  659,  698,  740,  784,  831,  880,  932,  988,
1805b81b6b3SRodney W. Grimes /* 4 */ 1047, 1109, 1175, 1245, 1319, 1397, 1480, 1568, 1661, 1760, 1865, 1975,
1815b81b6b3SRodney W. Grimes /* 5 */ 2093, 2217, 2349, 2489, 2637, 2794, 2960, 3136, 3322, 3520, 3729, 3951,
1825b81b6b3SRodney W. Grimes /* 6 */ 4186, 4435, 4698, 4978, 5274, 5588, 5920, 6272, 6644, 7040, 7459, 7902,
1835b81b6b3SRodney W. Grimes };
1845b81b6b3SRodney W. Grimes 
1855b81b6b3SRodney W. Grimes static void playinit()
1865b81b6b3SRodney W. Grimes {
1875b81b6b3SRodney W. Grimes     octave = DFLT_OCTAVE;
1881e064bd4SAndrey A. Chernov     whole = (hz * SECS_PER_MIN * WHOLE_NOTE) / DFLT_TEMPO;
1895b81b6b3SRodney W. Grimes     fill = NORMAL;
1905b81b6b3SRodney W. Grimes     value = DFLT_VALUE;
1915b81b6b3SRodney W. Grimes     octtrack = FALSE;
1925b81b6b3SRodney W. Grimes     octprefix = TRUE;	/* act as though there was an initial O(n) */
1935b81b6b3SRodney W. Grimes }
1945b81b6b3SRodney W. Grimes 
195424e2d04SAndrey A. Chernov static void playtone(pitch, value, sustain)
1965b81b6b3SRodney W. Grimes /* play tone of proper duration for current rhythm signature */
1975b81b6b3SRodney W. Grimes int	pitch, value, sustain;
1985b81b6b3SRodney W. Grimes {
1995b81b6b3SRodney W. Grimes     register int	sound, silence, snum = 1, sdenom = 1;
2005b81b6b3SRodney W. Grimes 
2015b81b6b3SRodney W. Grimes     /* this weirdness avoids floating-point arithmetic */
2025b81b6b3SRodney W. Grimes     for (; sustain; sustain--)
2035b81b6b3SRodney W. Grimes     {
204e614aa8aSAndrey A. Chernov 	/* See the BUGS section in the man page for discussion */
2055b81b6b3SRodney W. Grimes 	snum *= NUM_MULT;
2065b81b6b3SRodney W. Grimes 	sdenom *= DENOM_MULT;
2075b81b6b3SRodney W. Grimes     }
2085b81b6b3SRodney W. Grimes 
2099714de6aSDavid Greenman     if (value == 0 || sdenom == 0)
2109714de6aSDavid Greenman 	return;
2119714de6aSDavid Greenman 
2125b81b6b3SRodney W. Grimes     if (pitch == -1)
213424e2d04SAndrey A. Chernov 	rest(whole * snum / (value * sdenom));
2145b81b6b3SRodney W. Grimes     else
2155b81b6b3SRodney W. Grimes     {
2165b81b6b3SRodney W. Grimes 	sound = (whole * snum) / (value * sdenom)
2175b81b6b3SRodney W. Grimes 		- (whole * (FILLTIME - fill)) / (value * FILLTIME);
2185b81b6b3SRodney W. Grimes 	silence = whole * (FILLTIME-fill) * snum / (FILLTIME * value * sdenom);
2195b81b6b3SRodney W. Grimes 
2205b81b6b3SRodney W. Grimes #ifdef DEBUG
221e614aa8aSAndrey A. Chernov 	(void) printf("playtone: pitch %d for %d ticks, rest for %d ticks\n",
2225b81b6b3SRodney W. Grimes 			pitch, sound, silence);
2235b81b6b3SRodney W. Grimes #endif /* DEBUG */
2245b81b6b3SRodney W. Grimes 
225424e2d04SAndrey A. Chernov 	tone(pitchtab[pitch], sound);
2265b81b6b3SRodney W. Grimes 	if (fill != LEGATO)
227424e2d04SAndrey A. Chernov 	    rest(silence);
2285b81b6b3SRodney W. Grimes     }
2295b81b6b3SRodney W. Grimes }
2305b81b6b3SRodney W. Grimes 
2315b81b6b3SRodney W. Grimes static int abs(n)
2325b81b6b3SRodney W. Grimes int n;
2335b81b6b3SRodney W. Grimes {
2345b81b6b3SRodney W. Grimes     if (n < 0)
2355b81b6b3SRodney W. Grimes 	return(-n);
2365b81b6b3SRodney W. Grimes     else
2375b81b6b3SRodney W. Grimes 	return(n);
2385b81b6b3SRodney W. Grimes }
2395b81b6b3SRodney W. Grimes 
240424e2d04SAndrey A. Chernov static void playstring(cp, slen)
2415b81b6b3SRodney W. Grimes /* interpret and play an item from a notation string */
2425b81b6b3SRodney W. Grimes char	*cp;
2435b81b6b3SRodney W. Grimes size_t	slen;
2445b81b6b3SRodney W. Grimes {
245e614aa8aSAndrey A. Chernov     int		pitch, oldfill, lastpitch = OCTAVE_NOTES * DFLT_OCTAVE;
2465b81b6b3SRodney W. Grimes 
2475b81b6b3SRodney W. Grimes #define GETNUM(cp, v)	for(v=0; isdigit(cp[1]) && slen > 0; ) \
2485b81b6b3SRodney W. Grimes 				{v = v * 10 + (*++cp - '0'); slen--;}
2495b81b6b3SRodney W. Grimes     for (; slen--; cp++)
2505b81b6b3SRodney W. Grimes     {
2515b81b6b3SRodney W. Grimes 	int		sustain, timeval, tempo;
2525b81b6b3SRodney W. Grimes 	register char	c = toupper(*cp);
2535b81b6b3SRodney W. Grimes 
2545b81b6b3SRodney W. Grimes #ifdef DEBUG
255e614aa8aSAndrey A. Chernov 	(void) printf("playstring: %c (%x)\n", c, c);
2565b81b6b3SRodney W. Grimes #endif /* DEBUG */
2575b81b6b3SRodney W. Grimes 
2585b81b6b3SRodney W. Grimes 	switch (c)
2595b81b6b3SRodney W. Grimes 	{
2605b81b6b3SRodney W. Grimes 	case 'A':  case 'B': case 'C': case 'D': case 'E': case 'F': case 'G':
2615b81b6b3SRodney W. Grimes 
2625b81b6b3SRodney W. Grimes 	    /* compute pitch */
2635b81b6b3SRodney W. Grimes 	    pitch = notetab[c - 'A'] + octave * OCTAVE_NOTES;
2645b81b6b3SRodney W. Grimes 
2655b81b6b3SRodney W. Grimes 	    /* this may be followed by an accidental sign */
2665b81b6b3SRodney W. Grimes 	    if (cp[1] == '#' || cp[1] == '+')
2675b81b6b3SRodney W. Grimes 	    {
2685b81b6b3SRodney W. Grimes 		++pitch;
2695b81b6b3SRodney W. Grimes 		++cp;
2705b81b6b3SRodney W. Grimes 		slen--;
2715b81b6b3SRodney W. Grimes 	    }
2725b81b6b3SRodney W. Grimes 	    else if (cp[1] == '-')
2735b81b6b3SRodney W. Grimes 	    {
2745b81b6b3SRodney W. Grimes 		--pitch;
2755b81b6b3SRodney W. Grimes 		++cp;
2765b81b6b3SRodney W. Grimes 		slen--;
2775b81b6b3SRodney W. Grimes 	    }
2785b81b6b3SRodney W. Grimes 
2795b81b6b3SRodney W. Grimes 	    /*
2805b81b6b3SRodney W. Grimes 	     * If octave-tracking mode is on, and there has been no octave-
2815b81b6b3SRodney W. Grimes 	     * setting prefix, find the version of the current letter note
2825b81b6b3SRodney W. Grimes 	     * closest to the last regardless of octave.
2835b81b6b3SRodney W. Grimes 	     */
2845b81b6b3SRodney W. Grimes 	    if (octtrack && !octprefix)
2855b81b6b3SRodney W. Grimes 	    {
2865b81b6b3SRodney W. Grimes 		if (abs(pitch-lastpitch) > abs(pitch+OCTAVE_NOTES-lastpitch))
2875b81b6b3SRodney W. Grimes 		{
2885b81b6b3SRodney W. Grimes 		    ++octave;
2895b81b6b3SRodney W. Grimes 		    pitch += OCTAVE_NOTES;
2905b81b6b3SRodney W. Grimes 		}
2915b81b6b3SRodney W. Grimes 
2925b81b6b3SRodney W. Grimes 		if (abs(pitch-lastpitch) > abs((pitch-OCTAVE_NOTES)-lastpitch))
2935b81b6b3SRodney W. Grimes 		{
2945b81b6b3SRodney W. Grimes 		    --octave;
2955b81b6b3SRodney W. Grimes 		    pitch -= OCTAVE_NOTES;
2965b81b6b3SRodney W. Grimes 		}
2975b81b6b3SRodney W. Grimes 	    }
2985b81b6b3SRodney W. Grimes 	    octprefix = FALSE;
2995b81b6b3SRodney W. Grimes 	    lastpitch = pitch;
3005b81b6b3SRodney W. Grimes 
3015b81b6b3SRodney W. Grimes 	    /* ...which may in turn be followed by an override time value */
3025b81b6b3SRodney W. Grimes 	    GETNUM(cp, timeval);
3035b81b6b3SRodney W. Grimes 	    if (timeval <= 0 || timeval > MIN_VALUE)
3045b81b6b3SRodney W. Grimes 		timeval = value;
3055b81b6b3SRodney W. Grimes 
3065b81b6b3SRodney W. Grimes 	    /* ...and/or sustain dots */
3075b81b6b3SRodney W. Grimes 	    for (sustain = 0; cp[1] == '.'; cp++)
3085b81b6b3SRodney W. Grimes 	    {
3095b81b6b3SRodney W. Grimes 		slen--;
3105b81b6b3SRodney W. Grimes 		sustain++;
3115b81b6b3SRodney W. Grimes 	    }
3125b81b6b3SRodney W. Grimes 
313e614aa8aSAndrey A. Chernov 	    /* ...and/or a slur mark */
314e614aa8aSAndrey A. Chernov 	    oldfill = fill;
315e614aa8aSAndrey A. Chernov 	    if (cp[1] == '_')
316e614aa8aSAndrey A. Chernov 	    {
317e614aa8aSAndrey A. Chernov 		fill = LEGATO;
318e614aa8aSAndrey A. Chernov 		++cp;
319e614aa8aSAndrey A. Chernov 		slen--;
320e614aa8aSAndrey A. Chernov 	    }
321e614aa8aSAndrey A. Chernov 
3225b81b6b3SRodney W. Grimes 	    /* time to emit the actual tone */
323424e2d04SAndrey A. Chernov 	    playtone(pitch, timeval, sustain);
324e614aa8aSAndrey A. Chernov 
325e614aa8aSAndrey A. Chernov 	    fill = oldfill;
3265b81b6b3SRodney W. Grimes 	    break;
3275b81b6b3SRodney W. Grimes 
3285b81b6b3SRodney W. Grimes 	case 'O':
3295b81b6b3SRodney W. Grimes 	    if (cp[1] == 'N' || cp[1] == 'n')
3305b81b6b3SRodney W. Grimes 	    {
3315b81b6b3SRodney W. Grimes 		octprefix = octtrack = FALSE;
3325b81b6b3SRodney W. Grimes 		++cp;
3335b81b6b3SRodney W. Grimes 		slen--;
3345b81b6b3SRodney W. Grimes 	    }
3355b81b6b3SRodney W. Grimes 	    else if (cp[1] == 'L' || cp[1] == 'l')
3365b81b6b3SRodney W. Grimes 	    {
3375b81b6b3SRodney W. Grimes 		octtrack = TRUE;
3385b81b6b3SRodney W. Grimes 		++cp;
3395b81b6b3SRodney W. Grimes 		slen--;
3405b81b6b3SRodney W. Grimes 	    }
3415b81b6b3SRodney W. Grimes 	    else
3425b81b6b3SRodney W. Grimes 	    {
3435b81b6b3SRodney W. Grimes 		GETNUM(cp, octave);
3440a97fb59SAndrey A. Chernov 		if (octave >= sizeof(pitchtab) / sizeof(pitchtab[0]) / OCTAVE_NOTES)
3455b81b6b3SRodney W. Grimes 		    octave = DFLT_OCTAVE;
3465b81b6b3SRodney W. Grimes 		octprefix = TRUE;
3475b81b6b3SRodney W. Grimes 	    }
3485b81b6b3SRodney W. Grimes 	    break;
3495b81b6b3SRodney W. Grimes 
3505b81b6b3SRodney W. Grimes 	case '>':
3510a97fb59SAndrey A. Chernov 	    if (octave < sizeof(pitchtab) / sizeof(pitchtab[0]) / OCTAVE_NOTES - 1)
3525b81b6b3SRodney W. Grimes 		octave++;
3535b81b6b3SRodney W. Grimes 	    octprefix = TRUE;
3545b81b6b3SRodney W. Grimes 	    break;
3555b81b6b3SRodney W. Grimes 
3565b81b6b3SRodney W. Grimes 	case '<':
3575b81b6b3SRodney W. Grimes 	    if (octave > 0)
3585b81b6b3SRodney W. Grimes 		octave--;
3595b81b6b3SRodney W. Grimes 	    octprefix = TRUE;
3605b81b6b3SRodney W. Grimes 	    break;
3615b81b6b3SRodney W. Grimes 
3625b81b6b3SRodney W. Grimes 	case 'N':
3635b81b6b3SRodney W. Grimes 	    GETNUM(cp, pitch);
3645b81b6b3SRodney W. Grimes 	    for (sustain = 0; cp[1] == '.'; cp++)
3655b81b6b3SRodney W. Grimes 	    {
3665b81b6b3SRodney W. Grimes 		slen--;
3675b81b6b3SRodney W. Grimes 		sustain++;
3685b81b6b3SRodney W. Grimes 	    }
369e614aa8aSAndrey A. Chernov 	    oldfill = fill;
370e614aa8aSAndrey A. Chernov 	    if (cp[1] == '_')
371e614aa8aSAndrey A. Chernov 	    {
372e614aa8aSAndrey A. Chernov 		fill = LEGATO;
373e614aa8aSAndrey A. Chernov 		++cp;
374e614aa8aSAndrey A. Chernov 		slen--;
375e614aa8aSAndrey A. Chernov 	    }
376424e2d04SAndrey A. Chernov 	    playtone(pitch - 1, value, sustain);
377e614aa8aSAndrey A. Chernov 	    fill = oldfill;
3785b81b6b3SRodney W. Grimes 	    break;
3795b81b6b3SRodney W. Grimes 
3805b81b6b3SRodney W. Grimes 	case 'L':
3815b81b6b3SRodney W. Grimes 	    GETNUM(cp, value);
3825b81b6b3SRodney W. Grimes 	    if (value <= 0 || value > MIN_VALUE)
3835b81b6b3SRodney W. Grimes 		value = DFLT_VALUE;
3845b81b6b3SRodney W. Grimes 	    break;
3855b81b6b3SRodney W. Grimes 
3865b81b6b3SRodney W. Grimes 	case 'P':
3875b81b6b3SRodney W. Grimes 	case '~':
3885b81b6b3SRodney W. Grimes 	    /* this may be followed by an override time value */
3895b81b6b3SRodney W. Grimes 	    GETNUM(cp, timeval);
3905b81b6b3SRodney W. Grimes 	    if (timeval <= 0 || timeval > MIN_VALUE)
3915b81b6b3SRodney W. Grimes 		timeval = value;
3925b81b6b3SRodney W. Grimes 	    for (sustain = 0; cp[1] == '.'; cp++)
3935b81b6b3SRodney W. Grimes 	    {
3945b81b6b3SRodney W. Grimes 		slen--;
3955b81b6b3SRodney W. Grimes 		sustain++;
3965b81b6b3SRodney W. Grimes 	    }
397424e2d04SAndrey A. Chernov 	    playtone(-1, timeval, sustain);
3985b81b6b3SRodney W. Grimes 	    break;
3995b81b6b3SRodney W. Grimes 
4005b81b6b3SRodney W. Grimes 	case 'T':
4015b81b6b3SRodney W. Grimes 	    GETNUM(cp, tempo);
4025b81b6b3SRodney W. Grimes 	    if (tempo < MIN_TEMPO || tempo > MAX_TEMPO)
4035b81b6b3SRodney W. Grimes 		tempo = DFLT_TEMPO;
4041e064bd4SAndrey A. Chernov 	    whole = (hz * SECS_PER_MIN * WHOLE_NOTE) / tempo;
4055b81b6b3SRodney W. Grimes 	    break;
4065b81b6b3SRodney W. Grimes 
4075b81b6b3SRodney W. Grimes 	case 'M':
4085b81b6b3SRodney W. Grimes 	    if (cp[1] == 'N' || cp[1] == 'n')
4095b81b6b3SRodney W. Grimes 	    {
4105b81b6b3SRodney W. Grimes 		fill = NORMAL;
4115b81b6b3SRodney W. Grimes 		++cp;
4125b81b6b3SRodney W. Grimes 		slen--;
4135b81b6b3SRodney W. Grimes 	    }
4145b81b6b3SRodney W. Grimes 	    else if (cp[1] == 'L' || cp[1] == 'l')
4155b81b6b3SRodney W. Grimes 	    {
4165b81b6b3SRodney W. Grimes 		fill = LEGATO;
4175b81b6b3SRodney W. Grimes 		++cp;
4185b81b6b3SRodney W. Grimes 		slen--;
4195b81b6b3SRodney W. Grimes 	    }
4205b81b6b3SRodney W. Grimes 	    else if (cp[1] == 'S' || cp[1] == 's')
4215b81b6b3SRodney W. Grimes 	    {
4225b81b6b3SRodney W. Grimes 		fill = STACCATO;
4235b81b6b3SRodney W. Grimes 		++cp;
4245b81b6b3SRodney W. Grimes 		slen--;
4255b81b6b3SRodney W. Grimes 	    }
4265b81b6b3SRodney W. Grimes 	    break;
4275b81b6b3SRodney W. Grimes 	}
4285b81b6b3SRodney W. Grimes     }
4295b81b6b3SRodney W. Grimes }
4305b81b6b3SRodney W. Grimes 
4315b81b6b3SRodney W. Grimes /******************* UNIX DRIVER HOOKS BEGIN HERE **************************
4325b81b6b3SRodney W. Grimes  *
4335b81b6b3SRodney W. Grimes  * This section implements driver hooks to run playstring() and the tone(),
4345b81b6b3SRodney W. Grimes  * endtone(), and rest() functions defined above.
4355b81b6b3SRodney W. Grimes  */
4365b81b6b3SRodney W. Grimes 
437e614aa8aSAndrey A. Chernov static int spkr_active = FALSE; /* exclusion flag */
4385b81b6b3SRodney W. Grimes static struct buf *spkr_inbuf;  /* incoming buf */
4395b81b6b3SRodney W. Grimes 
4405b81b6b3SRodney W. Grimes int spkropen(dev)
4415b81b6b3SRodney W. Grimes dev_t	dev;
4425b81b6b3SRodney W. Grimes {
4435b81b6b3SRodney W. Grimes #ifdef DEBUG
444e614aa8aSAndrey A. Chernov     (void) printf("spkropen: entering with dev = %x\n", dev);
4455b81b6b3SRodney W. Grimes #endif /* DEBUG */
4465b81b6b3SRodney W. Grimes 
4475b81b6b3SRodney W. Grimes     if (minor(dev) != 0)
4485b81b6b3SRodney W. Grimes 	return(ENXIO);
4495b81b6b3SRodney W. Grimes     else if (spkr_active)
4505b81b6b3SRodney W. Grimes 	return(EBUSY);
4515b81b6b3SRodney W. Grimes     else
4525b81b6b3SRodney W. Grimes     {
453e614aa8aSAndrey A. Chernov #ifdef DEBUG
454e614aa8aSAndrey A. Chernov 	(void) printf("spkropen: about to perform play initialization\n");
455e614aa8aSAndrey A. Chernov #endif /* DEBUG */
4565b81b6b3SRodney W. Grimes 	playinit();
4575b81b6b3SRodney W. Grimes 	spkr_inbuf = geteblk(DEV_BSIZE);
458e614aa8aSAndrey A. Chernov 	spkr_active = TRUE;
4595b81b6b3SRodney W. Grimes 	return(0);
4605b81b6b3SRodney W. Grimes     }
461e614aa8aSAndrey A. Chernov }
4625b81b6b3SRodney W. Grimes 
4635b81b6b3SRodney W. Grimes int spkrwrite(dev, uio)
4645b81b6b3SRodney W. Grimes dev_t		dev;
4655b81b6b3SRodney W. Grimes struct uio	*uio;
4665b81b6b3SRodney W. Grimes {
4675b81b6b3SRodney W. Grimes #ifdef DEBUG
4685b81b6b3SRodney W. Grimes     printf("spkrwrite: entering with dev = %x, count = %d\n",
4695b81b6b3SRodney W. Grimes 		dev, uio->uio_resid);
4705b81b6b3SRodney W. Grimes #endif /* DEBUG */
4715b81b6b3SRodney W. Grimes 
4725b81b6b3SRodney W. Grimes     if (minor(dev) != 0)
4735b81b6b3SRodney W. Grimes 	return(ENXIO);
474e614aa8aSAndrey A. Chernov     else if (uio->uio_resid > DEV_BSIZE)     /* prevent system crashes */
475e614aa8aSAndrey A. Chernov 	return(E2BIG);
4765b81b6b3SRodney W. Grimes     else
4775b81b6b3SRodney W. Grimes     {
478e614aa8aSAndrey A. Chernov 	unsigned n;
479e614aa8aSAndrey A. Chernov 	char *cp;
480e614aa8aSAndrey A. Chernov 	int error;
481e614aa8aSAndrey A. Chernov 
482e614aa8aSAndrey A. Chernov 	n = uio->uio_resid;
4835b81b6b3SRodney W. Grimes 	cp = spkr_inbuf->b_un.b_addr;
484e614aa8aSAndrey A. Chernov 	if (!(error = uiomove(cp, n, uio)))
485424e2d04SAndrey A. Chernov 		playstring(cp, n);
4865b81b6b3SRodney W. Grimes 	return(error);
4875b81b6b3SRodney W. Grimes     }
4885b81b6b3SRodney W. Grimes }
4895b81b6b3SRodney W. Grimes 
4905b81b6b3SRodney W. Grimes int spkrclose(dev)
4915b81b6b3SRodney W. Grimes dev_t	dev;
4925b81b6b3SRodney W. Grimes {
4935b81b6b3SRodney W. Grimes #ifdef DEBUG
494e614aa8aSAndrey A. Chernov     (void) printf("spkrclose: entering with dev = %x\n", dev);
4955b81b6b3SRodney W. Grimes #endif /* DEBUG */
4965b81b6b3SRodney W. Grimes 
4975b81b6b3SRodney W. Grimes     if (minor(dev) != 0)
4985b81b6b3SRodney W. Grimes 	return(ENXIO);
4995b81b6b3SRodney W. Grimes     else
5005b81b6b3SRodney W. Grimes     {
5011e064bd4SAndrey A. Chernov 	wakeup((caddr_t)&endtone);
5021e064bd4SAndrey A. Chernov 	wakeup((caddr_t)&endrest);
5035b81b6b3SRodney W. Grimes 	brelse(spkr_inbuf);
504e614aa8aSAndrey A. Chernov 	spkr_active = FALSE;
5055b81b6b3SRodney W. Grimes 	return(0);
5065b81b6b3SRodney W. Grimes     }
507e614aa8aSAndrey A. Chernov }
5085b81b6b3SRodney W. Grimes 
5095b81b6b3SRodney W. Grimes int spkrioctl(dev, cmd, cmdarg)
5105b81b6b3SRodney W. Grimes dev_t	dev;
5115b81b6b3SRodney W. Grimes int	cmd;
5125b81b6b3SRodney W. Grimes caddr_t	cmdarg;
5135b81b6b3SRodney W. Grimes {
5145b81b6b3SRodney W. Grimes #ifdef DEBUG
515e614aa8aSAndrey A. Chernov     (void) printf("spkrioctl: entering with dev = %x, cmd = %x\n");
5165b81b6b3SRodney W. Grimes #endif /* DEBUG */
5175b81b6b3SRodney W. Grimes 
5185b81b6b3SRodney W. Grimes     if (minor(dev) != 0)
5195b81b6b3SRodney W. Grimes 	return(ENXIO);
5205b81b6b3SRodney W. Grimes     else if (cmd == SPKRTONE)
5215b81b6b3SRodney W. Grimes     {
5225b81b6b3SRodney W. Grimes 	tone_t	*tp = (tone_t *)cmdarg;
5235b81b6b3SRodney W. Grimes 
5245b81b6b3SRodney W. Grimes 	if (tp->frequency == 0)
525424e2d04SAndrey A. Chernov 	    rest(tp->duration);
5265b81b6b3SRodney W. Grimes 	else
527424e2d04SAndrey A. Chernov 	    tone(tp->frequency, tp->duration);
528424e2d04SAndrey A. Chernov 	return 0;
5295b81b6b3SRodney W. Grimes     }
5305b81b6b3SRodney W. Grimes     else if (cmd == SPKRTUNE)
5315b81b6b3SRodney W. Grimes     {
5325b81b6b3SRodney W. Grimes 	tone_t  *tp = (tone_t *)(*(caddr_t *)cmdarg);
5335b81b6b3SRodney W. Grimes 	tone_t ttp;
5345b81b6b3SRodney W. Grimes 	int error;
5355b81b6b3SRodney W. Grimes 
5365b81b6b3SRodney W. Grimes 	for (; ; tp++) {
5375b81b6b3SRodney W. Grimes 	    error = copyin(tp, &ttp, sizeof(tone_t));
5385b81b6b3SRodney W. Grimes 	    if (error)
5395b81b6b3SRodney W. Grimes 		    return(error);
5405b81b6b3SRodney W. Grimes 	    if (ttp.duration == 0)
5415b81b6b3SRodney W. Grimes 		    break;
5425b81b6b3SRodney W. Grimes 	    if (ttp.frequency == 0)
543424e2d04SAndrey A. Chernov 		 rest(ttp.duration);
5445b81b6b3SRodney W. Grimes 	    else
545424e2d04SAndrey A. Chernov 		 tone(ttp.frequency, ttp.duration);
5465b81b6b3SRodney W. Grimes 	}
5475b81b6b3SRodney W. Grimes 	return(0);
5485b81b6b3SRodney W. Grimes     }
549e614aa8aSAndrey A. Chernov     return(EINVAL);
550e614aa8aSAndrey A. Chernov }
5515b81b6b3SRodney W. Grimes 
5525b81b6b3SRodney W. Grimes #endif  /* NSPEAKER > 0 */
5535b81b6b3SRodney W. Grimes /* spkr.c ends here */
554