/* * Copyright (c) 2021, Liav A. * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include #include namespace Kernel { class VGACompatibleAdapter : public GraphicsDevice , public PCI::DeviceController { AK_MAKE_ETERNAL public: static NonnullRefPtr initialize_with_preset_resolution(PCI::Address, PhysicalAddress, size_t framebuffer_width, size_t framebuffer_height, size_t framebuffer_pitch); static NonnullRefPtr initialize(PCI::Address); virtual bool framebuffer_devices_initialized() const override { return !m_framebuffer_device.is_null(); } protected: explicit VGACompatibleAdapter(PCI::Address); private: VGACompatibleAdapter(PCI::Address, PhysicalAddress, size_t framebuffer_width, size_t framebuffer_height, size_t framebuffer_pitch); // ^GraphicsDevice virtual void initialize_framebuffer_devices() override; virtual Type type() const override { return Type::VGACompatible; } virtual void enable_consoles() override; virtual void disable_consoles() override; protected: PhysicalAddress m_framebuffer_address; size_t m_framebuffer_width { 0 }; size_t m_framebuffer_height { 0 }; size_t m_framebuffer_pitch { 0 }; RefPtr m_framebuffer_device; RefPtr m_framebuffer_console; }; }