@@ -31,7 +31,7 @@ bitflags::bitflags! {
31
31
}
32
32
}
33
33
34
- #[ derive( Debug ) ]
34
+ #[ derive( Clone , Debug ) ]
35
35
#[ repr( C ) ]
36
36
pub struct AtaPassThruMode {
37
37
pub attributes : AtaPassThruAttributes ,
@@ -76,37 +76,37 @@ newtype_enum! {
76
76
#[ repr( C ) ]
77
77
pub struct AtaStatusBlock {
78
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 ,
79
+ pub status : u8 ,
80
+ pub error : u8 ,
81
+ pub sector_number : u8 ,
82
+ pub cylinder_low : u8 ,
83
+ pub cylinder_high : u8 ,
84
+ pub device_head : u8 ,
85
+ pub sector_number_exp : u8 ,
86
+ pub cylinder_low_exp : u8 ,
87
+ pub cylinder_high_exp : u8 ,
88
88
pub reserved2 : u8 ,
89
- pub ata_sector_count : u8 ,
90
- pub ata_sector_count_exp : u8 ,
89
+ pub sector_count : u8 ,
90
+ pub sector_count_exp : u8 ,
91
91
pub reserved3 : [ u8 ; 6 ] ,
92
92
}
93
93
94
- #[ derive( Debug ) ]
94
+ #[ derive( Debug , Default ) ]
95
95
#[ repr( C ) ]
96
96
pub struct AtaCommandBlock {
97
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 ,
98
+ pub command : u8 ,
99
+ pub features : u8 ,
100
+ pub sector_number : u8 ,
101
+ pub cylinder_low : u8 ,
102
+ pub cylinder_high : u8 ,
103
+ pub device_head : u8 ,
104
+ pub sector_number_exp : u8 ,
105
+ pub cylinder_low_exp : u8 ,
106
+ pub cylinder_high_exp : u8 ,
107
+ pub features_exp : u8 ,
108
+ pub sector_count : u8 ,
109
+ pub sector_count_exp : u8 ,
110
110
pub reserved2 : [ u8 ; 6 ] ,
111
111
}
112
112
@@ -118,6 +118,8 @@ pub struct AtaPassThruCommandPacket {
118
118
pub timeout : u64 ,
119
119
pub in_data_buffer : * mut c_void ,
120
120
pub out_data_buffer : * const c_void ,
121
+ pub in_transfer_length : u32 ,
122
+ pub out_transfer_length : u32 ,
121
123
pub protocol : AtaPassThruCommandProtocol ,
122
124
pub length : AtaPassThruLength ,
123
125
}
@@ -131,7 +133,7 @@ pub struct AtaPassThruProtocol {
131
133
port : u16 ,
132
134
port_multiplier_port : u16 ,
133
135
packet : * mut AtaPassThruCommandPacket ,
134
- event : * mut Event ,
136
+ event : Event ,
135
137
) -> Status ,
136
138
pub get_next_port : unsafe extern "efiapi" fn ( this : * const Self , port : * mut u16 ) -> Status ,
137
139
pub get_next_device : unsafe extern "efiapi" fn (
0 commit comments