2016-07-15 10:51:11 +00:00
|
|
|
//
|
2016-09-26 00:05:56 +00:00
|
|
|
// DiskController.cpp
|
2016-07-15 10:51:11 +00:00
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 14/07/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2016-09-26 00:05:56 +00:00
|
|
|
#include "DiskController.hpp"
|
2016-07-15 12:28:34 +00:00
|
|
|
|
2016-08-27 21:18:12 +00:00
|
|
|
using namespace Storage::Disk;
|
2016-07-15 12:28:34 +00:00
|
|
|
|
2016-09-26 00:05:56 +00:00
|
|
|
Controller::Controller(unsigned int clock_rate, unsigned int clock_rate_multiplier, unsigned int revolutions_per_minute) :
|
2016-12-03 16:59:28 +00:00
|
|
|
clock_rate_(clock_rate * clock_rate_multiplier),
|
|
|
|
clock_rate_multiplier_(clock_rate_multiplier),
|
2016-07-29 11:31:02 +00:00
|
|
|
|
2016-07-31 17:32:30 +00:00
|
|
|
TimedEventLoop(clock_rate * clock_rate_multiplier)
|
2016-08-05 01:36:39 +00:00
|
|
|
{
|
2016-12-03 16:59:28 +00:00
|
|
|
rotational_multiplier_.length = 60;
|
|
|
|
rotational_multiplier_.clock_rate = revolutions_per_minute;
|
|
|
|
rotational_multiplier_.simplify();
|
2016-07-16 00:35:19 +00:00
|
|
|
|
2016-09-26 01:24:16 +00:00
|
|
|
// seed this class with a PLL, any PLL, so that it's safe to assume non-nullptr later
|
|
|
|
Time one;
|
|
|
|
set_expected_bit_length(one);
|
2016-07-29 09:19:01 +00:00
|
|
|
}
|
|
|
|
|
2016-12-02 23:36:47 +00:00
|
|
|
void Controller::setup_track()
|
2016-07-29 09:19:01 +00:00
|
|
|
{
|
2016-12-03 16:59:28 +00:00
|
|
|
track_ = drive_->get_track();
|
2016-07-29 09:19:01 +00:00
|
|
|
|
2016-12-02 23:36:47 +00:00
|
|
|
Time offset;
|
2016-12-03 16:59:28 +00:00
|
|
|
if(track_ && time_into_track_.length > 0)
|
2016-08-03 12:16:23 +00:00
|
|
|
{
|
2016-12-03 16:59:28 +00:00
|
|
|
Time time_found = track_->seek_to(time_into_track_).simplify();
|
|
|
|
offset = (time_into_track_ - time_found).simplify();
|
|
|
|
time_into_track_ = time_found;
|
2016-08-03 12:16:23 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-12-03 16:59:28 +00:00
|
|
|
offset = time_into_track_;
|
|
|
|
time_into_track_.set_zero();
|
2016-12-02 23:36:47 +00:00
|
|
|
}
|
2016-08-03 12:16:23 +00:00
|
|
|
|
2016-12-03 16:59:28 +00:00
|
|
|
reset_timer_to_offset(offset * rotational_multiplier_);
|
2016-07-29 11:31:02 +00:00
|
|
|
get_next_event();
|
2016-07-29 09:19:01 +00:00
|
|
|
}
|
|
|
|
|
2016-09-26 00:05:56 +00:00
|
|
|
void Controller::run_for_cycles(int number_of_cycles)
|
2016-07-29 09:19:01 +00:00
|
|
|
{
|
2016-12-03 16:59:28 +00:00
|
|
|
if(drive_ && drive_->has_disk() && motor_is_on_)
|
2016-07-29 09:19:01 +00:00
|
|
|
{
|
2016-12-03 16:59:28 +00:00
|
|
|
if(!track_) setup_track();
|
|
|
|
number_of_cycles *= clock_rate_multiplier_;
|
2016-09-18 02:02:38 +00:00
|
|
|
while(number_of_cycles)
|
2016-07-31 17:32:30 +00:00
|
|
|
{
|
2016-09-18 02:02:38 +00:00
|
|
|
int cycles_until_next_event = (int)get_cycles_until_next_event();
|
|
|
|
int cycles_to_run_for = std::min(cycles_until_next_event, number_of_cycles);
|
2016-12-03 16:59:28 +00:00
|
|
|
cycles_since_index_hole_ += (unsigned int)cycles_to_run_for;
|
2016-09-18 02:02:38 +00:00
|
|
|
number_of_cycles -= cycles_to_run_for;
|
2016-12-03 16:59:28 +00:00
|
|
|
pll_->run_for_cycles(cycles_to_run_for);
|
2016-09-18 02:02:38 +00:00
|
|
|
TimedEventLoop::run_for_cycles(cycles_to_run_for);
|
2016-07-31 17:32:30 +00:00
|
|
|
}
|
2016-07-29 11:31:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark - Track timed event loop
|
|
|
|
|
2016-09-26 00:05:56 +00:00
|
|
|
void Controller::get_next_event()
|
2016-07-29 11:31:02 +00:00
|
|
|
{
|
2016-12-03 16:59:28 +00:00
|
|
|
if(track_)
|
|
|
|
current_event_ = track_->get_next_event();
|
2016-07-29 11:31:02 +00:00
|
|
|
else
|
|
|
|
{
|
2016-12-03 16:59:28 +00:00
|
|
|
current_event_.length.length = 1;
|
|
|
|
current_event_.length.clock_rate = 1;
|
|
|
|
current_event_.type = Track::Event::IndexHole;
|
2016-07-29 11:31:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// divide interval, which is in terms of a rotation of the disk, by rotation speed, and
|
|
|
|
// convert it into revolutions per second
|
2016-12-03 16:59:28 +00:00
|
|
|
set_next_event_time_interval(current_event_.length * rotational_multiplier_);
|
2016-07-29 11:31:02 +00:00
|
|
|
}
|
2016-07-29 09:19:01 +00:00
|
|
|
|
2016-09-26 00:05:56 +00:00
|
|
|
void Controller::process_next_event()
|
2016-07-29 11:31:02 +00:00
|
|
|
{
|
2016-12-03 16:59:28 +00:00
|
|
|
switch(current_event_.type)
|
2016-07-29 11:31:02 +00:00
|
|
|
{
|
|
|
|
case Track::Event::FluxTransition:
|
2016-12-03 16:59:28 +00:00
|
|
|
pll_->add_pulse();
|
|
|
|
time_into_track_ += current_event_.length;
|
2016-07-29 11:31:02 +00:00
|
|
|
break;
|
|
|
|
case Track::Event::IndexHole:
|
2016-12-03 16:59:28 +00:00
|
|
|
cycles_since_index_hole_ = 0;
|
|
|
|
time_into_track_.set_zero();
|
2016-07-29 11:31:02 +00:00
|
|
|
process_index_hole();
|
|
|
|
break;
|
2016-07-29 09:19:01 +00:00
|
|
|
}
|
2016-07-29 11:31:02 +00:00
|
|
|
get_next_event();
|
|
|
|
}
|
|
|
|
|
2016-09-26 01:24:16 +00:00
|
|
|
#pragma mark - PLL control and delegate
|
|
|
|
|
|
|
|
void Controller::set_expected_bit_length(Time bit_length)
|
|
|
|
{
|
2016-12-03 16:59:28 +00:00
|
|
|
bit_length_ = bit_length;
|
2016-09-26 01:24:16 +00:00
|
|
|
|
|
|
|
// this conversion doesn't need to be exact because there's a lot of variation to be taken
|
|
|
|
// account of in rotation speed, air turbulence, etc, so a direct conversion will do
|
2016-12-03 16:59:28 +00:00
|
|
|
int clocks_per_bit = (int)((bit_length.length * clock_rate_) / bit_length.clock_rate);
|
|
|
|
pll_.reset(new DigitalPhaseLockedLoop(clocks_per_bit, clocks_per_bit / 5, 3));
|
|
|
|
pll_->set_delegate(this);
|
2016-09-26 01:24:16 +00:00
|
|
|
}
|
2016-07-29 11:31:02 +00:00
|
|
|
|
2016-09-26 00:05:56 +00:00
|
|
|
void Controller::digital_phase_locked_loop_output_bit(int value)
|
2016-07-29 11:31:02 +00:00
|
|
|
{
|
2016-12-03 16:59:28 +00:00
|
|
|
process_input_bit(value, cycles_since_index_hole_);
|
2016-07-16 00:35:19 +00:00
|
|
|
}
|
2016-09-26 01:24:16 +00:00
|
|
|
|
|
|
|
#pragma mark - Drive actions
|
|
|
|
|
|
|
|
bool Controller::get_is_track_zero()
|
|
|
|
{
|
2016-12-03 16:59:28 +00:00
|
|
|
if(!drive_) return false;
|
|
|
|
return drive_->get_is_track_zero();
|
2016-09-26 01:24:16 +00:00
|
|
|
}
|
|
|
|
|
2016-12-02 02:13:16 +00:00
|
|
|
bool Controller::get_drive_is_ready()
|
|
|
|
{
|
2016-12-03 16:59:28 +00:00
|
|
|
if(!drive_) return false;
|
|
|
|
return drive_->has_disk();
|
2016-12-02 02:13:16 +00:00
|
|
|
}
|
|
|
|
|
2016-09-26 01:24:16 +00:00
|
|
|
void Controller::step(int direction)
|
|
|
|
{
|
2016-12-03 16:59:28 +00:00
|
|
|
if(drive_) drive_->step(direction);
|
2016-09-26 01:24:16 +00:00
|
|
|
invalidate_track();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Controller::set_motor_on(bool motor_on)
|
|
|
|
{
|
2016-12-03 16:59:28 +00:00
|
|
|
motor_is_on_ = motor_on;
|
2016-09-26 01:24:16 +00:00
|
|
|
}
|
|
|
|
|
2016-12-01 03:26:02 +00:00
|
|
|
bool Controller::get_motor_on()
|
|
|
|
{
|
2016-12-03 16:59:28 +00:00
|
|
|
return motor_is_on_;
|
2016-12-01 03:26:02 +00:00
|
|
|
}
|
|
|
|
|
2016-09-26 01:24:16 +00:00
|
|
|
void Controller::set_drive(std::shared_ptr<Drive> drive)
|
|
|
|
{
|
2016-12-03 16:59:28 +00:00
|
|
|
drive_ = drive;
|
2016-09-26 01:24:16 +00:00
|
|
|
invalidate_track();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Controller::invalidate_track()
|
|
|
|
{
|
2016-12-03 16:59:28 +00:00
|
|
|
track_ = nullptr;
|
2016-09-26 01:24:16 +00:00
|
|
|
}
|