2020-02-09 16:28:56 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-02-09 16:28:56 +02:00
|
|
|
*/
|
|
|
|
|
|
2020-08-24 19:35:19 -06:00
|
|
|
#include <AK/Singleton.h>
|
2020-05-16 12:00:04 +02:00
|
|
|
#include <Kernel/Console.h>
|
|
|
|
|
#include <Kernel/IO.h>
|
2020-06-28 16:04:14 -06:00
|
|
|
#include <Kernel/SpinLock.h>
|
2020-09-18 09:49:51 +02:00
|
|
|
#include <Kernel/kstdio.h>
|
2020-02-09 16:28:56 +02:00
|
|
|
|
|
|
|
|
// Bytes output to 0xE9 end up on the Bochs console. It's very handy.
|
|
|
|
|
#define CONSOLE_OUT_TO_E9
|
|
|
|
|
|
2020-08-24 19:35:19 -06:00
|
|
|
static AK::Singleton<Console> s_the;
|
2020-06-28 16:04:14 -06:00
|
|
|
static Kernel::SpinLock g_console_lock;
|
2020-02-09 16:28:56 +02:00
|
|
|
|
2021-02-19 18:41:50 +01:00
|
|
|
UNMAP_AFTER_INIT void Console::initialize()
|
2020-08-24 19:35:19 -06:00
|
|
|
{
|
|
|
|
|
s_the.ensure_instance();
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-09 16:28:56 +02:00
|
|
|
Console& Console::the()
|
|
|
|
|
{
|
|
|
|
|
return *s_the;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Console::is_initialized()
|
|
|
|
|
{
|
2020-08-24 19:35:19 -06:00
|
|
|
return s_the.is_initialized();
|
2020-02-09 16:28:56 +02:00
|
|
|
}
|
|
|
|
|
|
2021-02-19 18:41:50 +01:00
|
|
|
UNMAP_AFTER_INIT Console::Console()
|
2020-02-09 16:28:56 +02:00
|
|
|
: CharacterDevice(5, 1)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-19 21:29:46 +01:00
|
|
|
UNMAP_AFTER_INIT Console::~Console()
|
2020-02-09 16:28:56 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-10 19:44:42 +10:00
|
|
|
bool Console::can_read(const Kernel::FileDescription&, size_t) const
|
2020-02-09 16:28:56 +02:00
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-17 13:18:51 +01:00
|
|
|
Kernel::KResultOr<size_t> Console::read(FileDescription&, u64, Kernel::UserOrKernelBuffer&, size_t)
|
2020-02-09 16:28:56 +02:00
|
|
|
{
|
|
|
|
|
// FIXME: Implement reading from the console.
|
|
|
|
|
// Maybe we could use a ring buffer for this device?
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-17 13:18:51 +01:00
|
|
|
Kernel::KResultOr<size_t> Console::write(FileDescription&, u64, const Kernel::UserOrKernelBuffer& data, size_t size)
|
2020-02-09 16:28:56 +02:00
|
|
|
{
|
|
|
|
|
if (!size)
|
|
|
|
|
return 0;
|
2020-09-11 21:11:07 -06:00
|
|
|
|
|
|
|
|
ssize_t nread = data.read_buffered<256>(size, [&](const u8* bytes, size_t bytes_count) {
|
|
|
|
|
for (size_t i = 0; i < bytes_count; i++)
|
|
|
|
|
put_char((char)bytes[i]);
|
|
|
|
|
return (ssize_t)bytes_count;
|
|
|
|
|
});
|
|
|
|
|
if (nread < 0)
|
2021-01-20 23:11:17 +01:00
|
|
|
return Kernel::KResult((ErrnoCode)-nread);
|
2020-09-11 21:11:07 -06:00
|
|
|
return (size_t)nread;
|
2020-02-09 16:28:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Console::put_char(char ch)
|
|
|
|
|
{
|
2020-06-28 16:04:14 -06:00
|
|
|
Kernel::ScopedSpinLock lock(g_console_lock);
|
2020-02-09 16:28:56 +02:00
|
|
|
#ifdef CONSOLE_OUT_TO_E9
|
|
|
|
|
//if (ch != 27)
|
|
|
|
|
IO::out8(0xe9, ch);
|
|
|
|
|
#endif
|
|
|
|
|
m_logbuffer.enqueue(ch);
|
|
|
|
|
}
|