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
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <Kernel/VM/ScatterGatherList.h>
|
|
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
2021-04-24 11:30:27 +10:00
|
|
|
NonnullRefPtr<ScatterGatherList> ScatterGatherList::create(AsyncBlockDeviceRequest& request, NonnullRefPtrVector<PhysicalPage> allocated_pages, size_t device_block_size)
|
|
|
|
|
{
|
|
|
|
|
return adopt_ref(*new ScatterGatherList(request, allocated_pages, device_block_size));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ScatterGatherList::ScatterGatherList(AsyncBlockDeviceRequest& request, NonnullRefPtrVector<PhysicalPage> allocated_pages, size_t device_block_size)
|
|
|
|
|
: m_vm_object(AnonymousVMObject::create_with_physical_pages(allocated_pages))
|
|
|
|
|
{
|
|
|
|
|
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
|
|
|
}
|