root/platform/m10/platform_kbd.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef PLATFORM_KBD_H
   2 #define PLATFORM_KBD_H
   3 
   4 // plaform specific keyboard defines, see core/kbd_common.c for documentation
   5 // non-standard key state update to handle inverted keys, etc
   6 #define KBD_CUSTOM_UPDATE_KEY_STATE 1
   7 
   8 #define KEYS_MASK0 (0x00000006)
   9 #define KEYS_MASK1 (0x000413E9)
  10 #define KEYS_MASK2 (0x00000000)
  11 #define KEYS_INV0  (0x00000006)
  12 
  13 #define SD_READONLY_FLAG    0x20000000 // Found @0xfc623d8c, levent 0x20a
  14 #define SD_READONLY_IDX     1
  15 #define USB_MASK            0x10000000 // Found @0xfc623dec, levent 0x202
  16 #define USB_IDX             2
  17 #define HDMI_HPD_FLAG       0x00000010
  18 #define HDMI_HPD_IDX        2
  19 #endif

/* [<][>][^][v][top][bottom][index][help] */