1999-01-23 16:53:30 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1999 Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2003-06-11 00:34:37 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1999-01-23 16:53:30 +00:00
|
|
|
#include "opt_kbd.h"
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
2004-05-30 20:27:19 +00:00
|
|
|
#include <sys/module.h>
|
1999-01-23 16:53:30 +00:00
|
|
|
#include <sys/bus.h>
|
|
|
|
|
2000-03-19 03:25:13 +00:00
|
|
|
#include <machine/bus.h>
|
1999-01-23 16:53:30 +00:00
|
|
|
#include <machine/resource.h>
|
2000-03-19 03:25:13 +00:00
|
|
|
#include <sys/rman.h>
|
1999-01-23 16:53:30 +00:00
|
|
|
|
2001-07-20 13:05:57 +00:00
|
|
|
#include <sys/kbio.h>
|
1999-01-23 16:53:30 +00:00
|
|
|
#include <dev/kbd/kbdreg.h>
|
2005-06-10 20:56:38 +00:00
|
|
|
#include <dev/atkbdc/atkbdreg.h>
|
|
|
|
#include <dev/atkbdc/atkbdcreg.h>
|
1999-01-23 16:53:30 +00:00
|
|
|
|
2000-03-19 03:25:13 +00:00
|
|
|
typedef struct {
|
|
|
|
struct resource *intr;
|
|
|
|
void *ih;
|
|
|
|
} atkbd_softc_t;
|
|
|
|
|
2003-04-30 12:57:40 +00:00
|
|
|
static devclass_t atkbd_devclass;
|
1999-01-23 16:53:30 +00:00
|
|
|
|
2001-09-06 12:09:26 +00:00
|
|
|
static void atkbdidentify(driver_t *driver, device_t dev);
|
1999-01-23 16:53:30 +00:00
|
|
|
static int atkbdprobe(device_t dev);
|
|
|
|
static int atkbdattach(device_t dev);
|
2001-06-30 10:02:32 +00:00
|
|
|
static int atkbdresume(device_t dev);
|
2005-06-10 20:56:38 +00:00
|
|
|
static void atkbdintr(void *arg);
|
1999-01-23 16:53:30 +00:00
|
|
|
|
|
|
|
static device_method_t atkbd_methods[] = {
|
2001-09-06 12:09:26 +00:00
|
|
|
DEVMETHOD(device_identify, atkbdidentify),
|
1999-01-23 16:53:30 +00:00
|
|
|
DEVMETHOD(device_probe, atkbdprobe),
|
|
|
|
DEVMETHOD(device_attach, atkbdattach),
|
2001-06-30 10:02:32 +00:00
|
|
|
DEVMETHOD(device_resume, atkbdresume),
|
1999-01-23 16:53:30 +00:00
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
static driver_t atkbd_driver = {
|
|
|
|
ATKBD_DRIVER_NAME,
|
|
|
|
atkbd_methods,
|
2000-03-19 03:25:13 +00:00
|
|
|
sizeof(atkbd_softc_t),
|
1999-01-23 16:53:30 +00:00
|
|
|
};
|
|
|
|
|
2001-09-06 12:09:26 +00:00
|
|
|
static void
|
|
|
|
atkbdidentify(driver_t *driver, device_t parent)
|
|
|
|
{
|
|
|
|
|
|
|
|
/* always add at least one child */
|
2001-09-15 04:38:20 +00:00
|
|
|
BUS_ADD_CHILD(parent, KBDC_RID_KBD, driver->name, device_get_unit(parent));
|
2001-09-06 12:09:26 +00:00
|
|
|
}
|
|
|
|
|
1999-01-23 16:53:30 +00:00
|
|
|
static int
|
|
|
|
atkbdprobe(device_t dev)
|
|
|
|
{
|
2001-09-06 12:09:26 +00:00
|
|
|
struct resource *res;
|
|
|
|
u_long irq;
|
|
|
|
int flags;
|
|
|
|
int rid;
|
1999-01-23 16:53:30 +00:00
|
|
|
|
|
|
|
device_set_desc(dev, "AT Keyboard");
|
|
|
|
|
|
|
|
/* obtain parameters */
|
2001-09-06 12:09:26 +00:00
|
|
|
flags = device_get_flags(dev);
|
|
|
|
|
|
|
|
/* see if IRQ is available */
|
|
|
|
rid = KBDC_RID_KBD;
|
2010-12-16 17:14:37 +00:00
|
|
|
res = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, RF_ACTIVE);
|
2001-09-06 12:09:26 +00:00
|
|
|
if (res == NULL) {
|
|
|
|
if (bootverbose)
|
|
|
|
device_printf(dev, "unable to allocate IRQ\n");
|
|
|
|
return ENXIO;
|
|
|
|
}
|
|
|
|
irq = rman_get_start(res);
|
|
|
|
bus_release_resource(dev, SYS_RES_IRQ, rid, res);
|
1999-01-23 16:53:30 +00:00
|
|
|
|
|
|
|
/* probe the device */
|
2013-01-11 21:42:23 +00:00
|
|
|
return atkbd_probe_unit(dev, irq, flags);
|
1999-01-23 16:53:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
atkbdattach(device_t dev)
|
|
|
|
{
|
2000-03-19 03:25:13 +00:00
|
|
|
atkbd_softc_t *sc;
|
1999-08-22 09:52:33 +00:00
|
|
|
keyboard_t *kbd;
|
2001-09-06 12:09:26 +00:00
|
|
|
u_long irq;
|
|
|
|
int flags;
|
2000-03-19 03:25:13 +00:00
|
|
|
int rid;
|
1999-01-23 16:53:30 +00:00
|
|
|
int error;
|
|
|
|
|
2000-03-19 03:25:13 +00:00
|
|
|
sc = device_get_softc(dev);
|
|
|
|
|
2001-09-06 12:09:26 +00:00
|
|
|
rid = KBDC_RID_KBD;
|
|
|
|
irq = bus_get_resource_start(dev, SYS_RES_IRQ, rid);
|
|
|
|
flags = device_get_flags(dev);
|
2013-01-11 21:42:23 +00:00
|
|
|
error = atkbd_attach_unit(dev, &kbd, irq, flags);
|
1999-01-23 16:53:30 +00:00
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
/* declare our interrupt handler */
|
2010-12-16 17:14:37 +00:00
|
|
|
sc->intr = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, RF_ACTIVE);
|
2001-09-06 12:09:26 +00:00
|
|
|
if (sc->intr == NULL)
|
|
|
|
return ENXIO;
|
2007-02-23 12:19:07 +00:00
|
|
|
error = bus_setup_intr(dev, sc->intr, INTR_TYPE_TTY, NULL, atkbdintr,
|
2001-09-06 12:09:26 +00:00
|
|
|
kbd, &sc->ih);
|
|
|
|
if (error)
|
|
|
|
bus_release_resource(dev, SYS_RES_IRQ, rid, sc->intr);
|
1999-01-23 16:53:30 +00:00
|
|
|
|
2001-09-06 12:09:26 +00:00
|
|
|
return error;
|
1999-01-23 16:53:30 +00:00
|
|
|
}
|
|
|
|
|
2001-06-30 10:02:32 +00:00
|
|
|
static int
|
|
|
|
atkbdresume(device_t dev)
|
|
|
|
{
|
2001-09-23 08:42:06 +00:00
|
|
|
atkbd_softc_t *sc;
|
2001-06-30 10:02:32 +00:00
|
|
|
keyboard_t *kbd;
|
2001-09-23 08:42:06 +00:00
|
|
|
int args[2];
|
2001-06-30 10:02:32 +00:00
|
|
|
|
2001-09-23 08:42:06 +00:00
|
|
|
sc = device_get_softc(dev);
|
2001-06-30 10:02:32 +00:00
|
|
|
kbd = kbd_get_keyboard(kbd_find_keyboard(ATKBD_DRIVER_NAME,
|
|
|
|
device_get_unit(dev)));
|
2001-09-23 08:42:06 +00:00
|
|
|
if (kbd) {
|
|
|
|
kbd->kb_flags &= ~KB_INITIALIZED;
|
|
|
|
args[0] = device_get_unit(device_get_parent(dev));
|
|
|
|
args[1] = rman_get_start(sc->intr);
|
2007-12-29 21:55:25 +00:00
|
|
|
kbdd_init(kbd, device_get_unit(dev), &kbd, args,
|
|
|
|
device_get_flags(dev));
|
|
|
|
kbdd_clear_state(kbd);
|
2001-09-23 08:42:06 +00:00
|
|
|
}
|
2001-06-30 10:02:32 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
Keyboard driver update in preparation for the USB keyboard driver.
- Refined internal interface in keyboard drivers so that:
1. the side effect of device probe is kept minimal,
2. polling mode function is added,
3. and new ioctl and configuration options are added (see below).
- Added new ioctl: KDSETREPEAT
Set keyboard typematic rate. There has existed an ioctl command,
KDSETRAD, for the same purpose. However, KDSETRAD is dependent on
the AT keyboard. KDSETREPEAT provides more generic interface.
KDSETRAD will still be supported in the atkbd driver.
- Added new configuration options:
ATKBD_DFLT_KEYMAP
Specify a keymap to be used as the default, built-in keymap.
(There has been undocumented options, DKKEYMAP, UKKEYMAP, GRKEYMAP,
SWKEYMAP, RUKEYMAP, ESKEYMAP, and ISKEYMAP to set the default keymap.
These options are now gone for good. The new option is more general.)
KBD_DISABLE_KEYMAP_LOADING
Don't allow the user to change the keymap.
1999-03-10 10:36:53 +00:00
|
|
|
static void
|
2005-06-10 20:56:38 +00:00
|
|
|
atkbdintr(void *arg)
|
Keyboard driver update in preparation for the USB keyboard driver.
- Refined internal interface in keyboard drivers so that:
1. the side effect of device probe is kept minimal,
2. polling mode function is added,
3. and new ioctl and configuration options are added (see below).
- Added new ioctl: KDSETREPEAT
Set keyboard typematic rate. There has existed an ioctl command,
KDSETRAD, for the same purpose. However, KDSETRAD is dependent on
the AT keyboard. KDSETREPEAT provides more generic interface.
KDSETRAD will still be supported in the atkbd driver.
- Added new configuration options:
ATKBD_DFLT_KEYMAP
Specify a keymap to be used as the default, built-in keymap.
(There has been undocumented options, DKKEYMAP, UKKEYMAP, GRKEYMAP,
SWKEYMAP, RUKEYMAP, ESKEYMAP, and ISKEYMAP to set the default keymap.
These options are now gone for good. The new option is more general.)
KBD_DISABLE_KEYMAP_LOADING
Don't allow the user to change the keymap.
1999-03-10 10:36:53 +00:00
|
|
|
{
|
1999-08-22 09:52:33 +00:00
|
|
|
keyboard_t *kbd;
|
Keyboard driver update in preparation for the USB keyboard driver.
- Refined internal interface in keyboard drivers so that:
1. the side effect of device probe is kept minimal,
2. polling mode function is added,
3. and new ioctl and configuration options are added (see below).
- Added new ioctl: KDSETREPEAT
Set keyboard typematic rate. There has existed an ioctl command,
KDSETRAD, for the same purpose. However, KDSETRAD is dependent on
the AT keyboard. KDSETREPEAT provides more generic interface.
KDSETRAD will still be supported in the atkbd driver.
- Added new configuration options:
ATKBD_DFLT_KEYMAP
Specify a keymap to be used as the default, built-in keymap.
(There has been undocumented options, DKKEYMAP, UKKEYMAP, GRKEYMAP,
SWKEYMAP, RUKEYMAP, ESKEYMAP, and ISKEYMAP to set the default keymap.
These options are now gone for good. The new option is more general.)
KBD_DISABLE_KEYMAP_LOADING
Don't allow the user to change the keymap.
1999-03-10 10:36:53 +00:00
|
|
|
|
1999-08-22 09:52:33 +00:00
|
|
|
kbd = (keyboard_t *)arg;
|
2007-12-29 21:55:25 +00:00
|
|
|
kbdd_intr(kbd, NULL);
|
Keyboard driver update in preparation for the USB keyboard driver.
- Refined internal interface in keyboard drivers so that:
1. the side effect of device probe is kept minimal,
2. polling mode function is added,
3. and new ioctl and configuration options are added (see below).
- Added new ioctl: KDSETREPEAT
Set keyboard typematic rate. There has existed an ioctl command,
KDSETRAD, for the same purpose. However, KDSETRAD is dependent on
the AT keyboard. KDSETREPEAT provides more generic interface.
KDSETRAD will still be supported in the atkbd driver.
- Added new configuration options:
ATKBD_DFLT_KEYMAP
Specify a keymap to be used as the default, built-in keymap.
(There has been undocumented options, DKKEYMAP, UKKEYMAP, GRKEYMAP,
SWKEYMAP, RUKEYMAP, ESKEYMAP, and ISKEYMAP to set the default keymap.
These options are now gone for good. The new option is more general.)
KBD_DISABLE_KEYMAP_LOADING
Don't allow the user to change the keymap.
1999-03-10 10:36:53 +00:00
|
|
|
}
|
|
|
|
|
1999-01-23 16:53:30 +00:00
|
|
|
DRIVER_MODULE(atkbd, atkbdc, atkbd_driver, atkbd_devclass, 0, 0);
|