mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
3aa1bd520b
This is required for example when write combine is enabled on a region after the initial mapping.
31 lines
841 B
C++
31 lines
841 B
C++
/*
|
|
* Copyright (c) 2024, Idan Horowitz <idan.horowitz@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <Kernel/Memory/PhysicalAddress.h>
|
|
#include <Kernel/Memory/VMObject.h>
|
|
|
|
namespace Kernel::Memory {
|
|
|
|
class MMIOVMObject final : public VMObject {
|
|
public:
|
|
static ErrorOr<NonnullLockRefPtr<MMIOVMObject>> try_create_for_physical_range(PhysicalAddress paddr, size_t size);
|
|
|
|
virtual ErrorOr<NonnullLockRefPtr<VMObject>> try_clone() override { return ENOTSUP; }
|
|
|
|
PhysicalAddress base_address() const { return m_base_address; }
|
|
|
|
private:
|
|
MMIOVMObject(PhysicalAddress, FixedArray<RefPtr<PhysicalRAMPage>>&&);
|
|
|
|
virtual StringView class_name() const override { return "MMIOVMObject"sv; }
|
|
virtual bool is_mmio() const override { return true; }
|
|
|
|
PhysicalAddress m_base_address;
|
|
};
|
|
|
|
}
|