2016-09-17 22:01:00 +00:00
|
|
|
//
|
|
|
|
// 1770.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 17/09/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef _770_hpp
|
|
|
|
#define _770_hpp
|
|
|
|
|
2016-09-26 00:05:56 +00:00
|
|
|
#include "../../Storage/Disk/DiskController.hpp"
|
2016-09-18 17:35:54 +00:00
|
|
|
|
|
|
|
namespace WD {
|
|
|
|
|
2016-09-26 00:05:56 +00:00
|
|
|
class WD1770: public Storage::Disk::Controller {
|
2016-09-18 17:35:54 +00:00
|
|
|
public:
|
2016-11-26 15:29:30 +00:00
|
|
|
enum Personality {
|
2016-11-28 04:39:08 +00:00
|
|
|
P1770, // implies automatic motor-on management with Type 2 commands offering a spin-up disable
|
|
|
|
P1772, // as per the 1770, with different stepping rates
|
|
|
|
P1773, // implements the side number-testing logic of the 1793; omits spin-up/loading logic
|
|
|
|
P1793 // implies Type 2 commands use side number testing logic; spin-up/loading is by HLD and HLT
|
2016-11-26 15:29:30 +00:00
|
|
|
};
|
|
|
|
WD1770(Personality p);
|
2016-09-20 19:56:31 +00:00
|
|
|
|
2016-09-18 17:35:54 +00:00
|
|
|
void set_is_double_density(bool is_double_density);
|
|
|
|
void set_register(int address, uint8_t value);
|
2016-09-20 02:06:56 +00:00
|
|
|
uint8_t get_register(int address);
|
|
|
|
|
|
|
|
void run_for_cycles(unsigned int number_of_cycles);
|
2016-09-20 19:56:31 +00:00
|
|
|
|
|
|
|
enum Flag: uint8_t {
|
|
|
|
MotorOn = 0x80,
|
|
|
|
WriteProtect = 0x40,
|
|
|
|
RecordType = 0x20,
|
|
|
|
SpinUp = 0x20,
|
|
|
|
RecordNotFound = 0x10,
|
2016-09-25 02:04:54 +00:00
|
|
|
SeekError = 0x10,
|
2016-09-20 19:56:31 +00:00
|
|
|
CRCError = 0x08,
|
|
|
|
LostData = 0x04,
|
|
|
|
TrackZero = 0x04,
|
|
|
|
DataRequest = 0x02,
|
|
|
|
Index = 0x02,
|
|
|
|
Busy = 0x01
|
|
|
|
};
|
|
|
|
|
2016-11-21 05:21:49 +00:00
|
|
|
inline bool get_interrupt_request_line() { return interrupt_request_line_; }
|
|
|
|
inline bool get_data_request_line() { return data_request_line_; }
|
|
|
|
class Delegate {
|
|
|
|
public:
|
|
|
|
virtual void wd1770_did_change_interrupt_request_status(WD1770 *wd1770) = 0;
|
|
|
|
virtual void wd1770_did_change_data_request_status(WD1770 *wd1770) = 0;
|
|
|
|
};
|
|
|
|
inline void set_delegate(Delegate *delegate) { delegate_ = delegate; }
|
|
|
|
|
2016-09-20 19:56:31 +00:00
|
|
|
private:
|
2016-11-26 15:29:30 +00:00
|
|
|
Personality personality_;
|
2016-12-01 03:26:02 +00:00
|
|
|
inline bool is_73() { return (personality_ == P1793 ) || (personality_ == P1773); }
|
2016-11-26 15:29:30 +00:00
|
|
|
|
2016-12-01 03:26:02 +00:00
|
|
|
struct Status {
|
2016-12-01 03:39:55 +00:00
|
|
|
Status();
|
2016-12-01 03:26:02 +00:00
|
|
|
bool write_protect;
|
|
|
|
bool record_type;
|
|
|
|
bool spin_up;
|
|
|
|
bool record_not_found;
|
|
|
|
bool crc_error;
|
|
|
|
bool seek_error;
|
|
|
|
bool lost_data;
|
2016-12-01 03:39:55 +00:00
|
|
|
// bool data_request; // TODO: pick between this and data_request_line_
|
2016-12-01 03:26:02 +00:00
|
|
|
bool busy;
|
|
|
|
enum {
|
|
|
|
One, Two, Three
|
|
|
|
} type;
|
|
|
|
} status_;
|
2016-09-25 00:12:45 +00:00
|
|
|
uint8_t track_;
|
|
|
|
uint8_t sector_;
|
|
|
|
uint8_t data_;
|
|
|
|
uint8_t command_;
|
|
|
|
|
|
|
|
int index_hole_count_;
|
2016-09-25 18:11:22 +00:00
|
|
|
int index_hole_count_target_;
|
2016-09-25 02:36:38 +00:00
|
|
|
int bits_since_token_;
|
|
|
|
int distance_into_section_;
|
2016-09-26 01:38:52 +00:00
|
|
|
bool is_awaiting_marker_value_;
|
2016-09-20 19:56:31 +00:00
|
|
|
|
2016-09-25 00:12:45 +00:00
|
|
|
int step_direction_;
|
2016-11-21 05:21:49 +00:00
|
|
|
void set_interrupt_request(bool interrupt_request);
|
|
|
|
void set_data_request(bool interrupt_request);
|
2016-09-21 02:14:33 +00:00
|
|
|
|
2016-09-25 00:12:45 +00:00
|
|
|
// Tokeniser
|
2016-09-27 11:36:37 +00:00
|
|
|
bool is_reading_data_;
|
2016-09-25 00:12:45 +00:00
|
|
|
bool is_double_density_;
|
|
|
|
int shift_register_;
|
|
|
|
struct Token {
|
|
|
|
enum Type {
|
|
|
|
Index, ID, Data, DeletedData, Byte
|
|
|
|
} type;
|
|
|
|
uint8_t byte_value;
|
|
|
|
} latest_token_;
|
|
|
|
|
|
|
|
// Events
|
|
|
|
enum Event: int {
|
2016-09-25 18:11:22 +00:00
|
|
|
Command = (1 << 0), // Indicates receipt of a new command.
|
|
|
|
Token = (1 << 1), // Indicates recognition of a new token in the flux stream. Interrogate latest_token_ for details.
|
|
|
|
IndexHole = (1 << 2), // Indicates the passing of a physical index hole.
|
|
|
|
|
|
|
|
Timer = (1 << 3), // Indicates that the delay_time_-powered timer has timed out.
|
|
|
|
IndexHoleTarget = (1 << 4) // Indicates that index_hole_count_ has reached index_hole_count_target_.
|
2016-09-25 00:12:45 +00:00
|
|
|
};
|
|
|
|
void posit_event(Event type);
|
|
|
|
int interesting_event_mask_;
|
|
|
|
int resume_point_;
|
|
|
|
int delay_time_;
|
|
|
|
|
2016-09-25 02:04:54 +00:00
|
|
|
// ID buffer
|
2016-11-21 05:21:49 +00:00
|
|
|
uint8_t header_[6];
|
|
|
|
|
|
|
|
// output line statuses
|
|
|
|
bool interrupt_request_line_;
|
|
|
|
bool data_request_line_;
|
|
|
|
Delegate *delegate_;
|
2016-09-25 02:04:54 +00:00
|
|
|
|
2016-11-21 05:21:49 +00:00
|
|
|
// Storage::Disk::Controller
|
2016-09-21 02:14:33 +00:00
|
|
|
virtual void process_input_bit(int value, unsigned int cycles_since_index_hole);
|
|
|
|
virtual void process_index_hole();
|
2016-09-18 17:35:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2016-09-17 22:01:00 +00:00
|
|
|
|
|
|
|
#endif /* _770_hpp */
|