Altered keyboard driver to correctly support Unicode
[tpg/acess2.git] / Kernel / drv / kb.c
1 /*
2  * Acess2
3  * PS2 Keyboard Driver
4  */
5 #include <common.h>
6 #include <modules.h>
7 #include <fs_devfs.h>
8 #include <tpl_drv_common.h>
9 #include <tpl_drv_keyboard.h>
10 #include "kb_kbdus.h"
11
12 // === CONSTANTS ===
13 #define KB_BUFFER_SIZE  1024
14
15 // === IMPORTS ===
16 void    Threads_Dump();
17
18 // === PROTOTYPES ===
19  int    KB_Install(char **Arguments);
20 void    KB_IRQHandler();
21 void    KB_AddBuffer(char ch);
22 Uint64  KB_Read(tVFS_Node *Node, Uint64 Offset, Uint64 Length, void *Dest);
23 void    KB_UpdateLEDs();
24  int    KB_IOCtl(tVFS_Node *Node, int Id, void *Data);
25
26 // === GLOBALS ===
27 MODULE_DEFINE(0, 0x0100, PS2Keyboard, KB_Install, NULL, NULL);
28 tDevFS_Driver   gKB_DevInfo = {
29         NULL, "PS2Keyboard",
30         {
31         .NumACLs = 0,
32         .Size = 0,
33         //.Read = KB_Read,
34         .IOCtl = KB_IOCtl
35         }
36 };
37 tKeybardCallback        gKB_Callback = NULL;
38 Uint32  **gpKB_Map = gpKBDUS;
39 Uint8   gbaKB_States[3][256];
40  int    gbKB_ShiftState = 0;
41  int    gbKB_CapsState = 0;
42  int    gbKB_KeyUp = 0;
43  int    giKB_KeyLayer = 0;
44 #if USE_KERNEL_MAGIC
45  int    gbKB_MagicState = 0;
46 #endif
47 //Uint64        giKB_ReadBase = 0;
48 //Uint32        gaKB_Buffer[KB_BUFFER_SIZE];    //!< Keyboard Ring Buffer
49 //volatile int  giKB_InsertPoint = 0;   //!< Writing location marker
50 //volatile int  giKB_ReadPoint = 0;     //!< Reading location marker
51 //volatile int  giKB_InUse = 0;         //!< Lock marker
52
53 // === CODE ===
54 /**
55  * \fn int KB_Install(char **Arguments)
56  */
57 int KB_Install(char **Arguments)
58 {
59         IRQ_AddHandler(1, KB_IRQHandler);
60         DevFS_AddDevice( &gKB_DevInfo );
61         return 1;
62 }
63
64 /**
65  * \fn void KB_IRQHandler()
66  * \brief Called on a keyboard IRQ
67  */
68 void KB_IRQHandler()
69 {
70         Uint8   scancode;
71         Uint32  ch;
72         // int  keyNum;
73
74         //if( inportb(0x64) & 0x20 )    return;
75         
76         scancode = inb(0x60); // Read from the keyboard's data buffer
77
78         // Ignore ACKs
79         if(scancode == 0xFA) {
80                 // Oh man! This is anachic (I'm leaving it here to represent the
81                 // mess that acess once was
82                 //kb_lastChar = KB_ACK;
83                 return;
84         }
85         
86         // Layer +1
87         if(scancode == 0xE0) {
88                 giKB_KeyLayer = 1;
89                 return;
90         }
91         // Layer +2
92         if(scancode == 0xE1) {
93                 giKB_KeyLayer = 2;
94                 return;
95         }
96         
97         #if KB_ALT_SCANCODES
98         if(scancode == 0xF0)
99         {
100                 gbKB_KeyUp = 1;
101                 return;
102         }
103         #else
104         if(scancode & 0x80)
105         {
106                 scancode &= 0x7F;
107                 gbKB_KeyUp = 1;
108         }
109         #endif
110         
111         // Translate
112         ch = gpKB_Map[giKB_KeyLayer][scancode];
113         //keyNum = giKB_KeyLayer * 256 + scancode;
114         // Check for unknown key
115         if(!ch && !gbKB_KeyUp)
116                 Warning("UNK %i %x", giKB_KeyLayer, scancode);
117         
118         // Key Up?
119         if (gbKB_KeyUp)
120         {
121                 gbKB_KeyUp = 0;
122                 gbaKB_States[giKB_KeyLayer][scancode] = 0;      // Unset key state flag
123                 
124                 #if USE_KERNEL_MAGIC
125                 if(ch == KEY_LCTRL)     gbKB_MagicState &= ~1;
126                 if(ch == KEY_LALT)      gbKB_MagicState &= ~2;
127                 #endif
128                 
129                 if(ch == KEY_LSHIFT)    gbKB_ShiftState &= ~1;
130                 if(ch == KEY_RSHIFT)    gbKB_ShiftState &= ~2;
131                 
132                 // Call callback
133                 if(ch != 0 && gKB_Callback)
134                         gKB_Callback( ch & 0x80000000 );
135                 
136                 // Reset Layer
137                 giKB_KeyLayer = 0;
138                 return;
139         }
140
141         // Set the bit relating to the key
142         gbaKB_States[giKB_KeyLayer][scancode] = 1;
143         // Set shift key bits
144         if(ch == KEY_LSHIFT)    gbKB_ShiftState |= 1;
145         if(ch == KEY_RSHIFT)    gbKB_ShiftState |= 2;
146         
147         // Check for Caps Lock
148         if(ch == KEY_CAPSLOCK) {
149                 gbKB_CapsState = !gbKB_CapsState;
150                 KB_UpdateLEDs();
151         }
152         
153         // Reset Layer
154         giKB_KeyLayer = 0;
155
156         // Ignore Non-Printable Characters
157         if(ch == 0)             return;
158         
159         // --- Check for Kernel Magic Combos
160         #if USE_KERNEL_MAGIC
161         if(ch == KEY_LCTRL)     gbKB_MagicState |= 1;
162         if(ch == KEY_LALT)      gbKB_MagicState |= 2;
163         if(gbKB_MagicState == 3)
164         {
165                 switch(ch)
166                 {
167                 case 'd':       __asm__ __volatile__ ("xchg %bx, %bx"); break;
168                 case 'p':       Threads_Dump(); break;
169                 }
170         }
171         #endif
172         
173         // Is shift pressed
174         // - Darn ugly hacks !(!x) means (bool)x
175         if( !(!gbKB_ShiftState) ^ gbKB_CapsState)
176         {
177                 switch(ch)
178                 {
179                 case 0: break;
180                 case '`':       ch = '~';       break;
181                 case '1':       ch = '!';       break;
182                 case '2':       ch = '@';       break;
183                 case '3':       ch = '#';       break;
184                 case '4':       ch = '$';       break;
185                 case '5':       ch = '%';       break;
186                 case '6':       ch = '^';       break;
187                 case '7':       ch = '&';       break;
188                 case '8':       ch = '*';       break;
189                 case '9':       ch = '(';       break;
190                 case '0':       ch = ')';       break;
191                 case '-':       ch = '_';       break;
192                 case '=':       ch = '+';       break;
193                 case '[':       ch = '{';       break;
194                 case ']':       ch = '}';       break;
195                 case '\\':      ch = '|';       break;
196                 case ';':       ch = ':';       break;
197                 case '\'':      ch = '"';       break;
198                 case ',':       ch = '<';       break;
199                 case '.':       ch = '>';       break;
200                 case '/':       ch = '?';       break;
201                 default:
202                         if('a' <= ch && ch <= 'z')
203                                 ch -= 0x20;
204                         break;
205                 }
206         }
207         
208         if(gKB_Callback && ch != 0)     gKB_Callback(ch);
209 }
210
211 /**
212  * \fn void KB_UpdateLEDs()
213  * \brief Updates the status of the keyboard LEDs
214  */
215 void KB_UpdateLEDs()
216 {
217         Uint8   leds;
218         
219         leds = (gbKB_CapsState ? 4 : 0);
220         
221         while( inb(0x64) & 2 ); // Wait for bit 2 to unset
222         outb(0x60, 0xED);       // Send update command
223         
224         while( inb(0x64) & 2 ); // Wait for bit 2 to unset
225         outb(0x60, leds);
226 }
227
228 /**
229  * \fn int KB_IOCtl(tVFS_Node *Node, int Id, void *Data)
230  * \brief Calls an IOCtl Command
231  */
232 int KB_IOCtl(tVFS_Node *Node, int Id, void *Data)
233 {
234         switch(Id)
235         {
236         case DRV_IOCTL_TYPE:    return DRV_TYPE_KEYBOARD;
237         case DRV_IOCTL_IDENT:   memcpy(Data, "KB\0\0", 4);      return 1;
238         case DRV_IOCTL_VERSION: return 0x100;
239         case DRV_IOCTL_LOOKUP:  return 0;
240         
241         // Sets the Keyboard Callback
242         case KB_IOCTL_SETCALLBACK:
243                 // Sanity Check
244                 if((Uint)Data < KERNEL_BASE)    return 0;
245                 // Can only be set once
246                 if(gKB_Callback != NULL)        return 0;
247                 // Set Callback
248                 gKB_Callback = Data;
249                 return 1;
250         
251         default:
252                 return 0;
253         }
254 }

UCC git Repository :: git.ucc.asn.au