2021-01-20 18:34:16 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-01-20 18:34:16 +02:00
|
|
|
*/
|
|
|
|
|
|
2021-08-06 10:45:34 +02:00
|
|
|
#include <Kernel/Memory/ScatterGatherList.h>
|
2021-01-20 18:34:16 +02:00
|
|
|
|
2021-08-06 13:49:36 +02:00
|
|
|
namespace Kernel::Memory {
|
2021-01-20 18:34:16 +02:00
|
|
|
|
2021-07-22 09:03:13 +02:00
|
|
|
RefPtr<ScatterGatherList> ScatterGatherList::try_create(AsyncBlockDeviceRequest& request, Span<NonnullRefPtr<PhysicalPage>> allocated_pages, size_t device_block_size)
|
2021-04-24 11:30:27 +10:00
|
|
|
{
|
2021-08-15 09:07:59 +00:00
|
|
|
auto maybe_vm_object = AnonymousVMObject::try_create_with_physical_pages(allocated_pages);
|
|
|
|
|
if (maybe_vm_object.is_error()) {
|
|
|
|
|
// FIXME: Would be nice to be able to return a KResultOr here.
|
2021-05-14 05:06:29 -07:00
|
|
|
return {};
|
2021-08-15 09:07:59 +00:00
|
|
|
}
|
|
|
|
|
return adopt_ref_if_nonnull(new (nothrow) ScatterGatherList(maybe_vm_object.release_value(), request, device_block_size));
|
2021-04-24 11:30:27 +10:00
|
|
|
}
|
|
|
|
|
|
2021-05-14 05:06:29 -07:00
|
|
|
ScatterGatherList::ScatterGatherList(NonnullRefPtr<AnonymousVMObject> vm_object, AsyncBlockDeviceRequest& request, size_t device_block_size)
|
|
|
|
|
: m_vm_object(move(vm_object))
|
2021-04-24 11:30:27 +10: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 18:34:16 +02:00
|
|
|
}
|