summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/StorageKit/StorageKit.h
blob: c963339272461a5bade777f087944fdb802fca52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ========================================

  Copyright (C) 2024-2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.

======================================== */

#pragma once

#define kDriveSectorSizeHDD (512U)
#define kDriveSectorSizeSSD (512U)
#define kDriveSectorSizeOptical (2048U)

namespace Kernel {
template <typename T>
class DeviceInterface;

class NVMEDeviceInterface;
class AHCIDeviceInterface;
class ATADeviceInterface;
class SCSIDeviceInterface;
}  // namespace Kernel