123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- /*
- * Copyright (c) 2017 Richard Braun.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- *
- * Device-independent console interface.
- */
- #ifndef KERN_CONSOLE_H
- #define KERN_CONSOLE_H
- #include <kern/cbuf.h>
- #include <kern/init.h>
- #include <kern/list.h>
- #include <kern/spinlock.h>
- #include <kern/thread.h>
- #define CONSOLE_SCROLL_UP 0x12 // DC2
- #define CONSOLE_SCROLL_DOWN 0x14 // DC4
- struct console;
- struct console_ops
- {
- void (*puts) (struct console *, const char *, size_t);
- };
- #define CONSOLE_BUF_SIZE 64
- #define CONSOLE_NAME_SIZE 16
- /*
- * Console device.
- *
- * This structure should be embedded in the hardware-specific console
- * objects. Calls to console operations are all serialized by this module
- * for each device. Interrupts are disabled when calling operations.
- */
- struct console
- {
- struct spinlock lock;
- const struct console_ops *ops;
- char buffer[CONSOLE_BUF_SIZE];
- struct cbuf recvbuf;
- struct list waiters;
- struct list node;
- char name[CONSOLE_NAME_SIZE];
- };
- // Console initialization.
- void console_init (struct console *console, const char *name,
- const struct console_ops *ops);
- /*
- * Register a console device.
- *
- * The given console must be initialized before calling this function.
- *
- * This function isn't thread-safe and can only be called during system
- * initialization.
- */
- void console_register (struct console *console);
- /*
- * Console interrupt handler.
- *
- * This function is meant to be used by low-level drivers to fill the
- * receive buffer.
- *
- * Interrupts must be disabled when calling this function.
- */
- void console_intr (struct console *console, const char *s);
- /*
- * Write/read a single character to all registered console devices.
- *
- * Writing may not block in order to allow printf functions to be used in any
- * context. Reading may block waiting for input.
- */
- void console_putchar (char c);
- char console_getchar (void);
- /*
- * Write/read a block of characters. These functions come in 2 versions: Those
- * that acquire the lock before and release it after, and those that don't.
- */
- void console_puts (const char *s, size_t size);
- size_t console_gets (char *s, size_t size);
- void console_puts_nolock (const char *s, size_t size);
- size_t console_gets_nolock (char *s, size_t size);
- // Acquire an exclusive lock on the console device.
- void console_lock (cpu_flags_t *flags);
- // Release the lock on the console.
- void console_unlock (cpu_flags_t flags);
- /*
- * This init operation provides :
- * - registration of consoles
- */
- INIT_OP_DECLARE (console_bootstrap);
- /*
- * This init operation provides :
- * - all consoles have been registered
- * - module fully initialized
- */
- INIT_OP_DECLARE (console_setup);
- #endif
|