blob: 57c3e3cada99ee23adad330095b2065e7448621b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
#ifndef __BOOTKIT_DEVICE_H__
#define __BOOTKIT_DEVICE_H__
#include <BootKit/Config.h>
#include <modules/AHCI/AHCI.h>
#include <modules/ATA/ATA.h>
namespace Boot {
/// @brief Physical/Virtual device type.
class Device {
public:
explicit Device() = default;
virtual ~Device() = default;
NE_MOVE_DEFAULT(Device)
struct Trait {
Lba mBase{0};
SizeT mSize{0};
};
virtual Trait& Leak() = 0;
virtual Device& Read(Char* Buf, SizeT SecCount) = 0;
virtual Device& Write(Char* Buf, SizeT SecCount) = 0;
};
using BootDevice = Device;
using NetworkDevice = Device;
using DiskDevice = Device;
} // namespace Boot
#endif
|