1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 07:04:59 +00:00
serenity/Kernel/Graphics/Console/BootFramebufferConsole.h
kleines Filmröllchen 4314c25cf2 Kernel: Require lock rank for Spinlock construction
All users which relied on the default constructor use a None lock rank
for now. This will make it easier to in the future remove LockRank and
actually annotate the ranks by searching for None.
2022-08-19 20:26:47 -07:00

48 lines
1.3 KiB
C++

/*
* Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <Kernel/Forward.h>
#include <Kernel/Graphics/Console/GenericFramebufferConsole.h>
namespace Kernel::Graphics {
class BootFramebufferConsole : public GenericFramebufferConsoleImpl {
public:
virtual void clear(size_t x, size_t y, size_t length) override;
virtual void write(size_t x, size_t y, char ch, Color background, Color foreground, bool critical = false) override;
using GenericFramebufferConsoleImpl::write;
virtual void enable() override;
virtual void disable() override;
virtual void flush(size_t, size_t, size_t, size_t) override { }
virtual void set_resolution(size_t, size_t, size_t) override { }
// FIXME: Port MemoryManager to aarch64
#if ARCH(AARCH64)
BootFramebufferConsole(u8* framebuffer_addr, size_t width, size_t height, size_t pitch);
#else
BootFramebufferConsole(PhysicalAddress framebuffer_addr, size_t width, size_t height, size_t pitch);
#endif
protected:
virtual void clear_glyph(size_t x, size_t y) override;
virtual u8* framebuffer_data() override;
// FIXME: Port MemoryManager to aarch64
#if ARCH(AARCH64)
u8* m_framebuffer;
#else
OwnPtr<Memory::Region> m_framebuffer;
#endif
u8* m_framebuffer_data {};
mutable Spinlock m_lock { LockRank::None };
};
}