]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/MAI/bios_emulator/scitech/src/pm/tests/tick.c
Fix some compile issues for MAI board.
[karo-tx-uboot.git] / board / MAI / bios_emulator / scitech / src / pm / tests / tick.c
1 /****************************************************************************
2 *
3 *                   SciTech OS Portability Manager Library
4 *
5 *  ========================================================================
6 *
7 *    The contents of this file are subject to the SciTech MGL Public
8 *    License Version 1.0 (the "License"); you may not use this file
9 *    except in compliance with the License. You may obtain a copy of
10 *    the License at http://www.scitechsoft.com/mgl-license.txt
11 *
12 *    Software distributed under the License is distributed on an
13 *    "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
14 *    implied. See the License for the specific language governing
15 *    rights and limitations under the License.
16 *
17 *    The Original Code is Copyright (C) 1991-1998 SciTech Software, Inc.
18 *
19 *    The Initial Developer of the Original Code is SciTech Software, Inc.
20 *    All Rights Reserved.
21 *
22 *  ========================================================================
23 *
24 * Language:     ANSI C
25 * Environment:  any
26 *
27 * Description:  Test program to check the ability to install a C based
28 *               timer interrupt handler.
29 *
30 *               Functions tested:   PM_setTimerHandler()
31 *                                   PM_chainPrevTimer();
32 *                                   PM_restoreTimerHandler()
33 *
34 ****************************************************************************/
35
36 #include <stdlib.h>
37 #include <stdio.h>
38 #include "pmapi.h"
39
40 volatile long count = 0;
41
42 #pragma off (check_stack)           /* No stack checking under Watcom   */
43
44 void PMAPI timerHandler(void)
45 {
46     PM_chainPrevTimer();        /* Chain to previous handler */
47     count++;
48 }
49
50 int main(void)
51 {
52     long            oldCount;
53     PM_lockHandle   lh;
54
55     printf("Program running in ");
56     switch (PM_getModeType()) {
57         case PM_realMode:
58             printf("real mode.\n\n");
59             break;
60         case PM_286:
61             printf("16 bit protected mode.\n\n");
62             break;
63         case PM_386:
64             printf("32 bit protected mode.\n\n");
65             break;
66         }
67
68     /* Install our timer handler and lock handler pages in memory. It is
69      * difficult to get the size of a function in C, but we know our
70      * function is well less than 100 bytes (and an entire 4k page will
71      * need to be locked by the server anyway).
72      */
73     PM_lockCodePages((__codePtr)timerHandler,100,&lh);
74     PM_lockDataPages((void*)&count,sizeof(count),&lh);
75     PM_installBreakHandler();           /* We *DONT* want Ctrl-Breaks! */
76     PM_setTimerHandler(timerHandler);
77     printf("Timer interrupt handler installed - Hit ESC to exit\n");
78     oldCount = count;
79     while (1) {
80         if (PM_kbhit() && (PM_getch() == 0x1B))
81             break;
82         if (count != oldCount) {
83             printf("Tick, Tock: %ld\n", count);
84             oldCount = count;
85             }
86         }
87
88     PM_restoreTimerHandler();
89     PM_restoreBreakHandler();
90     PM_unlockDataPages((void*)&count,sizeof(count),&lh);
91     PM_unlockCodePages((__codePtr)timerHandler,100,&lh);
92     printf("Timer handler was called %ld times\n", count);
93     return 0;
94 }