2021-01-20 19:34:16 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-01-20 19:34:16 +03:00
|
|
|
*/
|
|
|
|
|
2021-08-06 11:45:34 +03:00
|
|
|
#include <Kernel/Memory/ScatterGatherList.h>
|
2021-01-20 19:34:16 +03:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2021-07-22 10:03:13 +03:00
|
|
|
RefPtr<ScatterGatherList> ScatterGatherList::try_create(AsyncBlockDeviceRequest& request, Span<NonnullRefPtr<PhysicalPage>> allocated_pages, size_t device_block_size)
|
2021-04-24 04:30:27 +03:00
|
|
|
{
|
2021-07-11 18:55:29 +03:00
|
|
|
auto vm_object = AnonymousVMObject::try_create_with_physical_pages(allocated_pages);
|
2021-05-14 15:06:29 +03:00
|
|
|
if (!vm_object)
|
|
|
|
return {};
|
2021-06-20 11:21:16 +03:00
|
|
|
return adopt_ref_if_nonnull(new (nothrow) ScatterGatherList(vm_object.release_nonnull(), request, device_block_size));
|
2021-04-24 04:30:27 +03:00
|
|
|
}
|
|
|
|
|
2021-05-14 15:06:29 +03:00
|
|
|
ScatterGatherList::ScatterGatherList(NonnullRefPtr<AnonymousVMObject> vm_object, AsyncBlockDeviceRequest& request, size_t device_block_size)
|
|
|
|
: m_vm_object(move(vm_object))
|
2021-04-24 04:30:27 +03:00
|
|
|
{
|
|
|
|
m_dma_region = MM.allocate_kernel_region_with_vmobject(m_vm_object, page_round_up((request.block_count() * device_block_size)), "AHCI Scattered DMA", Region::Access::Read | Region::Access::Write, Region::Cacheable::Yes);
|
|
|
|
}
|
|
|
|
|
2021-01-20 19:34:16 +03:00
|
|
|
}
|