Blame SOURCES/0129-Make-CTRL-and-ALT-keys-work-as-expected-on-EFI-syste.patch

f725e3
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
f725e3
From: Peter Jones <pjones@redhat.com>
f725e3
Date: Mon, 3 Feb 2014 15:21:46 -0500
f725e3
Subject: [PATCH] Make CTRL and ALT keys work as expected on EFI systems
f725e3
 (version 5).
f725e3
f725e3
This is version 4.
f725e3
f725e3
Changes from version 1:
f725e3
- handles SHIFT as a modifier
f725e3
- handles F11 and F12 keys
f725e3
- uses the handle provided by the system table to find our _EX protocol.
f725e3
f725e3
Changes from version 2:
f725e3
- eliminate duplicate keycode translation.
f725e3
f725e3
Changes from version 3:
f725e3
- Do not add the shift modifier for any ascii character between space
f725e3
  (0x20) and DEL (0x7f); the combination of the modifier and many of the
f725e3
  keys causes it not to be recognized at all.  Specifically, if we
f725e3
  include the modifier on any querty punctuation character, i.e.
f725e3
  anything the string "~!@#$%^&*()_+{}|:\"<>?" represents in C, it stops
f725e3
  being recognized whatsoever.
f725e3
f725e3
Changes from version 4:
f725e3
- Always initialize term->data from locate protocol (i.e. make it
f725e3
  unconditional.)
f725e3
f725e3
Signed-off-by: Peter Jones <pjones@redhat.com>
f725e3
---
f725e3
 grub-core/term/efi/console.c | 118 +++++++++++++++++++++++++++++++++++--------
f725e3
 include/grub/efi/api.h       |  65 +++++++++++++++++++++++-
f725e3
 2 files changed, 161 insertions(+), 22 deletions(-)
f725e3
f725e3
diff --git a/grub-core/term/efi/console.c b/grub-core/term/efi/console.c
f725e3
index a37eb841c72..677eab5820f 100644
f725e3
--- a/grub-core/term/efi/console.c
f725e3
+++ b/grub-core/term/efi/console.c
f725e3
@@ -104,26 +104,12 @@ const unsigned efi_codes[] =
f725e3
     GRUB_TERM_KEY_DC, GRUB_TERM_KEY_PPAGE, GRUB_TERM_KEY_NPAGE, GRUB_TERM_KEY_F1,
f725e3
     GRUB_TERM_KEY_F2, GRUB_TERM_KEY_F3, GRUB_TERM_KEY_F4, GRUB_TERM_KEY_F5,
f725e3
     GRUB_TERM_KEY_F6, GRUB_TERM_KEY_F7, GRUB_TERM_KEY_F8, GRUB_TERM_KEY_F9,
f725e3
-    GRUB_TERM_KEY_F10, 0, 0, '\e'
f725e3
+    GRUB_TERM_KEY_F10, GRUB_TERM_KEY_F10, GRUB_TERM_KEY_F11, '\e'
f725e3
   };
f725e3
 
f725e3
-
f725e3
 static int
f725e3
-grub_console_getkey (struct grub_term_input *term __attribute__ ((unused)))
f725e3
+grub_efi_translate_key (grub_efi_input_key_t key)
f725e3
 {
f725e3
-  grub_efi_simple_input_interface_t *i;
f725e3
-  grub_efi_input_key_t key;
f725e3
-  grub_efi_status_t status;
f725e3
-
f725e3
-  if (grub_efi_is_finished)
f725e3
-    return 0;
f725e3
-
f725e3
-  i = grub_efi_system_table->con_in;
f725e3
-  status = efi_call_2 (i->read_key_stroke, i, &key);
f725e3
-
f725e3
-  if (status != GRUB_EFI_SUCCESS)
f725e3
-    return GRUB_TERM_NO_KEY;
f725e3
-
f725e3
   if (key.scan_code == 0)
f725e3
     {
f725e3
       /* Some firmware implementations use VT100-style codes against the spec.
f725e3
@@ -139,9 +125,98 @@ grub_console_getkey (struct grub_term_input *term __attribute__ ((unused)))
f725e3
   else if (key.scan_code < ARRAY_SIZE (efi_codes))
f725e3
     return efi_codes[key.scan_code];
f725e3
 
f725e3
+  if (key.unicode_char >= 0x20 && key.unicode_char <= 0x7f)
f725e3
+    return key.unicode_char;
f725e3
+
f725e3
   return GRUB_TERM_NO_KEY;
f725e3
 }
f725e3
 
f725e3
+static int
f725e3
+grub_console_getkey_con (struct grub_term_input *term __attribute__ ((unused)))
f725e3
+{
f725e3
+  grub_efi_simple_input_interface_t *i;
f725e3
+  grub_efi_input_key_t key;
f725e3
+  grub_efi_status_t status;
f725e3
+
f725e3
+  i = grub_efi_system_table->con_in;
f725e3
+  status = efi_call_2 (i->read_key_stroke, i, &key);
f725e3
+
f725e3
+  if (status != GRUB_EFI_SUCCESS)
f725e3
+    return GRUB_TERM_NO_KEY;
f725e3
+
f725e3
+  return grub_efi_translate_key(key);
f725e3
+}
f725e3
+
f725e3
+static int
f725e3
+grub_console_getkey_ex(struct grub_term_input *term)
f725e3
+{
f725e3
+  grub_efi_key_data_t key_data;
f725e3
+  grub_efi_status_t status;
f725e3
+  grub_efi_uint32_t kss;
f725e3
+  int key = -1;
f725e3
+
f725e3
+  grub_efi_simple_text_input_ex_interface_t *text_input = term->data;
f725e3
+
f725e3
+  status = efi_call_2 (text_input->read_key_stroke, text_input, &key_data);
f725e3
+
f725e3
+  if (status != GRUB_EFI_SUCCESS)
f725e3
+    return GRUB_TERM_NO_KEY;
f725e3
+
f725e3
+  kss = key_data.key_state.key_shift_state;
f725e3
+  key = grub_efi_translate_key(key_data.key);
f725e3
+
f725e3
+  if (key == GRUB_TERM_NO_KEY)
f725e3
+    return GRUB_TERM_NO_KEY;
f725e3
+
f725e3
+  if (kss & GRUB_EFI_SHIFT_STATE_VALID)
f725e3
+    {
f725e3
+      if ((kss & GRUB_EFI_LEFT_SHIFT_PRESSED
f725e3
+	   || kss & GRUB_EFI_RIGHT_SHIFT_PRESSED)
f725e3
+	  && !(key >= 0x20 && key <= 0x7f))
f725e3
+	key |= GRUB_TERM_SHIFT;
f725e3
+      if (kss & GRUB_EFI_LEFT_ALT_PRESSED || kss & GRUB_EFI_RIGHT_ALT_PRESSED)
f725e3
+	key |= GRUB_TERM_ALT;
f725e3
+      if (kss & GRUB_EFI_LEFT_CONTROL_PRESSED
f725e3
+	  || kss & GRUB_EFI_RIGHT_CONTROL_PRESSED)
f725e3
+	key |= GRUB_TERM_CTRL;
f725e3
+    }
f725e3
+
f725e3
+  return key;
f725e3
+}
f725e3
+
f725e3
+static grub_err_t
f725e3
+grub_efi_console_input_init (struct grub_term_input *term)
f725e3
+{
f725e3
+  grub_efi_guid_t text_input_ex_guid =
f725e3
+    GRUB_EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL_GUID;
f725e3
+
f725e3
+  if (grub_efi_is_finished)
f725e3
+    return 0;
f725e3
+
f725e3
+  grub_efi_simple_text_input_ex_interface_t *text_input = term->data;
f725e3
+  if (text_input)
f725e3
+    return 0;
f725e3
+
f725e3
+  text_input = grub_efi_open_protocol(grub_efi_system_table->console_in_handler,
f725e3
+				      &text_input_ex_guid,
f725e3
+				      GRUB_EFI_OPEN_PROTOCOL_GET_PROTOCOL);
f725e3
+  term->data = (void *)text_input;
f725e3
+
f725e3
+  return 0;
f725e3
+}
f725e3
+
f725e3
+static int
f725e3
+grub_console_getkey (struct grub_term_input *term)
f725e3
+{
f725e3
+  if (grub_efi_is_finished)
f725e3
+    return 0;
f725e3
+
f725e3
+  if (term->data)
f725e3
+    return grub_console_getkey_ex(term);
f725e3
+  else
f725e3
+    return grub_console_getkey_con(term);
f725e3
+}
f725e3
+
f725e3
 static struct grub_term_coordinate
f725e3
 grub_console_getwh (struct grub_term_output *term __attribute__ ((unused)))
f725e3
 {
f725e3
@@ -243,7 +318,7 @@ grub_console_setcursor (struct grub_term_output *term __attribute__ ((unused)),
f725e3
 }
f725e3
 
f725e3
 static grub_err_t
f725e3
-grub_efi_console_init (struct grub_term_output *term)
f725e3
+grub_efi_console_output_init (struct grub_term_output *term)
f725e3
 {
f725e3
   grub_efi_set_text_mode (1);
f725e3
   grub_console_setcursor (term, 1);
f725e3
@@ -251,7 +326,7 @@ grub_efi_console_init (struct grub_term_output *term)
f725e3
 }
f725e3
 
f725e3
 static grub_err_t
f725e3
-grub_efi_console_fini (struct grub_term_output *term)
f725e3
+grub_efi_console_output_fini (struct grub_term_output *term)
f725e3
 {
f725e3
   grub_console_setcursor (term, 0);
f725e3
   grub_efi_set_text_mode (0);
f725e3
@@ -262,13 +337,14 @@ static struct grub_term_input grub_console_term_input =
f725e3
   {
f725e3
     .name = "console",
f725e3
     .getkey = grub_console_getkey,
f725e3
+    .init = grub_efi_console_input_init,
f725e3
   };
f725e3
 
f725e3
 static struct grub_term_output grub_console_term_output =
f725e3
   {
f725e3
     .name = "console",
f725e3
-    .init = grub_efi_console_init,
f725e3
-    .fini = grub_efi_console_fini,
f725e3
+    .init = grub_efi_console_output_init,
f725e3
+    .fini = grub_efi_console_output_fini,
f725e3
     .putchar = grub_console_putchar,
f725e3
     .getwh = grub_console_getwh,
f725e3
     .getxy = grub_console_getxy,
f725e3
@@ -291,8 +367,8 @@ grub_console_init (void)
f725e3
       return;
f725e3
     }
f725e3
 
f725e3
-  grub_term_register_input ("console", &grub_console_term_input);
f725e3
   grub_term_register_output ("console", &grub_console_term_output);
f725e3
+  grub_term_register_input ("console", &grub_console_term_input);
f725e3
 }
f725e3
 
f725e3
 void
f725e3
diff --git a/include/grub/efi/api.h b/include/grub/efi/api.h
f725e3
index e5dd543a801..142340372e1 100644
f725e3
--- a/include/grub/efi/api.h
f725e3
+++ b/include/grub/efi/api.h
f725e3
@@ -111,7 +111,7 @@
f725e3
     { 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b } \
f725e3
   }
f725e3
 
f725e3
-#define EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL_GUID \
f725e3
+#define GRUB_EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL_GUID \
f725e3
   { 0xdd9e7534, 0x7762, 0x4698, \
f725e3
     { 0x8c, 0x14, 0xf5, 0x85, 0x17, 0xa6, 0x25, 0xaa } \
f725e3
   }
f725e3
@@ -952,6 +952,32 @@ struct grub_efi_input_key
f725e3
 };
f725e3
 typedef struct grub_efi_input_key grub_efi_input_key_t;
f725e3
 
f725e3
+typedef grub_efi_uint8_t grub_efi_key_toggle_state_t;
f725e3
+struct grub_efi_key_state
f725e3
+{
f725e3
+	grub_efi_uint32_t key_shift_state;
f725e3
+	grub_efi_key_toggle_state_t key_toggle_state;
f725e3
+};
f725e3
+typedef struct grub_efi_key_state grub_efi_key_state_t;
f725e3
+
f725e3
+#define GRUB_EFI_SHIFT_STATE_VALID     0x80000000
f725e3
+#define GRUB_EFI_RIGHT_SHIFT_PRESSED   0x00000001
f725e3
+#define GRUB_EFI_LEFT_SHIFT_PRESSED    0x00000002
f725e3
+#define GRUB_EFI_RIGHT_CONTROL_PRESSED 0x00000004
f725e3
+#define GRUB_EFI_LEFT_CONTROL_PRESSED  0x00000008
f725e3
+#define GRUB_EFI_RIGHT_ALT_PRESSED     0x00000010
f725e3
+#define GRUB_EFI_LEFT_ALT_PRESSED      0x00000020
f725e3
+#define GRUB_EFI_RIGHT_LOGO_PRESSED    0x00000040
f725e3
+#define GRUB_EFI_LEFT_LOGO_PRESSED     0x00000080
f725e3
+#define GRUB_EFI_MENU_KEY_PRESSED      0x00000100
f725e3
+#define GRUB_EFI_SYS_REQ_PRESSED       0x00000200
f725e3
+
f725e3
+#define GRUB_EFI_TOGGLE_STATE_VALID 0x80
f725e3
+#define GRUB_EFI_KEY_STATE_EXPOSED  0x40
f725e3
+#define GRUB_EFI_SCROLL_LOCK_ACTIVE 0x01
f725e3
+#define GRUB_EFI_NUM_LOCK_ACTIVE    0x02
f725e3
+#define GRUB_EFI_CAPS_LOCK_ACTIVE   0x04
f725e3
+
f725e3
 struct grub_efi_simple_text_output_mode
f725e3
 {
f725e3
   grub_efi_int32_t max_mode;
f725e3
@@ -1294,6 +1320,43 @@ struct grub_efi_simple_input_interface
f725e3
 };
f725e3
 typedef struct grub_efi_simple_input_interface grub_efi_simple_input_interface_t;
f725e3
 
f725e3
+struct grub_efi_key_data {
f725e3
+	grub_efi_input_key_t key;
f725e3
+	grub_efi_key_state_t key_state;
f725e3
+};
f725e3
+typedef struct grub_efi_key_data grub_efi_key_data_t;
f725e3
+
f725e3
+typedef grub_efi_status_t (*grub_efi_key_notify_function_t) (
f725e3
+	grub_efi_key_data_t *key_data
f725e3
+	);
f725e3
+
f725e3
+struct grub_efi_simple_text_input_ex_interface
f725e3
+{
f725e3
+	grub_efi_status_t
f725e3
+	(*reset) (struct grub_efi_simple_text_input_ex_interface *this,
f725e3
+		  grub_efi_boolean_t extended_verification);
f725e3
+
f725e3
+	grub_efi_status_t
f725e3
+	(*read_key_stroke) (struct grub_efi_simple_text_input_ex_interface *this,
f725e3
+			    grub_efi_key_data_t *key_data);
f725e3
+
f725e3
+	grub_efi_event_t wait_for_key;
f725e3
+
f725e3
+	grub_efi_status_t
f725e3
+	(*set_state) (struct grub_efi_simple_text_input_ex_interface *this,
f725e3
+		      grub_efi_key_toggle_state_t *key_toggle_state);
f725e3
+
f725e3
+	grub_efi_status_t
f725e3
+	(*register_key_notify) (struct grub_efi_simple_text_input_ex_interface *this,
f725e3
+				grub_efi_key_data_t *key_data,
f725e3
+				grub_efi_key_notify_function_t key_notification_function);
f725e3
+
f725e3
+	grub_efi_status_t
f725e3
+	(*unregister_key_notify) (struct grub_efi_simple_text_input_ex_interface *this,
f725e3
+				  void *notification_handle);
f725e3
+};
f725e3
+typedef struct grub_efi_simple_text_input_ex_interface grub_efi_simple_text_input_ex_interface_t;
f725e3
+
f725e3
 struct grub_efi_simple_text_output_interface
f725e3
 {
f725e3
   grub_efi_status_t