2021-01-20 13:34:16 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-01-20 13:34:16 -03:00
|
|
|
*/
|
|
|
|
|
|
2021-08-06 05:45:34 -03:00
|
|
|
#include <Kernel/Memory/ScatterGatherList.h>
|
2021-01-20 13:34:16 -03:00
|
|
|
|
2021-08-06 08:49:36 -03:00
|
|
|
namespace Kernel::Memory {
|
2021-01-20 13:34:16 -03:00
|
|
|
|
2022-08-24 10:56:26 -03:00
|
|
|
LockRefPtr<ScatterGatherList> ScatterGatherList::try_create(AsyncBlockDeviceRequest& request, Span<NonnullRefPtr<PhysicalPage>> allocated_pages, size_t device_block_size)
|
2021-04-23 22:30:27 -03:00
|
|
|
{
|
2021-08-15 06:07:59 -03:00
|
|
|
auto maybe_vm_object = AnonymousVMObject::try_create_with_physical_pages(allocated_pages);
|
|
|
|
|
if (maybe_vm_object.is_error()) {
|
2021-11-07 20:51:39 -03:00
|
|
|
// FIXME: Would be nice to be able to return a ErrorOr here.
|
2021-05-14 09:06:29 -03:00
|
|
|
return {};
|
2021-08-15 06:07:59 -03:00
|
|
|
}
|
2022-08-19 15:53:40 -03:00
|
|
|
return adopt_lock_ref_if_nonnull(new (nothrow) ScatterGatherList(maybe_vm_object.release_value(), request, device_block_size));
|
2021-04-23 22:30:27 -03:00
|
|
|
}
|
|
|
|
|
|
2022-08-19 15:53:40 -03:00
|
|
|
ScatterGatherList::ScatterGatherList(NonnullLockRefPtr<AnonymousVMObject> vm_object, AsyncBlockDeviceRequest& request, size_t device_block_size)
|
2021-05-14 09:06:29 -03:00
|
|
|
: m_vm_object(move(vm_object))
|
2021-04-23 22:30:27 -03:00
|
|
|
{
|
2022-07-11 14:32:29 -03:00
|
|
|
auto region_or_error = MM.allocate_kernel_region_with_vmobject(m_vm_object, page_round_up((request.block_count() * device_block_size)).release_value_but_fixme_should_propagate_errors(), "AHCI Scattered DMA"sv, Region::Access::Read | Region::Access::Write, Region::Cacheable::Yes);
|
2021-09-05 20:36:14 -03:00
|
|
|
if (region_or_error.is_error())
|
|
|
|
|
TODO();
|
|
|
|
|
m_dma_region = region_or_error.release_value();
|
2021-04-23 22:30:27 -03:00
|
|
|
}
|
|
|
|
|
|
2021-01-20 13:34:16 -03:00
|
|
|
}
|