mirror of
https://github.com/RGBCube/serenity
synced 2025-05-26 00:35:07 +00:00

We do that to increase clarity of the major and secondary components in the subsystem. To ensure it's even more understandable, we rename the files to better represent the class within them and to remove redundancy in the name. Also, some includes are removed from the general components of the ATA components' classes.
36 lines
1.3 KiB
C++
36 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2021, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/StringView.h>
|
|
#include <Kernel/Sections.h>
|
|
#include <Kernel/Storage/ATA/ATADevice.h>
|
|
#include <Kernel/Storage/StorageManagement.h>
|
|
|
|
namespace Kernel {
|
|
|
|
static StorageDevice::LUNAddress convert_ata_address_to_lun_address(ATAController const& controller, ATADevice::Address ata_address)
|
|
{
|
|
return StorageDevice::LUNAddress { controller.controller_id(), ata_address.port, ata_address.subport };
|
|
}
|
|
|
|
ATADevice::ATADevice(ATAController const& controller, ATADevice::Address ata_address, MinorNumber minor_number, u16 capabilities, u16 logical_sector_size, u64 max_addressable_block, NonnullOwnPtr<KString> early_storage_name)
|
|
: StorageDevice(convert_ata_address_to_lun_address(controller, ata_address), StorageManagement::storage_type_major_number(), minor_number, logical_sector_size, max_addressable_block, move(early_storage_name))
|
|
, m_controller(controller)
|
|
, m_ata_address(ata_address)
|
|
, m_capabilities(capabilities)
|
|
{
|
|
}
|
|
|
|
ATADevice::~ATADevice() = default;
|
|
|
|
void ATADevice::start_request(AsyncBlockDeviceRequest& request)
|
|
{
|
|
auto controller = m_controller.strong_ref();
|
|
VERIFY(controller);
|
|
controller->start_request(*this, request);
|
|
}
|
|
|
|
}
|