2009-02-21 14:55:06 +00:00
|
|
|
|
/* Support for the HID Boot Protocol. */
|
|
|
|
|
/*
|
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
|
|
|
|
* Copyright (C) 2008, 2009 Free Software Foundation, Inc.
|
|
|
|
|
*
|
|
|
|
|
* GRUB is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* GRUB is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <grub/term.h>
|
|
|
|
|
#include <grub/time.h>
|
|
|
|
|
#include <grub/cpu/io.h>
|
|
|
|
|
#include <grub/misc.h>
|
|
|
|
|
#include <grub/term.h>
|
|
|
|
|
#include <grub/usb.h>
|
|
|
|
|
#include <grub/dl.h>
|
|
|
|
|
#include <grub/time.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static char keyboard_map[128] =
|
|
|
|
|
{
|
|
|
|
|
'\0', '\0', '\0', '\0', 'a', 'b', 'c', 'd',
|
|
|
|
|
'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l',
|
|
|
|
|
'm', 'n', 'o', 'p', 'q', 'r', 's', 't',
|
|
|
|
|
'u', 'v', 'w', 'x', 'y', 'z', '1', '2',
|
|
|
|
|
'3', '4', '5', '6', '7', '8', '9', '0',
|
|
|
|
|
'\n', GRUB_TERM_ESC, GRUB_TERM_BACKSPACE, GRUB_TERM_TAB, ' ', '-', '=', '[',
|
|
|
|
|
']', '\\', '#', ';', '\'', '`', ',', '.',
|
|
|
|
|
'/', '\0', '\0', '\0', '\0', '\0', '\0', '\0',
|
|
|
|
|
'\0', '\0', '\0', '\0', '\0', '\0', '\0', '\0',
|
|
|
|
|
'\0', '\0', GRUB_TERM_HOME, GRUB_TERM_PPAGE, GRUB_TERM_DC, GRUB_TERM_END, GRUB_TERM_NPAGE, GRUB_TERM_RIGHT,
|
|
|
|
|
GRUB_TERM_LEFT, GRUB_TERM_DOWN, GRUB_TERM_UP
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static char keyboard_map_shift[128] =
|
|
|
|
|
{
|
|
|
|
|
'\0', '\0', '\0', '\0', 'A', 'B', 'C', 'D',
|
|
|
|
|
'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
|
|
|
|
|
'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T',
|
|
|
|
|
'U', 'V', 'W', 'X', 'Y', 'Z', '!', '@',
|
|
|
|
|
'#', '$', '%', '^', '&', '*', '(', ')',
|
|
|
|
|
'\n', '\0', '\0', '\0', ' ', '_', '+', '{',
|
|
|
|
|
'}', '|', '#', ':', '"', '`', '<', '>',
|
|
|
|
|
'?'
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2009-08-28 13:20:34 +00:00
|
|
|
|
/* Valid values for bRequest. See HID definition version 1.11 section 7.2. */
|
|
|
|
|
#define USB_HID_GET_REPORT 0x01
|
|
|
|
|
#define USB_HID_GET_IDLE 0x02
|
|
|
|
|
#define USB_HID_GET_PROTOCOL 0x03
|
|
|
|
|
#define USB_HID_SET_REPORT 0x09
|
|
|
|
|
#define USB_HID_SET_IDLE 0x0A
|
|
|
|
|
#define USB_HID_SET_PROTOCOL 0x0B
|
|
|
|
|
|
2010-08-01 21:08:33 +00:00
|
|
|
|
#define USB_HID_BOOT_SUBCLASS 0x01
|
|
|
|
|
#define USB_HID_KBD_PROTOCOL 0x01
|
|
|
|
|
|
2010-07-17 01:57:59 +00:00
|
|
|
|
static int grub_usb_keyboard_checkkey (struct grub_term_input *term);
|
|
|
|
|
static int grub_usb_keyboard_getkey (struct grub_term_input *term);
|
|
|
|
|
static int grub_usb_keyboard_getkeystatus (struct grub_term_input *term);
|
|
|
|
|
|
|
|
|
|
static struct grub_term_input grub_usb_keyboard_term =
|
|
|
|
|
{
|
|
|
|
|
.checkkey = grub_usb_keyboard_checkkey,
|
|
|
|
|
.getkey = grub_usb_keyboard_getkey,
|
|
|
|
|
.getkeystatus = grub_usb_keyboard_getkeystatus,
|
|
|
|
|
.next = 0
|
|
|
|
|
};
|
|
|
|
|
|
2010-08-20 12:36:29 +00:00
|
|
|
|
struct grub_usb_keyboard_data
|
|
|
|
|
{
|
|
|
|
|
grub_usb_device_t usbdev;
|
|
|
|
|
grub_uint8_t status;
|
|
|
|
|
int key;
|
2010-08-20 14:34:34 +00:00
|
|
|
|
struct grub_usb_desc_endp *endp;
|
2010-08-20 12:36:29 +00:00
|
|
|
|
};
|
|
|
|
|
|
2010-07-17 01:57:59 +00:00
|
|
|
|
static struct grub_term_input grub_usb_keyboards[16];
|
|
|
|
|
|
2009-02-21 14:55:06 +00:00
|
|
|
|
static void
|
2010-07-17 01:57:59 +00:00
|
|
|
|
grub_usb_keyboard_detach (grub_usb_device_t usbdev,
|
|
|
|
|
int config __attribute__ ((unused)),
|
|
|
|
|
int interface __attribute__ ((unused)))
|
2009-02-21 14:55:06 +00:00
|
|
|
|
{
|
2010-07-17 01:57:59 +00:00
|
|
|
|
unsigned i;
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE (grub_usb_keyboards); i++)
|
2010-08-20 17:34:29 +00:00
|
|
|
|
{
|
|
|
|
|
struct grub_usb_keyboard_data *data = grub_usb_keyboards[i].data;
|
|
|
|
|
|
|
|
|
|
if (!data)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (data->usbdev != usbdev)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
grub_term_unregister_input (&grub_usb_keyboards[i]);
|
|
|
|
|
grub_free ((char *) grub_usb_keyboards[i].name);
|
|
|
|
|
grub_usb_keyboards[i].name = NULL;
|
|
|
|
|
grub_free (grub_usb_keyboards[i].data);
|
|
|
|
|
grub_usb_keyboards[i].data = 0;
|
|
|
|
|
}
|
2010-07-17 01:57:59 +00:00
|
|
|
|
}
|
2009-02-21 14:55:06 +00:00
|
|
|
|
|
2010-07-17 01:57:59 +00:00
|
|
|
|
static int
|
|
|
|
|
grub_usb_keyboard_attach (grub_usb_device_t usbdev, int configno, int interfno)
|
|
|
|
|
{
|
|
|
|
|
unsigned curnum;
|
2010-08-20 12:36:29 +00:00
|
|
|
|
struct grub_usb_keyboard_data *data;
|
2010-08-20 14:34:34 +00:00
|
|
|
|
struct grub_usb_desc_endp *endp = NULL;
|
|
|
|
|
int j;
|
2010-07-17 01:57:59 +00:00
|
|
|
|
|
|
|
|
|
grub_dprintf ("usb_keyboard", "%x %x %x %d %d\n",
|
|
|
|
|
usbdev->descdev.class, usbdev->descdev.subclass,
|
|
|
|
|
usbdev->descdev.protocol, configno, interfno);
|
|
|
|
|
|
|
|
|
|
for (curnum = 0; curnum < ARRAY_SIZE (grub_usb_keyboards); curnum++)
|
|
|
|
|
if (!grub_usb_keyboards[curnum].data)
|
|
|
|
|
break;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2010-07-17 01:57:59 +00:00
|
|
|
|
if (curnum == ARRAY_SIZE (grub_usb_keyboards))
|
|
|
|
|
return 0;
|
2009-02-21 14:55:06 +00:00
|
|
|
|
|
2010-07-17 01:57:59 +00:00
|
|
|
|
if (usbdev->descdev.class != 0
|
|
|
|
|
|| usbdev->descdev.subclass != 0 || usbdev->descdev.protocol != 0)
|
|
|
|
|
return 0;
|
2009-02-21 14:55:06 +00:00
|
|
|
|
|
2010-08-01 21:08:33 +00:00
|
|
|
|
if (usbdev->config[configno].interf[interfno].descif->subclass
|
|
|
|
|
!= USB_HID_BOOT_SUBCLASS
|
|
|
|
|
|| usbdev->config[configno].interf[interfno].descif->protocol
|
|
|
|
|
!= USB_HID_KBD_PROTOCOL)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2010-08-20 14:34:34 +00:00
|
|
|
|
for (j = 0; j < usbdev->config[configno].interf[interfno].descif->endpointcnt;
|
|
|
|
|
j++)
|
|
|
|
|
{
|
|
|
|
|
endp = &usbdev->config[configno].interf[interfno].descendp[j];
|
|
|
|
|
|
|
|
|
|
if ((endp->endp_addr & 128) && grub_usb_get_ep_type(endp)
|
|
|
|
|
== GRUB_USB_EP_INTERRUPT)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (j == usbdev->config[configno].interf[interfno].descif->endpointcnt)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2010-08-20 18:26:57 +00:00
|
|
|
|
grub_dprintf ("usb_keyboard", "HID found!\n");
|
2009-02-21 14:55:06 +00:00
|
|
|
|
|
2010-08-20 12:36:29 +00:00
|
|
|
|
data = grub_malloc (sizeof (*data));
|
|
|
|
|
if (!data)
|
|
|
|
|
{
|
|
|
|
|
grub_print_error ();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
data->usbdev = usbdev;
|
2010-08-20 14:34:34 +00:00
|
|
|
|
data->endp = endp;
|
2010-08-20 12:36:29 +00:00
|
|
|
|
|
2009-02-21 14:55:06 +00:00
|
|
|
|
/* Place the device in boot mode. */
|
2010-07-18 22:13:06 +00:00
|
|
|
|
grub_usb_control_msg (usbdev, GRUB_USB_REQTYPE_CLASS_INTERFACE_OUT,
|
2010-08-20 10:22:23 +00:00
|
|
|
|
USB_HID_SET_PROTOCOL, 0, 0, 0, 0);
|
2009-02-21 14:55:06 +00:00
|
|
|
|
|
2009-05-04 20:06:05 +00:00
|
|
|
|
/* Reports every time an event occurs and not more often than that. */
|
2010-07-18 22:13:06 +00:00
|
|
|
|
grub_usb_control_msg (usbdev, GRUB_USB_REQTYPE_CLASS_INTERFACE_OUT,
|
2010-08-20 10:22:23 +00:00
|
|
|
|
USB_HID_SET_IDLE, 0<<8, 0, 0, 0);
|
2010-07-17 01:57:59 +00:00
|
|
|
|
|
|
|
|
|
grub_memcpy (&grub_usb_keyboards[curnum], &grub_usb_keyboard_term,
|
|
|
|
|
sizeof (grub_usb_keyboards[curnum]));
|
2010-08-20 12:36:29 +00:00
|
|
|
|
grub_usb_keyboards[curnum].data = data;
|
2010-07-17 01:57:59 +00:00
|
|
|
|
usbdev->config[configno].interf[interfno].detach_hook
|
|
|
|
|
= grub_usb_keyboard_detach;
|
|
|
|
|
grub_usb_keyboards[curnum].name = grub_xasprintf ("usb_keyboard%d", curnum);
|
|
|
|
|
if (!grub_usb_keyboards[curnum].name)
|
2010-08-20 12:36:29 +00:00
|
|
|
|
{
|
|
|
|
|
grub_print_error ();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2010-07-17 01:57:59 +00:00
|
|
|
|
|
2010-08-20 12:36:29 +00:00
|
|
|
|
{
|
|
|
|
|
grub_uint8_t report[8];
|
|
|
|
|
grub_usb_err_t err;
|
|
|
|
|
grub_memset (report, 0, sizeof (report));
|
|
|
|
|
err = grub_usb_control_msg (usbdev, GRUB_USB_REQTYPE_CLASS_INTERFACE_IN,
|
|
|
|
|
USB_HID_GET_REPORT, 0x0000, interfno,
|
|
|
|
|
sizeof (report), (char *) report);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
data->status = 0;
|
|
|
|
|
data->key = -1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
data->status = report[0];
|
|
|
|
|
data->key = report[2] ? : -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-07-17 01:57:59 +00:00
|
|
|
|
|
2010-08-20 12:36:29 +00:00
|
|
|
|
grub_term_register_input_active ("usb_keyboard", &grub_usb_keyboards[curnum]);
|
2009-02-21 14:55:06 +00:00
|
|
|
|
|
2010-08-20 12:36:29 +00:00
|
|
|
|
return 1;
|
2009-02-21 14:55:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2010-07-17 01:57:59 +00:00
|
|
|
|
grub_usb_keyboard_checkkey (struct grub_term_input *term)
|
2009-02-21 14:55:06 +00:00
|
|
|
|
{
|
2009-08-24 17:03:24 +00:00
|
|
|
|
grub_uint8_t data[8];
|
2010-08-20 12:36:29 +00:00
|
|
|
|
grub_usb_err_t err;
|
|
|
|
|
struct grub_usb_keyboard_data *termdata = term->data;
|
|
|
|
|
grub_size_t actual;
|
|
|
|
|
|
|
|
|
|
if (termdata->key != -1)
|
|
|
|
|
return termdata->key;
|
2009-02-21 14:55:06 +00:00
|
|
|
|
|
|
|
|
|
data[2] = 0;
|
2010-08-20 12:36:29 +00:00
|
|
|
|
/* Poll interrupt pipe. */
|
2010-08-20 14:34:34 +00:00
|
|
|
|
err = grub_usb_bulk_read_extended (termdata->usbdev,
|
|
|
|
|
termdata->endp->endp_addr, sizeof (data),
|
|
|
|
|
(char *) data, 10, &actual);
|
2010-08-20 14:49:24 +00:00
|
|
|
|
if (err || actual < 1)
|
2010-08-20 12:36:29 +00:00
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
termdata->status = data[0];
|
2009-02-21 14:55:06 +00:00
|
|
|
|
|
2010-08-20 12:36:29 +00:00
|
|
|
|
if (actual < 3 || !data[2])
|
2009-02-21 14:55:06 +00:00
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
grub_dprintf ("usb_keyboard",
|
|
|
|
|
"report: 0x%02x 0x%02x 0x%02x 0x%02x"
|
|
|
|
|
" 0x%02x 0x%02x 0x%02x 0x%02x\n",
|
|
|
|
|
data[0], data[1], data[2], data[3],
|
|
|
|
|
data[4], data[5], data[6], data[7]);
|
|
|
|
|
|
|
|
|
|
/* Check if the Control or Shift key was pressed. */
|
|
|
|
|
if (data[0] & 0x01 || data[0] & 0x10)
|
2010-08-20 12:36:29 +00:00
|
|
|
|
termdata->key = keyboard_map[data[2]] - 'a' + 1;
|
2009-02-21 14:55:06 +00:00
|
|
|
|
else if (data[0] & 0x02 || data[0] & 0x20)
|
2010-08-20 12:36:29 +00:00
|
|
|
|
termdata->key = keyboard_map_shift[data[2]];
|
2009-02-21 14:55:06 +00:00
|
|
|
|
else
|
2010-08-20 12:36:29 +00:00
|
|
|
|
termdata->key = keyboard_map[data[2]];
|
2009-02-21 14:55:06 +00:00
|
|
|
|
|
2010-08-20 12:36:29 +00:00
|
|
|
|
if (termdata->key == 0)
|
2009-02-21 14:55:06 +00:00
|
|
|
|
grub_printf ("Unknown key 0x%x detected\n", data[2]);
|
|
|
|
|
|
|
|
|
|
grub_errno = GRUB_ERR_NONE;
|
|
|
|
|
|
2010-08-20 12:36:29 +00:00
|
|
|
|
return termdata->key;
|
2009-02-21 14:55:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2010-05-07 00:30:44 +00:00
|
|
|
|
grub_usb_keyboard_getkey (struct grub_term_input *term)
|
2009-02-21 14:55:06 +00:00
|
|
|
|
{
|
2010-08-20 12:36:29 +00:00
|
|
|
|
int ret;
|
|
|
|
|
struct grub_usb_keyboard_data *termdata = term->data;
|
2009-02-21 14:55:06 +00:00
|
|
|
|
|
2010-08-20 12:36:29 +00:00
|
|
|
|
while (termdata->key == -1)
|
|
|
|
|
grub_usb_keyboard_checkkey (term);
|
2009-02-21 14:55:06 +00:00
|
|
|
|
|
2010-08-20 12:36:29 +00:00
|
|
|
|
ret = termdata->key;
|
2009-02-21 14:55:06 +00:00
|
|
|
|
|
2010-08-20 12:36:29 +00:00
|
|
|
|
termdata->key = -1;
|
2009-02-21 14:55:06 +00:00
|
|
|
|
|
2010-08-20 12:36:29 +00:00
|
|
|
|
return ret;
|
2009-02-21 14:55:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-08-28 13:20:34 +00:00
|
|
|
|
static int
|
2010-07-17 01:57:59 +00:00
|
|
|
|
grub_usb_keyboard_getkeystatus (struct grub_term_input *term)
|
2009-08-28 13:20:34 +00:00
|
|
|
|
{
|
2010-08-20 12:36:29 +00:00
|
|
|
|
struct grub_usb_keyboard_data *termdata = term->data;
|
2009-08-28 13:20:34 +00:00
|
|
|
|
int mods = 0;
|
|
|
|
|
|
|
|
|
|
/* Check Shift, Control, and Alt status. */
|
2010-08-20 12:36:29 +00:00
|
|
|
|
if (termdata->status & 0x02 || termdata->status & 0x20)
|
2009-08-28 13:20:34 +00:00
|
|
|
|
mods |= GRUB_TERM_STATUS_SHIFT;
|
2010-08-20 12:36:29 +00:00
|
|
|
|
if (termdata->status & 0x01 || termdata->status & 0x10)
|
2009-08-28 13:20:34 +00:00
|
|
|
|
mods |= GRUB_TERM_STATUS_CTRL;
|
2010-08-20 12:36:29 +00:00
|
|
|
|
if (termdata->status & 0x04 || termdata->status & 0x40)
|
2009-08-28 13:20:34 +00:00
|
|
|
|
mods |= GRUB_TERM_STATUS_ALT;
|
|
|
|
|
|
|
|
|
|
return mods;
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-17 01:57:59 +00:00
|
|
|
|
struct grub_usb_attach_desc attach_hook =
|
|
|
|
|
{
|
|
|
|
|
.class = GRUB_USB_CLASS_HID,
|
|
|
|
|
.hook = grub_usb_keyboard_attach
|
|
|
|
|
};
|
2009-02-21 14:55:06 +00:00
|
|
|
|
|
|
|
|
|
GRUB_MOD_INIT(usb_keyboard)
|
|
|
|
|
{
|
2010-07-17 01:57:59 +00:00
|
|
|
|
grub_usb_register_attach_hook_class (&attach_hook);
|
2009-02-21 14:55:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GRUB_MOD_FINI(usb_keyboard)
|
|
|
|
|
{
|
2010-07-17 01:57:59 +00:00
|
|
|
|
unsigned i;
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE (grub_usb_keyboards); i++)
|
|
|
|
|
if (grub_usb_keyboards[i].data)
|
|
|
|
|
{
|
|
|
|
|
grub_term_unregister_input (&grub_usb_keyboards[i]);
|
|
|
|
|
grub_free ((char *) grub_usb_keyboards[i].name);
|
|
|
|
|
grub_usb_keyboards[i].name = NULL;
|
|
|
|
|
grub_usb_keyboards[i].data = 0;
|
|
|
|
|
}
|
|
|
|
|
grub_usb_unregister_attach_hook_class (&attach_hook);
|
2009-02-21 14:55:06 +00:00
|
|
|
|
}
|