summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/StorageKit/AHCI.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-24 03:02:43 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-11-24 03:02:43 +0100
commit83d870e58457a1d335a1d9b9966a6a1887cc297b (patch)
tree72888f88c7728c82f3f6df1f4f70591de15eab36 /dev/kernel/StorageKit/AHCI.h
parentab37adbacf0f33845804c788b39680cd754752a8 (diff)
feat! breaking changes on kernel sources.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/kernel/StorageKit/AHCI.h')
-rw-r--r--dev/kernel/StorageKit/AHCI.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/dev/kernel/StorageKit/AHCI.h b/dev/kernel/StorageKit/AHCI.h
deleted file mode 100644
index 82bd9747..00000000
--- a/dev/kernel/StorageKit/AHCI.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/* ========================================
-
- Copyright (C) 2024-2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.
-
-======================================== */
-
-#pragma once
-
-#include <KernelKit/DeviceMgr.h>
-#include <KernelKit/DriveMgr.h>
-#include <NeKit/OwnPtr.h>
-
-namespace Kernel {
-/// @brief AHCIDeviceInterface class
-/// @details This class is used to send and receive data from the AHCI device.
-/// @note The class is derived from the DeviceInterface class.
-class AHCIDeviceInterface NE_DEVICE<IMountpoint*> {
- public:
- explicit AHCIDeviceInterface(void (*out)(DeviceInterface* self, IMountpoint* out),
- void (*in)(DeviceInterface* self, IMountpoint* in));
-
- virtual ~AHCIDeviceInterface() override;
-
- public:
- AHCIDeviceInterface& operator=(const AHCIDeviceInterface&) = default;
- AHCIDeviceInterface(const AHCIDeviceInterface&) = default;
-
- const Char* Name() const override;
-
- const UInt16& GetPortsImplemented();
-
- Void SetPortsImplemented(const UInt16& pi);
-
- const UInt32& GetIndex();
-
- Void SetIndex(const UInt32& drv);
-
- public:
- AHCIDeviceInterface& operator<<(IMountpoint* Data) override;
- AHCIDeviceInterface& operator>>(IMountpoint* Data) override;
-
- private:
- UInt16 fPortsImplemented{0U};
- UInt32 fDriveIndex{0U};
-};
-
-UInt16 sk_init_ahci_device(BOOL atapi);
-ErrorOr<AHCIDeviceInterface> sk_acquire_ahci_device(UInt32 drv_index);
-} // namespace Kernel