2021-12-12 20:40:04 +00:00
|
|
|
/*
|
|
|
|
DingusPPC - The Experimental PowerPC Macintosh emulator
|
2022-02-06 14:23:30 +00:00
|
|
|
Copyright (C) 2018-22 divingkatae and maximum
|
2021-12-12 20:40:04 +00:00
|
|
|
(theweirdo) spatium
|
|
|
|
|
|
|
|
(Contact divingkatae#1017 or powermax#2286 on Discord for more info)
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file Macintosh Superdrive emulation. */
|
|
|
|
|
2022-11-17 13:17:25 +00:00
|
|
|
#include <core/timermanager.h>
|
2022-02-06 14:23:30 +00:00
|
|
|
#include <devices/floppy/floppyimg.h>
|
|
|
|
#include <devices/floppy/superdrive.h>
|
2021-12-12 20:40:04 +00:00
|
|
|
#include <loguru.hpp>
|
|
|
|
|
|
|
|
#include <cinttypes>
|
2022-02-06 20:23:20 +00:00
|
|
|
#include <memory>
|
2021-12-12 20:40:04 +00:00
|
|
|
|
|
|
|
using namespace MacSuperdrive;
|
|
|
|
|
|
|
|
MacSuperDrive::MacSuperDrive()
|
|
|
|
{
|
2022-02-06 14:23:30 +00:00
|
|
|
this->name = "Superdrive";
|
|
|
|
this->supported_types = HWCompType::FLOPPY_DRV;
|
|
|
|
|
2022-09-04 08:58:34 +00:00
|
|
|
this->eject_latch = 0; // eject latch is off
|
|
|
|
|
|
|
|
this->reset_params();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MacSuperDrive::reset_params()
|
|
|
|
{
|
2022-11-17 13:17:25 +00:00
|
|
|
this->media_kind = MediaKind::high_density;
|
|
|
|
this->has_disk = 0; // drive is empty
|
|
|
|
this->motor_stat = 0; // spindle motor is off
|
|
|
|
this->motor_on_time = 0;
|
|
|
|
this->cur_track = 0; // current head position
|
|
|
|
this->is_ready = 0; // drive not ready
|
|
|
|
|
|
|
|
// come up in the MFM mode by default
|
|
|
|
this->switch_drive_mode(RecMethod::MFM);
|
2021-12-12 20:40:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MacSuperDrive::command(uint8_t addr, uint8_t value)
|
|
|
|
{
|
2022-02-07 14:05:57 +00:00
|
|
|
uint8_t new_motor_stat;
|
|
|
|
|
2021-12-12 20:40:04 +00:00
|
|
|
LOG_F(9, "Superdrive: command addr=0x%X, value=%d", addr, value);
|
|
|
|
|
|
|
|
switch(addr) {
|
2022-02-07 14:05:57 +00:00
|
|
|
case CommandAddr::Step_Direction:
|
|
|
|
this->step_dir = value ? -1 : 1;
|
|
|
|
break;
|
2022-02-07 17:42:35 +00:00
|
|
|
case CommandAddr::Do_Step:
|
|
|
|
if (!value) {
|
2022-02-13 02:05:55 +00:00
|
|
|
this->cur_track += this->step_dir;
|
|
|
|
if (this->cur_track < 0)
|
|
|
|
this->cur_track = 0;
|
|
|
|
this->track_zero = this->cur_track == 0;
|
2022-02-07 17:42:35 +00:00
|
|
|
}
|
|
|
|
break;
|
2021-12-12 20:40:04 +00:00
|
|
|
case CommandAddr::Motor_On_Off:
|
2022-02-07 14:05:57 +00:00
|
|
|
new_motor_stat = value ^ 1;
|
|
|
|
if (this->motor_stat != new_motor_stat) {
|
|
|
|
this->motor_stat = new_motor_stat;
|
|
|
|
if (new_motor_stat) {
|
2022-11-17 13:17:25 +00:00
|
|
|
this->motor_on_time = TimerManager::get_instance()->current_time_ns();
|
|
|
|
this->track_start_time = 0;
|
|
|
|
this->sector_start_time = 0;
|
|
|
|
this->init_track_search(-1);
|
2022-02-07 14:05:57 +00:00
|
|
|
this->is_ready = 1;
|
|
|
|
LOG_F(INFO, "Superdrive: turn spindle motor on");
|
|
|
|
} else {
|
2022-11-17 13:17:25 +00:00
|
|
|
this->motor_on_time = 0;
|
|
|
|
this->is_ready = 0;
|
2022-02-07 14:05:57 +00:00
|
|
|
LOG_F(INFO, "Superdrive: turn spindle motor off");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2022-09-04 08:58:34 +00:00
|
|
|
case CommandAddr::Eject_Disk:
|
|
|
|
if (value) {
|
|
|
|
LOG_F(INFO, "Superdrive: disk ejected");
|
|
|
|
this->eject_latch = 1;
|
|
|
|
this->reset_params();
|
|
|
|
}
|
2022-02-07 14:05:57 +00:00
|
|
|
case CommandAddr::Reset_Eject_Latch:
|
2021-12-12 20:40:04 +00:00
|
|
|
if (value) {
|
2022-02-07 14:05:57 +00:00
|
|
|
this->eject_latch = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CommandAddr::Switch_Drive_Mode:
|
|
|
|
if (this->drive_mode != (value ^ 1)) {
|
|
|
|
switch_drive_mode(value ^ 1); // reverse logic
|
|
|
|
this->is_ready = 1;
|
2021-12-12 20:40:04 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
LOG_F(WARNING, "Superdrive: unimplemented command, addr=0x%X", addr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t MacSuperDrive::status(uint8_t addr)
|
|
|
|
{
|
|
|
|
LOG_F(9, "Superdrive: status request, addr = 0x%X", addr);
|
|
|
|
|
|
|
|
switch(addr) {
|
2022-02-07 14:05:57 +00:00
|
|
|
case StatusAddr::Step_Status:
|
|
|
|
return 1; // not sure what should be returned here
|
|
|
|
case StatusAddr::Motor_Status:
|
|
|
|
return this->motor_stat ^ 1; // reverse logic
|
|
|
|
case StatusAddr::Eject_Latch:
|
|
|
|
return this->eject_latch;
|
2022-02-13 02:05:55 +00:00
|
|
|
case StatusAddr::Select_Head_0:
|
2022-11-17 13:17:25 +00:00
|
|
|
return this->cur_head = 0;
|
2021-12-12 20:40:04 +00:00
|
|
|
case StatusAddr::MFM_Support:
|
|
|
|
return 1; // Superdrive does support MFM encoding scheme
|
|
|
|
case StatusAddr::Double_Sided:
|
|
|
|
return 1; // yes, Superdrive is double sided
|
|
|
|
case StatusAddr::Drive_Exists:
|
|
|
|
return 0; // tell the world I'm here
|
2022-02-06 02:25:35 +00:00
|
|
|
case StatusAddr::Disk_In_Drive:
|
2022-02-07 14:05:57 +00:00
|
|
|
return this->has_disk ^ 1; // reverse logic (active low)!
|
|
|
|
case StatusAddr::Write_Protect:
|
|
|
|
return this->wr_protect ^ 1; // reverse logic
|
2022-02-07 18:17:23 +00:00
|
|
|
case StatusAddr::Track_Zero:
|
|
|
|
return this->track_zero ^ 1; // reverse logic
|
2022-02-13 02:05:55 +00:00
|
|
|
case StatusAddr::Select_Head_1:
|
2022-11-17 13:17:25 +00:00
|
|
|
return this->cur_head = 1;
|
2022-02-07 14:05:57 +00:00
|
|
|
case StatusAddr::Drive_Mode:
|
|
|
|
return this->drive_mode;
|
|
|
|
case StatusAddr::Drive_Ready:
|
|
|
|
return this->is_ready ^ 1; // reverse logic
|
2021-12-12 20:40:04 +00:00
|
|
|
case StatusAddr::Media_Kind:
|
2022-02-06 20:23:20 +00:00
|
|
|
return this->media_kind ^ 1; // reverse logic!
|
2021-12-12 20:40:04 +00:00
|
|
|
default:
|
|
|
|
LOG_F(WARNING, "Superdrive: unimplemented status request, addr=0x%X", addr);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2022-02-06 14:23:30 +00:00
|
|
|
|
2022-07-19 21:48:17 +00:00
|
|
|
int MacSuperDrive::insert_disk(std::string& img_path, int write_flag = 0)
|
2022-02-06 14:23:30 +00:00
|
|
|
{
|
2022-02-06 20:23:20 +00:00
|
|
|
if (this->has_disk) {
|
|
|
|
LOG_F(ERROR, "Superdrive: drive is not empty!");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
FloppyImgConverter* img_conv = open_floppy_image(img_path);
|
|
|
|
if (img_conv != nullptr) {
|
|
|
|
this->img_conv = std::unique_ptr<FloppyImgConverter>(img_conv);
|
|
|
|
set_disk_phys_params();
|
|
|
|
|
|
|
|
// allocate memory for raw disk data
|
|
|
|
this->disk_data = std::unique_ptr<char[]>(new char[this->img_conv->get_data_size()]);
|
|
|
|
|
|
|
|
// swallow all raw disk data at once!
|
|
|
|
this->img_conv->get_raw_disk_data(this->disk_data.get());
|
|
|
|
|
2022-02-07 14:05:57 +00:00
|
|
|
// disk is write-enabled by default
|
2022-02-24 14:33:30 +00:00
|
|
|
this->wr_protect = write_flag;
|
2022-02-07 14:05:57 +00:00
|
|
|
|
2022-02-06 20:23:20 +00:00
|
|
|
// everything is set up, let's say we got a disk
|
|
|
|
this->has_disk = 1;
|
|
|
|
} else {
|
|
|
|
this->has_disk = 0;
|
|
|
|
}
|
2022-02-06 14:23:30 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2022-02-06 20:23:20 +00:00
|
|
|
|
|
|
|
void MacSuperDrive::set_disk_phys_params()
|
|
|
|
{
|
2022-02-13 02:05:55 +00:00
|
|
|
this->rec_method = this->img_conv->get_disk_rec_method();
|
|
|
|
this->num_tracks = this->img_conv->get_number_of_tracks();
|
|
|
|
this->num_sides = this->img_conv->get_number_of_sides();
|
|
|
|
this->media_kind = this->img_conv->get_rec_density();
|
|
|
|
this->format_byte = this->img_conv->get_format_byte();
|
2022-02-06 20:23:20 +00:00
|
|
|
|
2022-02-07 14:05:57 +00:00
|
|
|
switch_drive_mode(this->rec_method);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MacSuperDrive::switch_drive_mode(int mode)
|
|
|
|
{
|
|
|
|
if (mode == RecMethod::GCR) {
|
2022-02-06 20:23:20 +00:00
|
|
|
// Apple GCR speeds per group of 16 tracks
|
|
|
|
static int gcr_rpm_per_group[5] = {394, 429, 472, 525, 590};
|
|
|
|
|
|
|
|
// initialize three lookup tables:
|
|
|
|
// sectors per track
|
|
|
|
// rpm per track
|
|
|
|
// logical block number of the first sector in each track
|
|
|
|
// for easier navigation
|
|
|
|
for (int grp = 0, blk_num = 0; grp < 5; grp++) {
|
|
|
|
for (int trk = 0; trk < 16; trk++) {
|
|
|
|
this->sectors_per_track[grp * 16 + trk] = 12 - grp;
|
|
|
|
this->rpm_per_track[grp * 16 + trk] = gcr_rpm_per_group[grp];
|
2022-02-15 14:49:12 +00:00
|
|
|
this->track2lblk[grp * 16 + trk] = blk_num;
|
|
|
|
blk_num += (12 - grp) * this->num_sides;
|
2022-02-06 20:23:20 +00:00
|
|
|
}
|
|
|
|
}
|
2022-02-07 14:05:57 +00:00
|
|
|
|
|
|
|
this->drive_mode = RecMethod::GCR;
|
2022-02-06 20:23:20 +00:00
|
|
|
} else {
|
|
|
|
int sectors_per_track = this->media_kind ? 18 : 9;
|
|
|
|
|
|
|
|
// MFM disks use constant number of sectors per track
|
|
|
|
// and the fixed rotational speed of 300 RPM
|
|
|
|
for (int trk = 0; trk < 80; trk++) {
|
|
|
|
this->sectors_per_track[trk] = sectors_per_track;
|
|
|
|
this->rpm_per_track[trk] = 300;
|
2022-02-15 14:49:12 +00:00
|
|
|
this->track2lblk[trk] = trk * sectors_per_track * 2;
|
2022-02-06 20:23:20 +00:00
|
|
|
}
|
2022-02-07 14:05:57 +00:00
|
|
|
|
2022-11-17 13:17:25 +00:00
|
|
|
// set up disk timing parameters
|
|
|
|
this->index_delay = MFM_INDX_MARK_DELAY;
|
|
|
|
this->addr_mark_delay = MFM_ADR_MARK_DELAY;
|
|
|
|
|
|
|
|
if (this->media_kind) {
|
|
|
|
this->sector_delay = MFM_HD_SECTOR_DELAY;
|
|
|
|
this->eot_delay = MFM_HD_EOT_DELAY;
|
|
|
|
} else {
|
|
|
|
this->sector_delay = MFM_DD_SECTOR_DELAY;
|
|
|
|
this->eot_delay = MFM_DD_EOT_DELAY;
|
|
|
|
}
|
|
|
|
|
2022-02-07 14:05:57 +00:00
|
|
|
this->drive_mode = RecMethod::MFM;
|
2022-02-06 20:23:20 +00:00
|
|
|
}
|
|
|
|
}
|
2022-02-13 02:05:55 +00:00
|
|
|
|
|
|
|
double MacSuperDrive::get_current_track_delay()
|
|
|
|
{
|
2022-11-17 13:17:25 +00:00
|
|
|
return 60.0f / this->rpm_per_track[this->cur_track];
|
2022-02-13 02:05:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MacSuperDrive::init_track_search(int pos)
|
|
|
|
{
|
|
|
|
if (pos == -1) {
|
|
|
|
// pick random sector number
|
2022-11-17 13:17:25 +00:00
|
|
|
uint64_t seed = TimerManager::get_instance()->current_time_ns() >> 8;
|
|
|
|
this->cur_sector = seed % this->sectors_per_track[this->cur_track];
|
|
|
|
LOG_F(9, "Superdrive: current sector number set to %d", this->cur_sector);
|
2022-02-13 02:05:55 +00:00
|
|
|
} else {
|
|
|
|
this->cur_sector = pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-17 13:17:25 +00:00
|
|
|
uint64_t MacSuperDrive::sync_to_disk()
|
|
|
|
{
|
|
|
|
uint64_t cur_time_ns, track_time_ns;
|
|
|
|
|
|
|
|
uint64_t track_delay = this->get_current_track_delay() * NS_PER_SEC;
|
|
|
|
|
|
|
|
// look how much ns have been elapsed since the last motor enabling
|
|
|
|
cur_time_ns = TimerManager::get_instance()->current_time_ns() - this->motor_on_time;
|
|
|
|
|
|
|
|
if (!this->track_start_time ||
|
|
|
|
(cur_time_ns - this->track_start_time) >= track_delay) {
|
|
|
|
// subtract full disk revolutions
|
|
|
|
track_time_ns = cur_time_ns % track_delay;
|
|
|
|
|
|
|
|
this->track_start_time = cur_time_ns - track_time_ns;
|
|
|
|
|
|
|
|
// return delay until the first address mark if we're currently
|
|
|
|
// looking at the end of track
|
|
|
|
if (track_time_ns >= this->eot_delay) {
|
|
|
|
this->next_sector = 0;
|
|
|
|
// CHEAT: don't account for the remaining time of the current track
|
|
|
|
return this->index_delay + this->addr_mark_delay;
|
|
|
|
}
|
|
|
|
|
|
|
|
// return delay until the first address mark
|
|
|
|
// if the first address mark was not reached yet
|
|
|
|
if (track_time_ns < this->index_delay) {
|
|
|
|
this->next_sector = 0;
|
|
|
|
return this->index_delay + this->addr_mark_delay - track_time_ns;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
track_time_ns = cur_time_ns - this->track_start_time;
|
|
|
|
}
|
|
|
|
|
|
|
|
// subtract index field delay
|
|
|
|
track_time_ns -= this->index_delay;
|
|
|
|
|
|
|
|
// calculate current sector number from timestamp
|
2022-12-21 11:20:39 +00:00
|
|
|
int cur_sect_num = this->cur_sector = (int)(track_time_ns / this->sector_delay);
|
2022-11-17 13:17:25 +00:00
|
|
|
|
|
|
|
this->sector_start_time = this->track_start_time + cur_sect_num * this->sector_delay +
|
|
|
|
this->index_delay;
|
|
|
|
|
|
|
|
if (this->cur_sector + 1 >= this->sectors_per_track[this->cur_track]) {
|
|
|
|
uint64_t diff = track_delay - (cur_time_ns - this->track_start_time);
|
|
|
|
this->next_sector = 0;
|
|
|
|
this->track_start_time = 0;
|
|
|
|
this->sector_start_time = 0;
|
|
|
|
return diff + this->index_delay + this->addr_mark_delay;
|
|
|
|
} else {
|
|
|
|
this->next_sector = this->cur_sector + 1;
|
|
|
|
uint64_t diff = cur_time_ns - this->sector_start_time;
|
|
|
|
this->sector_start_time += this->sector_delay;
|
|
|
|
return this->sector_delay - diff + this->addr_mark_delay;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t MacSuperDrive::next_addr_mark_delay(uint8_t *next_sect_num)
|
|
|
|
{
|
|
|
|
uint64_t delay;
|
|
|
|
|
|
|
|
if (this->cur_sector + 1 >= this->sectors_per_track[this->cur_track]) {
|
|
|
|
this->next_sector = 0;
|
|
|
|
delay = this->index_delay + this->addr_mark_delay;
|
|
|
|
} else {
|
|
|
|
this->next_sector = this->cur_sector + 1;
|
|
|
|
delay = this->addr_mark_delay;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (next_sect_num) {
|
|
|
|
*next_sect_num = this->next_sector + ((this->rec_method == RecMethod::MFM) ? 1 : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return delay;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t MacSuperDrive::next_sector_delay()
|
2022-02-13 02:05:55 +00:00
|
|
|
{
|
2022-11-17 13:17:25 +00:00
|
|
|
if (this->cur_sector + 1 >= this->sectors_per_track[this->cur_track]) {
|
|
|
|
this->next_sector = 0;
|
|
|
|
return this->sector_delay + this->index_delay + this->addr_mark_delay;
|
2022-02-15 14:49:12 +00:00
|
|
|
}
|
|
|
|
|
2022-11-17 13:17:25 +00:00
|
|
|
this->next_sector = this->cur_sector + 1;
|
|
|
|
|
|
|
|
return this->sector_delay - this->addr_mark_delay;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t MacSuperDrive::sector_data_delay()
|
|
|
|
{
|
|
|
|
return MFM_SECT_DATA_DELAY;
|
|
|
|
}
|
|
|
|
|
|
|
|
SectorHdr MacSuperDrive::current_sector_header()
|
|
|
|
{
|
|
|
|
this->cur_sector = this->next_sector;
|
|
|
|
|
2022-02-15 14:49:12 +00:00
|
|
|
// MFM sector numbering is 1-based so we need to bump sector number
|
2022-11-17 13:17:25 +00:00
|
|
|
uint8_t sector_num = this->cur_sector + ((this->rec_method == RecMethod::MFM) ? 1 : 0);
|
2022-02-15 14:49:12 +00:00
|
|
|
|
2022-02-13 02:05:55 +00:00
|
|
|
return SectorHdr {
|
|
|
|
this->cur_track,
|
|
|
|
this->cur_head,
|
2022-02-15 14:49:12 +00:00
|
|
|
sector_num,
|
2022-02-13 02:05:55 +00:00
|
|
|
this->format_byte
|
|
|
|
};
|
|
|
|
}
|
2022-02-15 14:49:12 +00:00
|
|
|
|
|
|
|
char* MacSuperDrive::get_sector_data_ptr(int sector_num)
|
|
|
|
{
|
|
|
|
return this->disk_data.get() +
|
|
|
|
((this->track2lblk[this->cur_track] +
|
|
|
|
(this->cur_head * this->sectors_per_track[this->cur_track]) +
|
|
|
|
sector_num - 1) * 512
|
|
|
|
);
|
|
|
|
}
|