Subversion Repositories HelenOS-historic

Rev

Rev 125 | Rev 195 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 jermar 1
/*
2
 * Copyright (C) 2001-2004 Jakub Jermar
3
 * All rights reserved.
4
 *
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
7
 * are met:
8
 *
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
28
 
29
#include <arch/ega.h>
30
#include <putchar.h>
31
#include <mm/page.h>
167 jermar 32
#include <arch/mm/page.h>
1 jermar 33
#include <synch/spinlock.h>
34
#include <arch/types.h>
35
#include <arch/asm.h>
36
 
37
/*
38
 * The EGA driver.
39
 * Simple and short. Function for displaying characters and "scrolling".
40
 */
41
 
42
static spinlock_t egalock;
43
static __u32 ega_cursor;
44
 
45
void ega_move_cursor(void);
46
 
47
void ega_init(void)
48
{
49
    __u8 hi, lo;
50
 
106 jermar 51
    map_page_to_frame(PA2KA(VIDEORAM), VIDEORAM, PAGE_NOT_CACHEABLE, 0);
1 jermar 52
    outb(0x3d4,0xe);
53
    hi = inb(0x3d5);
54
    outb(0x3d4,0xf);
55
    lo = inb(0x3d5);
56
    ega_cursor = (hi<<8)|lo;
57
    ega_putchar('\n');
58
}
59
 
60
void ega_display_char(char ch)
61
{
106 jermar 62
    __u8 *vram = (__u8 *) PA2KA(VIDEORAM);
1 jermar 63
 
64
    vram[ega_cursor*2] = ch;
65
}
66
 
67
/*
68
 * This function takes care of scrolling.
69
 */
70
void ega_check_cursor(void)
71
{
72
    if (ega_cursor < SCREEN)
125 jermar 73
        return;
1 jermar 74
 
106 jermar 75
    memcopy(PA2KA(VIDEORAM) + ROW*2, PA2KA(VIDEORAM), (SCREEN - ROW)*2);
76
    memsetw(PA2KA(VIDEORAM) + (SCREEN - ROW)*2, ROW, 0x0720);
1 jermar 77
    ega_cursor = ega_cursor - ROW;
78
}
79
 
63 decky 80
void ega_putchar(const char ch)
1 jermar 81
{
82
    pri_t pri;
83
 
84
    pri = cpu_priority_high();
85
    spinlock_lock(&egalock);
86
 
87
    switch (ch) {
88
        case '\n':
125 jermar 89
        ega_cursor = (ega_cursor + ROW) - ega_cursor % ROW;
90
        break;
1 jermar 91
        case '\t':
125 jermar 92
        ega_cursor = (ega_cursor + 8) - ega_cursor % 8;
93
        break;
1 jermar 94
        default:
125 jermar 95
        ega_display_char(ch);
96
        ega_cursor++;
97
        break;
1 jermar 98
        }
99
    ega_check_cursor();
100
    ega_move_cursor();
125 jermar 101
 
1 jermar 102
    spinlock_unlock(&egalock);
103
    cpu_priority_restore(pri);
104
}
105
 
106
void ega_move_cursor(void)
107
{
108
    outb(0x3d4,0xe);
109
    outb(0x3d5,(ega_cursor>>8)&0xff);
110
    outb(0x3d4,0xf);
111
    outb(0x3d5,ega_cursor&0xff);   
112
}
113
 
63 decky 114
void putchar(const char ch)
1 jermar 115
{
116
    ega_putchar(ch);
117
}