[Denali] Added AHCI Port HBA Definitions.

This commit is contained in:
Drew Galbraith 2024-08-30 23:45:56 -07:00
parent 67546664ed
commit 7d4c882f2b
2 changed files with 398 additions and 0 deletions

View File

@ -1,3 +1,4 @@
mod controller;
mod port;
pub use controller::AhciController;

View File

@ -0,0 +1,397 @@
#[bitfield(u32)]
struct AhciPortInterruptStatus {
device_to_host_register_fis_interrupt: bool,
pio_setup_fis_interrupt: bool,
dma_setup_fis_interrupt: bool,
set_device_bits_interrupt: bool,
#[bits(access = RO)]
unknown_fis_interrupt: bool,
descriptor_prossed: bool,
#[bits(access = RO)]
port_connect_change_status: bool,
device_mechanical_presence_status: bool,
#[bits(14)]
__: u32,
#[bits(access = RO)]
phy_rdy_change_status: bool,
incorrect_port_multiplier_status: bool,
overflow_status: bool,
__: bool,
interface_non_fatal_error_status: bool,
interface_fatal_error_status: bool,
host_bus_data_error_status: bool,
host_bus_fatal_error_status: bool,
task_file_error_status: bool,
cold_port_detect_status: bool,
}
#[bitfield(u32)]
struct AhciPortInterruptEnable {
device_to_host_register_fis_enable: bool,
pio_setup_fis_enable: bool,
dma_setup_fis_enable: bool,
set_device_bits_fis_enable: bool,
unknown_fis_enable: bool,
descriptor_processed_enable: bool,
port_change_enable: bool,
device_mechanical_presence_enable: bool,
#[bits(14)]
__: u32,
phy_rdy_change_enable: bool,
incorrect_port_multiplier_enable: bool,
overflow_enable: bool,
__: bool,
interface_non_fatal_error_enable: bool,
interface_fatal_error_enable: bool,
host_bus_data_error_enable: bool,
host_bust_fatal_error_enable: bool,
task_file_error_enable: bool,
cold_presence_detect_enable: bool,
}
#[repr(u8)]
#[derive(Debug)]
enum InterfaceCommunicationControl {
NoOpOrIdle = 0x0,
Active = 0x1,
Partial = 0x2,
Slumber = 0x6,
DevSleep = 0x8,
Unknown = 0xF,
}
impl InterfaceCommunicationControl {
const fn from_bits(value: u8) -> Self {
match value {
0x0 => Self::NoOpOrIdle,
0x1 => Self::Active,
0x2 => Self::Partial,
0x6 => Self::Slumber,
0x8 => Self::DevSleep,
_ => Self::Unknown,
}
}
const fn into_bits(self) -> u8 {
self as _
}
}
#[bitfield(u32)]
struct AhciPortCommandAndStatus {
start: bool,
spin_up_device: bool,
power_on_device: bool,
command_list_overide: bool,
fis_recieve_enable: bool,
#[bits(3)]
__: u8,
#[bits(5, access = RO)]
current_command_slot: u8,
#[bits(access = RO)]
mechanical_presence_switch_state: bool,
#[bits(access = RO)]
fis_receive_running: bool,
#[bits(access = RO)]
command_list_running: bool,
#[bits(access = RO)]
cold_presence_state: bool,
port_multipler_attached: bool,
#[bits(access = RO)]
hot_plug_capable_port: bool,
#[bits(access = RO)]
mechanical_presence_switch_attached_to_port: bool,
#[bits(access = RO)]
cold_presence_detection: bool,
#[bits(access = RO)]
external_sata_port: bool,
#[bits(access = RO)]
fis_base_switch_capable: bool,
automatic_partial_to_slumber_transitions_enable: bool,
device_is_atapi: bool,
drive_led_on_atapi_enable: bool,
aggressive_power_link_management_enable: bool,
aggressive_slumber_partial: bool,
#[bits(4)]
interface_communication_control: InterfaceCommunicationControl,
}
#[bitfield(u32)]
struct AhciPortTaskFileData {
#[bits(access = RO)]
err_status: bool,
#[bits(2, access = RO)]
command_specific_status_lo: u8,
#[bits(access = RO)]
data_transfer_requested: bool,
#[bits(3, access = RO)]
command_specific_status_hi: u8,
#[bits(access = RO)]
busy_status: bool,
#[bits(8, access = RO)]
error: u8,
#[bits(16)]
__: u16,
}
#[derive(Debug)]
#[repr(u8)]
enum AhciDeviceDetection {
NoDevice = 0x0,
NoCommunication = 0x1,
CommunicationEstablished = 0x3,
OfflineMode = 0x4,
Unknown = 0xF,
}
impl AhciDeviceDetection {
const fn from_bits(value: u8) -> Self {
match value {
0x0 => Self::NoDevice,
0x1 => Self::NoCommunication,
0x3 => Self::CommunicationEstablished,
0x4 => Self::OfflineMode,
_ => Self::Unknown,
}
}
}
#[derive(Debug)]
#[repr(u8)]
enum AhciCurrentInterfaceSpeed {
NoDevice = 0x0,
Gen1 = 0x1,
Gen2 = 0x2,
Gen3 = 0x3,
Unknown = 0xF,
}
impl AhciCurrentInterfaceSpeed {
const fn from_bits(value: u8) -> Self {
match value {
0x0 => Self::NoDevice,
0x1 => Self::Gen1,
0x2 => Self::Gen2,
0x3 => Self::Gen3,
_ => Self::Unknown,
}
}
}
#[derive(Debug)]
#[repr(u8)]
enum AhciInterfacePowerManagement {
NoDevice = 0x0,
Active = 0x1,
PartialPower = 0x2,
Slumber = 0x6,
DevSleep = 0x8,
Unknown = 0xF,
}
impl AhciInterfacePowerManagement {
const fn from_bits(value: u8) -> Self {
match value {
0x0 => Self::NoDevice,
0x1 => Self::Active,
0x2 => Self::PartialPower,
0x6 => Self::Slumber,
0x8 => Self::DevSleep,
_ => Self::Unknown,
}
}
}
#[bitfield(u32)]
struct AhciSataStatus {
#[bits(4, access = RO)]
device_detection: AhciDeviceDetection,
#[bits(4, access = RO)]
current_interface_speed: AhciCurrentInterfaceSpeed,
#[bits(4, access = RO)]
interface_power_management: AhciInterfacePowerManagement,
#[bits(20)]
__: u32,
}
#[derive(Debug)]
#[repr(u8)]
enum AhciDeviceDetectionInitialization {
NoDevice = 0x0,
PerformInterfaceCommunicationInitializationSequence = 0x1,
DisableSata = 0x4,
Unknown = 0xF,
}
impl AhciDeviceDetectionInitialization {
const fn into_bits(self) -> u8 {
self as _
}
const fn from_bits(value: u8) -> Self {
match value {
0x0 => Self::NoDevice,
0x1 => Self::PerformInterfaceCommunicationInitializationSequence,
0x4 => Self::DisableSata,
_ => Self::Unknown,
}
}
}
#[derive(Debug)]
#[repr(u8)]
enum AhciSpeedAllowed {
NoRestrictions = 0x0,
LimitGen1 = 0x1,
LimitGen2 = 0x2,
LimitGen3 = 0x3,
Unknown = 0xF,
}
impl AhciSpeedAllowed {
const fn into_bits(self) -> u8 {
self as _
}
const fn from_bits(value: u8) -> Self {
match value {
0x0 => Self::NoRestrictions,
0x1 => Self::LimitGen1,
0x2 => Self::LimitGen2,
0x3 => Self::LimitGen3,
_ => Self::Unknown,
}
}
}
#[bitfield(u32)]
struct AhciSataControl {
#[bits(4)]
device_detection_initialization: AhciDeviceDetectionInitialization,
#[bits(4)]
speed_allowed: AhciSpeedAllowed,
partial_transition_disabled: bool,
slumber_transition_disabled: bool,
devsleep_transition_disabled: bool,
__: bool,
#[bits(20)]
__: u32,
}
#[bitfield(u32)]
struct AhciSataError {
recovered_data_integrity_error: bool,
recovered_communications_error: bool,
#[bits(6)]
__: u8,
transient_data_integrity_error: bool,
persisten_communication_or_data_integrity_error: bool,
protocol_error: bool,
internal_error: bool,
#[bits(4)]
__: u8,
phy_ready_change: bool,
phy_internal_error: bool,
comm_wake: bool,
decode_error: bool,
__: bool,
crc_error: bool,
handshake_error: bool,
link_sequence_error: bool,
transport_state_transition_error: bool,
uknown_fis_type: bool,
exchanged: bool,
#[bits(5)]
__: u8,
}
#[bitfield(u32)]
struct AhciFisBasedSwitchingControl {
enable: bool,
device_error_clear: bool,
#[bits(access = RO)]
single_device_error: bool,
#[bits(5)]
__: u8,
#[bits(4)]
device_to_issue: u8,
#[bits(4, access = RO)]
active_device_optimization: u8,
#[bits(4, access = RO)]
device_with_error: u8,
#[bits(12)]
__: u16,
}
#[bitfield(u32)]
struct AhciDeviceSleep {
aggressive_device_sleep_enable: bool,
#[bits(access = RO)]
device_sleep_present: bool,
device_sleep_exit_timeout: u8,
#[bits(5)]
minimum_device_sleep_assertion_time: u8,
#[bits(10)]
device_sleep_idle_timeout: u16,
#[bits(4)]
dito_multiplier: u8,
#[bits(3)]
__: u8,
}
#[repr(C, packed)]
struct AhciPortHba {
command_list_base: u64,
fis_base: u64,
interrupt_status: AhciPortInterruptStatus,
interrupt_enable: AhciPortInterruptEnable,
command: AhciPortCommandAndStatus,
__: u32,
task_file_data: AhciPortTaskFileData,
signature: u32,
sata_status: AhciSataStatus,
sata_control: AhciSataControl,
sata_error: AhciSataError,
sata_active: u32,
command_issue: u32,
sata_notification: u32,
fis_based_switching_ctl: AhciFisBasedSwitchingControl,
device_sleep: AhciDeviceSleep,
}