1999-06-24 10:51:40 +00:00
|
|
|
/*-
|
1999-07-03 08:50:45 +00:00
|
|
|
* Copyright (c) 1999 FreeBSD(98) Porting Team.
|
|
|
|
* 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 as
|
|
|
|
* the first lines of this file unmodified.
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``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 AUTHORS 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.
|
1999-06-24 10:51:40 +00:00
|
|
|
*/
|
|
|
|
|
2010-05-26 11:31:57 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1999-06-24 10:51:40 +00:00
|
|
|
#include "opt_syscons.h"
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/module.h>
|
|
|
|
#include <sys/bus.h>
|
1999-08-09 10:35:05 +00:00
|
|
|
#include <sys/cons.h>
|
2000-10-20 10:35:44 +00:00
|
|
|
#include <sys/consio.h>
|
2003-01-15 13:12:12 +00:00
|
|
|
#include <sys/sysctl.h>
|
2000-10-20 10:35:44 +00:00
|
|
|
|
1999-06-24 10:51:40 +00:00
|
|
|
#include <machine/clock.h>
|
|
|
|
|
|
|
|
#include <pc98/pc98/pc98_machdep.h>
|
|
|
|
|
|
|
|
#include <dev/syscons/syscons.h>
|
|
|
|
|
|
|
|
#include <isa/isavar.h>
|
|
|
|
|
|
|
|
static devclass_t sc_devclass;
|
|
|
|
|
2010-05-26 11:31:57 +00:00
|
|
|
static sc_softc_t main_softc;
|
1999-06-24 10:51:40 +00:00
|
|
|
|
2000-07-11 12:50:34 +00:00
|
|
|
static void
|
2010-05-26 11:31:57 +00:00
|
|
|
scidentify(driver_t *driver, device_t parent)
|
2000-07-11 12:50:34 +00:00
|
|
|
{
|
2010-05-26 11:31:57 +00:00
|
|
|
|
2000-07-11 12:50:34 +00:00
|
|
|
BUS_ADD_CHILD(parent, ISA_ORDER_SPECULATIVE, "sc", 0);
|
|
|
|
}
|
|
|
|
|
1999-06-24 10:51:40 +00:00
|
|
|
static int
|
|
|
|
scprobe(device_t dev)
|
|
|
|
{
|
2010-05-26 11:31:57 +00:00
|
|
|
|
1999-06-24 10:51:40 +00:00
|
|
|
/* No pnp support */
|
|
|
|
if (isa_get_vendorid(dev))
|
|
|
|
return (ENXIO);
|
|
|
|
|
|
|
|
device_set_desc(dev, "System console");
|
2010-05-26 11:31:57 +00:00
|
|
|
return (sc_probe_unit(device_get_unit(dev), device_get_flags(dev)));
|
1999-06-24 10:51:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
scattach(device_t dev)
|
|
|
|
{
|
2010-05-26 11:31:57 +00:00
|
|
|
|
1999-09-07 11:17:09 +00:00
|
|
|
return sc_attach_unit(device_get_unit(dev), device_get_flags(dev));
|
1999-06-24 10:51:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
sc_max_unit(void)
|
|
|
|
{
|
2010-05-26 11:31:57 +00:00
|
|
|
|
|
|
|
return (devclass_get_maxunit(sc_devclass));
|
1999-06-24 10:51:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sc_softc_t
|
|
|
|
*sc_get_softc(int unit, int flags)
|
|
|
|
{
|
|
|
|
sc_softc_t *sc;
|
|
|
|
|
2000-03-29 12:26:41 +00:00
|
|
|
if (unit < 0)
|
2010-05-26 11:31:57 +00:00
|
|
|
return (NULL);
|
|
|
|
if ((flags & SC_KERNEL_CONSOLE) != 0) {
|
1999-06-24 10:51:40 +00:00
|
|
|
/* FIXME: clear if it is wired to another unit! */
|
2000-01-20 15:16:49 +00:00
|
|
|
sc = &main_softc;
|
1999-06-24 10:51:40 +00:00
|
|
|
} else {
|
2010-05-26 11:31:57 +00:00
|
|
|
sc = device_get_softc(devclass_get_device(sc_devclass, unit));
|
2000-03-29 12:26:41 +00:00
|
|
|
if (sc == NULL)
|
2010-05-26 11:31:57 +00:00
|
|
|
return (NULL);
|
1999-06-24 10:51:40 +00:00
|
|
|
}
|
2000-01-20 15:16:49 +00:00
|
|
|
sc->unit = unit;
|
2010-05-26 11:31:57 +00:00
|
|
|
if ((sc->flags & SC_INIT_DONE) == 0) {
|
2000-01-20 15:16:49 +00:00
|
|
|
sc->keyboard = -1;
|
|
|
|
sc->adapter = -1;
|
|
|
|
sc->mouse_char = SC_MOUSE_CHAR;
|
|
|
|
}
|
2010-05-26 11:31:57 +00:00
|
|
|
return (sc);
|
1999-06-24 10:51:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sc_softc_t
|
|
|
|
*sc_find_softc(struct video_adapter *adp, struct keyboard *kbd)
|
|
|
|
{
|
|
|
|
sc_softc_t *sc;
|
|
|
|
int i;
|
2010-05-26 11:31:57 +00:00
|
|
|
int units;
|
1999-06-24 10:51:40 +00:00
|
|
|
|
|
|
|
sc = &main_softc;
|
2010-05-26 11:31:57 +00:00
|
|
|
if ((adp == NULL || adp == sc->adp) &&
|
|
|
|
(kbd == NULL || kbd == sc->kbd))
|
|
|
|
return (sc);
|
1999-06-24 10:51:40 +00:00
|
|
|
units = devclass_get_maxunit(sc_devclass);
|
|
|
|
for (i = 0; i < units; ++i) {
|
2010-05-26 11:31:57 +00:00
|
|
|
sc = device_get_softc(devclass_get_device(sc_devclass, i));
|
1999-06-24 10:51:40 +00:00
|
|
|
if (sc == NULL)
|
|
|
|
continue;
|
2010-05-26 11:31:57 +00:00
|
|
|
if ((adp == NULL || adp == sc->adp) &&
|
|
|
|
(kbd == NULL || kbd == sc->kbd))
|
|
|
|
return (sc);
|
1999-06-24 10:51:40 +00:00
|
|
|
}
|
2010-05-26 11:31:57 +00:00
|
|
|
return (NULL);
|
1999-06-24 10:51:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
sc_get_cons_priority(int *unit, int *flags)
|
|
|
|
{
|
2001-06-26 11:46:42 +00:00
|
|
|
const char *at;
|
2010-05-26 11:31:57 +00:00
|
|
|
int f, u;
|
1999-06-24 10:51:40 +00:00
|
|
|
|
|
|
|
*unit = -1;
|
2000-06-17 04:54:50 +00:00
|
|
|
for (u = 0; u < 16; u++) {
|
2003-07-02 16:09:02 +00:00
|
|
|
if (resource_disabled(SC_DRIVER_NAME, u))
|
1999-06-24 10:51:40 +00:00
|
|
|
continue;
|
2000-06-17 04:54:50 +00:00
|
|
|
if (resource_string_value(SC_DRIVER_NAME, u, "at", &at) != 0)
|
|
|
|
continue;
|
1999-06-24 10:51:40 +00:00
|
|
|
if (resource_int_value(SC_DRIVER_NAME, u, "flags", &f) != 0)
|
|
|
|
f = 0;
|
|
|
|
if (f & SC_KERNEL_CONSOLE) {
|
|
|
|
/* the user designates this unit to be the console */
|
|
|
|
*unit = u;
|
|
|
|
*flags = f;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (*unit < 0) {
|
|
|
|
/* ...otherwise remember the first found unit */
|
|
|
|
*unit = u;
|
|
|
|
*flags = f;
|
|
|
|
}
|
|
|
|
}
|
2009-03-06 11:10:31 +00:00
|
|
|
if (*unit < 0) {
|
|
|
|
*unit = 0;
|
|
|
|
*flags = 0;
|
|
|
|
}
|
2010-05-26 11:31:57 +00:00
|
|
|
return (CN_INTERNAL);
|
1999-06-24 10:51:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sc_get_bios_values(bios_values_t *values)
|
|
|
|
{
|
2000-08-08 09:28:32 +00:00
|
|
|
values->cursor_start = 15;
|
1999-06-24 10:51:40 +00:00
|
|
|
values->cursor_end = 16;
|
|
|
|
values->shift_state = 0;
|
2008-04-08 13:10:57 +00:00
|
|
|
values->bell_pitch = BELL_PITCH;
|
1999-06-24 10:51:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
sc_tone(int herz)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (herz) {
|
2005-05-14 09:10:02 +00:00
|
|
|
if (timer_spkr_acquire())
|
2010-05-26 11:31:57 +00:00
|
|
|
return (EBUSY);
|
The "free-lance" timer in the i8254 is only used for the speaker
these days, so de-generalize the acquire_timer/release_timer api
to just deal with speakers.
The new (optional) MD functions are:
timer_spkr_acquire()
timer_spkr_release()
and
timer_spkr_setfreq()
the last of which configures the timer to generate a tone of a given
frequency, in Hz instead of 1/1193182th of seconds.
Drop entirely timer2 on pc98, it is not used anywhere at all.
Move sysbeep() to kern/tty_cons.c and use the timer_spkr*() if
they exist, and do nothing otherwise.
Remove prototypes and empty acquire-/release-timer() and sysbeep()
functions from the non-beeping archs.
This eliminate the need for the speaker driver to know about
i8254frequency at all. In theory this makes the speaker driver MI,
contingent on the timer_spkr_*() functions existing but the driver
does not know this yet and still attaches to the ISA bus.
Syscons is more tricky, in one function, sc_tone(), it knows the hz
and things are just fine.
In the other function, sc_bell() it seems to get the period from
the KDMKTONE ioctl in terms if 1/1193182th second, so we hardcode
the 1193182 and leave it at that. It's probably not important.
Change a few other sysbeep() uses which obviously knew that the
argument was in terms of i8254 frequency, and leave alone those
that look like people thought sysbeep() took frequency in hertz.
This eliminates the knowledge of i8254_freq from all but the actual
clock.c code and the prof_machdep.c on amd64 and i386, where I think
it would be smart to ask for help from the timecounters anyway [TBD].
2008-03-26 20:09:21 +00:00
|
|
|
timer_spkr_setfreq(herz);
|
2010-05-26 11:31:57 +00:00
|
|
|
} else
|
2005-05-14 09:10:02 +00:00
|
|
|
timer_spkr_release();
|
2010-05-26 11:31:57 +00:00
|
|
|
|
|
|
|
return (0);
|
1999-06-24 10:51:40 +00:00
|
|
|
}
|
|
|
|
|
2000-07-11 12:50:34 +00:00
|
|
|
static device_method_t sc_methods[] = {
|
|
|
|
DEVMETHOD(device_identify, scidentify),
|
|
|
|
DEVMETHOD(device_probe, scprobe),
|
|
|
|
DEVMETHOD(device_attach, scattach),
|
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
static driver_t sc_driver = {
|
|
|
|
SC_DRIVER_NAME,
|
|
|
|
sc_methods,
|
|
|
|
sizeof(sc_softc_t),
|
|
|
|
};
|
|
|
|
|
1999-06-24 10:51:40 +00:00
|
|
|
DRIVER_MODULE(sc, isa, sc_driver, sc_devclass, 0, 0);
|