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 definitions. */
|
|
|
|
|
|
|
|
#ifndef MAC_SUPERDRIVE_H
|
|
|
|
#define MAC_SUPERDRIVE_H
|
|
|
|
|
2022-02-06 14:23:30 +00:00
|
|
|
#include <devices/common/hwcomponent.h>
|
2022-02-06 20:23:20 +00:00
|
|
|
#include <devices/floppy/floppyimg.h>
|
2022-02-06 14:23:30 +00:00
|
|
|
|
2021-12-12 20:40:04 +00:00
|
|
|
#include <cinttypes>
|
2022-02-06 20:23:20 +00:00
|
|
|
#include <memory>
|
2022-02-06 14:23:30 +00:00
|
|
|
#include <string>
|
2021-12-12 20:40:04 +00:00
|
|
|
|
|
|
|
namespace MacSuperdrive {
|
|
|
|
|
|
|
|
/** Apple Drive status request addresses. */
|
|
|
|
enum StatusAddr : uint8_t {
|
2022-02-07 14:05:57 +00:00
|
|
|
Step_Status = 1,
|
|
|
|
Motor_Status = 2,
|
|
|
|
Eject_Latch = 3,
|
2022-02-13 02:05:55 +00:00
|
|
|
Select_Head_0 = 4,
|
2022-02-06 02:25:35 +00:00
|
|
|
MFM_Support = 5,
|
|
|
|
Double_Sided = 6,
|
|
|
|
Drive_Exists = 7,
|
|
|
|
Disk_In_Drive = 8,
|
2022-02-07 14:05:57 +00:00
|
|
|
Write_Protect = 9,
|
2022-02-07 18:17:23 +00:00
|
|
|
Track_Zero = 0xA,
|
2022-02-13 02:05:55 +00:00
|
|
|
Select_Head_1 = 0xC,
|
2022-02-07 14:05:57 +00:00
|
|
|
Drive_Mode = 0xD,
|
|
|
|
Drive_Ready = 0xE,
|
2022-02-06 02:25:35 +00:00
|
|
|
Media_Kind = 0xF
|
2021-12-12 20:40:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Apple Drive command addresses. */
|
|
|
|
enum CommandAddr : uint8_t {
|
2022-02-07 14:05:57 +00:00
|
|
|
Step_Direction = 0,
|
2022-02-07 17:42:35 +00:00
|
|
|
Do_Step = 1,
|
2022-02-07 14:05:57 +00:00
|
|
|
Motor_On_Off = 2,
|
|
|
|
Reset_Eject_Latch = 4,
|
|
|
|
Switch_Drive_Mode = 5,
|
2021-12-12 20:40:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Type of media currently in the drive. */
|
|
|
|
enum MediaKind : uint8_t {
|
2022-02-06 20:23:20 +00:00
|
|
|
low_density = 0,
|
|
|
|
high_density = 1, // 1 or 2 MB disk
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Disk recording method. */
|
|
|
|
enum RecMethod : int {
|
|
|
|
GCR = 0,
|
|
|
|
MFM = 1
|
2021-12-12 20:40:04 +00:00
|
|
|
};
|
|
|
|
|
2022-02-13 02:05:55 +00:00
|
|
|
typedef struct SectorHdr {
|
|
|
|
int track;
|
|
|
|
int side;
|
|
|
|
int sector;
|
|
|
|
int format;
|
|
|
|
} SectorHdr;
|
|
|
|
|
2022-02-06 14:23:30 +00:00
|
|
|
class MacSuperDrive : public HWComponent {
|
2021-12-12 20:40:04 +00:00
|
|
|
public:
|
|
|
|
MacSuperDrive();
|
|
|
|
~MacSuperDrive() = default;
|
|
|
|
|
|
|
|
void command(uint8_t addr, uint8_t value);
|
|
|
|
uint8_t status(uint8_t addr);
|
2022-02-24 14:33:30 +00:00
|
|
|
int insert_disk(std::string& img_path, bool write_flag);
|
2022-02-13 02:05:55 +00:00
|
|
|
double get_current_track_delay();
|
|
|
|
double get_sector_delay();
|
|
|
|
void init_track_search(int pos);
|
|
|
|
SectorHdr next_sector_header();
|
2022-02-15 14:49:12 +00:00
|
|
|
char* get_sector_data_ptr(int sector_num);
|
2021-12-12 20:40:04 +00:00
|
|
|
|
2022-02-06 20:23:20 +00:00
|
|
|
protected:
|
|
|
|
void set_disk_phys_params();
|
2022-02-07 14:05:57 +00:00
|
|
|
void switch_drive_mode(int mode);
|
2022-02-06 20:23:20 +00:00
|
|
|
|
2021-12-12 20:40:04 +00:00
|
|
|
private:
|
2022-02-06 02:25:35 +00:00
|
|
|
uint8_t has_disk;
|
2022-02-07 14:05:57 +00:00
|
|
|
uint8_t eject_latch;
|
|
|
|
uint8_t motor_stat; // spindle motor status: 1 - on, 0 - off
|
|
|
|
uint8_t drive_mode; // drive mode: 0 - GCR, 1 - MFM
|
|
|
|
uint8_t is_ready;
|
2022-02-07 17:42:35 +00:00
|
|
|
uint8_t track_zero; // 1 - if head is at track zero
|
2022-02-07 14:05:57 +00:00
|
|
|
int step_dir; // step direction -1/+1
|
2022-02-13 02:05:55 +00:00
|
|
|
int cur_track; // track number the head is currently at
|
|
|
|
int cur_head; // current head number: 1 - upper, 0 - lower
|
|
|
|
int cur_sector; // current sector number
|
2022-02-06 20:23:20 +00:00
|
|
|
|
|
|
|
// physical parameters of the currently inserted disk
|
|
|
|
uint8_t media_kind;
|
2022-02-07 14:05:57 +00:00
|
|
|
uint8_t wr_protect;
|
2022-02-13 02:05:55 +00:00
|
|
|
uint8_t format_byte;
|
2022-02-06 20:23:20 +00:00
|
|
|
int rec_method;
|
|
|
|
int num_tracks;
|
|
|
|
int num_sides;
|
|
|
|
int sectors_per_track[80];
|
|
|
|
int rpm_per_track[80];
|
2022-02-15 14:49:12 +00:00
|
|
|
int track2lblk[80]; // convert track number to first logical block number
|
2022-02-06 20:23:20 +00:00
|
|
|
|
|
|
|
std::unique_ptr<FloppyImgConverter> img_conv;
|
|
|
|
|
|
|
|
std::unique_ptr<char[]> disk_data;
|
2021-12-12 20:40:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}; // namespace MacSuperdrive
|
|
|
|
|
|
|
|
#endif // MAC_SUPERDRIVE_H
|