2021-03-05 09:23:08 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2021, Liav A. <liavalb@hotmail.co.il>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <AK/Atomic.h>
|
|
|
|
|
#include <AK/Checked.h>
|
2021-10-01 03:58:50 -03:00
|
|
|
#include <Kernel/Arch/x86/IO.h>
|
Kernel/PCI: Simplify the entire subsystem
A couple of things were changed:
1. Semantic changes - PCI segments are now called PCI domains, to better
match what they are really. It's also the name that Linux gave, and it
seems that Wikipedia also uses this name.
We also remove PCI::ChangeableAddress, because it was used in the past
but now it's no longer being used.
2. There are no WindowedMMIOAccess or MMIOAccess classes anymore, as
they made a bunch of unnecessary complexity. Instead, Windowed access is
removed entirely (this was tested, but never was benchmarked), so we are
left with IO access and memory access options. The memory access option
is essentially mapping the PCI bus (from the chosen PCI domain), to
virtual memory as-is. This means that unless needed, at any time, there
is only one PCI bus being mapped, and this is changed if access to
another PCI bus in the same PCI domain is needed. For now, we don't
support mapping of different PCI buses from different PCI domains at the
same time, because basically it's still a non-issue for most machines
out there.
2. OOM-safety is increased, especially when constructing the Access
object. It means that we pre-allocating any needed resources, and we try
to find PCI domains (if requested to initialize memory access) after we
attempt to construct the Access object, so it's possible to fail at this
point "gracefully".
3. All PCI API functions are now separated into a different header file,
which means only "clients" of the PCI subsystem API will need to include
that header file.
4. Functional changes - we only allow now to enumerate the bus after
a hardware scan. This means that the old method "enumerate_hardware"
is removed, so, when initializing an Access object, the initializing
function must call rescan on it to force it to find devices. This makes
it possible to fail rescan, and also to defer it after construction from
both OOM-safety terms and hotplug capabilities.
2021-09-07 06:08:38 -03:00
|
|
|
#include <Kernel/Bus/PCI/API.h>
|
2021-07-03 04:24:28 -03:00
|
|
|
#include <Kernel/Bus/PCI/IDs.h>
|
2021-03-05 09:23:08 -03:00
|
|
|
#include <Kernel/Debug.h>
|
2021-07-09 04:27:19 -03:00
|
|
|
#include <Kernel/Graphics/Bochs/GraphicsAdapter.h>
|
2021-06-12 09:30:05 -03:00
|
|
|
#include <Kernel/Graphics/Console/ContiguousFramebufferConsole.h>
|
2021-04-16 16:58:51 -03:00
|
|
|
#include <Kernel/Graphics/GraphicsManagement.h>
|
2021-08-06 05:45:34 -03:00
|
|
|
#include <Kernel/Memory/TypedMapping.h>
|
2021-06-22 12:40:16 -03:00
|
|
|
#include <Kernel/Sections.h>
|
2021-03-05 09:23:08 -03:00
|
|
|
|
2021-07-09 04:25:03 -03:00
|
|
|
#define VBE_DISPI_IOPORT_INDEX 0x01CE
|
|
|
|
|
#define VBE_DISPI_IOPORT_DATA 0x01CF
|
|
|
|
|
|
2021-09-27 04:37:15 -03:00
|
|
|
#define VBE_DISPI_ID5 0xB0C5
|
|
|
|
|
|
2021-09-27 02:46:41 -03:00
|
|
|
#define BOCHS_DISPLAY_LITTLE_ENDIAN 0x1e1e1e1e
|
|
|
|
|
#define BOCHS_DISPLAY_BIG_ENDIAN 0xbebebebe
|
2021-07-09 04:25:03 -03:00
|
|
|
|
2021-03-05 09:23:08 -03:00
|
|
|
namespace Kernel {
|
|
|
|
|
|
2021-09-27 04:46:31 -03:00
|
|
|
enum class BochsFramebufferSettings {
|
|
|
|
|
Enabled = 0x1,
|
|
|
|
|
LinearFramebuffer = 0x40,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum class BochsDISPIRegisters {
|
|
|
|
|
ID = 0x0,
|
|
|
|
|
XRES = 0x1,
|
|
|
|
|
YRES = 0x2,
|
|
|
|
|
BPP = 0x3,
|
|
|
|
|
ENABLE = 0x4,
|
|
|
|
|
BANK = 0x5,
|
|
|
|
|
VIRT_WIDTH = 0x6,
|
|
|
|
|
VIRT_HEIGHT = 0x7,
|
|
|
|
|
X_OFFSET = 0x8,
|
|
|
|
|
Y_OFFSET = 0x9,
|
|
|
|
|
};
|
|
|
|
|
|
2021-03-05 09:23:08 -03:00
|
|
|
struct [[gnu::packed]] DISPIInterface {
|
|
|
|
|
u16 index_id;
|
|
|
|
|
u16 xres;
|
|
|
|
|
u16 yres;
|
|
|
|
|
u16 bpp;
|
|
|
|
|
u16 enable;
|
|
|
|
|
u16 bank;
|
|
|
|
|
u16 virt_width;
|
|
|
|
|
u16 virt_height;
|
|
|
|
|
u16 x_offset;
|
|
|
|
|
u16 y_offset;
|
|
|
|
|
};
|
|
|
|
|
|
2021-09-27 02:46:41 -03:00
|
|
|
struct [[gnu::packed]] ExtensionRegisters {
|
|
|
|
|
u32 region_size;
|
|
|
|
|
u32 framebuffer_byteorder;
|
|
|
|
|
};
|
|
|
|
|
|
2021-03-05 09:23:08 -03:00
|
|
|
struct [[gnu::packed]] BochsDisplayMMIORegisters {
|
|
|
|
|
u8 edid_data[0x400];
|
|
|
|
|
u16 vga_ioports[0x10];
|
|
|
|
|
u8 reserved[0xE0];
|
|
|
|
|
DISPIInterface bochs_regs;
|
2021-09-27 02:46:41 -03:00
|
|
|
u8 reserved2[0x100 - sizeof(DISPIInterface)];
|
|
|
|
|
ExtensionRegisters extension_regs;
|
2021-03-05 09:23:08 -03:00
|
|
|
};
|
|
|
|
|
|
2021-09-23 04:20:54 -03:00
|
|
|
UNMAP_AFTER_INIT NonnullRefPtr<BochsGraphicsAdapter> BochsGraphicsAdapter::initialize(PCI::DeviceIdentifier const& pci_device_identifier)
|
2021-03-05 09:23:08 -03:00
|
|
|
{
|
2021-09-23 04:20:54 -03:00
|
|
|
PCI::HardwareID id = pci_device_identifier.hardware_id();
|
2021-07-03 04:24:28 -03:00
|
|
|
VERIFY((id.vendor_id == PCI::VendorID::QEMUOld && id.device_id == 0x1111) || (id.vendor_id == PCI::VendorID::VirtualBox && id.device_id == 0xbeef));
|
2021-09-23 04:20:54 -03:00
|
|
|
return adopt_ref(*new BochsGraphicsAdapter(pci_device_identifier));
|
2021-03-05 09:23:08 -03:00
|
|
|
}
|
|
|
|
|
|
2021-09-27 02:46:41 -03:00
|
|
|
void BochsGraphicsAdapter::set_framebuffer_to_big_endian_format()
|
|
|
|
|
{
|
|
|
|
|
dbgln_if(BXVGA_DEBUG, "BochsGraphicsAdapter set_framebuffer_to_big_endian_format");
|
|
|
|
|
full_memory_barrier();
|
|
|
|
|
if (m_registers->extension_regs.region_size == 0xFFFFFFFF || m_registers->extension_regs.region_size == 0)
|
|
|
|
|
return;
|
|
|
|
|
full_memory_barrier();
|
|
|
|
|
m_registers->extension_regs.framebuffer_byteorder = BOCHS_DISPLAY_BIG_ENDIAN;
|
|
|
|
|
full_memory_barrier();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BochsGraphicsAdapter::set_framebuffer_to_little_endian_format()
|
|
|
|
|
{
|
|
|
|
|
dbgln_if(BXVGA_DEBUG, "BochsGraphicsAdapter set_framebuffer_to_little_endian_format");
|
|
|
|
|
full_memory_barrier();
|
|
|
|
|
if (m_registers->extension_regs.region_size == 0xFFFFFFFF || m_registers->extension_regs.region_size == 0)
|
|
|
|
|
return;
|
|
|
|
|
full_memory_barrier();
|
|
|
|
|
m_registers->extension_regs.framebuffer_byteorder = BOCHS_DISPLAY_LITTLE_ENDIAN;
|
|
|
|
|
full_memory_barrier();
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-23 04:20:54 -03:00
|
|
|
UNMAP_AFTER_INIT BochsGraphicsAdapter::BochsGraphicsAdapter(PCI::DeviceIdentifier const& pci_device_identifier)
|
|
|
|
|
: PCI::Device(pci_device_identifier.address())
|
|
|
|
|
, m_mmio_registers(PCI::get_BAR2(pci_device_identifier.address()) & 0xfffffff0)
|
2022-01-13 13:20:22 -03:00
|
|
|
, m_registers(Memory::map_typed_writable<BochsDisplayMMIORegisters volatile>(m_mmio_registers).release_value_but_fixme_should_propagate_errors())
|
2021-03-05 09:23:08 -03:00
|
|
|
{
|
2022-01-07 09:04:05 -03:00
|
|
|
// We assume safe resolution is 1024x768x32
|
2021-09-23 04:20:54 -03:00
|
|
|
m_framebuffer_console = Graphics::ContiguousFramebufferConsole::initialize(PhysicalAddress(PCI::get_BAR0(pci_device_identifier.address()) & 0xfffffff0), 1024, 768, 1024 * sizeof(u32));
|
2022-01-29 18:08:05 -03:00
|
|
|
GraphicsManagement::the().set_console(*m_framebuffer_console);
|
2021-06-04 05:25:42 -03:00
|
|
|
|
2022-02-22 07:06:36 -03:00
|
|
|
auto vendor_id = pci_device_identifier.hardware_id().vendor_id;
|
|
|
|
|
auto device_id = pci_device_identifier.hardware_id().device_id;
|
|
|
|
|
auto revision_id = pci_device_identifier.revision_id();
|
|
|
|
|
|
|
|
|
|
auto is_bochs = vendor_id == PCI::VendorID::QEMUOld && device_id == 0x1111 && revision_id == 0;
|
|
|
|
|
auto is_virtualbox = vendor_id == PCI::VendorID::VirtualBox && device_id == 0xbeef;
|
|
|
|
|
|
|
|
|
|
if (is_bochs || is_virtualbox)
|
2021-06-04 05:25:42 -03:00
|
|
|
m_io_required = true;
|
2021-07-03 10:42:40 -03:00
|
|
|
|
2021-09-23 04:20:54 -03:00
|
|
|
if (pci_device_identifier.class_code().value() == 0x3 && pci_device_identifier.subclass_code().value() == 0x0)
|
|
|
|
|
m_is_vga_capable = true;
|
|
|
|
|
|
2021-07-23 09:49:03 -03:00
|
|
|
// Note: According to Gerd Hoffmann - "The linux driver simply does
|
|
|
|
|
// the unblank unconditionally. With bochs-display this is not needed but
|
|
|
|
|
// it also has no bad side effect".
|
2021-07-03 10:42:40 -03:00
|
|
|
unblank();
|
2021-05-18 15:34:22 -03:00
|
|
|
set_safe_resolution();
|
2021-03-05 09:23:08 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UNMAP_AFTER_INIT void BochsGraphicsAdapter::initialize_framebuffer_devices()
|
|
|
|
|
{
|
|
|
|
|
// FIXME: Find a better way to determine default resolution...
|
2021-09-22 11:13:12 -03:00
|
|
|
m_framebuffer_device = FramebufferDevice::create(*this, PhysicalAddress(PCI::get_BAR0(pci_address()) & 0xfffffff0), 1024, 768, 1024 * sizeof(u32));
|
2022-02-18 00:50:20 -03:00
|
|
|
// While write-combine helps greatly on actual hardware, it greatly reduces performance in QEMU
|
|
|
|
|
m_framebuffer_device->enable_write_combine(false);
|
2021-11-07 20:51:39 -03:00
|
|
|
// FIXME: Would be nice to be able to return a ErrorOr<void> here.
|
2021-09-22 11:13:12 -03:00
|
|
|
VERIFY(!m_framebuffer_device->try_to_initialize().is_error());
|
2021-03-05 09:23:08 -03:00
|
|
|
}
|
|
|
|
|
|
2021-09-21 03:43:06 -03:00
|
|
|
bool BochsGraphicsAdapter::vga_compatible() const
|
2021-03-05 09:23:08 -03:00
|
|
|
{
|
2021-09-21 03:43:06 -03:00
|
|
|
return m_is_vga_capable;
|
2021-03-05 09:23:08 -03:00
|
|
|
}
|
|
|
|
|
|
2021-07-03 10:42:40 -03:00
|
|
|
void BochsGraphicsAdapter::unblank()
|
|
|
|
|
{
|
|
|
|
|
full_memory_barrier();
|
2021-07-06 06:47:12 -03:00
|
|
|
m_registers->vga_ioports[0] = 0x20;
|
2021-07-03 10:42:40 -03:00
|
|
|
full_memory_barrier();
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-05 09:23:08 -03:00
|
|
|
void BochsGraphicsAdapter::set_safe_resolution()
|
|
|
|
|
{
|
2021-05-18 15:34:22 -03:00
|
|
|
VERIFY(m_framebuffer_console);
|
2021-05-22 03:51:55 -03:00
|
|
|
auto result = try_to_set_resolution(0, 1024, 768);
|
|
|
|
|
VERIFY(result);
|
2021-03-05 09:23:08 -03:00
|
|
|
}
|
|
|
|
|
|
2021-06-04 05:25:42 -03:00
|
|
|
static void set_register_with_io(u16 index, u16 data)
|
|
|
|
|
{
|
|
|
|
|
IO::out16(VBE_DISPI_IOPORT_INDEX, index);
|
|
|
|
|
IO::out16(VBE_DISPI_IOPORT_DATA, data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static u16 get_register_with_io(u16 index)
|
|
|
|
|
{
|
|
|
|
|
IO::out16(VBE_DISPI_IOPORT_INDEX, index);
|
|
|
|
|
return IO::in16(VBE_DISPI_IOPORT_DATA);
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-27 04:37:15 -03:00
|
|
|
BochsGraphicsAdapter::IndexID BochsGraphicsAdapter::index_id() const
|
|
|
|
|
{
|
|
|
|
|
if (m_io_required) {
|
|
|
|
|
return get_register_with_io(0);
|
|
|
|
|
}
|
|
|
|
|
return m_registers->bochs_regs.index_id;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-04 05:25:42 -03:00
|
|
|
void BochsGraphicsAdapter::set_resolution_registers_via_io(size_t width, size_t height)
|
|
|
|
|
{
|
|
|
|
|
dbgln_if(BXVGA_DEBUG, "BochsGraphicsAdapter resolution registers set to - {}x{}", width, height);
|
|
|
|
|
|
2021-09-27 04:46:31 -03:00
|
|
|
set_register_with_io(to_underlying(BochsDISPIRegisters::ENABLE), 0);
|
|
|
|
|
set_register_with_io(to_underlying(BochsDISPIRegisters::XRES), (u16)width);
|
|
|
|
|
set_register_with_io(to_underlying(BochsDISPIRegisters::YRES), (u16)height);
|
|
|
|
|
set_register_with_io(to_underlying(BochsDISPIRegisters::VIRT_WIDTH), (u16)width);
|
|
|
|
|
set_register_with_io(to_underlying(BochsDISPIRegisters::VIRT_HEIGHT), (u16)height * 2);
|
|
|
|
|
set_register_with_io(to_underlying(BochsDISPIRegisters::BPP), 32);
|
|
|
|
|
set_register_with_io(to_underlying(BochsDISPIRegisters::ENABLE), to_underlying(BochsFramebufferSettings::Enabled) | to_underlying(BochsFramebufferSettings::LinearFramebuffer));
|
|
|
|
|
set_register_with_io(to_underlying(BochsDISPIRegisters::BANK), 0);
|
2021-06-04 05:25:42 -03:00
|
|
|
}
|
|
|
|
|
|
2021-03-05 09:23:08 -03:00
|
|
|
void BochsGraphicsAdapter::set_resolution_registers(size_t width, size_t height)
|
|
|
|
|
{
|
|
|
|
|
dbgln_if(BXVGA_DEBUG, "BochsGraphicsAdapter resolution registers set to - {}x{}", width, height);
|
2021-09-27 04:46:31 -03:00
|
|
|
m_registers->bochs_regs.enable = 0;
|
2021-03-05 09:23:08 -03:00
|
|
|
full_memory_barrier();
|
2021-07-06 06:47:12 -03:00
|
|
|
m_registers->bochs_regs.xres = width;
|
|
|
|
|
m_registers->bochs_regs.yres = height;
|
|
|
|
|
m_registers->bochs_regs.virt_width = width;
|
|
|
|
|
m_registers->bochs_regs.virt_height = height * 2;
|
|
|
|
|
m_registers->bochs_regs.bpp = 32;
|
2021-03-05 09:23:08 -03:00
|
|
|
full_memory_barrier();
|
2021-09-27 04:46:31 -03:00
|
|
|
m_registers->bochs_regs.enable = to_underlying(BochsFramebufferSettings::Enabled) | to_underlying(BochsFramebufferSettings::LinearFramebuffer);
|
2021-03-05 09:23:08 -03:00
|
|
|
full_memory_barrier();
|
2021-07-06 06:47:12 -03:00
|
|
|
m_registers->bochs_regs.bank = 0;
|
2021-09-27 04:37:15 -03:00
|
|
|
if (index_id().value() == VBE_DISPI_ID5) {
|
|
|
|
|
set_framebuffer_to_little_endian_format();
|
|
|
|
|
}
|
2021-03-05 09:23:08 -03:00
|
|
|
}
|
|
|
|
|
|
2021-05-22 03:51:55 -03:00
|
|
|
bool BochsGraphicsAdapter::try_to_set_resolution(size_t output_port_index, size_t width, size_t height)
|
2021-03-05 09:23:08 -03:00
|
|
|
{
|
2021-05-22 03:51:55 -03:00
|
|
|
// Note: There's only one output port for this adapter
|
|
|
|
|
VERIFY(output_port_index == 0);
|
2021-05-18 15:34:22 -03:00
|
|
|
VERIFY(m_framebuffer_console);
|
2021-03-05 09:23:08 -03:00
|
|
|
if (Checked<size_t>::multiplication_would_overflow(width, height, sizeof(u32)))
|
|
|
|
|
return false;
|
|
|
|
|
|
2021-06-04 05:25:42 -03:00
|
|
|
if (m_io_required)
|
|
|
|
|
set_resolution_registers_via_io(width, height);
|
|
|
|
|
else
|
|
|
|
|
set_resolution_registers(width, height);
|
2021-05-22 03:51:55 -03:00
|
|
|
dbgln_if(BXVGA_DEBUG, "BochsGraphicsAdapter resolution test - {}x{}", width, height);
|
2021-06-04 05:25:42 -03:00
|
|
|
if (m_io_required) {
|
|
|
|
|
if (!validate_setup_resolution_with_io(width, height))
|
|
|
|
|
return false;
|
|
|
|
|
} else {
|
|
|
|
|
if (!validate_setup_resolution(width, height))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2021-03-05 09:23:08 -03:00
|
|
|
|
|
|
|
|
dbgln("BochsGraphicsAdapter: resolution set to {}x{}", width, height);
|
2021-05-18 15:34:22 -03:00
|
|
|
m_framebuffer_console->set_resolution(width, height, width * sizeof(u32));
|
2021-03-05 09:23:08 -03:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-04 05:25:42 -03:00
|
|
|
bool BochsGraphicsAdapter::validate_setup_resolution_with_io(size_t width, size_t height)
|
|
|
|
|
{
|
2021-09-27 04:46:31 -03:00
|
|
|
if ((u16)width != get_register_with_io(to_underlying(BochsDISPIRegisters::XRES)) || (u16)height != get_register_with_io(to_underlying(BochsDISPIRegisters::YRES))) {
|
2021-06-04 05:25:42 -03:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-05 09:23:08 -03:00
|
|
|
bool BochsGraphicsAdapter::validate_setup_resolution(size_t width, size_t height)
|
|
|
|
|
{
|
2021-07-06 06:47:12 -03:00
|
|
|
if ((u16)width != m_registers->bochs_regs.xres || (u16)height != m_registers->bochs_regs.yres) {
|
2021-03-05 09:23:08 -03:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-22 03:51:55 -03:00
|
|
|
bool BochsGraphicsAdapter::set_y_offset(size_t output_port_index, size_t y_offset)
|
2021-03-05 09:23:08 -03:00
|
|
|
{
|
2021-05-22 03:51:55 -03:00
|
|
|
VERIFY(output_port_index == 0);
|
2021-04-16 16:58:51 -03:00
|
|
|
if (m_console_enabled)
|
2021-05-22 03:51:55 -03:00
|
|
|
return false;
|
2021-07-06 06:47:12 -03:00
|
|
|
m_registers->bochs_regs.y_offset = y_offset;
|
2021-05-22 03:51:55 -03:00
|
|
|
return true;
|
2021-03-05 09:23:08 -03:00
|
|
|
}
|
|
|
|
|
|
2021-04-16 16:58:51 -03:00
|
|
|
void BochsGraphicsAdapter::enable_consoles()
|
|
|
|
|
{
|
2021-08-21 20:49:22 -03:00
|
|
|
SpinlockLocker lock(m_console_mode_switch_lock);
|
2021-04-16 16:58:51 -03:00
|
|
|
VERIFY(m_framebuffer_console);
|
|
|
|
|
m_console_enabled = true;
|
2021-07-06 06:47:12 -03:00
|
|
|
m_registers->bochs_regs.y_offset = 0;
|
2021-04-16 16:58:51 -03:00
|
|
|
if (m_framebuffer_device)
|
2021-05-21 00:53:31 -03:00
|
|
|
m_framebuffer_device->deactivate_writes();
|
2021-04-16 16:58:51 -03:00
|
|
|
m_framebuffer_console->enable();
|
|
|
|
|
}
|
|
|
|
|
void BochsGraphicsAdapter::disable_consoles()
|
|
|
|
|
{
|
2021-08-21 20:49:22 -03:00
|
|
|
SpinlockLocker lock(m_console_mode_switch_lock);
|
2021-04-16 16:58:51 -03:00
|
|
|
VERIFY(m_framebuffer_console);
|
|
|
|
|
VERIFY(m_framebuffer_device);
|
|
|
|
|
m_console_enabled = false;
|
2021-07-06 06:47:12 -03:00
|
|
|
m_registers->bochs_regs.y_offset = 0;
|
2021-04-16 16:58:51 -03:00
|
|
|
m_framebuffer_console->disable();
|
|
|
|
|
m_framebuffer_device->activate_writes();
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-01 02:02:55 -03:00
|
|
|
ErrorOr<ByteBuffer> BochsGraphicsAdapter::get_edid(size_t output_port_index) const
|
|
|
|
|
{
|
|
|
|
|
if (output_port_index != 0)
|
|
|
|
|
return Error::from_errno(ENODEV);
|
|
|
|
|
|
2022-01-20 14:47:39 -03:00
|
|
|
return ByteBuffer::copy(const_cast<u8 const*>(m_registers->edid_data), sizeof(m_registers->edid_data));
|
2022-01-01 02:02:55 -03:00
|
|
|
}
|
|
|
|
|
|
2021-03-05 09:23:08 -03:00
|
|
|
}
|