X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fdevices%2Fide.c;h=87e10c3723de4f082f8de19ce5f8fec2a154cb18;hb=6fe0528310bec884ed00c8d97b45d18120a32e3f;hp=7e98d272e37c7c0de6612f0f1850b4a05e4a0ac4;hpb=ee9c51d03e9eaa875e45febd3fc8b695d1061956;p=palacios.git diff --git a/palacios/src/devices/ide.c b/palacios/src/devices/ide.c index 7e98d27..87e10c3 100644 --- a/palacios/src/devices/ide.c +++ b/palacios/src/devices/ide.c @@ -46,11 +46,11 @@ #define SEC_ADDR_REG_PORT 0x377 -typedef enum {IDE_DISK, IDE_CDROM, IDE_NONE} ide_dev_type_t; + static const char * ide_dev_type_strs[] = {"HARDDISK", "CDROM", "NONE"}; -static inline const char * device_type_to_str(ide_dev_type_t type) { +static inline const char * device_type_to_str(v3_ide_dev_type_t type) { if (type > 2) { return NULL; } @@ -65,22 +65,19 @@ static inline const char * device_type_to_str(ide_dev_type_t type) { struct ide_drive { // Command Registers - ide_dev_type_t drive_type; - -}; + v3_ide_dev_type_t drive_type; + union { + struct v3_ide_cd_ops * cd_ops; + struct v3_ide_hd_ops * hd_ops; + }; -struct ide_channel { - struct ide_drive drives[2]; + char model[41]; + void * private_data; - // Command Registers - struct ide_error_reg error_reg; // [read] 0x1f1,0x171 uint8_t sector_count; // 0x1f2,0x172 uint8_t sector_num; // 0x1f3,0x173 - - struct ide_features_reg features; - union { uint16_t cylinder; struct { @@ -89,13 +86,26 @@ struct ide_channel { } __attribute__((packed)); } __attribute__((packed)); + +}; + + + +struct ide_channel { + struct ide_drive drives[2]; + + // Command Registers + struct ide_error_reg error_reg; // [read] 0x1f1,0x171 + + struct ide_features_reg features; + struct ide_drive_head_reg drive_head; // 0x1f6,0x176 struct ide_status_reg status; // [read] 0x1f7,0x177 uint8_t command_reg; // [write] 0x1f7,0x177 // Control Registers - struct ide_drive_ctrl_reg ctrl_reg; // [write] 0x3f6,0x376 + struct ide_ctrl_reg ctrl_reg; // [write] 0x3f6,0x376 }; @@ -134,6 +144,46 @@ static inline int is_lba_enabled(struct ide_channel * channel) { } +static void drive_reset(struct ide_drive * drive) { + drive->sector_count = 0x01; + drive->sector_num = 0x01; + + if (drive->drive_type == IDE_CDROM) { + drive->cylinder = 0xeb14; + } else { + drive->cylinder = 0x0000; + } + + // Send the reset signal to the connected device callbacks + // channel->drives[0].reset(); + // channel->drives[1].reset(); +} + +static void channel_reset(struct ide_channel * channel) { + + // set busy and seek complete flags + channel->status.val = 0x90; + + // Clear errors + channel->error_reg.val = 0x01; + + // clear commands + channel->command_reg = 0x00; + + channel->ctrl_reg.irq_disable = 0; +} + +static void channel_reset_complete(struct ide_channel * channel) { + channel->status.busy = 0; + channel->status.ready = 1; + + channel->drive_head.head_num = 0; + + drive_reset(&(channel->drives[0])); + drive_reset(&(channel->drives[1])); +} + + static int write_cmd_port(ushort_t port, void * src, uint_t length, struct vm_device * dev) { PrintDebug("IDE: Writing Command Port %x (val=%x)\n", port, *(uint8_t *)src); @@ -155,8 +205,8 @@ static int read_data_port(ushort_t port, void * dst, uint_t length, struct vm_de static int write_port_std(ushort_t port, void * src, uint_t length, struct vm_device * dev) { struct ide_internal * ide = (struct ide_internal *)(dev->private_data); struct ide_channel * channel = get_selected_channel(ide, port); - // struct ide_drive * drive = get_selected_drive(channel); - + struct ide_drive * drive = get_selected_drive(channel); + if (length != 1) { PrintError("Invalid Write length on IDE port %x\n", port); return -1; @@ -168,15 +218,19 @@ static int write_port_std(ushort_t port, void * src, uint_t length, struct vm_de switch (port) { // reset and interrupt enable case PRI_CTRL_PORT: - case SEC_CTRL_PORT: - channel->ctrl_reg.val = *(uint8_t *)src; - - if (channel->ctrl_reg.soft_reset) { - //reset_channel(channel); - return -1; + case SEC_CTRL_PORT: { + struct ide_ctrl_reg * tmp_ctrl = (struct ide_ctrl_reg *)src; + + // only reset channel on a 0->1 reset bit transition + if ((!channel->ctrl_reg.soft_reset) && (tmp_ctrl->soft_reset)) { + channel_reset(channel); + } else if ((channel->ctrl_reg.soft_reset) && (!tmp_ctrl->soft_reset)) { + channel_reset_complete(channel); } - break; + channel->ctrl_reg.val = tmp_ctrl->val; + break; + } case PRI_FEATURES_PORT: case SEC_FEATURES_PORT: channel->features.val = *(uint8_t *)src; @@ -184,34 +238,42 @@ static int write_port_std(ushort_t port, void * src, uint_t length, struct vm_de case PRI_SECT_CNT_PORT: case SEC_SECT_CNT_PORT: - channel->sector_count = *(uint8_t *)src; + drive->sector_count = *(uint8_t *)src; break; case PRI_SECT_NUM_PORT: case SEC_SECT_NUM_PORT: - channel->sector_num = *(uint8_t *)src; + drive->sector_num = *(uint8_t *)src; case PRI_CYL_LOW_PORT: case SEC_CYL_LOW_PORT: - channel->cylinder_low = *(uint8_t *)src; + drive->cylinder_low = *(uint8_t *)src; break; case PRI_CYL_HIGH_PORT: case SEC_CYL_HIGH_PORT: - channel->cylinder_high = *(uint8_t *)src; + drive->cylinder_high = *(uint8_t *)src; break; case PRI_DRV_SEL_PORT: - case SEC_DRV_SEL_PORT: + case SEC_DRV_SEL_PORT: { channel->drive_head.val = *(uint8_t *)src; - + // make sure the reserved bits are ok.. // JRL TODO: check with new ramdisk to make sure this is right... channel->drive_head.val |= 0xa0; - - return -1; + drive = get_selected_drive(channel); + + // Selecting a non-present device is a no-no + if (drive->drive_type == IDE_NONE) { + PrintDebug("Attempting to select a non-present drive\n"); + channel->error_reg.abort = 1; + channel->status.error = 1; + } + break; + } default: PrintError("IDE: Write to unknown Port %x\n", port); return -1; @@ -263,23 +325,23 @@ static int read_port_std(ushort_t port, void * dst, uint_t length, struct vm_dev case PRI_SECT_CNT_PORT: case SEC_SECT_CNT_PORT: - *(uint8_t *)dst = channel->sector_count; + *(uint8_t *)dst = drive->sector_count; break; case PRI_SECT_NUM_PORT: case SEC_SECT_NUM_PORT: - *(uint8_t *)dst = channel->sector_num; + *(uint8_t *)dst = drive->sector_num; break; case PRI_CYL_LOW_PORT: case SEC_CYL_LOW_PORT: - *(uint8_t *)dst = channel->cylinder_low; + *(uint8_t *)dst = drive->cylinder_low; break; case PRI_CYL_HIGH_PORT: case SEC_CYL_HIGH_PORT: - *(uint8_t *)dst = channel->cylinder_high; + *(uint8_t *)dst = drive->cylinder_high; break; case PRI_DRV_SEL_PORT: @@ -307,18 +369,21 @@ static int read_port_std(ushort_t port, void * dst, uint_t length, struct vm_dev static void init_drive(struct ide_drive * drive) { + drive->sector_count = 0x01; + drive->sector_num = 0x01; + drive->cylinder = 0x0000; drive->drive_type = IDE_NONE; + memset(drive->model, 0, sizeof(drive->model)); + + drive->cd_ops = NULL; } static void init_channel(struct ide_channel * channel) { int i = 0; channel->error_reg.val = 0x01; - channel->sector_count = 0x01; - channel->sector_num = 0x01; - channel->cylinder = 0x0000; channel->drive_head.val = 0x00; channel->status.val = 0x00; channel->command_reg = 0x00; @@ -427,3 +492,74 @@ struct vm_device * v3_create_ide() { return device; } + + + + + +int v3_ide_register_cdrom(struct vm_device * ide_dev, + uint_t bus_num, + uint_t drive_num, + char * dev_name, + struct v3_ide_cd_ops * ops, + void * private_data) { + + struct ide_internal * ide = (struct ide_internal *)(ide_dev->private_data); + struct ide_channel * channel = NULL; + struct ide_drive * drive = NULL; + + V3_ASSERT((bus_num >= 0) && (bus_num < 2)); + V3_ASSERT((drive_num >= 0) && (drive_num < 2)); + + channel = &(ide->channels[bus_num]); + drive = &(channel->drives[drive_num]); + + if (drive->drive_type != IDE_NONE) { + PrintError("Device slot (bus=%d, drive=%d) already occupied\n", bus_num, drive_num); + return -1; + } + + strncpy(drive->model, dev_name, sizeof(drive->model) - 1); + + drive->drive_type = IDE_CDROM; + + drive->cd_ops = ops; + + drive->private_data = private_data; + + return 0; +} + + +int v3_ide_register_harddisk(struct vm_device * ide_dev, + uint_t bus_num, + uint_t drive_num, + char * dev_name, + struct v3_ide_hd_ops * ops, + void * private_data) { + + struct ide_internal * ide = (struct ide_internal *)(ide_dev->private_data); + struct ide_channel * channel = NULL; + struct ide_drive * drive = NULL; + + V3_ASSERT((bus_num >= 0) && (bus_num < 2)); + V3_ASSERT((drive_num >= 0) && (drive_num < 2)); + + channel = &(ide->channels[bus_num]); + drive = &(channel->drives[drive_num]); + + if (drive->drive_type != IDE_NONE) { + PrintError("Device slot (bus=%d, drive=%d) already occupied\n", bus_num, drive_num); + return -1; + } + + strncpy(drive->model, dev_name, sizeof(drive->model) - 1); + + drive->drive_type = IDE_DISK; + + drive->hd_ops = ops; + + drive->private_data = private_data; + + return 0; +}