Changed kernel magic prefix to just Ctrl-...
[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, PS2Keybard, KB_Install, NULL, NULL);
28 tDevFS_Driver   gKB_DevInfo = {
29         NULL, "PS2Keyboard",
30         {
31         .NumACLs = 0,
32         .Size = -1,
33         .Read = KB_Read,
34         .IOCtl = KB_IOCtl
35         }
36 };
37 tKeybardCallback        gKB_Callback = NULL;
38 Uint8   **gpKB_Map = gpKBDUS;
39 Uint8   gbaKB_States[256];
40  int    gbKB_ShiftState = 0;
41  int    gbKB_CapsState = 0;
42  int    gbKB_KeyUp = 0;
43  int    giKB_KeyLayer = 0;
44 //Uint64        giKB_ReadBase = 0;
45 Uint8   gaKB_Buffer[KB_BUFFER_SIZE];    //!< Keyboard Ring Buffer
46 volatile int    giKB_InsertPoint = 0;   //!< Writing location marker
47 volatile int    giKB_ReadPoint = 0;     //!< Reading location marker
48 volatile int    giKB_InUse = 0;         //!< Lock marker
49
50 // === CODE ===
51 /**
52  * \fn int KB_Install(char **Arguments)
53  */
54 int KB_Install(char **Arguments)
55 {
56         IRQ_AddHandler(1, KB_IRQHandler);
57         DevFS_AddDevice( &gKB_DevInfo );
58         return 1;
59 }
60
61 /**
62  * \fn void KB_IRQHandler()
63  * \brief Called on a keyboard IRQ
64  */
65 void KB_IRQHandler()
66 {
67         Uint8   scancode;
68         Uint32  ch;
69          int    keyNum;
70
71         //if( inportb(0x64) & 0x20 )    return;
72         
73         scancode = inb(0x60); // Read from the keyboard's data buffer
74
75         // Ignore ACKs
76         if(scancode == 0xFA) {
77                 //kb_lastChar = KB_ACK;
78                 return;
79         }
80         
81         // Layer +1
82         if(scancode == 0xE0) {
83                 giKB_KeyLayer = 1;
84                 return;
85         }
86         // Layer +2
87         if(scancode == 0xE1) {
88                 giKB_KeyLayer = 2;
89                 return;
90         }
91         
92         #if KB_ALT_SCANCODES
93         if(scancode == 0xF0)
94         {
95                 gbKB_KeyUp = 1;
96                 return;
97         }
98         #else
99         if(scancode & 0x80)
100         {
101                 scancode &= 0x7F;
102                 gbKB_KeyUp = 1;
103         }
104         #endif
105         
106         // Translate
107         ch = gpKB_Map[giKB_KeyLayer][scancode];
108         keyNum = giKB_KeyLayer * 256 + scancode;
109         // Check for unknown key
110         if(!ch && !gbKB_KeyUp)
111                 Warning("UNK %i %x", giKB_KeyLayer, scancode);
112         
113         // Reset Layer
114         giKB_KeyLayer = 0;
115         
116         // Key Up?
117         if (gbKB_KeyUp)
118         {
119                 gbKB_KeyUp = 0;
120                 gbaKB_States[ keyNum ] = 0;     // Unset key state flag
121                 
122                 if( !gbaKB_States[KEY_LSHIFT] && !gbaKB_States[KEY_RSHIFT] )
123                         gbKB_ShiftState = 0;
124                 
125                 KB_AddBuffer(KEY_KEYUP);
126                 KB_AddBuffer(ch);
127                 
128                 return;
129         }
130
131         // Set the bit relating to the key
132         gbaKB_States[keyNum] = 1;
133         if(ch == KEY_LSHIFT || ch == KEY_RSHIFT)
134                 gbKB_ShiftState = 1;
135         
136         // Check for Caps Lock
137         if(ch == KEY_CAPSLOCK) {
138                 gbKB_CapsState = !gbKB_CapsState;
139                 KB_UpdateLEDs();
140         }
141
142         // Ignore Non-Printable Characters
143         if(ch == 0 || ch & 0x80)                return;
144         
145         
146         // --- Check for Kernel Magic Combos
147         if(gbaKB_States[KEY_LCTRL])// && gbaKB_States[KEY_LALT])
148         {
149                 LOG("ch = 0x%02x", ch);
150                 switch(ch)
151                 {
152                 case 'd':       __asm__ __volatile__ ("xchg %bx, %bx"); break;
153                 case 'p':       Threads_Dump(); break;
154                 }
155         }
156         
157         // Is shift pressed
158         if(gbKB_ShiftState ^ gbKB_CapsState)
159         {
160                 switch(ch)
161                 {
162                 case '`':       ch = '~';       break;
163                 case '1':       ch = '!';       break;
164                 case '2':       ch = '@';       break;
165                 case '3':       ch = '#';       break;
166                 case '4':       ch = '$';       break;
167                 case '5':       ch = '%';       break;
168                 case '6':       ch = '^';       break;
169                 case '7':       ch = '&';       break;
170                 case '8':       ch = '*';       break;
171                 case '9':       ch = '(';       break;
172                 case '0':       ch = ')';       break;
173                 case '-':       ch = '_';       break;
174                 case '=':       ch = '+';       break;
175                 case '[':       ch = '{';       break;
176                 case ']':       ch = '}';       break;
177                 case '\\':      ch = '|';       break;
178                 case ';':       ch = ':';       break;
179                 case '\'':      ch = '"';       break;
180                 case ',':       ch = '<';       break;
181                 case '.':       ch = '>';       break;
182                 case '/':       ch = '?';       break;
183                 default:
184                         if('a' <= ch && ch <= 'z')
185                                 ch -= 0x20;
186                         break;
187                 }
188         }
189         
190         if(gKB_Callback)        gKB_Callback(ch);
191 }
192
193 /**
194  * \fn void KB_AddBuffer(char ch)
195  * \brief Add to the keyboard ring buffer
196  */
197 void KB_AddBuffer(char ch)
198 {
199         // Add to buffer
200         gaKB_Buffer[ giKB_InsertPoint++ ] = ch;
201         // - Wrap
202         if( giKB_InsertPoint == KB_BUFFER_SIZE )        giKB_InsertPoint = 0;
203         // - Force increment read pointer
204         if( giKB_InsertPoint == giKB_ReadPoint )        giKB_ReadPoint ++;
205 }
206
207 /**
208  * \fn Uint64 KB_Read(tVFS_Node *Node, Uint64 Offset, Uint64 Length, void *Dest)
209  * \brief Read from the ring buffer
210  * \param Node  Unused
211  * \param Offset        Unused (Character Device)
212  * \param Length        Number of bytes to read
213  * \param Dest  Destination
214  */
215 Uint64 KB_Read(tVFS_Node *Node, Uint64 Offset, Uint64 Length, void *Dest)
216 {
217          int    pos = 0;
218         char    *dstbuf = Dest;
219         
220         if(giKB_InUse)  return -1;
221         giKB_InUse = 1;
222         
223         while(giKB_ReadPoint != giKB_InsertPoint && pos < Length)
224         {
225                 dstbuf[pos++] = gaKB_Buffer[ giKB_ReadPoint++ ];
226                 if( giKB_ReadPoint == KB_BUFFER_SIZE )  giKB_InsertPoint = 0;
227         }
228         
229         giKB_InUse = 0;
230         
231         return Length;
232 }
233
234 /**
235  * \fn void KB_UpdateLEDs()
236  * \brief Updates the status of the keyboard LEDs
237  */
238 void KB_UpdateLEDs()
239 {
240         Uint8   leds;
241         
242         leds = (gbKB_CapsState ? 4 : 0);
243         
244         while( inb(0x64) & 2 ); // Wait for bit 2 to unset
245         outb(0x60, 0xED);       // Send update command
246         
247         while( inb(0x64) & 2 ); // Wait for bit 2 to unset
248         outb(0x60, leds);
249 }
250
251 /**
252  * \fn int KB_IOCtl(tVFS_Node *Node, int Id, void *Data)
253  * \brief Calls an IOCtl Command
254  */
255 int KB_IOCtl(tVFS_Node *Node, int Id, void *Data)
256 {
257         switch(Id)
258         {
259         case DRV_IOCTL_TYPE:    return DRV_TYPE_KEYBOARD;
260         case DRV_IOCTL_IDENT:   memcpy(Data, "KB\0\0", 4);      return 1;
261         case DRV_IOCTL_VERSION: return 0x100;
262         case DRV_IOCTL_LOOKUP:  return 0;
263         
264         // Sets the Keyboard Callback
265         case KB_IOCTL_SETCALLBACK:
266                 // Sanity Check
267                 if((Uint)Data < KERNEL_BASE)    return 0;
268                 // Can only be set once
269                 if(gKB_Callback != NULL)        return 0;
270                 // Set Callback
271                 gKB_Callback = Data;
272                 return 1;
273         
274         default:
275                 return 0;
276         }
277 }

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