Skip to content

Commit c9c8b64

Browse files
committed
uefi-raw: Add EFI_ATA_PASS_THRU_PROTOCOL bindings
1 parent 691a3ed commit c9c8b64

File tree

4 files changed

+164
-1
lines changed

4 files changed

+164
-1
lines changed

uefi-raw/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
- Added `DiskInfoProtocol`.
1111
- Added `ExtScsiPassThruProtocol`.
1212
- Added `NvmExpressPassThruProtocol`.
13+
- Added `AtaPassThruProtocol`.
1314

1415

1516
# uefi-raw - 0.10.0 (2025-02-07)

uefi-raw/src/protocol/ata.rs

+161
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,161 @@
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
2+
3+
use super::device_path::DevicePathProtocol;
4+
use crate::{Event, Status};
5+
use core::ffi::c_void;
6+
use uguid::{guid, Guid};
7+
8+
bitflags::bitflags! {
9+
/// ATA Controller attributes.
10+
///
11+
/// These flags defines attributes that describe the nature and capabilities
12+
/// of the ATA controller represented by this `EFI_ATA_PASS_THRU_PROTOCOL` instance.
13+
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, PartialOrd, Ord)]
14+
#[repr(transparent)]
15+
pub struct AtaPassThruAttributes: u32 {
16+
/// The protocol interface is for physical devices on the ATA controller.
17+
///
18+
/// This allows access to hardware-level details of devices directly attached to the controller.
19+
const PHYSICAL = 0x0001;
20+
21+
/// The protocol interface is for logical devices on the ATA controller.
22+
///
23+
/// Logical devices include RAID volumes and other high-level abstractions.
24+
const LOGICAL = 0x0002;
25+
26+
/// The protocol interface supports non-blocking I/O in addition to blocking I/O.
27+
///
28+
/// While all protocol interfaces must support blocking I/O, this attribute indicates
29+
/// the additional capability for non-blocking operations.
30+
const NONBLOCKIO = 0x0004;
31+
}
32+
}
33+
34+
#[derive(Debug)]
35+
#[repr(C)]
36+
pub struct AtaPassThruMode {
37+
pub attributes: AtaPassThruAttributes,
38+
pub io_align: u32,
39+
}
40+
41+
newtype_enum! {
42+
/// Corresponds to the `EFI_ATA_PASS_THRU_PROTOCOL_*` defines.
43+
#[derive(Default)]
44+
pub enum AtaPassThruCommandProtocol: u8 => {
45+
ATA_HARDWARE_RESET = 0x00,
46+
ATA_SOFTWARE_RESET = 0x01,
47+
ATA_NON_DATA = 0x02,
48+
PIO_DATA_IN = 0x04,
49+
PIO_DATA_OUT = 0x05,
50+
DMA = 0x06,
51+
DMA_QUEUED = 0x07,
52+
DEVICE_DIAGNOSTIC = 0x08,
53+
DEVICE_RESET = 0x09,
54+
UDMA_DATA_IN = 0x0A,
55+
UDMA_DATA_OUT = 0x0B,
56+
FPDMA = 0x0C,
57+
RETURN_RESPONSE = 0xFF,
58+
}
59+
}
60+
61+
newtype_enum! {
62+
/// Corresponds to the `EFI_ATA_PASS_THRU_LENGTH_*` defines.
63+
#[derive(Default)]
64+
pub enum AtaPassThruLength: u8 => {
65+
BYTES = 0x80,
66+
MASK = 0x70,
67+
NO_DATA_TRANSFER = 0x00,
68+
FEATURES = 0x10,
69+
SECTOR_COUNT = 0x20,
70+
TPSIU = 0x30,
71+
COUNT = 0x0F,
72+
}
73+
}
74+
75+
#[derive(Debug)]
76+
#[repr(C)]
77+
pub struct AtaStatusBlock {
78+
pub reserved1: [u8; 2],
79+
pub ata_status: u8,
80+
pub ata_error: u8,
81+
pub ata_sector_number: u8,
82+
pub ata_cylinder_low: u8,
83+
pub ata_cylinder_high: u8,
84+
pub ata_device_head: u8,
85+
pub ata_sector_number_exp: u8,
86+
pub ata_cylinder_low_exp: u8,
87+
pub ata_cylinder_high_exp: u8,
88+
pub reserved2: u8,
89+
pub ata_sector_count: u8,
90+
pub ata_sector_count_exp: u8,
91+
pub reserved3: [u8; 6],
92+
}
93+
94+
#[derive(Debug)]
95+
#[repr(C)]
96+
pub struct AtaCommandBlock {
97+
pub reserved1: [u8; 2],
98+
pub ata_command: u8,
99+
pub ata_features: u8,
100+
pub ata_sector_number: u8,
101+
pub ata_cylinder_low: u8,
102+
pub ata_cylinder_high: u8,
103+
pub ata_device_head: u8,
104+
pub ata_sector_number_exp: u8,
105+
pub ata_cylinder_low_exp: u8,
106+
pub ata_cylinder_high_exp: u8,
107+
pub ata_features_exp: u8,
108+
pub ata_sector_count: u8,
109+
pub ata_sector_count_exp: u8,
110+
pub reserved2: [u8; 6],
111+
}
112+
113+
#[derive(Debug)]
114+
#[repr(C)]
115+
pub struct AtaPassThruCommandPacket {
116+
pub asb: *mut AtaStatusBlock,
117+
pub acb: *const AtaCommandBlock,
118+
pub timeout: u64,
119+
pub in_data_buffer: *mut c_void,
120+
pub out_data_buffer: *const c_void,
121+
pub protocol: AtaPassThruCommandProtocol,
122+
pub length: AtaPassThruLength,
123+
}
124+
125+
#[derive(Debug)]
126+
#[repr(C)]
127+
pub struct AtaPassThruProtocol {
128+
pub mode: *const AtaPassThruMode,
129+
pub pass_thru: unsafe extern "efiapi" fn(
130+
this: *mut Self,
131+
port: u16,
132+
port_multiplier_port: u16,
133+
packet: *mut AtaPassThruCommandPacket,
134+
event: *mut Event,
135+
) -> Status,
136+
pub get_next_port: unsafe extern "efiapi" fn(this: *const Self, port: *mut u16) -> Status,
137+
pub get_next_device: unsafe extern "efiapi" fn(
138+
this: *const Self,
139+
port: u16,
140+
port_multiplier_port: *mut u16,
141+
) -> Status,
142+
pub build_device_path: unsafe extern "efiapi" fn(
143+
this: *const Self,
144+
port: u16,
145+
port_multiplier_port: u16,
146+
device_path: *mut *mut DevicePathProtocol,
147+
) -> Status,
148+
pub get_device: unsafe extern "efiapi" fn(
149+
this: *const Self,
150+
device_path: *const DevicePathProtocol,
151+
port: *mut u16,
152+
port_multiplier_port: *mut u16,
153+
) -> Status,
154+
pub reset_port: unsafe extern "efiapi" fn(this: *mut Self, port: u16) -> Status,
155+
pub reset_device:
156+
unsafe extern "efiapi" fn(this: *mut Self, port: u16, port_multiplier_port: u16) -> Status,
157+
}
158+
159+
impl AtaPassThruProtocol {
160+
pub const GUID: Guid = guid!("1d3de7f0-0807-424f-aa69-11a54e19a46f");
161+
}

uefi-raw/src/protocol/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
//! ID. They can be implemented by a UEFI driver or occasionally by a
77
//! UEFI application.
88
9+
pub mod ata;
910
pub mod block;
1011
pub mod console;
1112
pub mod device_path;

uefi/src/proto/media/disk_info.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ pub struct DeviceLocationInfo {
4848
/// For AHCI, this returns the port.
4949
pub channel: u32,
5050
/// For IDE, this contains whether the device is master or slave.
51-
/// For AHCI, this returns the port-multiplier.
51+
/// For AHCI, this returns the port multiplier port.
5252
pub device: u32,
5353
}
5454

0 commit comments

Comments
 (0)