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

This enum was created to help put distinction between the commandset and the interface type, as ATAPI devices are simply ATA devices utilizing the SCSI commandset. Because we don't support ATAPI, putting such type of distinction is pointless, so let's remove this for now.
34 lines
896 B
C++
34 lines
896 B
C++
/*
|
|
* Copyright (c) 2021, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <Kernel/Interrupts/IRQHandler.h>
|
|
#include <Kernel/Locking/Mutex.h>
|
|
#include <Kernel/Storage/ATA/ATADevice.h>
|
|
|
|
namespace Kernel {
|
|
|
|
class IDEController;
|
|
class ATADiskDevice final : public ATADevice {
|
|
friend class IDEController;
|
|
friend class DeviceManagement;
|
|
|
|
public:
|
|
static NonnullRefPtr<ATADiskDevice> create(ATAController const&, ATADevice::Address, u16 capabilities, u16 logical_sector_size, u64 max_addressable_block);
|
|
virtual ~ATADiskDevice() override;
|
|
|
|
// ^StorageDevice
|
|
virtual CommandSet command_set() const override { return CommandSet::ATA; }
|
|
|
|
private:
|
|
ATADiskDevice(ATAController const&, Address, MinorNumber, u16, u16, u64, NonnullOwnPtr<KString>);
|
|
|
|
// ^DiskDevice
|
|
virtual StringView class_name() const override;
|
|
};
|
|
|
|
}
|