source: mainline/kernel/generic/src/console/console.c@ c18e666

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since c18e666 was 18251cc, checked in by Martin Decky <martin@…>, 16 years ago

cstyle

  • Property mode set to 100644
File size: 7.5 KB
RevLine 
[2677758]1/*
[df4ed85]2 * Copyright (c) 2003 Josef Cejka
3 * Copyright (c) 2005 Jakub Jermar
[2677758]4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * - Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * - Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
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
16 * derived from this software without specific prior written permission.
17 *
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
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
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
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
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
[06e1e95]30/** @addtogroup genericconsole
[b45c443]31 * @{
32 */
33/** @file
34 */
35
[2677758]36#include <console/console.h>
37#include <console/chardev.h>
[82b71ef1]38#include <sysinfo/sysinfo.h>
[2677758]39#include <synch/waitq.h>
40#include <synch/spinlock.h>
41#include <arch/types.h>
[82b71ef1]42#include <ddi/irq.h>
43#include <ddi/ddi.h>
[05641a9e]44#include <event/event.h>
[82b71ef1]45#include <ipc/irq.h>
[2677758]46#include <arch.h>
[93b84b3]47#include <func.h>
48#include <print.h>
[eec616b]49#include <putchar.h>
[23684b7]50#include <atomic.h>
[312cc68]51#include <syscall/copy.h>
52#include <errno.h>
[2677758]53
[eec616b]54#define KLOG_SIZE PAGE_SIZE
55#define KLOG_LATENCY 8
[c859753]56
[c0855a0]57/** Kernel log cyclic buffer */
[eec616b]58static wchar_t klog[KLOG_SIZE] __attribute__ ((aligned (PAGE_SIZE)));
[c859753]59
[c0855a0]60/** Kernel log initialized */
[82b71ef1]61static bool klog_inited = false;
[c0855a0]62/** First kernel log characters */
[c859753]63static index_t klog_start = 0;
[c0855a0]64/** Number of valid kernel log characters */
[c859753]65static size_t klog_len = 0;
[c0855a0]66/** Number of stored (not printed) kernel log characters */
[c859753]67static size_t klog_stored = 0;
[c0855a0]68/** Number of stored kernel log characters for uspace */
[82b71ef1]69static size_t klog_uspace = 0;
70
[c0855a0]71/** Silence output */
[691eb52]72bool silent = false;
[516ff92]73
[c0855a0]74/** Kernel log spinlock */
[82b71ef1]75SPINLOCK_INITIALIZE(klog_lock);
76
77/** Physical memory area used for klog buffer */
78static parea_t klog_parea;
[516ff92]79
[ac8e7a9]80/** Standard input and output character devices */
81indev_t *stdin = NULL;
82outdev_t *stdout = NULL;
[411b6a6]83
[82b71ef1]84/** Initialize kernel logging facility
85 *
86 * The shared area contains kernel cyclic buffer. Userspace application may
87 * be notified on new data with indication of position and size
88 * of the data within the circular buffer.
[ac8e7a9]89 *
[82b71ef1]90 */
91void klog_init(void)
92{
93 void *faddr = (void *) KA2PA(klog);
94
95 ASSERT((uintptr_t) faddr % FRAME_SIZE == 0);
96 ASSERT(KLOG_SIZE % FRAME_SIZE == 0);
97
98 klog_parea.pbase = (uintptr_t) faddr;
[eec616b]99 klog_parea.frames = SIZE2FRAMES(sizeof(klog));
[82b71ef1]100 ddi_parea_register(&klog_parea);
[ac8e7a9]101
[82b71ef1]102 sysinfo_set_item_val("klog.faddr", NULL, (unative_t) faddr);
[eec616b]103 sysinfo_set_item_val("klog.pages", NULL, SIZE2FRAMES(sizeof(klog)));
[ac8e7a9]104
[82b71ef1]105 spinlock_lock(&klog_lock);
106 klog_inited = true;
107 spinlock_unlock(&klog_lock);
108}
109
[516ff92]110void grab_console(void)
111{
112 silent = false;
113 arch_grab_console();
114}
115
116void release_console(void)
117{
118 silent = true;
119 arch_release_console();
120}
121
[312cc68]122/** Tell kernel to get keyboard/console access again */
123unative_t sys_debug_enable_console(void)
124{
125#ifdef CONFIG_KCONSOLE
126 grab_console();
127 return true;
128#else
129 return false;
130#endif
131}
132
133/** Tell kernel to relinquish keyboard/console access */
134unative_t sys_debug_disable_console(void)
135{
136 release_console();
137 return true;
138}
139
[ac8e7a9]140bool check_poll(indev_t *indev)
141{
142 if (indev == NULL)
143 return false;
144
145 if (indev->op == NULL)
146 return false;
147
148 return (indev->op->poll != NULL);
149}
150
151/** Get character from input character device. Do not echo character.
[e8a9dc3]152 *
[ac8e7a9]153 * @param indev Input character device.
[e8a9dc3]154 * @return Character read.
[ac8e7a9]155 *
[e8a9dc3]156 */
[ac8e7a9]157uint8_t _getc(indev_t *indev)
[e8a9dc3]158{
[36e7ee98]159 if (atomic_get(&haltstate)) {
[ac8e7a9]160 /* If we are here, we are hopefully on the processor that
[93b84b3]161 * issued the 'halt' command, so proceed to read the character
162 * directly from input
163 */
[ac8e7a9]164 if (check_poll(indev))
165 return indev->op->poll(indev);
166
167 /* No other way of interacting with user */
168 interrupts_disable();
169
[36e7ee98]170 if (CPU)
[c859753]171 printf("cpu%u: ", CPU->id);
[36e7ee98]172 else
173 printf("cpu: ");
[ac8e7a9]174 printf("halted (no polling input)\n");
[93b84b3]175 cpu_halt();
176 }
[ac8e7a9]177
178 waitq_sleep(&indev->wq);
179 ipl_t ipl = interrupts_disable();
180 spinlock_lock(&indev->lock);
181 uint8_t ch = indev->buffer[(indev->index - indev->counter) % INDEV_BUFLEN];
182 indev->counter--;
183 spinlock_unlock(&indev->lock);
[e8a9dc3]184 interrupts_restore(ipl);
[ac8e7a9]185
[e8a9dc3]186 return ch;
187}
188
[ac8e7a9]189/** Get string from input character device.
[2677758]190 *
[ac8e7a9]191 * Read characters from input character device until first occurrence
[2677758]192 * of newline character.
193 *
[ac8e7a9]194 * @param indev Input character device.
195 * @param buf Buffer where to store string terminated by '\0'.
[abbc16e]196 * @param buflen Size of the buffer.
[ff3b3197]197 *
198 * @return Number of characters read.
[ac8e7a9]199 *
[2677758]200 */
[ac8e7a9]201count_t gets(indev_t *indev, char *buf, size_t buflen)
[2677758]202{
203 index_t index = 0;
[516ff92]204
[2677758]205 while (index < buflen) {
[ac8e7a9]206 char ch = _getc(indev);
[e8a9dc3]207 if (ch == '\b') {
208 if (index > 0) {
209 index--;
210 /* Space backspace, space */
211 putchar('\b');
212 putchar(' ');
213 putchar('\b');
214 }
215 continue;
216 }
217 putchar(ch);
[516ff92]218
[2677758]219 if (ch == '\n') { /* end of string => write 0, return */
[ff3b3197]220 buf[index] = '\0';
221 return (count_t) index;
[2677758]222 }
[ff3b3197]223 buf[index++] = ch;
[2677758]224 }
[ac8e7a9]225
[ff3b3197]226 return (count_t) index;
[2677758]227}
228
[ac8e7a9]229/** Get character from input device & echo it to screen */
230uint8_t getc(indev_t *indev)
[2677758]231{
[ac8e7a9]232 uint8_t ch = _getc(indev);
[e8a9dc3]233 putchar(ch);
[2677758]234 return ch;
235}
[973be64e]236
[82b71ef1]237void klog_update(void)
238{
239 spinlock_lock(&klog_lock);
240
[18251cc]241 if ((klog_inited) && (event_is_subscribed(EVENT_KLOG)) && (klog_uspace > 0)) {
[05641a9e]242 event_notify_3(EVENT_KLOG, klog_start, klog_len, klog_uspace);
243 klog_uspace = 0;
244 }
[82b71ef1]245
246 spinlock_unlock(&klog_lock);
247}
248
[eec616b]249void putchar(const wchar_t ch)
[973be64e]250{
[82b71ef1]251 spinlock_lock(&klog_lock);
252
[ac8e7a9]253 if ((klog_stored > 0) && (stdout) && (stdout->op->write)) {
[c859753]254 /* Print charaters stored in kernel log */
255 index_t i;
256 for (i = klog_len - klog_stored; i < klog_len; i++)
[516ff92]257 stdout->op->write(stdout, klog[(klog_start + i) % KLOG_SIZE], silent);
[c859753]258 klog_stored = 0;
259 }
260
261 /* Store character in the cyclic kernel log */
[eec616b]262 klog[(klog_start + klog_len) % KLOG_SIZE] = ch;
[c859753]263 if (klog_len < KLOG_SIZE)
264 klog_len++;
265 else
266 klog_start = (klog_start + 1) % KLOG_SIZE;
267
[ac8e7a9]268 if ((stdout) && (stdout->op->write))
[eec616b]269 stdout->op->write(stdout, ch, silent);
[c859753]270 else {
271 /* The character is just in the kernel log */
272 if (klog_stored < klog_len)
273 klog_stored++;
274 }
[82b71ef1]275
276 /* The character is stored for uspace */
277 if (klog_uspace < klog_len)
278 klog_uspace++;
279
[c05a50f]280 /* Check notify uspace to update */
281 bool update;
[eec616b]282 if ((klog_uspace > KLOG_LATENCY) || (ch == '\n'))
[c05a50f]283 update = true;
284 else
285 update = false;
286
[82b71ef1]287 spinlock_unlock(&klog_lock);
288
[c05a50f]289 if (update)
290 klog_update();
[973be64e]291}
[b45c443]292
[312cc68]293/** Print using kernel facility
294 *
295 * Print to kernel log.
296 *
297 */
[eec616b]298unative_t sys_klog(int fd, const void * buf, size_t count)
[312cc68]299{
300 char *data;
301 int rc;
[eec616b]302
[312cc68]303 if (count > PAGE_SIZE)
304 return ELIMIT;
305
306 if (count > 0) {
307 data = (char *) malloc(count + 1, 0);
308 if (!data)
309 return ENOMEM;
310
311 rc = copy_from_uspace(data, buf, count);
312 if (rc) {
313 free(data);
314 return rc;
315 }
316 data[count] = 0;
317
318 printf("%s", data);
319 free(data);
320 } else
321 klog_update();
322
323 return count;
324}
325
[06e1e95]326/** @}
[b45c443]327 */
Note: See TracBrowser for help on using the repository browser.