Subversion Repositories HelenOS-historic

Rev

Rev 1708 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1708 Rev 1780
1
/*
1
/*
2
 * Copyright (C) 2003 Josef Cejka
2
 * Copyright (C) 2003 Josef Cejka
3
 * Copyright (C) 2005 Jakub Jermar
3
 * Copyright (C) 2005 Jakub Jermar
4
 * All rights reserved.
4
 * All rights reserved.
5
 *
5
 *
6
 * Redistribution and use in source and binary forms, with or without
6
 * Redistribution and use in source and binary forms, with or without
7
 * modification, are permitted provided that the following conditions
7
 * modification, are permitted provided that the following conditions
8
 * are met:
8
 * are met:
9
 *
9
 *
10
 * - Redistributions of source code must retain the above copyright
10
 * - Redistributions of source code must retain the above copyright
11
 *   notice, this list of conditions and the following disclaimer.
11
 *   notice, this list of conditions and the following disclaimer.
12
 * - Redistributions in binary form must reproduce the above copyright
12
 * - Redistributions in binary form must reproduce the above copyright
13
 *   notice, this list of conditions and the following disclaimer in the
13
 *   notice, this list of conditions and the following disclaimer in the
14
 *   documentation and/or other materials provided with the distribution.
14
 *   documentation and/or other materials provided with the distribution.
15
 * - The name of the author may not be used to endorse or promote products
15
 * - The name of the author may not be used to endorse or promote products
16
 *   derived from this software without specific prior written permission.
16
 *   derived from this software without specific prior written permission.
17
 *
17
 *
18
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
 */
28
 */
29
 
29
 
30
 /** @addtogroup genericconsole
30
 /** @addtogroup genericconsole
31
 * @{
31
 * @{
32
 */
32
 */
33
/** @file
33
/** @file
34
 */
34
 */
35
 
35
 
36
#include <console/console.h>
36
#include <console/console.h>
37
#include <console/chardev.h>
37
#include <console/chardev.h>
38
#include <synch/waitq.h>
38
#include <synch/waitq.h>
39
#include <synch/spinlock.h>
39
#include <synch/spinlock.h>
40
#include <arch/types.h>
40
#include <arch/types.h>
41
#include <typedefs.h>
41
#include <typedefs.h>
42
#include <arch.h>
42
#include <arch.h>
43
#include <func.h>
43
#include <func.h>
44
#include <print.h>
44
#include <print.h>
45
#include <atomic.h>
45
#include <atomic.h>
46
 
46
 
47
#define BUFLEN 2048
47
#define BUFLEN 2048
48
static char debug_buffer[BUFLEN];
48
static char debug_buffer[BUFLEN];
49
static size_t offset = 0;
49
static size_t offset = 0;
50
/** Initialize stdout to something that does not print, but does not fail
50
/** Initialize stdout to something that does not print, but does not fail
51
 *
51
 *
52
 * Save data in some buffer so that it could be retrieved in the debugger
52
 * Save data in some buffer so that it could be retrieved in the debugger
53
 */
53
 */
54
static void null_putchar(chardev_t *d, const char ch)
54
static void null_putchar(chardev_t *d, const char ch)
55
{
55
{
56
    if (offset >= BUFLEN)
56
    if (offset >= BUFLEN)
57
        offset = 0;
57
        offset = 0;
58
    debug_buffer[offset++] = ch;
58
    debug_buffer[offset++] = ch;
59
}
59
}
60
 
60
 
61
static chardev_operations_t null_stdout_ops = {
61
static chardev_operations_t null_stdout_ops = {
62
    .write = null_putchar
62
    .write = null_putchar
63
};
63
};
64
chardev_t null_stdout = {
64
chardev_t null_stdout = {
65
    .name = "null",
65
    .name = "null",
66
    .op = &null_stdout_ops
66
    .op = &null_stdout_ops
67
};
67
};
68
 
68
 
69
/** Standard input character device. */
69
/** Standard input character device. */
70
chardev_t *stdin = NULL;
70
chardev_t *stdin = NULL;
71
chardev_t *stdout = &null_stdout;
71
chardev_t *stdout = &null_stdout;
72
 
72
 
73
/** Get character from character device. Do not echo character.
73
/** Get character from character device. Do not echo character.
74
 *
74
 *
75
 * @param chardev Character device.
75
 * @param chardev Character device.
76
 *
76
 *
77
 * @return Character read.
77
 * @return Character read.
78
 */
78
 */
79
__u8 _getc(chardev_t *chardev)
79
uint8_t _getc(chardev_t *chardev)
80
{
80
{
81
    __u8 ch;
81
    uint8_t ch;
82
    ipl_t ipl;
82
    ipl_t ipl;
83
 
83
 
84
    if (atomic_get(&haltstate)) {
84
    if (atomic_get(&haltstate)) {
85
        /* If we are here, we are hopefully on the processor, that
85
        /* If we are here, we are hopefully on the processor, that
86
         * issued the 'halt' command, so proceed to read the character
86
         * issued the 'halt' command, so proceed to read the character
87
         * directly from input
87
         * directly from input
88
         */
88
         */
89
        if (chardev->op->read)
89
        if (chardev->op->read)
90
            return chardev->op->read(chardev);
90
            return chardev->op->read(chardev);
91
        /* no other way of interacting with user, halt */
91
        /* no other way of interacting with user, halt */
92
        if (CPU)
92
        if (CPU)
93
            printf("cpu%d: ", CPU->id);
93
            printf("cpu%d: ", CPU->id);
94
        else
94
        else
95
            printf("cpu: ");
95
            printf("cpu: ");
96
        printf("halted - no kconsole\n");
96
        printf("halted - no kconsole\n");
97
        cpu_halt();
97
        cpu_halt();
98
    }
98
    }
99
 
99
 
100
    waitq_sleep(&chardev->wq);
100
    waitq_sleep(&chardev->wq);
101
    ipl = interrupts_disable();
101
    ipl = interrupts_disable();
102
    spinlock_lock(&chardev->lock);
102
    spinlock_lock(&chardev->lock);
103
    ch = chardev->buffer[(chardev->index - chardev->counter) % CHARDEV_BUFLEN];
103
    ch = chardev->buffer[(chardev->index - chardev->counter) % CHARDEV_BUFLEN];
104
    chardev->counter--;
104
    chardev->counter--;
105
    spinlock_unlock(&chardev->lock);
105
    spinlock_unlock(&chardev->lock);
106
    interrupts_restore(ipl);
106
    interrupts_restore(ipl);
107
 
107
 
108
    chardev->op->resume(chardev);
108
    chardev->op->resume(chardev);
109
 
109
 
110
    return ch;
110
    return ch;
111
}
111
}
112
 
112
 
113
/** Get string from character device.
113
/** Get string from character device.
114
 *
114
 *
115
 * Read characters from character device until first occurrence
115
 * Read characters from character device until first occurrence
116
 * of newline character.
116
 * of newline character.
117
 *
117
 *
118
 * @param chardev Character device.
118
 * @param chardev Character device.
119
 * @param buf Buffer where to store string terminated by '\0'.
119
 * @param buf Buffer where to store string terminated by '\0'.
120
 * @param buflen Size of the buffer.
120
 * @param buflen Size of the buffer.
121
 *
121
 *
122
 * @return Number of characters read.
122
 * @return Number of characters read.
123
 */
123
 */
124
count_t gets(chardev_t *chardev, char *buf, size_t buflen)
124
count_t gets(chardev_t *chardev, char *buf, size_t buflen)
125
{
125
{
126
    index_t index = 0;
126
    index_t index = 0;
127
    char ch;
127
    char ch;
128
 
128
 
129
    while (index < buflen) {
129
    while (index < buflen) {
130
        ch = _getc(chardev);
130
        ch = _getc(chardev);
131
        if (ch == '\b') {
131
        if (ch == '\b') {
132
            if (index > 0) {
132
            if (index > 0) {
133
                index--;
133
                index--;
134
                /* Space backspace, space */
134
                /* Space backspace, space */
135
                putchar('\b');
135
                putchar('\b');
136
                putchar(' ');
136
                putchar(' ');
137
                putchar('\b');
137
                putchar('\b');
138
            }
138
            }
139
            continue;
139
            continue;
140
        }
140
        }
141
        putchar(ch);
141
        putchar(ch);
142
 
142
 
143
        if (ch == '\n') { /* end of string => write 0, return */
143
        if (ch == '\n') { /* end of string => write 0, return */
144
            buf[index] = '\0';
144
            buf[index] = '\0';
145
            return (count_t) index;
145
            return (count_t) index;
146
        }
146
        }
147
        buf[index++] = ch;
147
        buf[index++] = ch;
148
    }
148
    }
149
    return (count_t) index;
149
    return (count_t) index;
150
}
150
}
151
 
151
 
152
/** Get character from device & echo it to screen */
152
/** Get character from device & echo it to screen */
153
__u8 getc(chardev_t *chardev)
153
uint8_t getc(chardev_t *chardev)
154
{
154
{
155
    __u8 ch;
155
    uint8_t ch;
156
 
156
 
157
    ch = _getc(chardev);
157
    ch = _getc(chardev);
158
    putchar(ch);
158
    putchar(ch);
159
    return ch;
159
    return ch;
160
}
160
}
161
 
161
 
162
void putchar(char c)
162
void putchar(char c)
163
{
163
{
164
    if (stdout->op->write)
164
    if (stdout->op->write)
165
        stdout->op->write(stdout, c);
165
        stdout->op->write(stdout, c);
166
}
166
}
167
 
167
 
168
 /** @}
168
 /** @}
169
 */
169
 */
170
 
170
 
171
 
171