root/platform/s80/kbd.c

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

DEFINITIONS

This source file includes following definitions.
  1. get_usb_bit
  2. mykbd_task_proceed
  3. mykbd_task
  4. wrap_kbd_p1_f
  5. get_jogdial_direction
  6. my_kbd_read_keys
  7. kbd_fetch_data
  8. jogdial_control

   1 #include "lolevel.h"
   2 #include "platform.h"
   3 #include "keyboard.h"
   4 #include "kbd_common.h"
   5 
   6 long kbd_new_state[3] = { 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF };
   7 long kbd_prev_state[3] = { 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF };
   8 long kbd_mod_state[3] = { 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF };
   9 
  10 KeyMap keymap[] = {
  11     /* tiny bug: key order matters. see kbd_get_pressed_key()
  12      * for example
  13      */
  14         { 1, KEY_UP             , 0x00040000 },
  15         { 1, KEY_DOWN           , 0x00100000 },
  16         { 1, KEY_LEFT           , 0x00020000 },
  17         { 1, KEY_RIGHT          , 0x00080000 }, // ok
  18         { 1, KEY_SET            , 0x00200000 }, // ok
  19         { 0, KEY_SHOOT_FULL     , 0x0000C000 }, // org
  20         { 0, KEY_SHOOT_FULL_ONLY        , 0x00008000 }, //
  21         { 0, KEY_SHOOT_HALF     , 0x00004000 }, // ?? org
  22         { 1, KEY_ZOOM_IN        , 0x00000001 }, // ok
  23         { 1, KEY_ZOOM_OUT       , 0x00000002 }, // ok
  24         { 1, KEY_MENU           , 0x08000000 }, // ok
  25         { 1, KEY_DISPLAY        , 0x10000000 }, // ok
  26         { 1, KEY_PRINT          , 0x00000010 }, // ok
  27         { 1, KEY_ERASE          , 0x20000000 }, // ok
  28         { 1, KEY_EXPO_CORR      , 0x04000000 }, // ok
  29         { 1, KEY_ISO            , 0x00040000 }, // up
  30         { 1, KEY_FLASH          , 0x00080000 }, // right
  31         { 1, KEY_MF             , 0x00100000 }, // down
  32         { 1, KEY_MACRO          , 0x00020000 }, // left
  33         { 1, KEY_MICROPHONE     , 0x00000020 }, //
  34         { 0, 0, 0 }
  35 };
  36 
  37 #define NEW_SS (0x2000)
  38 
  39 int get_usb_bit() 
  40 {
  41     long usb_physw[3];
  42     usb_physw[USB_IDX] = 0;
  43     _kbd_read_keys_r2(usb_physw);
  44     return(( usb_physw[USB_IDX] & USB_MASK)==USB_MASK) ; 
  45 }
  46 
  47 
  48 static char kbd_stack[NEW_SS];
  49 
  50 extern void _platformsub_kbd_fetch_data(long*);
  51 long __attribute__((naked)) wrap_kbd_p1_f();
  52 
  53 static void __attribute__((noinline)) mykbd_task_proceed()
  54 {
  55     while (physw_run){
  56         _SleepTask(10);
  57 
  58         if (wrap_kbd_p1_f() == 1){ // autorepeat ?
  59             _kbd_p2_f();
  60         }
  61     }
  62 }
  63 
  64 void __attribute__((naked,noinline))
  65 mykbd_task(long ua, long ub, long uc, long ud, long ue, long uf)
  66 {
  67     (void)ua; (void)ub; (void)uc; (void)ud; (void)ue; (void)uf;
  68     /* WARNING
  69      * Stack pointer manipulation performed here!
  70      * This means (but not limited to):
  71      *  function arguments destroyed;
  72      *  function CAN NOT return properly;
  73      *  MUST NOT call or use stack variables before stack
  74      *  is setup properly;
  75      *
  76      */
  77 
  78     register int i;
  79     register long *newstack;
  80 
  81     newstack = (void*)kbd_stack;
  82 
  83     for (i=0;i<NEW_SS/4;i++)
  84         newstack[i]=0xdededede;
  85 
  86     asm volatile (
  87         "MOV    SP, %0"
  88         :: "r"(((char*)newstack)+NEW_SS)
  89         : "memory"
  90     );
  91 
  92     mykbd_task_proceed();
  93 
  94     /* function can be modified to restore SP here...
  95      */
  96 
  97     _ExitTask();
  98 }
  99 
 100 
 101 long __attribute__((naked,noinline)) wrap_kbd_p1_f()
 102 {
 103     asm volatile(
 104                 "STMFD   SP!, {R4-R7,LR}\n"
 105                 "SUB     SP, SP, #0xC\n"
 106                 "BL      my_kbd_read_keys\n"
 107                 "B       _kbd_p1_f_cont\n"
 108     );
 109     return 0; // shut up the compiler
 110 }
 111 
 112 //scrollwheel:
 113 //[0xc0240204] >> 16: 16 bit counter
 114 //[0xc0240404] >> 16: another -"- (reverse?)
 115 //0x11a70, 72, 74, 76: halfwords storing the above counter values
 116 //0x11a70, 0x11a72: [0xc0240404] >> 16
 117 //0x11a74, 0x11a76: [0xc0240204] >> 16
 118 long get_jogdial_direction(void) {
 119     static int new_jogdial=0, old_jogdial=0;
 120     
 121     old_jogdial=new_jogdial;
 122     new_jogdial=(*(int*)0xC0240404)>>16;
 123     if (old_jogdial<new_jogdial) return JOGDIAL_LEFT; 
 124     else if (old_jogdial>new_jogdial) return JOGDIAL_RIGHT;
 125     else return 0;
 126 }
 127 
 128 int jogdial_stopped=0;
 129 
 130 void my_kbd_read_keys()
 131 {
 132     kbd_update_key_state();
 133 
 134     _kbd_read_keys_r2(physw_status);
 135 
 136     kbd_update_physw_bits();
 137 }
 138 
 139 void kbd_fetch_data(long *dst)
 140 {
 141     _platformsub_kbd_fetch_data(dst);
 142 }
 143 
 144 void jogdial_control(int n) {
 145     // this camera did not have jog_position defined
 146     /*
 147     if (jogdial_stopped && !n) {
 148         // If re-enabling jogdial set the task code current & previous positions to the actual
 149         // dial positions so that the change won't get processed by the firmware
 150         jog_position[0] = jog_position[2] = rear_dial_position;   // Rear dial
 151     }
 152     */
 153     jogdial_stopped = n;
 154 }
 155 

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