1997-02-03 20:36:00 +03:00
|
|
|
/* $NetBSD: asc.c,v 1.16 1997/02/03 17:36:00 scottr Exp $ */
|
1994-10-26 11:45:48 +03:00
|
|
|
|
1993-12-21 06:16:01 +03:00
|
|
|
/*-
|
|
|
|
* Copyright (C) 1993 Allen K. Briggs, Chris P. Caputo,
|
|
|
|
* Michael L. Finch, Bradley A. Grantham, and
|
|
|
|
* Lawrence A. Kesteloot
|
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the Alice Group.
|
|
|
|
* 4. The names of the Alice Group or any of its members may not be used
|
|
|
|
* to endorse or promote products derived from this software without
|
|
|
|
* specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE ALICE GROUP ``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 ALICE GROUP 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ASC driver code and asc_ringbell() support
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
1995-09-21 07:36:25 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-12-21 06:16:01 +03:00
|
|
|
#include <sys/errno.h>
|
1994-05-06 21:38:38 +04:00
|
|
|
#include <sys/time.h>
|
1993-12-21 06:16:01 +03:00
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/param.h>
|
1994-07-21 04:44:00 +04:00
|
|
|
#include <sys/device.h>
|
1996-11-09 20:26:26 +03:00
|
|
|
|
|
|
|
#include <machine/autoconf.h>
|
1994-07-21 04:44:00 +04:00
|
|
|
#include <machine/cpu.h>
|
1997-02-03 20:36:00 +03:00
|
|
|
#include <machine/bus.h>
|
1993-12-21 06:16:01 +03:00
|
|
|
|
1996-05-05 10:15:56 +04:00
|
|
|
#include "ascvar.h"
|
1997-02-03 20:36:00 +03:00
|
|
|
#include "obiovar.h"
|
1993-12-21 06:16:01 +03:00
|
|
|
|
1997-02-03 20:36:00 +03:00
|
|
|
#define MAC68K_ASC_BASE ((caddr_t) 0x50f14000)
|
|
|
|
#define MAC68K_ASC_LEN 0x01000
|
1993-12-21 06:16:01 +03:00
|
|
|
|
|
|
|
/* bell support data */
|
1997-02-03 20:36:00 +03:00
|
|
|
static int asc_configured = 0;
|
|
|
|
static bus_space_tag_t asc_tag = MAC68K_BUS_SPACE_MEM;
|
|
|
|
static bus_space_handle_t asc_handle;
|
|
|
|
|
1993-12-21 06:16:01 +03:00
|
|
|
static int bell_freq = 1880;
|
|
|
|
static int bell_length = 10;
|
|
|
|
static int bell_volume = 100;
|
|
|
|
static int bell_ringing = 0;
|
|
|
|
|
1996-12-16 19:17:02 +03:00
|
|
|
static int ascmatch __P((struct device *, struct cfdata *, void *));
|
1995-09-21 07:36:25 +04:00
|
|
|
static void ascattach __P((struct device *, struct device *, void *));
|
1993-12-21 06:16:01 +03:00
|
|
|
|
1996-03-17 04:26:49 +03:00
|
|
|
struct cfattach asc_ca = {
|
1996-05-05 10:15:56 +04:00
|
|
|
sizeof(struct device), ascmatch, ascattach
|
1996-03-17 04:26:49 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct cfdriver asc_cd = {
|
|
|
|
NULL, "asc", DV_DULL, NULL, 0
|
|
|
|
};
|
1993-12-21 06:16:01 +03:00
|
|
|
|
1994-07-21 04:44:00 +04:00
|
|
|
static int
|
1996-12-16 19:17:02 +03:00
|
|
|
ascmatch(parent, cf, aux)
|
|
|
|
struct device *parent;
|
|
|
|
struct cfdata *cf;
|
|
|
|
void *aux;
|
1993-12-21 06:16:01 +03:00
|
|
|
{
|
1997-02-03 20:36:00 +03:00
|
|
|
static int asc_matched = 0;
|
|
|
|
struct obio_attach_args *oa = aux;
|
|
|
|
bus_space_tag_t bst = MAC68K_BUS_SPACE_MEM;
|
|
|
|
bus_space_handle_t bsh;
|
|
|
|
bus_addr_t addr;
|
|
|
|
int rval = 0;
|
|
|
|
|
|
|
|
/* Allow only one instance. */
|
|
|
|
if (asc_matched)
|
|
|
|
return (0);
|
|
|
|
asc_matched = 1;
|
|
|
|
|
|
|
|
addr = (bus_addr_t) (oa->oa_addr ? oa->oa_addr : MAC68K_ASC_BASE);
|
|
|
|
|
|
|
|
if (bus_space_map(bst, addr, MAC68K_ASC_LEN, 0, &bsh))
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
if (bus_probe(bst, bsh, 0, 1))
|
|
|
|
rval = 1;
|
|
|
|
else
|
|
|
|
rval = 0;
|
|
|
|
|
|
|
|
bus_space_unmap(bst, bsh, MAC68K_ASC_LEN);
|
|
|
|
|
|
|
|
return rval;
|
1993-12-21 06:16:01 +03:00
|
|
|
}
|
|
|
|
|
1994-07-21 04:44:00 +04:00
|
|
|
static void
|
1997-02-03 20:36:00 +03:00
|
|
|
ascattach(parent, self, aux)
|
|
|
|
struct device *parent, *self;
|
|
|
|
void *aux;
|
1994-07-21 04:44:00 +04:00
|
|
|
{
|
1997-02-03 20:36:00 +03:00
|
|
|
struct obio_attach_args *oa = aux;
|
|
|
|
bus_addr_t addr;
|
|
|
|
|
|
|
|
addr = (bus_addr_t) (oa->oa_addr ? oa->oa_addr : MAC68K_ASC_BASE);
|
|
|
|
if (bus_space_map(asc_tag, addr, MAC68K_ASC_LEN, 0,
|
|
|
|
&asc_handle)) {
|
|
|
|
printf("%s: can't map memory space\n", self->dv_xname);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf(" Apple sound chip\n");
|
1996-11-09 20:26:26 +03:00
|
|
|
asc_configured = 1;
|
1994-07-21 04:44:00 +04:00
|
|
|
}
|
1993-12-21 06:16:01 +03:00
|
|
|
|
1995-04-21 06:47:35 +04:00
|
|
|
int
|
1996-05-05 10:15:56 +04:00
|
|
|
asc_setbellparams(freq, length, volume)
|
1997-02-03 20:36:00 +03:00
|
|
|
int freq;
|
|
|
|
int length;
|
|
|
|
int volume;
|
1993-12-21 06:16:01 +03:00
|
|
|
{
|
1997-02-03 20:36:00 +03:00
|
|
|
if (!asc_configured)
|
|
|
|
return (ENODEV);
|
1996-11-09 20:26:26 +03:00
|
|
|
|
1997-02-03 20:36:00 +03:00
|
|
|
/*
|
|
|
|
* I only perform these checks for sanity. I suppose
|
|
|
|
* someone might want a bell that rings all day, but then
|
|
|
|
* they can make kernel mods themselves.
|
|
|
|
*/
|
1993-12-21 06:16:01 +03:00
|
|
|
|
1995-04-21 06:47:35 +04:00
|
|
|
if (freq < 10 || freq > 40000)
|
|
|
|
return (EINVAL);
|
|
|
|
if (length < 0 || length > 3600)
|
|
|
|
return (EINVAL);
|
|
|
|
if (volume < 0 || volume > 100)
|
|
|
|
return (EINVAL);
|
1993-12-21 06:16:01 +03:00
|
|
|
|
|
|
|
bell_freq = freq;
|
|
|
|
bell_length = length;
|
|
|
|
bell_volume = volume;
|
|
|
|
|
1995-04-21 06:47:35 +04:00
|
|
|
return (0);
|
1993-12-21 06:16:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1995-04-21 06:47:35 +04:00
|
|
|
int
|
1996-05-05 10:15:56 +04:00
|
|
|
asc_getbellparams(freq, length, volume)
|
|
|
|
int *freq;
|
|
|
|
int *length;
|
|
|
|
int *volume;
|
1993-12-21 06:16:01 +03:00
|
|
|
{
|
1997-02-03 20:36:00 +03:00
|
|
|
if (!asc_configured)
|
|
|
|
return (ENODEV);
|
1996-11-09 20:26:26 +03:00
|
|
|
|
1993-12-21 06:16:01 +03:00
|
|
|
*freq = bell_freq;
|
|
|
|
*length = bell_length;
|
|
|
|
*volume = bell_volume;
|
|
|
|
|
1995-04-21 06:47:35 +04:00
|
|
|
return (0);
|
1993-12-21 06:16:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1995-04-21 06:47:35 +04:00
|
|
|
void
|
1996-05-05 10:15:56 +04:00
|
|
|
asc_bellstop(param)
|
|
|
|
int param;
|
1993-12-21 06:16:01 +03:00
|
|
|
{
|
1997-02-03 20:36:00 +03:00
|
|
|
if (!asc_configured)
|
|
|
|
return;
|
1996-11-09 20:26:26 +03:00
|
|
|
|
1995-04-21 06:47:35 +04:00
|
|
|
if (bell_ringing > 1000 || bell_ringing < 0)
|
1997-02-03 20:36:00 +03:00
|
|
|
panic("bell got out of sync?");
|
|
|
|
|
|
|
|
if (--bell_ringing == 0) /* disable ASC */
|
|
|
|
bus_space_write_1(asc_tag, asc_handle, 0x801, 0);
|
1993-12-21 06:16:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1995-04-21 06:47:35 +04:00
|
|
|
int
|
|
|
|
asc_ringbell()
|
1993-12-21 06:16:01 +03:00
|
|
|
{
|
1995-04-21 06:47:35 +04:00
|
|
|
int i;
|
1993-12-21 06:16:01 +03:00
|
|
|
unsigned long freq;
|
|
|
|
|
1997-02-03 20:36:00 +03:00
|
|
|
if (!asc_configured)
|
|
|
|
return (ENODEV);
|
1996-11-09 20:26:26 +03:00
|
|
|
|
1995-04-21 06:47:35 +04:00
|
|
|
if (bell_ringing == 0) {
|
1997-02-03 20:36:00 +03:00
|
|
|
|
1995-04-21 06:47:35 +04:00
|
|
|
for (i = 0; i < 0x800; i++)
|
1997-02-03 20:36:00 +03:00
|
|
|
bus_space_write_1(asc_tag, asc_handle, i, 0);
|
1995-04-21 06:47:35 +04:00
|
|
|
|
|
|
|
for (i = 0; i < 256; i++) {
|
1997-02-03 20:36:00 +03:00
|
|
|
bus_space_write_1(asc_tag, asc_handle, i, i / 4);
|
|
|
|
bus_space_write_1(asc_tag, asc_handle, i + 512, i / 4);
|
|
|
|
bus_space_write_1(asc_tag, asc_handle, i + 1024, i / 4);
|
|
|
|
bus_space_write_1(asc_tag, asc_handle, i + 1536, i / 4);
|
1995-04-21 06:47:35 +04:00
|
|
|
} /* up part of wave, four voices ? */
|
|
|
|
for (i = 0; i < 256; i++) {
|
1997-02-03 20:36:00 +03:00
|
|
|
bus_space_write_1(asc_tag, asc_handle, i + 256,
|
|
|
|
0x3f - (i / 4));
|
|
|
|
bus_space_write_1(asc_tag, asc_handle, i + 768,
|
|
|
|
0x3f - (i / 4));
|
|
|
|
bus_space_write_1(asc_tag, asc_handle, i + 1280,
|
|
|
|
0x3f - (i / 4));
|
|
|
|
bus_space_write_1(asc_tag, asc_handle, i + 1792,
|
|
|
|
0x3f - (i / 4));
|
1995-04-21 06:47:35 +04:00
|
|
|
} /* down part of wave, four voices ? */
|
1993-12-21 06:16:01 +03:00
|
|
|
|
1995-04-21 06:47:35 +04:00
|
|
|
/* Fix this. Need to find exact ASC sampling freq */
|
1993-12-21 06:16:01 +03:00
|
|
|
freq = 65536 * bell_freq / 466;
|
|
|
|
|
1996-10-13 07:21:13 +04:00
|
|
|
/* printf("beep: from %d, %02x %02x %02x %02x\n",
|
1995-04-21 06:47:35 +04:00
|
|
|
* cur_beep.freq, (freq >> 24) & 0xff, (freq >> 16) & 0xff,
|
|
|
|
* (freq >> 8) & 0xff, (freq) & 0xff); */
|
|
|
|
for (i = 0; i < 8; i++) {
|
1997-02-03 20:36:00 +03:00
|
|
|
bus_space_write_1(asc_tag, asc_handle, 0x814 + 8 * i,
|
|
|
|
(freq >> 24) & 0xff);
|
|
|
|
bus_space_write_1(asc_tag, asc_handle, 0x815 + 8 * i,
|
|
|
|
(freq >> 16) & 0xff);
|
|
|
|
bus_space_write_1(asc_tag, asc_handle, 0x816 + 8 * i,
|
|
|
|
(freq >> 8) & 0xff);
|
|
|
|
bus_space_write_1(asc_tag, asc_handle, 0x817 + 8 * i,
|
|
|
|
(freq) & 0xff);
|
1995-04-21 06:47:35 +04:00
|
|
|
} /* frequency; should put cur_beep.freq in here
|
|
|
|
* somewhere. */
|
|
|
|
|
1997-02-03 20:36:00 +03:00
|
|
|
bus_space_write_1(asc_tag, asc_handle, 0x807, 3); /* 44 ? */
|
|
|
|
bus_space_write_1(asc_tag, asc_handle, 0x806,
|
|
|
|
255 * bell_volume / 100);
|
|
|
|
bus_space_write_1(asc_tag, asc_handle, 0x805, 0);
|
|
|
|
bus_space_write_1(asc_tag, asc_handle, 0x80f, 0);
|
|
|
|
bus_space_write_1(asc_tag, asc_handle, 0x802, 2); /* sampled */
|
|
|
|
bus_space_write_1(asc_tag, asc_handle, 0x801, 2); /* enable sampled */
|
1993-12-21 06:16:01 +03:00
|
|
|
}
|
|
|
|
bell_ringing++;
|
1994-05-06 21:38:38 +04:00
|
|
|
timeout((void *) asc_bellstop, 0, bell_length);
|
1996-05-05 10:15:56 +04:00
|
|
|
|
1997-02-03 20:36:00 +03:00
|
|
|
return (0);
|
1993-12-21 06:16:01 +03:00
|
|
|
}
|