iPXE
Data Structures | Macros | Enumerations | Functions
usbkbd.h File Reference

USB keyboard driver. More...

#include <assert.h>
#include <ipxe/usb.h>
#include <ipxe/usbhid.h>

Go to the source code of this file.

Data Structures

struct  usb_keyboard_report
 A USB keyboard report. More...
 
struct  usb_keyboard
 A USB keyboard device. More...
 

Macros

#define USBKBD_PROTOCOL   1
 Keyboard protocol. More...
 
#define USBKBD_CTRL   ( USBKBD_CTRL_LEFT | USBKBD_CTRL_RIGHT )
 Either Ctrl key. More...
 
#define USBKBD_SHIFT   ( USBKBD_SHIFT_LEFT | USBKBD_SHIFT_RIGHT )
 Either Shift key. More...
 
#define USBKBD_ALT   ( USBKBD_ALT_LEFT | USBKBD_ALT_RIGHT )
 Either Alt key. More...
 
#define USBKBD_GUI   ( USBKBD_GUI_LEFT | USBKBD_GUI_RIGHT )
 Either GUI key. More...
 
#define USBKBD_IDLE_DURATION   10 /* 10 x 4ms = 40ms */
 Keyboard idle duration (in 4ms units) More...
 
#define USBKBD_HOLDOFF   12 /* 12 x 40ms = 480ms */
 Keyboard auto-repeat hold-off (in units of USBKBD_IDLE_DURATION) More...
 
#define USBKBD_INTR_MAX_FILL   8
 Interrupt endpoint maximum fill level. More...
 
#define USBKBD_BUFSIZE   8
 Keyboard buffer size. More...
 

Enumerations

enum  usb_keyboard_modifier {
  USBKBD_CTRL_LEFT = 0x01, USBKBD_SHIFT_LEFT = 0x02, USBKBD_ALT_LEFT = 0x04, USBKBD_GUI_LEFT = 0x08,
  USBKBD_CTRL_RIGHT = 0x10, USBKBD_SHIFT_RIGHT = 0x20, USBKBD_ALT_RIGHT = 0x40, USBKBD_GUI_RIGHT = 0x80
}
 USB modifier keys. More...
 
enum  usb_keycode {
  USBKBD_KEY_A = 0x04, USBKBD_KEY_Z = 0x1d, USBKBD_KEY_1 = 0x1e, USBKBD_KEY_0 = 0x27,
  USBKBD_KEY_ENTER = 0x28, USBKBD_KEY_SPACE = 0x2c, USBKBD_KEY_MINUS = 0x2d, USBKBD_KEY_SLASH = 0x38,
  USBKBD_KEY_CAPS_LOCK = 0x39, USBKBD_KEY_F1 = 0x3a, USBKBD_KEY_UP = 0x52, USBKBD_KEY_NUM_LOCK = 0x53,
  USBKBD_KEY_PAD_ENTER = 0x58, USBKBD_KEY_PAD_1 = 0x59, USBKBD_KEY_PAD_DOT = 0x63, USBKBD_KEY_NON_US = 0x64
}
 USB keycodes. More...
 
enum  usb_keyboard_led { USBKBD_LED_NUM_LOCK = 0x01, USBKBD_LED_CAPS_LOCK = 0x02, USBKBD_LED_SCROLL_LOCK = 0x04 }
 USB keyboard LEDs. More...
 

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 
static unsigned int usbkbd_fill (struct usb_keyboard *kbd)
 Calculate keyboard buffer fill level. More...
 

Detailed Description

USB keyboard driver.

Definition in file usbkbd.h.

Macro Definition Documentation

◆ USBKBD_PROTOCOL

#define USBKBD_PROTOCOL   1

Keyboard protocol.

Definition at line 17 of file usbkbd.h.

◆ USBKBD_CTRL

#define USBKBD_CTRL   ( USBKBD_CTRL_LEFT | USBKBD_CTRL_RIGHT )

Either Ctrl key.

Definition at line 50 of file usbkbd.h.

◆ USBKBD_SHIFT

#define USBKBD_SHIFT   ( USBKBD_SHIFT_LEFT | USBKBD_SHIFT_RIGHT )

Either Shift key.

Definition at line 53 of file usbkbd.h.

◆ USBKBD_ALT

#define USBKBD_ALT   ( USBKBD_ALT_LEFT | USBKBD_ALT_RIGHT )

Either Alt key.

Definition at line 56 of file usbkbd.h.

◆ USBKBD_GUI

#define USBKBD_GUI   ( USBKBD_GUI_LEFT | USBKBD_GUI_RIGHT )

Either GUI key.

Definition at line 59 of file usbkbd.h.

◆ USBKBD_IDLE_DURATION

#define USBKBD_IDLE_DURATION   10 /* 10 x 4ms = 40ms */

Keyboard idle duration (in 4ms units)

This is a policy decision. We choose to use an autorepeat rate of approximately 40ms.

Definition at line 93 of file usbkbd.h.

◆ USBKBD_HOLDOFF

#define USBKBD_HOLDOFF   12 /* 12 x 40ms = 480ms */

Keyboard auto-repeat hold-off (in units of USBKBD_IDLE_DURATION)

This is a policy decision. We choose to use an autorepeat delay of approximately 500ms.

Definition at line 100 of file usbkbd.h.

◆ USBKBD_INTR_MAX_FILL

#define USBKBD_INTR_MAX_FILL   8

Interrupt endpoint maximum fill level.

When idling, we are likely to poll the USB endpoint at only the 18.2Hz system timer tick rate. With a typical observed bInterval of 10ms (which will be rounded down to 8ms by the HCI drivers), this gives approximately 7 completions per poll.

Definition at line 109 of file usbkbd.h.

◆ USBKBD_BUFSIZE

#define USBKBD_BUFSIZE   8

Keyboard buffer size.

Must be a power of two.

Definition at line 115 of file usbkbd.h.

Enumeration Type Documentation

◆ usb_keyboard_modifier

USB modifier keys.

Enumerator
USBKBD_CTRL_LEFT 

Left Ctrl key.

USBKBD_SHIFT_LEFT 

Left Shift key.

USBKBD_ALT_LEFT 

Left Alt key.

USBKBD_GUI_LEFT 

Left GUI key.

USBKBD_CTRL_RIGHT 

Right Ctrl key.

USBKBD_SHIFT_RIGHT 

Right Shift key.

USBKBD_ALT_RIGHT 

Right Alt key.

USBKBD_GUI_RIGHT 

Right GUI key.

Definition at line 30 of file usbkbd.h.

30  {
31  /** Left Ctrl key */
32  USBKBD_CTRL_LEFT = 0x01,
33  /** Left Shift key */
34  USBKBD_SHIFT_LEFT = 0x02,
35  /** Left Alt key */
36  USBKBD_ALT_LEFT = 0x04,
37  /** Left GUI key */
38  USBKBD_GUI_LEFT = 0x08,
39  /** Right Ctrl key */
40  USBKBD_CTRL_RIGHT = 0x10,
41  /** Right Shift key */
42  USBKBD_SHIFT_RIGHT = 0x20,
43  /** Right Alt key */
44  USBKBD_ALT_RIGHT = 0x40,
45  /** Right GUI key */
46  USBKBD_GUI_RIGHT = 0x80,
47 };
Right Alt key.
Definition: usbkbd.h:44
Right Ctrl key.
Definition: usbkbd.h:40
Right Shift key.
Definition: usbkbd.h:42
Left GUI key.
Definition: usbkbd.h:38
Left Alt key.
Definition: usbkbd.h:36
Left Shift key.
Definition: usbkbd.h:34
Left Ctrl key.
Definition: usbkbd.h:32
Right GUI key.
Definition: usbkbd.h:46

◆ usb_keycode

USB keycodes.

Enumerator
USBKBD_KEY_A 
USBKBD_KEY_Z 
USBKBD_KEY_1 
USBKBD_KEY_0 
USBKBD_KEY_ENTER 
USBKBD_KEY_SPACE 
USBKBD_KEY_MINUS 
USBKBD_KEY_SLASH 
USBKBD_KEY_CAPS_LOCK 
USBKBD_KEY_F1 
USBKBD_KEY_UP 
USBKBD_KEY_NUM_LOCK 
USBKBD_KEY_PAD_ENTER 
USBKBD_KEY_PAD_1 
USBKBD_KEY_PAD_DOT 
USBKBD_KEY_NON_US 

Definition at line 62 of file usbkbd.h.

◆ usb_keyboard_led

USB keyboard LEDs.

Enumerator
USBKBD_LED_NUM_LOCK 
USBKBD_LED_CAPS_LOCK 
USBKBD_LED_SCROLL_LOCK 

Definition at line 82 of file usbkbd.h.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ usbkbd_fill()

static unsigned int usbkbd_fill ( struct usb_keyboard kbd)
inlinestatic

Calculate keyboard buffer fill level.

Parameters
kbdUSB keyboard
Return values
fillKeyboard buffer fill level

Definition at line 165 of file usbkbd.h.

165  {
166  unsigned int fill = ( kbd->prod - kbd->cons );
167 
168  assert ( fill <= USBKBD_BUFSIZE );
169  return fill;
170 }
unsigned int prod
Keyboard buffer producer counter.
Definition: usbkbd.h:147
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
#define USBKBD_BUFSIZE
Keyboard buffer size.
Definition: usbkbd.h:115
unsigned int cons
Keyboard buffer consumer counter.
Definition: usbkbd.h:149
uint8_t fill
Length pair.
Definition: deflate.h:12

References assert(), usb_keyboard::cons, fill, usb_keyboard::prod, and USBKBD_BUFSIZE.

Referenced by usbkbd_consume(), usbkbd_getchar(), usbkbd_iskey(), and usbkbd_produce().