* Code cleanup:
[kernel/u-boot.git] / board / MAI / bios_emulator / scitech / src / pm / common / keyboard.c
index 79b4040..36867bd 100644 (file)
@@ -52,18 +52,18 @@ static uchar translateScan(
     int                 n,pivot,val;
 
     for (n = count; n > 0; ) {
-        pivot = n >> 1;
-        test = table + pivot;
-        val = scanCode - test->scanCode;
-        if (val < 0)
-            n = pivot;
-        else if (val == 0)
-            return test->asciiCode;
-        else {
-            table = test + 1;
-            n -= pivot + 1;
-            }
-        }
+       pivot = n >> 1;
+       test = table + pivot;
+       val = scanCode - test->scanCode;
+       if (val < 0)
+           n = pivot;
+       else if (val == 0)
+           return test->asciiCode;
+       else {
+           table = test + 1;
+           n -= pivot + 1;
+           }
+       }
     return 0;
 }
 
@@ -84,35 +84,35 @@ void _EVT_maskKeyCode(
 
     evt->message &= ~0xFF;
     if (evt->modifiers & EVT_NUMLOCK) {
-        if ((ascii = translateScan(scan,EVT.codePage->numPad,EVT.codePage->numPadLen)) != 0) {
-            evt->message |= ascii;
-            return;
-            }
-        }
+       if ((ascii = translateScan(scan,EVT.codePage->numPad,EVT.codePage->numPadLen)) != 0) {
+           evt->message |= ascii;
+           return;
+           }
+       }
     if (evt->modifiers & EVT_CTRLSTATE) {
-        evt->message |= translateScan(scan,EVT.codePage->ctrl,EVT.codePage->ctrlLen);
-        return;
-        }
+       evt->message |= translateScan(scan,EVT.codePage->ctrl,EVT.codePage->ctrlLen);
+       return;
+       }
     if (evt->modifiers & EVT_CAPSLOCK) {
-        if (evt->modifiers & EVT_SHIFTKEY) {
-            if ((ascii = translateScan(scan,EVT.codePage->shiftCaps,EVT.codePage->shiftCapsLen)) != 0) {
-                evt->message |= ascii;
-                return;
-                }
-            }
-        else {
-            if ((ascii = translateScan(scan,EVT.codePage->caps,EVT.codePage->capsLen)) != 0) {
-                evt->message |= ascii;
-                return;
-                }
-            }
-        }
+       if (evt->modifiers & EVT_SHIFTKEY) {
+           if ((ascii = translateScan(scan,EVT.codePage->shiftCaps,EVT.codePage->shiftCapsLen)) != 0) {
+               evt->message |= ascii;
+               return;
+               }
+           }
+       else {
+           if ((ascii = translateScan(scan,EVT.codePage->caps,EVT.codePage->capsLen)) != 0) {
+               evt->message |= ascii;
+               return;
+               }
+           }
+       }
     if (evt->modifiers & EVT_SHIFTKEY) {
-        if ((ascii = translateScan(scan,EVT.codePage->shift,EVT.codePage->shiftLen)) != 0) {
-            evt->message |= ascii;
-            return;
-            }
-        }
+       if ((ascii = translateScan(scan,EVT.codePage->shift,EVT.codePage->shiftLen)) != 0) {
+           evt->message |= ascii;
+           return;
+           }
+       }
     evt->message |= translateScan(scan,EVT.codePage->normal,EVT.codePage->normalLen);
 }
 
@@ -124,9 +124,9 @@ static ibool _EVT_isKeyDown(
     uchar scanCode)
 {
     if (scanCode > 0x7F)
-        return false;
+       return false;
     else
-        return EVT.keyTable[scanCode] != 0;
+       return EVT.keyTable[scanCode] != 0;
 }
 
 /****************************************************************************
@@ -139,7 +139,7 @@ Adds a new keyboard event to the event queue. This routine is called from
 within the keyboard interrupt subroutine!
 
 NOTE:   Interrupts are OFF when this routine is called by the keyboard ISR,
-        and we leave them OFF the entire time.
+       and we leave them OFF the entire time.
 ****************************************************************************/
 static void addKeyEvent(
     uint what,
@@ -148,31 +148,31 @@ static void addKeyEvent(
     event_t evt;
 
     if (EVT.count < EVENTQSIZE) {
-        /* Save information in event record */
-        evt.when = _EVT_getTicks();
-        evt.what = what;
-        evt.message = message | 0x10000UL;
-        evt.where_x = 0;
-        evt.where_y = 0;
-        evt.relative_x = 0;
-        evt.relative_y = 0;
-        evt.modifiers = EVT.keyModifiers;
-        if (evt.what == EVT_KEYREPEAT) {
-            if (EVT.oldKey != -1)
-                EVT.evtq[EVT.oldKey].message += 0x10000UL;
-            else {
-                EVT.oldKey = EVT.freeHead;
-                addEvent(&evt);         /* Add to tail of event queue   */
-                }
-            }
-        else {
+       /* Save information in event record */
+       evt.when = _EVT_getTicks();
+       evt.what = what;
+       evt.message = message | 0x10000UL;
+       evt.where_x = 0;
+       evt.where_y = 0;
+       evt.relative_x = 0;
+       evt.relative_y = 0;
+       evt.modifiers = EVT.keyModifiers;
+       if (evt.what == EVT_KEYREPEAT) {
+           if (EVT.oldKey != -1)
+               EVT.evtq[EVT.oldKey].message += 0x10000UL;
+           else {
+               EVT.oldKey = EVT.freeHead;
+               addEvent(&evt);         /* Add to tail of event queue   */
+               }
+           }
+       else {
 #ifdef __QNX__
-            _EVT_maskKeyCode(&evt);
+           _EVT_maskKeyCode(&evt);
 #endif
-            addEvent(&evt);             /* Add to tail of event queue   */
-            }
-        EVT.oldMove = -1;
-        }
+           addEvent(&evt);             /* Add to tail of event queue   */
+           }
+       EVT.oldMove = -1;
+       }
 }
 
 /****************************************************************************
@@ -184,7 +184,7 @@ static int kbWaitForWriteReady(void)
 {
     int timeout = 8192;
     while ((timeout > 0) && (PM_inpb(0x64) & 0x02))
-        timeout--;
+       timeout--;
     return (timeout > 0);
 }
 
@@ -197,7 +197,7 @@ static int kbWaitForReadReady(void)
 {
     int timeout = 8192;
     while ((timeout > 0) && (!(PM_inpb(0x64) & 0x01)))
-        timeout--;
+       timeout--;
     return (timeout > 0);
 }
 
@@ -215,20 +215,20 @@ static int kbSendData(
     int timeout, temp;
 
     do {
-        if (!kbWaitForWriteReady())
-            return 0;
-        PM_outpb(0x60,data);
-        timeout = 8192;
-        while (--timeout > 0) {
-            if (!kbWaitForReadReady())
-                return 0;
-            temp = PM_inpb(0x60);
-            if (temp == 0xFA)
-                return 1;
-            if (temp == 0xFE)
-                break;
-            }
-        } while ((resends-- > 0) && (timeout > 0));
+       if (!kbWaitForWriteReady())
+           return 0;
+       PM_outpb(0x60,data);
+       timeout = 8192;
+       while (--timeout > 0) {
+           if (!kbWaitForReadReady())
+               return 0;
+           temp = PM_inpb(0x60);
+           if (temp == 0xFA)
+               return 1;
+           if (temp == 0xFE)
+               break;
+           }
+       } while ((resends-- > 0) && (timeout > 0));
     return 0;
 }
 
@@ -245,10 +245,10 @@ static void setLEDS(
     uint modifiers)
 {
     if (EVT.allowLEDS) {
-        if (!kbSendData(0xED) || !kbSendData((modifiers>>9) & 7)) {
-            kbSendData(0xF4);
-            }
-        }
+       if (!kbSendData(0xED) || !kbSendData((modifiers>>9) & 7)) {
+           kbSendData(0xF4);
+           }
+       }
 }
 
 /****************************************************************************
@@ -256,7 +256,7 @@ REMARKS:
 Function to process raw scan codes read from the keyboard controller.
 
 NOTE:   Interrupts are OFF when this routine is called by the keyboard ISR,
-        and we leave them OFF the entire time.
+       and we leave them OFF the entire time.
 {secret}
 ****************************************************************************/
 void processRawScanCode(
@@ -267,156 +267,156 @@ void processRawScanCode(
     int         what;
 
     if (pauseLoop) {
-        /* Skip scan codes until the pause key sequence has been read */
-        pauseLoop--;
-        }
+       /* Skip scan codes until the pause key sequence has been read */
+       pauseLoop--;
+       }
     else if (scan == 0xE0) {
-        /* This signals the start of an extended scan code sequence */
-        extended = 1;
-        }
+       /* This signals the start of an extended scan code sequence */
+       extended = 1;
+       }
     else if (scan == 0xE1) {
-        /* The Pause key sends a strange scan code sequence, which is:
-         *
-         *  E1 1D 52 E1 9D D2
-         *
-         * However there is never any release code nor any auto-repeat for
-         * this key. For this reason we simply ignore the key and skip the
-         * next 5 scan codes read from the keyboard.
-         */
-        pauseLoop = 5;
-        }
+       /* The Pause key sends a strange scan code sequence, which is:
+        *
+        *  E1 1D 52 E1 9D D2
+        *
+        * However there is never any release code nor any auto-repeat for
+        * this key. For this reason we simply ignore the key and skip the
+        * next 5 scan codes read from the keyboard.
+        */
+       pauseLoop = 5;
+       }
     else {
-        /* Process the scan code normally (it may be an extended code
-         * however!). Bit 7 means key was released, and bits 0-6 are the
-         * scan code.
-         */
-        what = (scan & 0x80) ? EVT_KEYUP : EVT_KEYDOWN;
-        scan &= 0x7F;
-        if (extended) {
-            extended = 0;
-            if (scan == 0x2A || scan == 0x36) {
-                /* Ignore these extended scan code sequences. These are
-                 * used by the keyboard controller to wrap around certain
-                 * key sequences for the keypad (and when NUMLOCK is down
-                 * internally).
-                 */
-                return;
-                }
+       /* Process the scan code normally (it may be an extended code
+        * however!). Bit 7 means key was released, and bits 0-6 are the
+        * scan code.
+        */
+       what = (scan & 0x80) ? EVT_KEYUP : EVT_KEYDOWN;
+       scan &= 0x7F;
+       if (extended) {
+           extended = 0;
+           if (scan == 0x2A || scan == 0x36) {
+               /* Ignore these extended scan code sequences. These are
+                * used by the keyboard controller to wrap around certain
+                * key sequences for the keypad (and when NUMLOCK is down
+                * internally).
+                */
+               return;
+               }
 
-            /* Convert extended codes for key sequences that we map to
-             * virtual scan codes so the user can detect them in their
-             * code.
-             */
-            switch (scan) {
-                case KB_leftCtrl:   scan = KB_rightCtrl;    break;
-                case KB_leftAlt:    scan = KB_rightAlt;     break;
-                case KB_divide:     scan = KB_padDivide;    break;
-                case KB_enter:      scan = KB_padEnter;     break;
-                case KB_padTimes:   scan = KB_sysReq;       break;
-                }
-            }
-        else {
-            /* Convert regular scan codes for key sequences that we map to
-             * virtual scan codes so the user can detect them in their
-             * code.
-             */
-            switch (scan) {
-                case KB_left:       scan = KB_padLeft;      break;
-                case KB_right:      scan = KB_padRight;     break;
-                case KB_up:         scan = KB_padUp;        break;
-                case KB_down:       scan = KB_padDown;      break;
-                case KB_insert:     scan = KB_padInsert;    break;
-                case KB_delete:     scan = KB_padDelete;    break;
-                case KB_home:       scan = KB_padHome;      break;
-                case KB_end:        scan = KB_padEnd;       break;
-                case KB_pageUp:     scan = KB_padPageUp;    break;
-                case KB_pageDown:   scan = KB_padPageDown;  break;
-                }
-            }
+           /* Convert extended codes for key sequences that we map to
+            * virtual scan codes so the user can detect them in their
+            * code.
+            */
+           switch (scan) {
+               case KB_leftCtrl:   scan = KB_rightCtrl;    break;
+               case KB_leftAlt:    scan = KB_rightAlt;     break;
+               case KB_divide:     scan = KB_padDivide;    break;
+               case KB_enter:      scan = KB_padEnter;     break;
+               case KB_padTimes:   scan = KB_sysReq;       break;
+               }
+           }
+       else {
+           /* Convert regular scan codes for key sequences that we map to
+            * virtual scan codes so the user can detect them in their
+            * code.
+            */
+           switch (scan) {
+               case KB_left:       scan = KB_padLeft;      break;
+               case KB_right:      scan = KB_padRight;     break;
+               case KB_up:         scan = KB_padUp;        break;
+               case KB_down:       scan = KB_padDown;      break;
+               case KB_insert:     scan = KB_padInsert;    break;
+               case KB_delete:     scan = KB_padDelete;    break;
+               case KB_home:       scan = KB_padHome;      break;
+               case KB_end:        scan = KB_padEnd;       break;
+               case KB_pageUp:     scan = KB_padPageUp;    break;
+               case KB_pageDown:   scan = KB_padPageDown;  break;
+               }
+           }
 
-        /* Determine if the key is an UP, DOWN or REPEAT and maintain the
-         * up/down status of all keys in our global key array.
-         */
-        if (what == EVT_KEYDOWN) {
-            if (EVT.keyTable[scan])
-                what = EVT_KEYREPEAT;
-            else
-                EVT.keyTable[scan] = scan;
-            }
-        else {
-            EVT.keyTable[scan] = 0;
-            }
+       /* Determine if the key is an UP, DOWN or REPEAT and maintain the
+        * up/down status of all keys in our global key array.
+        */
+       if (what == EVT_KEYDOWN) {
+           if (EVT.keyTable[scan])
+               what = EVT_KEYREPEAT;
+           else
+               EVT.keyTable[scan] = scan;
+           }
+       else {
+           EVT.keyTable[scan] = 0;
+           }
 
-        /* Handle shift key modifiers */
-        if (what != EVT_KEYREPEAT) {
-            switch (scan) {
-                case KB_capsLock:
-                    if (what == EVT_KEYDOWN)
-                        EVT.keyModifiers ^= EVT_CAPSLOCK;
-                    setLEDS(EVT.keyModifiers);
-                    break;
-                case KB_numLock:
-                    if (what == EVT_KEYDOWN)
-                        EVT.keyModifiers ^= EVT_NUMLOCK;
-                    setLEDS(EVT.keyModifiers);
-                    break;
-                case KB_scrollLock:
-                    if (what == EVT_KEYDOWN)
-                        EVT.keyModifiers ^= EVT_SCROLLLOCK;
-                    setLEDS(EVT.keyModifiers);
-                    break;
-                case KB_leftShift:
-                    if (what == EVT_KEYUP)
-                        EVT.keyModifiers &= ~EVT_LEFTSHIFT;
-                    else
-                        EVT.keyModifiers |= EVT_LEFTSHIFT;
-                    break;
-                case KB_rightShift:
-                    if (what == EVT_KEYUP)
-                        EVT.keyModifiers &= ~EVT_RIGHTSHIFT;
-                    else
-                        EVT.keyModifiers |= EVT_RIGHTSHIFT;
-                    break;
-                case KB_leftCtrl:
-                    if (what == EVT_KEYUP)
-                        EVT.keyModifiers &= ~EVT_LEFTCTRL;
-                    else
-                        EVT.keyModifiers |= EVT_LEFTCTRL;
-                    break;
-                case KB_rightCtrl:
-                    if (what == EVT_KEYUP)
-                        EVT.keyModifiers &= ~EVT_RIGHTCTRL;
-                    else
-                        EVT.keyModifiers |= EVT_RIGHTCTRL;
-                    break;
-                case KB_leftAlt:
-                    if (what == EVT_KEYUP)
-                        EVT.keyModifiers &= ~EVT_LEFTALT;
-                    else
-                        EVT.keyModifiers |= EVT_LEFTALT;
-                    break;
-                case KB_rightAlt:
-                    if (what == EVT_KEYUP)
-                        EVT.keyModifiers &= ~EVT_RIGHTALT;
-                    else
-                        EVT.keyModifiers |= EVT_RIGHTALT;
-                    break;
+       /* Handle shift key modifiers */
+       if (what != EVT_KEYREPEAT) {
+           switch (scan) {
+               case KB_capsLock:
+                   if (what == EVT_KEYDOWN)
+                       EVT.keyModifiers ^= EVT_CAPSLOCK;
+                   setLEDS(EVT.keyModifiers);
+                   break;
+               case KB_numLock:
+                   if (what == EVT_KEYDOWN)
+                       EVT.keyModifiers ^= EVT_NUMLOCK;
+                   setLEDS(EVT.keyModifiers);
+                   break;
+               case KB_scrollLock:
+                   if (what == EVT_KEYDOWN)
+                       EVT.keyModifiers ^= EVT_SCROLLLOCK;
+                   setLEDS(EVT.keyModifiers);
+                   break;
+               case KB_leftShift:
+                   if (what == EVT_KEYUP)
+                       EVT.keyModifiers &= ~EVT_LEFTSHIFT;
+                   else
+                       EVT.keyModifiers |= EVT_LEFTSHIFT;
+                   break;
+               case KB_rightShift:
+                   if (what == EVT_KEYUP)
+                       EVT.keyModifiers &= ~EVT_RIGHTSHIFT;
+                   else
+                       EVT.keyModifiers |= EVT_RIGHTSHIFT;
+                   break;
+               case KB_leftCtrl:
+                   if (what == EVT_KEYUP)
+                       EVT.keyModifiers &= ~EVT_LEFTCTRL;
+                   else
+                       EVT.keyModifiers |= EVT_LEFTCTRL;
+                   break;
+               case KB_rightCtrl:
+                   if (what == EVT_KEYUP)
+                       EVT.keyModifiers &= ~EVT_RIGHTCTRL;
+                   else
+                       EVT.keyModifiers |= EVT_RIGHTCTRL;
+                   break;
+               case KB_leftAlt:
+                   if (what == EVT_KEYUP)
+                       EVT.keyModifiers &= ~EVT_LEFTALT;
+                   else
+                       EVT.keyModifiers |= EVT_LEFTALT;
+                   break;
+               case KB_rightAlt:
+                   if (what == EVT_KEYUP)
+                       EVT.keyModifiers &= ~EVT_RIGHTALT;
+                   else
+                       EVT.keyModifiers |= EVT_RIGHTALT;
+                   break;
 #ifdef SUPPORT_CTRL_ALT_DEL
-                case KB_delete:
-                    if ((EVT.keyModifiers & EVT_CTRLSTATE) && (EVT.keyModifiers & EVT_ALTSTATE))
-                        Reboot();
-                    break;
+               case KB_delete:
+                   if ((EVT.keyModifiers & EVT_CTRLSTATE) && (EVT.keyModifiers & EVT_ALTSTATE))
+                       Reboot();
+                   break;
 #endif
-                }
-            }
+               }
+           }
 
-        /* Add the untranslated key code to the event queue. All
-         * translation to ASCII from the key codes occurs when the key
-         * is extracted from the queue, saving time in the low level
-         * interrupt handler.
-         */
-        addKeyEvent(what,scan << 8);
-        }
+       /* Add the untranslated key code to the event queue. All
+        * translation to ASCII from the key codes occurs when the key
+        * is extracted from the queue, saving time in the low level
+        * interrupt handler.
+        */
+       addKeyEvent(what,scan << 8);
+       }
 }
 
 /****************************************************************************
@@ -442,9 +442,8 @@ void EVTAPI EVT_allowLEDS(
 {
     EVT.allowLEDS = true;
     if (enable)
-        setLEDS(EVT.keyModifiers);
+       setLEDS(EVT.keyModifiers);
     else
-        setLEDS(0);
+       setLEDS(0);
     EVT.allowLEDS = enable;
 }
-