2020-01-18 09:38:21 +01:00
|
|
|
/*
|
2021-03-05 14:23:08 +02:00
|
|
|
* Copyright (c) 2021, Liav A. <liavalb@hotmail.co.il>
|
2020-01-18 09:38:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
2021-03-05 14:23:08 +02:00
|
|
|
#include <AK/Checked.h>
|
|
|
|
#include <AK/Singleton.h>
|
|
|
|
#include <Kernel/Debug.h>
|
|
|
|
#include <Kernel/Graphics/FramebufferDevice.h>
|
|
|
|
#include <Kernel/Graphics/GraphicsManagement.h>
|
2019-08-18 14:54:52 +10:00
|
|
|
#include <Kernel/Process.h>
|
|
|
|
#include <Kernel/VM/AnonymousVMObject.h>
|
|
|
|
#include <Kernel/VM/MemoryManager.h>
|
2021-03-05 14:23:08 +02:00
|
|
|
#include <Kernel/VM/TypedMapping.h>
|
2019-08-18 14:54:52 +10:00
|
|
|
#include <LibC/errno_numbers.h>
|
|
|
|
#include <LibC/sys/ioctl_numbers.h>
|
|
|
|
|
2021-04-16 22:58:51 +03:00
|
|
|
#include <Kernel/Panic.h>
|
|
|
|
|
2021-05-22 09:51:55 +03:00
|
|
|
#define MAX_RESOLUTION_WIDTH 4096
|
|
|
|
#define MAX_RESOLUTION_HEIGHT 2160
|
|
|
|
|
2020-02-16 01:27:42 +01:00
|
|
|
namespace Kernel {
|
|
|
|
|
2021-05-22 09:51:55 +03:00
|
|
|
NonnullRefPtr<FramebufferDevice> FramebufferDevice::create(const GraphicsDevice& adapter, size_t output_port_index, PhysicalAddress paddr, size_t width, size_t height, size_t pitch)
|
|
|
|
{
|
|
|
|
return adopt_ref(*new FramebufferDevice(adapter, output_port_index, paddr, width, height, pitch));
|
|
|
|
}
|
|
|
|
|
2021-03-05 14:23:08 +02:00
|
|
|
KResultOr<Region*> FramebufferDevice::mmap(Process& process, FileDescription&, const Range& range, u64 offset, int prot, bool shared)
|
2019-08-18 14:54:52 +10:00
|
|
|
{
|
2021-05-20 21:28:18 +03:00
|
|
|
ScopedSpinLock lock(m_activation_lock);
|
2020-01-12 02:17:30 +01:00
|
|
|
REQUIRE_PROMISE(video);
|
2020-02-28 20:47:27 +01:00
|
|
|
if (!shared)
|
2021-01-20 23:11:17 +01:00
|
|
|
return ENODEV;
|
2021-01-27 21:23:20 -07:00
|
|
|
if (offset != 0)
|
|
|
|
return ENXIO;
|
2021-02-14 09:57:19 +01:00
|
|
|
if (range.size() != page_round_up(framebuffer_size_in_bytes()))
|
2021-01-27 21:23:20 -07:00
|
|
|
return EOVERFLOW;
|
|
|
|
|
2021-04-16 22:58:51 +03:00
|
|
|
auto vmobject = AnonymousVMObject::create_for_physical_range(m_framebuffer_address, page_round_up(framebuffer_size_in_bytes()));
|
2020-01-28 20:48:07 +01:00
|
|
|
if (!vmobject)
|
2021-01-20 23:11:17 +01:00
|
|
|
return ENOMEM;
|
2021-04-16 22:58:51 +03:00
|
|
|
m_userspace_real_framebuffer_vmobject = vmobject;
|
|
|
|
|
2021-05-18 21:34:22 +03:00
|
|
|
m_real_framebuffer_vmobject = AnonymousVMObject::create_for_physical_range(m_framebuffer_address, page_round_up(framebuffer_size_in_bytes()));
|
|
|
|
m_swapped_framebuffer_vmobject = AnonymousVMObject::create_with_size(page_round_up(framebuffer_size_in_bytes()), AllocationStrategy::AllocateNow);
|
|
|
|
m_real_framebuffer_region = MM.allocate_kernel_region_with_vmobject(*m_real_framebuffer_vmobject, page_round_up(framebuffer_size_in_bytes()), "Framebuffer", Region::Access::Read | Region::Access::Write);
|
|
|
|
m_swapped_framebuffer_region = MM.allocate_kernel_region_with_vmobject(*m_swapped_framebuffer_vmobject, page_round_up(framebuffer_size_in_bytes()), "Framebuffer Swap (Blank)", Region::Access::Read | Region::Access::Write);
|
|
|
|
|
2021-05-20 21:28:18 +03:00
|
|
|
RefPtr<VMObject> chosen_vmobject;
|
|
|
|
if (m_graphical_writes_enabled) {
|
|
|
|
chosen_vmobject = m_real_framebuffer_vmobject;
|
|
|
|
} else {
|
|
|
|
chosen_vmobject = m_swapped_framebuffer_vmobject;
|
|
|
|
}
|
2021-04-16 22:58:51 +03:00
|
|
|
auto result = process.space().allocate_region_with_vmobject(
|
2021-01-25 14:52:36 +01:00
|
|
|
range,
|
2021-05-20 21:28:18 +03:00
|
|
|
chosen_vmobject.release_nonnull(),
|
2019-08-18 14:54:52 +10:00
|
|
|
0,
|
2021-03-05 14:23:08 +02:00
|
|
|
"Framebuffer",
|
2021-01-02 16:38:05 +01:00
|
|
|
prot,
|
|
|
|
shared);
|
2021-04-16 22:58:51 +03:00
|
|
|
if (!result.is_error()) {
|
|
|
|
m_userspace_framebuffer_region = result.value();
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-05-21 06:53:31 +03:00
|
|
|
void FramebufferDevice::deactivate_writes()
|
2021-04-16 22:58:51 +03:00
|
|
|
{
|
|
|
|
ScopedSpinLock lock(m_activation_lock);
|
|
|
|
if (!m_userspace_framebuffer_region)
|
|
|
|
return;
|
|
|
|
memcpy(m_swapped_framebuffer_region->vaddr().as_ptr(), m_real_framebuffer_region->vaddr().as_ptr(), page_round_up(framebuffer_size_in_bytes()));
|
|
|
|
auto vmobject = m_swapped_framebuffer_vmobject;
|
|
|
|
m_userspace_framebuffer_region->set_vmobject(vmobject.release_nonnull());
|
|
|
|
m_userspace_framebuffer_region->remap();
|
2021-05-20 21:28:18 +03:00
|
|
|
m_graphical_writes_enabled = false;
|
2021-04-16 22:58:51 +03:00
|
|
|
}
|
|
|
|
void FramebufferDevice::activate_writes()
|
|
|
|
{
|
|
|
|
ScopedSpinLock lock(m_activation_lock);
|
|
|
|
if (!m_userspace_framebuffer_region || !m_real_framebuffer_vmobject)
|
|
|
|
return;
|
|
|
|
// restore the image we had in the void area
|
|
|
|
// FIXME: if we happen to have multiple Framebuffers that are writing to that location
|
|
|
|
// we will experience glitches...
|
|
|
|
memcpy(m_real_framebuffer_region->vaddr().as_ptr(), m_swapped_framebuffer_region->vaddr().as_ptr(), page_round_up(framebuffer_size_in_bytes()));
|
|
|
|
auto vmobject = m_userspace_real_framebuffer_vmobject;
|
|
|
|
m_userspace_framebuffer_region->set_vmobject(vmobject.release_nonnull());
|
|
|
|
m_userspace_framebuffer_region->remap();
|
2021-05-20 21:28:18 +03:00
|
|
|
m_graphical_writes_enabled = true;
|
2019-08-18 14:54:52 +10:00
|
|
|
}
|
|
|
|
|
2021-03-05 14:23:08 +02:00
|
|
|
String FramebufferDevice::device_name() const
|
|
|
|
{
|
|
|
|
return String::formatted("fb{}", minor());
|
|
|
|
}
|
|
|
|
|
2021-04-16 22:58:51 +03:00
|
|
|
UNMAP_AFTER_INIT void FramebufferDevice::initialize()
|
|
|
|
{
|
|
|
|
m_real_framebuffer_vmobject = AnonymousVMObject::create_for_physical_range(m_framebuffer_address, page_round_up(framebuffer_size_in_bytes()));
|
|
|
|
VERIFY(m_real_framebuffer_vmobject);
|
2021-05-16 23:29:27 +03:00
|
|
|
m_real_framebuffer_region = MM.allocate_kernel_region_with_vmobject(*m_real_framebuffer_vmobject, page_round_up(framebuffer_size_in_bytes()), "Framebuffer", Region::Access::Read | Region::Access::Write);
|
2021-04-16 22:58:51 +03:00
|
|
|
VERIFY(m_real_framebuffer_region);
|
|
|
|
m_swapped_framebuffer_vmobject = AnonymousVMObject::create_with_size(page_round_up(framebuffer_size_in_bytes()), AllocationStrategy::AllocateNow);
|
|
|
|
VERIFY(m_swapped_framebuffer_vmobject);
|
|
|
|
m_swapped_framebuffer_region = MM.allocate_kernel_region_with_vmobject(*m_swapped_framebuffer_vmobject, page_round_up(framebuffer_size_in_bytes()), "Framebuffer Swap (Blank)", Region::Access::Read | Region::Access::Write);
|
|
|
|
VERIFY(m_swapped_framebuffer_region);
|
|
|
|
}
|
|
|
|
|
2021-05-22 09:51:55 +03:00
|
|
|
UNMAP_AFTER_INIT FramebufferDevice::FramebufferDevice(const GraphicsDevice& adapter, size_t output_port_index, PhysicalAddress addr, size_t width, size_t height, size_t pitch)
|
2021-05-16 21:03:33 +03:00
|
|
|
: BlockDevice(29, GraphicsManagement::the().allocate_minor_device_number())
|
2021-03-05 14:23:08 +02:00
|
|
|
, m_framebuffer_address(addr)
|
|
|
|
, m_framebuffer_pitch(pitch)
|
|
|
|
, m_framebuffer_width(width)
|
|
|
|
, m_framebuffer_height(height)
|
2021-05-22 09:51:55 +03:00
|
|
|
, m_output_port_index(output_port_index)
|
|
|
|
, m_graphics_adapter(adapter)
|
2021-03-05 14:23:08 +02:00
|
|
|
{
|
2021-04-16 22:58:51 +03:00
|
|
|
VERIFY(!m_framebuffer_address.is_null());
|
|
|
|
VERIFY(m_framebuffer_pitch);
|
|
|
|
VERIFY(m_framebuffer_width);
|
|
|
|
VERIFY(m_framebuffer_height);
|
2021-03-05 14:23:08 +02:00
|
|
|
dbgln("Framebuffer {}: address={}, pitch={}, width={}, height={}", minor(), addr, pitch, width, height);
|
|
|
|
}
|
|
|
|
|
2021-05-22 09:51:55 +03:00
|
|
|
size_t FramebufferDevice::framebuffer_size_in_bytes() const
|
2021-03-05 14:23:08 +02:00
|
|
|
{
|
2021-05-22 09:51:55 +03:00
|
|
|
if (m_graphics_adapter->double_framebuffering_capable())
|
|
|
|
return m_framebuffer_pitch * m_framebuffer_height * 2;
|
|
|
|
return m_framebuffer_pitch * m_framebuffer_height;
|
2021-03-05 14:23:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int FramebufferDevice::ioctl(FileDescription&, unsigned request, FlatPtr arg)
|
2019-08-18 14:54:52 +10:00
|
|
|
{
|
2020-01-12 02:17:30 +01:00
|
|
|
REQUIRE_PROMISE(video);
|
2019-08-18 14:54:52 +10:00
|
|
|
switch (request) {
|
|
|
|
case FB_IOCTL_GET_SIZE_IN_BYTES: {
|
|
|
|
auto* out = (size_t*)arg;
|
2020-07-31 00:17:25 +02:00
|
|
|
size_t value = framebuffer_size_in_bytes();
|
2020-09-11 21:11:07 -06:00
|
|
|
if (!copy_to_user(out, &value))
|
|
|
|
return -EFAULT;
|
2019-08-18 14:54:52 +10:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
case FB_IOCTL_GET_BUFFER: {
|
2021-05-22 09:51:55 +03:00
|
|
|
auto* index = (int*)arg;
|
|
|
|
int value = m_y_offset == 0 ? 0 : 1;
|
|
|
|
if (!copy_to_user(index, &value))
|
|
|
|
return -EFAULT;
|
|
|
|
if (!m_graphics_adapter->double_framebuffering_capable())
|
|
|
|
return -ENOTIMPL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
case FB_IOCTL_SET_BUFFER: {
|
|
|
|
if (arg != 0 && arg != 1)
|
|
|
|
return -EINVAL;
|
|
|
|
if (!m_graphics_adapter->double_framebuffering_capable())
|
|
|
|
return -ENOTIMPL;
|
|
|
|
m_graphics_adapter->set_y_offset(m_output_port_index, arg == 0 ? 0 : m_framebuffer_height);
|
|
|
|
return 0;
|
2019-08-18 14:54:52 +10:00
|
|
|
}
|
|
|
|
case FB_IOCTL_GET_RESOLUTION: {
|
2020-07-31 00:17:25 +02:00
|
|
|
auto* user_resolution = (FBResolution*)arg;
|
|
|
|
FBResolution resolution;
|
|
|
|
resolution.pitch = m_framebuffer_pitch;
|
|
|
|
resolution.width = m_framebuffer_width;
|
|
|
|
resolution.height = m_framebuffer_height;
|
2020-09-11 21:11:07 -06:00
|
|
|
if (!copy_to_user(user_resolution, &resolution))
|
|
|
|
return -EFAULT;
|
2019-08-18 14:54:52 +10:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
case FB_IOCTL_SET_RESOLUTION: {
|
2020-07-31 00:17:25 +02:00
|
|
|
auto* user_resolution = (FBResolution*)arg;
|
|
|
|
FBResolution resolution;
|
2021-05-22 09:51:55 +03:00
|
|
|
if (!copy_from_user(&resolution, user_resolution))
|
|
|
|
return -EFAULT;
|
|
|
|
if (resolution.width > MAX_RESOLUTION_WIDTH || resolution.height > MAX_RESOLUTION_HEIGHT)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (!m_graphics_adapter->modesetting_capable()) {
|
|
|
|
resolution.pitch = m_framebuffer_pitch;
|
|
|
|
resolution.width = m_framebuffer_width;
|
|
|
|
resolution.height = m_framebuffer_height;
|
|
|
|
if (!copy_to_user(user_resolution, &resolution))
|
|
|
|
return -EFAULT;
|
|
|
|
return -ENOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!m_graphics_adapter->try_to_set_resolution(m_output_port_index, resolution.width, resolution.height)) {
|
|
|
|
m_framebuffer_pitch = m_framebuffer_width * sizeof(u32);
|
|
|
|
dbgln_if(FRAMEBUFFER_DEVICE_DEBUG, "Reverting resolution: [{}x{}]", m_framebuffer_width, m_framebuffer_height);
|
|
|
|
// Note: We try to revert everything back, and if it doesn't work, just assert.
|
|
|
|
if (!m_graphics_adapter->try_to_set_resolution(m_output_port_index, m_framebuffer_width, m_framebuffer_height)) {
|
|
|
|
VERIFY_NOT_REACHED();
|
|
|
|
}
|
|
|
|
resolution.pitch = m_framebuffer_pitch;
|
|
|
|
resolution.width = m_framebuffer_width;
|
|
|
|
resolution.height = m_framebuffer_height;
|
|
|
|
if (!copy_to_user(user_resolution, &resolution))
|
|
|
|
return -EFAULT;
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
m_framebuffer_width = resolution.width;
|
|
|
|
m_framebuffer_height = resolution.height;
|
|
|
|
m_framebuffer_pitch = m_framebuffer_width * sizeof(u32);
|
|
|
|
|
|
|
|
dbgln_if(FRAMEBUFFER_DEVICE_DEBUG, "New resolution: [{}x{}]", m_framebuffer_width, m_framebuffer_height);
|
2020-07-31 00:17:25 +02:00
|
|
|
resolution.pitch = m_framebuffer_pitch;
|
|
|
|
resolution.width = m_framebuffer_width;
|
|
|
|
resolution.height = m_framebuffer_height;
|
2020-09-11 21:11:07 -06:00
|
|
|
if (!copy_to_user(user_resolution, &resolution))
|
|
|
|
return -EFAULT;
|
2019-08-18 14:54:52 +10:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
};
|
|
|
|
}
|
2020-02-16 01:27:42 +01:00
|
|
|
|
|
|
|
}
|