source: trunk/hal/x86_64/core/hal_interrupt.c @ 208

Last change on this file since 208 was 193, checked in by max@…, 7 years ago

build the context

File size: 3.4 KB
Line 
1/*
2 * hal_interrupt.c - Implementation of interrupt handler for x86_64
3 *
4 * Copyright (c) 2017 Maxime Villard
5 *
6 * This file is part of ALMOS-MKH.
7 *
8 * ALMOS-MKH is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2.0 of the License.
11 *
12 * ALMOS-MKH is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with ALMOS-MKH.; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include <hal_types.h>
23#include <kernel_config.h>
24#include <thread.h>
25#include <do_interrupt.h>
26#include <hal_interrupt.h>
27
28#include <hal_kentry.h>
29#include <hal_apic.h>
30#include <hal_internal.h>
31#include <hal_special.h>
32
33/* -------------------------------------------------------------------------- */
34
35/*
36 * Timer interrupt
37 */
38void hal_timer_intr(hal_cpu_context_t *tf)
39{
40        x86_printf("-> got timer: rip=%Z (th=%Z)\n", tf->tf_rip,
41            hal_get_current_thread());
42        return;
43}
44
45/* -------------------------------------------------------------------------- */
46
47/*
48 * Serial Port (COM1) interrupt
49 */
50void hal_com1_intr(hal_cpu_context_t *tf)
51{
52        static char prev;
53        uint8_t chan;
54        char c;
55
56        if (prev & 0x80) {
57                /* the previous char was the channel number (tty) */
58                c = hal_com_read();
59                chan = prev & 0x7F;
60                x86_printf("-> got com [%z,'%c']\n", (uint64_t)chan, c);
61                prev = 0;
62        } else {
63                prev = hal_com_read();
64        }
65
66        return;
67}
68
69/* -------------------------------------------------------------------------- */
70
71#define PS2_DATA        0x60
72
73#define PS2_STATUS      0x64
74#       define STATUS_OUT_FULL  0x00
75#       define STATUS_IN_FULL   0x01
76#       define STATUS_SYS_FLAG  0x02
77
78#define PS2_CMD 0x64
79
80/*
81 * US scancode table, found on the internet.
82 */
83unsigned char scancode_US[128] =
84{
85         0,     27, '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '-', '=',
86        '\b', '\t', 'q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p', '[', ']',
87        '\n',
88         0,     /* 29   - Control */
89        'a',   's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', ';', '\'', '`',
90         0,     /* Left shift */
91        '\\',  'z', 'x', 'c', 'v', 'b', 'n', 'm', ',', '.', '/',
92         0,     /* Right shift */
93        '*',
94         0,     /* Alt */
95        ' ',    /* Space bar */
96         0,     /* Caps lock */
97         0,     /* 59 - F1 key ... > */
98         0,   0,   0,   0,   0,   0,   0,   0,
99         0,     /* < ... F10 */
100         0,     /* 69 - Num lock*/
101         0,     /* Scroll Lock */
102         0,     /* Home key */
103         0,     /* Up Arrow */
104         0,     /* Page Up */
105        '-',
106         0,     /* Left Arrow */
107         0,
108         0,     /* Right Arrow */
109        '+',
110         0,     /* 79 - End key*/
111         0,     /* Down Arrow */
112         0,     /* Page Down */
113         0,     /* Insert Key */
114         0,     /* Delete Key */
115         0,   0,   0,
116         0,     /* F11 Key */
117         0,     /* F12 Key */
118         0,     /* All other keys are undefined */
119};     
120
121/*
122 * Keyboard interrupt (8042 PS/2)
123 */
124void hal_keyboard_intr(hal_cpu_context_t *tf)
125{
126        uint64_t val;
127
128        do {
129                val = in8(PS2_STATUS);
130        } while ((val & STATUS_IN_FULL) == 0);
131
132        val = in8(PS2_DATA);
133
134        x86_printf("-> got keyboard: rip=%Z key=%c ", tf->tf_rip, scancode_US[val]);
135
136        if (val & 0x80)
137                x86_printf("[released]\n");
138        else
139                x86_printf("[pressed]\n");
140
141        return;
142}
143
144
145/* -------------------------------------------------------------------------- */
146
147void hal_do_interrupt( thread_t * this,
148                               reg_t    * regs_tbl )
149{
150        x86_panic((char *)__func__);
151}
Note: See TracBrowser for help on using the repository browser.