summaryrefslogblamecommitdiffstats
path: root/private/ntos/fw/alpha/kbdtest.c
blob: f1725227ce46ca4afdc4287c4727867bc5cd3abc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414





























































































































































































































































































































































































































                                                                                    
/*++

Copyright (c) 1991  Microsoft Corporation
Copyright (c) 1993  Digital Equipment Corporation

Module Name:

    Kbdtest.c

Abstract:

    This module implements the Keyboard and mouse test for the self-test.

Author:

    Lluis Abello (lluis) 10-Feb-1991

Environment:

    Rom self-test.

Revision History:

    10-July-1992	John DeRosa [DEC]

    Added Alpha/Jensen modifications.

--*/
#include <ntos.h>
#include "iodevice.h"
#include "kbdmouse.h"

#ifdef JENSEN
#include "jnsnprom.h"
#include "jnsnrtc.h"
#else
#include "mrgnrtc.h"		// morgan
#endif

volatile ULONG TimerTicks;

//
// If the user accidentally types on the keyboard or moves the mouse
// during the power-up tests, there will be a failure.  So, this code
// retries an initialization of the keyboard controller and keyboard
// this many times before giving up.
//

#define MAXIMUM_KEYBOARD_MOUSE_RETRY_COUNT	20

//
// function prototypes
//

VOID
FwpWriteIOChip(
    ULONG ComboInternalAddress,
    UCHAR ComboRegisterAddress
    );

VOID
ClearKbdFifo(
    )
/*++

Routine Description:

    This routine empties the Keyboard controller Fifo.

Arguments:

    None.

Return Value:

    None.

--*/
{
    UCHAR Trash, Stat;
    volatile Timeout;

    //
    // wait until the previous command is processed.
    //

    while ((READ_PORT_UCHAR((PUCHAR)&KEYBOARD_READ->Status) & KBD_IBF_MASK) != 0) {
    }
    while ((READ_PORT_UCHAR((PUCHAR)&KEYBOARD_READ->Status) & KBD_OBF_MASK) != 0) {
        Trash= READ_PORT_UCHAR((PUCHAR)&KEYBOARD_READ->Data);
        for (Timeout=0;Timeout<10000;Timeout++) {
        }
    }
}

BOOLEAN
GetKbdData(
    PUCHAR C,
    ULONG msec
    )
/*++

Routine Description:

    This routine polls the Status Register until Data is available or timeout,
    then it reads and returns the Data.

Arguments:

    C - pointer to a byte where to write the read value
    msec - time-out time in milliseconds

Return Value:

    TRUE if timeout, FALSE if OK;

--*/
{
    //
    // HACKHACK: This should be made smarter.  For now it assumes
    // 90,000,000 instruction per second and 12 instructions per iteration.
    //

    TimerTicks = msec * 1000 * 90 / 12;

    while (TimerTicks--) {
        if (READ_PORT_UCHAR((PUCHAR)&KEYBOARD_READ->Status) & KBD_OBF_MASK) {
            *C = READ_PORT_UCHAR((PUCHAR)&KEYBOARD_READ->Data);
            return FALSE;
        }
    }
    return TRUE;
}

BOOLEAN
SendKbdData(
    IN UCHAR Data
    )
/*++

Routine Description:

    This routine polls the Status Register until the controller is ready to
    accept a data or timeout, then it send the Data.


Arguments:

    None.

Return Value:

    TRUE if timeout, FALSE if OK;

--*/
{
    ULONG i;

    for (i=0; i <KBD_TIMEOUT; i++) {
        if ((READ_PORT_UCHAR((PUCHAR)&KEYBOARD_READ->Status) & KBD_IBF_MASK) == 0) {
            WRITE_PORT_UCHAR((PUCHAR)&KEYBOARD_WRITE->Data,Data);
            return FALSE;
        }
    }
    return TRUE;
}

BOOLEAN
SendKbdCommand(
    IN UCHAR Command
    )
/*++

Routine Description:

    This routine polls the Status Register until the controller is ready to
    accept a command or timeout, then it send the Command.


Arguments:

    None.

Return Value:

    TRUE if timeout, FALSE if OK;

--*/
{
    ULONG i;

    for (i=0; i <KBD_TIMEOUT; i++) {
        if ((READ_PORT_UCHAR((PUCHAR)&KEYBOARD_READ->Status) & KBD_IBF_MASK) == 0) {
            WRITE_PORT_UCHAR((PUCHAR)&KEYBOARD_WRITE->Command,Command);
            return FALSE;
        }
    }
    return TRUE;
}

BOOLEAN
InitKeyboard(
    )
/*++

Routine Description:

    This routine enables and initializes the keyboard.  It assumes a
    101-key keyboard.  It leaves the keyboard in XT mode (scan code = 01).

    To account for the user accidentally typing on the keyboard, this
    routine repeats the test a few times before giving up.

Arguments:

    None.

Return Value:

    FALSE if passed,

    TRUE if bad ACK or BAT received, or if no response is received from
         the keyboard.

--*/
{
    UCHAR Result;
    ULONG i;
    ULONG Index;
    BOOLEAN TestPassed;

    TestPassed = FALSE;

    for (Index = 0; Index < MAXIMUM_KEYBOARD_MOUSE_RETRY_COUNT; Index++) {

	//
	// Send Reset to Keyboard.
	//
	      
	ClearKbdFifo();
	for (;;) {
	    if (SendKbdData(KbdReset)) {
		goto LoopAgain;
	    }
	    if (GetKbdData(&Result,1000)) {
		goto LoopAgain;
	    }
	    if (Result == KbdResend) {
		if (GetKbdData(&Result,1000)) {
		    goto LoopAgain;
		}
		continue;
	    }
	    if (Result != KbdAck) {
		goto LoopAgain;
	    }
	    if (GetKbdData(&Result,7000)) {
		goto LoopAgain;
	    }
	    if (Result != KbdBat) {
		goto LoopAgain;
	    }
	    break;
	}
	
	//
	// Enable Kbd and Select keyboard Scan code.
	//
	      
	if (SendKbdCommand(KBD_CTR_ENABLE_KBD)) {
	    continue;
	}
	if (SendKbdData(KbdSelScanCode)) {
	    continue;
	}
	if (GetKbdData(&Result,1000)) {
	    continue;
	}
	if (SendKbdData(1)) {              // select Scan code 1
	    continue;
	}
	if (GetKbdData(&Result,1000)) {
	    continue;
	}

	TestPassed = TRUE;
	break;

	//
	// Here when an inner loop init fails and we want to do the outer
	// loop again.
	//

      LoopAgain:

	continue;
    }

    if (TestPassed) {
	return FALSE;
    } else {
	return TRUE;
    }
}


ULONG
InitKeyboardController(
    )
/*++

Routine Description:

    This routine Initializes the Keyboard controller.  To account for
    the user accidentally moving the mouse or typing on the keyboard, this
    routine repeats the test a few times before giving up.

Arguments:

    None.

Return Value:

    FALSE if passed,
    TRUE if bad response received from keyboard controller,

--*/
{
    UCHAR Result;
    ULONG Index;
    BOOLEAN TestPassed;

    TestPassed = FALSE;
    
    for (Index = 0; Index < MAXIMUM_KEYBOARD_MOUSE_RETRY_COUNT; Index++) {

	//
	// Clear both fifos.
	//
	      
	ClearKbdFifo();
	
	//
	// Init Control Register 1 with the PS/2/AT bit clear.
	// This puts the keyboard into PS/2 mode.
	//
		
	FwpWriteIOChip (RTC_APORT, RTC_REGNUMBER_RTC_CR1);
	Result = FwpReadIOChip(RTC_DPORT) & ~0x2;
	FwpWriteIOChip (RTC_APORT, RTC_REGNUMBER_RTC_CR1);
	FwpWriteIOChip (RTC_DPORT, Result);
	
	
	//
	// Send Selftest Command. This has to be done before anything else.
	//
	      
	if (SendKbdCommand(KBD_CTR_SELFTEST)) {
	    continue;
	}
	if (GetKbdData(&Result,1000)) {
	    continue;
	}
	if (Result != Kbd_Ctr_Selftest_Passed) {
	    continue;
	}
	
	//
	// Now the Keyboard and Mouse are disabled.
	//
	      
	//
	// Test Keyboard lines.
	//
		    
	if (SendKbdCommand(KBD_CTR_KBDLINES_TEST)) {
	    continue;
	}
	if (GetKbdData(&Result,1000)) {
	    continue;
	}
	if (Result != INTERFACE_NO_ERROR) {
	    continue;
	}
	
	//
	// Test Aux lines.
	//
	      
	if (SendKbdCommand(KBD_CTR_AUXLINES_TEST)) {
	    continue;
	}
	if (GetKbdData(&Result,1000)) {
	    continue;
	}
#ifndef ALPHA
	// This test is disabled for Alpha/Jensen.  It fails for some reason,
        // but the VMS/OSF console front-end has more comprehensive
	// tests than this routine anyway.
	if (Result != INTERFACE_NO_ERROR) {
	    continue;
	}
#endif
	TestPassed = TRUE;
	break;

    }

    if (TestPassed) {
	return FALSE;
    } else {
	return TRUE;
    }
}