source: rtems/c/src/lib/libbsp/i386/pc386/console/keyboard.c @ 9b4422a2

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 19.6 KB
Line 
1/*
2 *   Rosimildo da Silva:  rdasilva@connecttel.com
3 */
4
5#include <limits.h>
6#include <sys/types.h>
7#include <rtems/keyboard.h>
8#include "i386kbd.h"
9#include <rtems/kd.h>
10#include <bsp.h>
11#include <bsp/bootcard.h>
12
13#define SIZE(x) (sizeof(x)/sizeof((x)[0]))
14
15#ifndef KBD_DEFMODE
16#define KBD_DEFMODE ((1 << VC_REPEAT) | (1 << VC_META))
17#endif
18
19#ifndef KBD_DEFLEDS
20/*
21 * Some laptops take the 789uiojklm,. keys as number pad when NumLock
22 * is on. This seems a good reason to start with NumLock off.
23 */
24#define KBD_DEFLEDS 0
25#endif
26
27#ifndef KBD_DEFLOCK
28#define KBD_DEFLOCK 0
29#endif
30
31int set_bit(int nr, unsigned long * addr)
32{
33  int                   mask;
34  int                   retval;
35  rtems_interrupt_level level;
36
37  addr += nr >> 5;
38  mask = 1 << (nr & 0x1f);
39  rtems_interrupt_disable(level);
40    retval = (mask & *addr) != 0;
41    *addr |= mask;
42  rtems_interrupt_enable(level);
43  return retval;
44}
45
46int clear_bit(int nr, unsigned long * addr)
47{
48  int                   mask;
49  int                   retval;
50  rtems_interrupt_level level;
51
52  addr += nr >> 5;
53  mask = 1 << (nr & 0x1f);
54  rtems_interrupt_disable(level);
55    retval = (mask & *addr) != 0;
56    *addr &= ~mask;
57  rtems_interrupt_enable(level);
58  return retval;
59}
60
61int test_bit(int nr, unsigned long * addr)
62{
63  int  mask;
64
65  addr += nr >> 5;
66  mask = 1 << (nr & 0x1f);
67  return ((mask & *addr) != 0);
68}
69
70#define  test_and_set_bit(x,y)      set_bit(x,y)
71#define  test_and_clear_bit(x,y)    clear_bit(x,y)
72
73/*
74 * global state includes the following, and various static variables
75 * in this module: prev_scancode, shift_state, diacr, npadch, dead_key_next.
76 * (last_console is now a global variable)
77 */
78#define  BITS_PER_LONG (sizeof(long)*CHAR_BIT)
79
80/* shift state counters.. */
81static unsigned char k_down[NR_SHIFT] = {0, };
82/* keyboard key bitmap */
83static unsigned long key_down[256/BITS_PER_LONG] = { 0, };
84
85static int dead_key_next = 0;
86/*
87 * In order to retrieve the shift_state (for the mouse server), either
88 * the variable must be global, or a new procedure must be created to
89 * return the value. I chose the former way.
90 */
91int shift_state = 0;
92static int npadch = -1;      /* -1 or number assembled on pad */
93static unsigned char diacr = 0;
94static char rep = 0;      /* flag telling character repeat */
95
96/* default console for RTEMS */
97static int  fg_console = 0;
98
99struct kbd_struct kbd_table[MAX_NR_CONSOLES];
100static struct kbd_struct * kbd = kbd_table;
101
102void compute_shiftstate(void);
103
104typedef void (*k_hand)(unsigned char value, char up_flag);
105typedef void (k_handfn)(unsigned char value, char up_flag);
106
107static k_handfn
108  do_self, do_fn, do_spec, do_pad, do_dead, do_cons, do_cur, do_shift,
109  do_meta, do_ascii, do_lock, do_lowercase, do_slock, do_dead2,
110  do_ignore;
111
112static k_hand key_handler[16] = {
113  do_self, do_fn, do_spec, do_pad, do_dead, do_cons, do_cur, do_shift,
114  do_meta, do_ascii, do_lock, do_lowercase, do_slock, do_dead2,
115  do_ignore, do_ignore
116};
117
118/* Key types processed even in raw modes */
119
120#define TYPES_ALLOWED_IN_RAW_MODE ((1 << KT_SPEC) | (1 << KT_SHIFT))
121
122typedef void (*void_fnp)(void);
123typedef void (void_fn)(void);
124
125static void show_mem(void)
126{
127}
128static void show_state(void)
129{
130}
131
132static void_fn do_null, enter, show_ptregs, send_intr, lastcons, caps_toggle,
133  num, hold, scroll_forw, scroll_back, caps_on, compose,
134  SAK, decr_console, incr_console, spawn_console, bare_num;
135
136static void_fnp spec_fn_table[] = {
137  do_null,  enter,    show_ptregs,  show_mem,
138  show_state,  send_intr,  lastcons,  caps_toggle,
139  num,    hold,    scroll_forw,  scroll_back,
140  bsp_reset,  caps_on,  compose,  SAK,
141  decr_console,  incr_console,  spawn_console,  bare_num
142};
143
144#define SPECIALS_ALLOWED_IN_RAW_MODE (1 << KVAL(K_SAK))
145
146/* maximum values each key_handler can handle */
147const int max_vals[] = {
148  255, SIZE(func_table) - 1, SIZE(spec_fn_table) - 1, NR_PAD - 1,
149  NR_DEAD - 1, 255, 3, NR_SHIFT - 1,
150  255, NR_ASCII - 1, NR_LOCK - 1, 255,
151  NR_LOCK - 1, 255
152};
153
154const int NR_TYPES = SIZE(max_vals);
155
156/* N.B. drivers/macintosh/mac_keyb.c needs to call put_queue */
157static void put_queue(int);
158static unsigned char handle_diacr(unsigned char);
159
160#ifdef CONFIG_MAGIC_SYSRQ
161static int sysrq_pressed;
162#endif
163
164/*
165 * Many other routines do put_queue, but I think either
166 * they produce ASCII, or they produce some user-assigned
167 * string, and in both cases we might assume that it is
168 * in utf-8 already.
169 */
170void to_utf8(ushort c) {
171    if (c < 0x80)
172  put_queue(c);      /*  0*******  */
173    else if (c < 0x800) {
174  put_queue(0xc0 | (c >> 6));   /*  110***** 10******  */
175  put_queue(0x80 | (c & 0x3f));
176    } else {
177  put_queue(0xe0 | (c >> 12));   /*  1110**** 10****** 10******  */
178  put_queue(0x80 | ((c >> 6) & 0x3f));
179  put_queue(0x80 | (c & 0x3f));
180    }
181    /* UTF-8 is defined for words of up to 31 bits,
182       but we need only 16 bits here */
183}
184
185/*
186 * Translation of escaped scancodes to keycodes.
187 * This is now user-settable (for machines were it makes sense).
188 */
189
190int setkeycode(unsigned int scancode, unsigned int keycode)
191{
192    return kbd_setkeycode(scancode, keycode);
193}
194
195int getkeycode(unsigned int scancode)
196{
197    return kbd_getkeycode(scancode);
198}
199
200void handle_scancode(unsigned char scancode, int down)
201{
202  unsigned char keycode;
203  char up_flag = down ? 0 : 0200;
204  char raw_mode;
205
206  mark_bh(CONSOLE_BH);
207
208#if 0
209  tty = ttytab? ttytab[fg_console]: NULL;
210  if (tty && (!tty->driver_data)) {
211    /*
212     * We touch the tty structure via the the ttytab array
213     * without knowing whether or not tty is open, which
214     * is inherently dangerous.  We currently rely on that
215     * fact that console_open sets tty->driver_data when
216     * it opens it, and clears it when it closes it.
217     */
218    tty = NULL;
219  }
220#endif
221
222  kbd = kbd_table + fg_console;
223  if ((raw_mode = (kbd->kbdmode == VC_RAW))) {
224    put_queue(scancode | up_flag);
225    /* we do not return yet, because we want to maintain
226       the key_down array, so that we have the correct
227       values when finishing RAW mode or when changing VT's */
228  }
229
230  /*
231   *  Convert scancode to keycode
232   */
233  if (!kbd_translate(scancode, &keycode, raw_mode))
234      return;
235
236  /*
237   * At this point the variable `keycode' contains the keycode.
238   * Note: the keycode must not be 0 (++Geert: on m68k 0 is valid).
239   * We keep track of the up/down status of the key, and
240   * return the keycode if in MEDIUMRAW mode.
241   */
242
243  if (up_flag) {
244    rep = 0;
245    if(!test_and_clear_bit(keycode, key_down))
246        up_flag = kbd_unexpected_up(keycode);
247  } else
248    rep = test_and_set_bit(keycode, key_down);
249
250#ifdef CONFIG_MAGIC_SYSRQ    /* Handle the SysRq Hack */
251  if (keycode == SYSRQ_KEY) {
252    sysrq_pressed = !up_flag;
253    return;
254  } else if (sysrq_pressed) {
255    if (!up_flag && sysrq_enabled)
256      handle_sysrq(kbd_sysrq_xlate[keycode], kbd_pt_regs, kbd, tty);
257    return;
258  }
259#endif
260
261  if (kbd->kbdmode == VC_MEDIUMRAW) {
262    /* soon keycodes will require more than one byte */
263    put_queue(keycode + up_flag);
264    raw_mode = 1;  /* Most key classes will be ignored */
265  }
266  /*
267   * Small change in philosophy: earlier we defined repetition by
268   *   rep = keycode == prev_keycode;
269   *   prev_keycode = keycode;
270   * but now by the fact that the depressed key was down already.
271   * Does this ever make a difference? Yes.
272   */
273
274  /*
275   *  Repeat a key only if the input buffers are empty or the
276   *  characters get echoed locally. This makes key repeat usable
277   *  with slow applications and under heavy loads.
278   */
279  if (!rep || vc_kbd_mode(kbd,VC_REPEAT) ) {
280/*
281  ||  (vc_kbd_mode(kbd,VC_REPEAT) && tty &&
282       (L_ECHO(tty) || (tty->driver.chars_in_buffer(tty) == 0)))) {
283*/
284    u_short keysym;
285    u_char type;
286
287    /* the XOR below used to be an OR */
288    int shift_final = shift_state ^ kbd->lockstate ^ kbd->slockstate;
289    ushort *key_map = key_maps[shift_final];
290
291    if (key_map != NULL) {
292      keysym = key_map[keycode];
293      type = KTYP(keysym);
294
295      if (type >= 0xf0) {
296          type -= 0xf0;
297          if (raw_mode && ! (TYPES_ALLOWED_IN_RAW_MODE & (1 << type)))
298        return;
299         if (type == KT_LETTER) {
300        type = KT_LATIN;
301        if (vc_kbd_led(kbd, VC_CAPSLOCK)) {
302            key_map = key_maps[shift_final ^ (1<<KG_SHIFT)];
303            if (key_map)
304              keysym = key_map[keycode];
305        }
306          }
307
308          (*key_handler[type])(keysym & 0xff, up_flag);
309
310          if (type != KT_SLOCK)
311            kbd->slockstate = 0;
312
313      } else {
314          /* maybe only if (kbd->kbdmode == VC_UNICODE) ? */
315          if (!up_flag && !raw_mode)
316            to_utf8(keysym);
317      }
318    } else {
319      /* maybe beep? */
320      /* we have at least to update shift_state */
321#if 1      /* how? two almost equivalent choices follow */
322      compute_shiftstate();
323#else
324      keysym = U(plain_map[keycode]);
325      type = KTYP(keysym);
326      if (type == KT_SHIFT)
327        (*key_handler[type])(keysym & 0xff, up_flag);
328#endif
329    }
330  }
331}
332
333static void ( *driver_input_handler_kbd )( void *, unsigned short, unsigned long ) = 0;
334/*
335 */
336void kbd_set_driver_handler( void ( *handler )( void *, unsigned short, unsigned long ) )
337{
338  driver_input_handler_kbd = handler;
339}
340
341static void put_queue(int ch)
342{
343  if( driver_input_handler_kbd )
344  {
345     driver_input_handler_kbd(  ( void *)kbd, (unsigned short)ch,  0 );
346  }
347  else
348  {
349     add_to_queue( ch );
350  }
351}
352
353static void puts_queue(char *cp)
354{
355  while (*cp) {
356     put_queue( *cp );
357    cp++;
358  }
359}
360
361static void applkey(int key, char mode)
362{
363  static char buf[] = { 0x1b, 'O', 0x00, 0x00 };
364
365  buf[1] = (mode ? 'O' : '[');
366  buf[2] = key;
367  puts_queue(buf);
368}
369
370static void enter(void)
371{
372  if (diacr) {
373    put_queue(diacr);
374    diacr = 0;
375  }
376  put_queue(13);
377
378  if (vc_kbd_mode(kbd,VC_CRLF))
379    put_queue(10);
380
381}
382
383static void caps_toggle(void)
384{
385  if (rep)
386    return;
387  chg_vc_kbd_led(kbd, VC_CAPSLOCK);
388}
389
390static void caps_on(void)
391{
392  if (rep)
393    return;
394  set_vc_kbd_led(kbd, VC_CAPSLOCK);
395}
396
397static void show_ptregs(void)
398{
399}
400
401static void hold(void)
402{
403  if (rep )
404    return;
405   chg_vc_kbd_led(kbd, VC_SCROLLOCK );
406
407}
408
409static void num(void)
410{
411
412  if (vc_kbd_mode(kbd,VC_APPLIC))
413    applkey('P', 1);
414  else
415    bare_num();
416}
417
418/*
419 * Bind this to Shift-NumLock if you work in application keypad mode
420 * but want to be able to change the NumLock flag.
421 * Bind this to NumLock if you prefer that the NumLock key always
422 * changes the NumLock flag.
423 */
424static void bare_num(void)
425{
426  if (!rep)
427    chg_vc_kbd_led(kbd,VC_NUMLOCK);
428}
429
430static void lastcons(void)
431{
432}
433
434static void decr_console(void)
435{
436}
437
438static void incr_console(void)
439{
440}
441
442static void send_intr(void)
443{
444}
445
446static void scroll_forw(void)
447{
448}
449
450static void scroll_back(void)
451{
452}
453
454static void compose(void)
455{
456  dead_key_next = 1;
457}
458
459int spawnpid, spawnsig;
460
461static void spawn_console(void)
462{
463}
464
465static void SAK(void)
466{
467}
468
469static void do_ignore(unsigned char value, char up_flag)
470{
471}
472
473static void do_null()
474{
475  compute_shiftstate();
476}
477
478static void do_spec(unsigned char value, char up_flag)
479{
480  if (up_flag)
481    return;
482  if (value >= SIZE(spec_fn_table))
483    return;
484
485  if ((kbd->kbdmode == VC_RAW || kbd->kbdmode == VC_MEDIUMRAW) &&
486      !(SPECIALS_ALLOWED_IN_RAW_MODE & (1 << value)))
487    return;
488
489  spec_fn_table[value]();
490}
491
492static void do_lowercase(unsigned char value, char up_flag)
493{
494}
495
496static void do_self(unsigned char value, char up_flag)
497{
498  if (up_flag)
499    return;    /* no action, if this is a key release */
500
501  if (diacr)
502    value = handle_diacr(value);
503
504  if (dead_key_next) {
505    dead_key_next = 0;
506    diacr = value;
507    return;
508  }
509  put_queue(value);
510}
511
512#define A_GRAVE  '`'
513#define A_ACUTE  '\''
514#define A_CFLEX  '^'
515#define A_TILDE  '~'
516#define A_DIAER  '"'
517#define A_CEDIL  ','
518static unsigned char ret_diacr[NR_DEAD] =
519  {A_GRAVE, A_ACUTE, A_CFLEX, A_TILDE, A_DIAER, A_CEDIL };
520
521/* Obsolete - for backwards compatibility only */
522static void do_dead(unsigned char value, char up_flag)
523{
524  value = ret_diacr[value];
525   printk( " do_dead( %X ) ", value );
526  do_dead2(value,up_flag);
527}
528
529/*
530 * Handle dead key. Note that we now may have several
531 * dead keys modifying the same character. Very useful
532 * for Vietnamese.
533 */
534static void do_dead2(unsigned char value, char up_flag)
535{
536  if (up_flag)
537    return;
538  diacr = (diacr ? handle_diacr(value) : value);
539}
540
541/*
542 * We have a combining character DIACR here, followed by the character CH.
543 * If the combination occurs in the table, return the corresponding value.
544 * Otherwise, if CH is a space or equals DIACR, return DIACR.
545 * Otherwise, conclude that DIACR was not combining after all,
546 * queue it and return CH.
547 */
548unsigned char handle_diacr(unsigned char ch)
549{
550  int d = diacr;
551  int i;
552
553  diacr = 0;
554
555  for (i = 0; i < accent_table_size; i++) {
556    if (accent_table[i].diacr == d && accent_table[i].base == ch)
557      return accent_table[i].result;
558  }
559  if (ch == ' ' || ch == d)
560    return d;
561
562  put_queue(d);
563  return ch;
564}
565
566static void do_cons(unsigned char value, char up_flag)
567{
568  if (up_flag)
569    return;
570}
571
572static void do_fn(unsigned char value, char up_flag)
573{
574  if (up_flag)
575    return;
576
577  if (value < SIZE(func_table)) {
578    if (func_table[value])
579      puts_queue(func_table[value]);
580  } else
581    printk( "do_fn called with value=%d\n", value);
582}
583
584static void do_pad(unsigned char value, char up_flag)
585{
586  static const char *pad_chars = "0123456789+-*/\015,.?()";
587  static const char *app_map = "pqrstuvwxylSRQMnnmPQ";
588
589  if (up_flag)
590    return;    /* no action, if this is a key release */
591
592  /* kludge... shift forces cursor/number keys */
593  if (vc_kbd_mode(kbd,VC_APPLIC) && !k_down[KG_SHIFT]) {
594    applkey(app_map[value], 1);
595    return;
596  }
597  if (!vc_kbd_led(kbd,VC_NUMLOCK))
598    switch (value) {
599      case KVAL(K_PCOMMA):
600      case KVAL(K_PDOT):
601        do_fn(KVAL(K_REMOVE), 0);
602        return;
603      case KVAL(K_P0):
604        do_fn(KVAL(K_INSERT), 0);
605        return;
606      case KVAL(K_P1):
607        do_fn(KVAL(K_SELECT), 0);
608        return;
609      case KVAL(K_P2):
610        do_cur(KVAL(K_DOWN), 0);
611        return;
612      case KVAL(K_P3):
613        do_fn(KVAL(K_PGDN), 0);
614        return;
615      case KVAL(K_P4):
616        do_cur(KVAL(K_LEFT), 0);
617        return;
618      case KVAL(K_P6):
619        do_cur(KVAL(K_RIGHT), 0);
620        return;
621      case KVAL(K_P7):
622        do_fn(KVAL(K_FIND), 0);
623        return;
624      case KVAL(K_P8):
625        do_cur(KVAL(K_UP), 0);
626        return;
627      case KVAL(K_P9):
628        do_fn(KVAL(K_PGUP), 0);
629        return;
630      case KVAL(K_P5):
631        applkey('G', vc_kbd_mode(kbd, VC_APPLIC));
632        return;
633    }
634
635  put_queue(pad_chars[value]);
636
637  if (value == KVAL(K_PENTER) && vc_kbd_mode(kbd, VC_CRLF))
638    put_queue(10);
639
640}
641
642static void do_cur(unsigned char value, char up_flag)
643{
644  static const char *cur_chars = "BDCA";
645  if (up_flag)
646    return;
647
648  applkey(cur_chars[value], vc_kbd_mode(kbd,VC_CKMODE));
649}
650
651static void do_shift(unsigned char value, char up_flag)
652{
653  int old_state = shift_state;
654
655  if (rep)
656    return;
657
658  /* Mimic typewriter:
659     a CapsShift key acts like Shift but undoes CapsLock */
660  if (value == KVAL(K_CAPSSHIFT)) {
661    value = KVAL(K_SHIFT);
662    if (!up_flag)
663      clr_vc_kbd_led(kbd, VC_CAPSLOCK);
664  }
665
666  if (up_flag) {
667    /* handle the case that two shift or control
668       keys are depressed simultaneously */
669    if (k_down[value])
670      k_down[value]--;
671  } else
672    k_down[value]++;
673
674  if (k_down[value])
675    shift_state |= (1 << value);
676  else
677    shift_state &= ~ (1 << value);
678
679  /* kludge */
680  if (up_flag && shift_state != old_state && npadch != -1) {
681    if (kbd->kbdmode == VC_UNICODE)
682      to_utf8(npadch & 0xffff);
683    else
684     put_queue(npadch & 0xff);
685    npadch = -1;
686  }
687}
688
689/* called after returning from RAW mode or when changing consoles -
690   recompute k_down[] and shift_state from key_down[] */
691/* maybe called when keymap is undefined, so that shiftkey release is seen */
692void compute_shiftstate(void)
693{
694  int i, j, k, sym, val;
695
696  shift_state = 0;
697  for(i=0; i < SIZE(k_down); i++)
698    k_down[i] = 0;
699
700  for(i=0; i < SIZE(key_down); i++)
701    if(key_down[i]) {  /* skip this word if not a single bit on */
702      k = i*BITS_PER_LONG;
703      for(j=0; j<BITS_PER_LONG; j++,k++)
704        if(test_bit(k, key_down)) {
705    sym = U(plain_map[k]);
706    if(KTYP(sym) == KT_SHIFT) {
707      val = KVAL(sym);
708      if (val == KVAL(K_CAPSSHIFT))
709        val = KVAL(K_SHIFT);
710      k_down[val]++;
711      shift_state |= (1<<val);
712    }
713        }
714    }
715}
716
717static void do_meta(unsigned char value, char up_flag)
718{
719  if (up_flag)
720    return;
721
722  if (vc_kbd_mode(kbd, VC_META)) {
723    put_queue('\033');
724    put_queue(value);
725  } else
726    put_queue(value | 0x80);
727}
728
729static void do_ascii(unsigned char value, char up_flag)
730{
731  int base;
732
733  if (up_flag)
734    return;
735
736  if (value < 10)    /* decimal input of code, while Alt depressed */
737      base = 10;
738  else {       /* hexadecimal input of code, while AltGr depressed */
739      value -= 10;
740      base = 16;
741  }
742
743  if (npadch == -1)
744    npadch = value;
745  else
746    npadch = npadch * base + value;
747}
748
749static void do_lock(unsigned char value, char up_flag)
750{
751  if (up_flag || rep)
752    return;
753  chg_vc_kbd_lock(kbd, value);
754}
755
756static void do_slock(unsigned char value, char up_flag)
757{
758  if (up_flag || rep)
759    return;
760
761  chg_vc_kbd_slock(kbd, value);
762}
763
764/*
765 * The leds display either (i) the status of NumLock, CapsLock, ScrollLock,
766 * or (ii) whatever pattern of lights people want to show using KDSETLED,
767 * or (iii) specified bits of specified words in kernel memory.
768 */
769
770static unsigned char ledstate = 0xff; /* undefined */
771static unsigned char ledioctl;
772
773unsigned char getledstate(void) {
774    return ledstate;
775}
776
777void setledstate(struct kbd_struct *kbd, unsigned int led) {
778    if (!(led & ~7)) {
779  ledioctl = led;
780   kbd->ledmode = LED_SHOW_IOCTL;
781    } else
782    ;
783   kbd->ledmode = LED_SHOW_FLAGS;
784    set_leds();
785}
786
787static struct ledptr {
788    unsigned int *addr;
789    unsigned int mask;
790    unsigned char valid:1;
791} ledptrs[3];
792
793void register_leds(int console, unsigned int led,
794       unsigned int *addr, unsigned int mask) {
795    struct kbd_struct *kbd = kbd_table + console;
796
797   if (led < 3) {
798  ledptrs[led].addr = addr;
799  ledptrs[led].mask = mask;
800  ledptrs[led].valid = 1;
801  kbd->ledmode = LED_SHOW_MEM;
802    } else
803  kbd->ledmode = LED_SHOW_FLAGS;
804}
805
806static inline unsigned char getleds(void){
807
808    struct kbd_struct *kbd = kbd_table + fg_console;
809
810    unsigned char leds;
811
812    if (kbd->ledmode == LED_SHOW_IOCTL)
813      return ledioctl;
814    leds = kbd->ledflagstate;
815    if (kbd->ledmode == LED_SHOW_MEM) {
816  if (ledptrs[0].valid) {
817      if (*ledptrs[0].addr & ledptrs[0].mask)
818        leds |= 1;
819      else
820        leds &= ~1;
821  }
822  if (ledptrs[1].valid) {
823      if (*ledptrs[1].addr & ledptrs[1].mask)
824        leds |= 2;
825      else
826        leds &= ~2;
827  }
828  if (ledptrs[2].valid) {
829      if (*ledptrs[2].addr & ledptrs[2].mask)
830        leds |= 4;
831      else
832        leds &= ~4;
833  }
834    }
835   return leds;
836}
837
838/*
839 * This routine is the bottom half of the keyboard interrupt
840 * routine, and runs with all interrupts enabled. It does
841 * console changing, led setting and copy_to_cooked, which can
842 * take a reasonably long time.
843 *
844 * Aside from timing (which isn't really that important for
845 * keyboard interrupts as they happen often), using the software
846 * interrupt routines for this thing allows us to easily mask
847 * this when we don't want any of the above to happen. Not yet
848 * used, but this allows for easy and efficient race-condition
849 * prevention later on.
850 */
851static void kbd_bh(void)
852{
853  unsigned char leds = getleds();
854  if (leds != ledstate) {
855    ledstate = leds;
856    kbd_leds(leds);
857  }
858}
859
860void set_leds(void)
861{
862  kbd_bh();
863}
864
865int kbd_init(void)
866{
867
868  int i;
869  struct kbd_struct kbd0;
870  kbd0.ledflagstate = kbd0.default_ledflagstate = KBD_DEFLEDS;
871   kbd0.ledmode = LED_SHOW_MEM;
872  kbd0.lockstate = KBD_DEFLOCK;
873  kbd0.slockstate = 0;
874  kbd0.modeflags = KBD_DEFMODE;
875  kbd0.kbdmode = VC_XLATE;
876
877  for (i = 0 ; i < MAX_NR_CONSOLES ; i++)
878    kbd_table[i] = kbd0;
879
880  kbd_init_hw();
881  mark_bh(KEYBOARD_BH);
882  return 0;
883}
Note: See TracBrowser for help on using the repository browser.