Fixed memory allocation and field alignment.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22277 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Marcus Overhagen
2007-09-22 22:09:58 +00:00
parent 550a30a0b7
commit c542d2bbf1
2 changed files with 26 additions and 24 deletions
@@ -27,6 +27,13 @@ AHCIController::AHCIController(device_node_handle node, pci_device_info *device)
, fInstanceCheck(-1) , fInstanceCheck(-1)
{ {
memset(fPort, 0, sizeof(fPort)); memset(fPort, 0, sizeof(fPort));
ASSERT(sizeof(ahci_port) == 120);
ASSERT(sizeof(ahci_hba) == 4096);
ASSERT(sizeof(fis) == 256);
ASSERT(sizeof(command_list_entry) == 32);
ASSERT(sizeof(command_table) == 128);
ASSERT(sizeof(prd) == 16);
} }
+19 -24
View File
@@ -68,12 +68,6 @@ enum {
}; };
enum {
AHCI_CLB_SIZE = 1024,
AHCI_FIS_SIZE = 256,
};
typedef struct { typedef struct {
uint32 clb; // Command List Base Address (alignment 1024 byte) uint32 clb; // Command List Base Address (alignment 1024 byte)
uint32 clbu; // Command List Base Address Upper 32-Bits uint32 clbu; // Command List Base Address Upper 32-Bits
@@ -94,7 +88,7 @@ typedef struct {
uint32 res2; // Reserved for FIS-based Switching Definition uint32 res2; // Reserved for FIS-based Switching Definition
uint32 res[11]; // Reserved uint32 res[11]; // Reserved
uint32 vendor[2]; // Vendor Specific uint32 vendor[2]; // Vendor Specific
} ahci_port; } _PACKED ahci_port;
typedef struct { typedef struct {
@@ -110,7 +104,7 @@ typedef struct {
uint32 res[31]; // Reserved uint32 res[31]; // Reserved
uint32 vendor[24]; // Vendor Specific registers uint32 vendor[24]; // Vendor Specific registers
ahci_port port[32]; ahci_port port[32];
} ahci_hba; } _PACKED ahci_hba;
typedef struct { typedef struct {
@@ -118,12 +112,12 @@ typedef struct {
uint8 res1[0x04]; uint8 res1[0x04];
uint8 psfis[0x14]; // PIO Setup FIS uint8 psfis[0x14]; // PIO Setup FIS
uint8 res2[0x0c]; uint8 res2[0x0c];
uint8 rfis[0x20]; // D2H Register FIS uint8 rfis[0x14]; // D2H Register FIS
uint8 res3[0x04]; uint8 res3[0x04];
uint8 sdbfis[0x08]; // Set Device Bits FIS uint8 sdbfis[0x08]; // Set Device Bits FIS
uint8 ufis[0x40]; // Unknown FIS uint8 ufis[0x40]; // Unknown FIS
uint8 res4[0x60]; uint8 res4[0x60];
} fis; } _PACKED fis;
typedef struct { typedef struct {
@@ -137,38 +131,38 @@ typedef struct {
uint16 r : 1; // Reset uint16 r : 1; // Reset
uint16 p : 1; // Prefetchable uint16 p : 1; // Prefetchable
uint16 w : 1; // Write uint16 w : 1; // Write
uint16 a : 1;// ATAPI uint16 a : 1; // ATAPI
uint16 cfl : 5; // command FIS length uint16 cfl : 5; // command FIS length
}; } _PACKED;
uint32 prdtl_flags_cfl; uint32 prdtl_flags_cfl;
}; } _PACKED;
uint32 prdbc; // PRD Byte Count
uint32 ctba; // command table desciptor base address (alignment 128 byte) uint32 ctba; // command table desciptor base address (alignment 128 byte)
uint32 ctbau; // command table desciptor base address upper uint32 ctbau; // command table desciptor base address upper
uint8 res1[0x10]; uint8 res1[0x10];
} command_list_entry; } _PACKED command_list_entry;
#define COMMAND_LIST_ENTRY_COUNT 32 #define COMMAND_LIST_ENTRY_COUNT 32
typedef struct {
uint8 cfis[0x40]; // command FIS
uint8 acmd[0x20]; // ATAPI command
uint8 res[0x20]; // reserved
} _PACKED command_table;
typedef struct { typedef struct {
uint32 dba; // Data Base Address (2-byte aligned) uint32 dba; // Data Base Address (2-byte aligned)
uint32 dbau; // Data Base Address Upper uint32 dbau; // Data Base Address Upper
uint32 res; uint32 res;
uint32 dbc; // Bytecount (0-based, even, max 4MB) uint32 dbc; // Bytecount (0-based, even, max 4MB)
#define DBC_I 0x80000000 /* Interrupt on completition */ #define DBC_I 0x80000000 /* Interrupt on completition */
} prd; } _PACKED prd;
typedef struct {
uint8 cfis[0x40]; // command FIS
uint8 acmd[0x20]; // ATAPI command
uint8 res[0x20]; // reserved
} command_table;
#define PRD_TABLE_ENTRY_COUNT 168 #define PRD_TABLE_ENTRY_COUNT 168
extern scsi_sim_interface gAHCISimInterface; extern scsi_sim_interface gAHCISimInterface;
extern device_manager_info *gDeviceManager; extern device_manager_info *gDeviceManager;
extern pci_device_module_info *gPCI; extern pci_device_module_info *gPCI;
@@ -176,6 +170,7 @@ extern scsi_for_sim_interface *gSCSI;
#define LO32(val) ((uint32)(val)) #define LO32(val) ((uint32)(val))
#define HI32(val) (((uint64)(val)) >> 32) #define HI32(val) (((uint64)(val)) >> 32)
#define ASSERT(expr) if (expr) {} else panic(#expr)
#ifdef __cplusplus #ifdef __cplusplus