2023-11-21 00:00:16 +00:00
|
|
|
//
|
|
|
|
// PIT.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 20/11/2023.
|
|
|
|
// Copyright © 2023 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef PIT_hpp
|
|
|
|
#define PIT_hpp
|
|
|
|
|
|
|
|
namespace PCCompatible {
|
|
|
|
|
2023-11-21 03:36:05 +00:00
|
|
|
template <bool is_8254, typename PITObserver>
|
2023-11-30 17:47:50 +00:00
|
|
|
class i8253 {
|
2023-11-21 00:00:16 +00:00
|
|
|
public:
|
2023-11-30 17:47:50 +00:00
|
|
|
i8253(PITObserver &observer) : observer_(observer) {}
|
2023-11-21 03:36:05 +00:00
|
|
|
|
2023-11-21 00:00:16 +00:00
|
|
|
template <int channel> uint8_t read() {
|
2023-11-21 03:19:18 +00:00
|
|
|
return channels_[channel].read();
|
2023-11-21 00:00:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <int channel> void write(uint8_t value) {
|
2023-11-21 03:36:05 +00:00
|
|
|
channels_[channel].template write<channel>(observer_, value);
|
2023-11-21 00:00:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void set_mode(uint8_t value) {
|
|
|
|
const int channel_id = (value >> 6) & 3;
|
|
|
|
if(channel_id == 3) {
|
|
|
|
// TODO: decode rest of read-back command.
|
2023-11-21 03:19:18 +00:00
|
|
|
read_back_ = is_8254;
|
2023-11-21 00:00:16 +00:00
|
|
|
return;
|
|
|
|
}
|
2023-11-21 03:36:05 +00:00
|
|
|
switch(channel_id) {
|
|
|
|
case 0: channels_[0].template set_mode<0>(observer_, value); break;
|
|
|
|
case 1: channels_[1].template set_mode<1>(observer_, value); break;
|
|
|
|
case 2: channels_[2].template set_mode<2>(observer_, value); break;
|
|
|
|
}
|
2023-11-21 00:00:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void run_for(Cycles cycles) {
|
|
|
|
// TODO: be intelligent enough to take ticks outside the loop when appropriate.
|
|
|
|
auto ticks = cycles.as<int>();
|
|
|
|
while(ticks--) {
|
2023-11-21 03:36:05 +00:00
|
|
|
channels_[0].template advance<0>(observer_, 1);
|
|
|
|
channels_[1].template advance<1>(observer_, 1);
|
|
|
|
channels_[2].template advance<2>(observer_, 1);
|
2023-11-21 00:00:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2023-11-21 03:36:05 +00:00
|
|
|
// The target for output changes.
|
|
|
|
PITObserver &observer_;
|
|
|
|
|
2023-11-21 00:00:16 +00:00
|
|
|
// Supported only on 8254s.
|
|
|
|
bool read_back_ = false;
|
|
|
|
|
|
|
|
enum class LatchMode {
|
|
|
|
LowOnly,
|
|
|
|
HighOnly,
|
|
|
|
LowHigh,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class OperatingMode {
|
|
|
|
InterruptOnTerminalCount = 0,
|
|
|
|
HardwareRetriggerableOneShot = 1,
|
|
|
|
RateGenerator = 2,
|
|
|
|
SquareWaveGenerator = 3,
|
|
|
|
SoftwareTriggeredStrobe = 4,
|
|
|
|
HardwareTriggeredStrobe = 5,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Channel {
|
|
|
|
LatchMode latch_mode = LatchMode::LowHigh;
|
|
|
|
OperatingMode mode = OperatingMode::InterruptOnTerminalCount;
|
|
|
|
bool is_bcd = false;
|
|
|
|
|
|
|
|
bool gated = false;
|
|
|
|
bool awaiting_reload = true;
|
|
|
|
|
|
|
|
uint16_t counter = 0;
|
|
|
|
uint16_t reload = 0;
|
|
|
|
uint16_t latch = 0;
|
|
|
|
bool output = false;
|
|
|
|
|
|
|
|
bool next_access_high = false;
|
|
|
|
|
|
|
|
void latch_value() {
|
|
|
|
latch = counter;
|
|
|
|
}
|
|
|
|
|
2023-11-21 03:36:05 +00:00
|
|
|
template <int channel>
|
|
|
|
void set_mode(PITObserver &observer, uint8_t value) {
|
2023-11-21 03:19:18 +00:00
|
|
|
switch((value >> 4) & 3) {
|
|
|
|
default:
|
|
|
|
latch_value();
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 1: latch_mode = LatchMode::LowOnly; break;
|
|
|
|
case 2: latch_mode = LatchMode::HighOnly; break;
|
|
|
|
case 3: latch_mode = LatchMode::LowHigh; break;
|
|
|
|
}
|
|
|
|
is_bcd = value & 1;
|
|
|
|
next_access_high = false;
|
|
|
|
|
|
|
|
const auto operating_mode = (value >> 1) & 7;
|
|
|
|
switch(operating_mode) {
|
|
|
|
default: mode = OperatingMode(operating_mode); break;
|
|
|
|
case 6: mode = OperatingMode::RateGenerator; break;
|
|
|
|
case 7: mode = OperatingMode::SquareWaveGenerator; break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set up operating mode.
|
|
|
|
switch(mode) {
|
|
|
|
default:
|
|
|
|
printf("PIT: unimplemented mode %d\n", int(mode));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OperatingMode::InterruptOnTerminalCount:
|
|
|
|
case OperatingMode::HardwareRetriggerableOneShot:
|
2023-11-21 03:36:05 +00:00
|
|
|
set_output<channel>(observer, false);
|
2023-11-21 03:19:18 +00:00
|
|
|
awaiting_reload = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OperatingMode::RateGenerator:
|
|
|
|
case OperatingMode::SquareWaveGenerator:
|
2023-11-21 03:36:05 +00:00
|
|
|
set_output<channel>(observer, true);
|
2023-11-21 03:19:18 +00:00
|
|
|
awaiting_reload = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-21 03:36:05 +00:00
|
|
|
template <int channel>
|
|
|
|
void advance(PITObserver &observer, int ticks) {
|
2023-11-21 03:19:18 +00:00
|
|
|
if(gated || awaiting_reload) return;
|
2023-11-21 00:00:16 +00:00
|
|
|
|
|
|
|
// TODO: BCD mode is completely ignored below. Possibly not too important.
|
|
|
|
switch(mode) {
|
|
|
|
case OperatingMode::InterruptOnTerminalCount:
|
2023-11-21 03:19:18 +00:00
|
|
|
case OperatingMode::HardwareRetriggerableOneShot:
|
|
|
|
// Output goes permanently high upon a tick from 1 to 0; reload value is not reused.
|
2023-11-21 03:36:05 +00:00
|
|
|
set_output<channel>(observer, output | (counter <= ticks));
|
2023-11-21 00:00:16 +00:00
|
|
|
counter -= ticks;
|
|
|
|
break;
|
|
|
|
|
2023-11-21 03:19:18 +00:00
|
|
|
case OperatingMode::SquareWaveGenerator: {
|
|
|
|
ticks <<= 1;
|
|
|
|
do {
|
|
|
|
// If there's a step from 1 to 0 within the next batch of ticks,
|
|
|
|
// toggle output and apply a reload.
|
|
|
|
if(counter && ticks >= counter) {
|
2023-11-21 03:36:05 +00:00
|
|
|
set_output<channel>(observer, output ^ true);
|
2023-11-21 03:19:18 +00:00
|
|
|
ticks -= counter;
|
|
|
|
|
|
|
|
const uint16_t reload_mask = output ? 0xffff : 0xfffe;
|
|
|
|
counter = reload & reload_mask;
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
counter -= ticks;
|
|
|
|
} while(false);
|
|
|
|
} break;
|
|
|
|
|
2023-11-21 00:00:16 +00:00
|
|
|
case OperatingMode::RateGenerator:
|
2023-11-21 03:19:18 +00:00
|
|
|
do {
|
|
|
|
// Check for a step from 2 to 1 within the next batch of ticks, which would cause output
|
|
|
|
// to go high.
|
|
|
|
if(counter > 1 && ticks >= counter - 1) {
|
2023-11-21 03:36:05 +00:00
|
|
|
set_output<channel>(observer, true);
|
2023-11-21 03:19:18 +00:00
|
|
|
ticks -= counter - 1;
|
|
|
|
counter = 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there is a step from 1 to 0, reload and set output back to low.
|
|
|
|
if(counter && ticks >= counter) {
|
2023-11-21 03:36:05 +00:00
|
|
|
set_output<channel>(observer, false);
|
2023-11-21 03:19:18 +00:00
|
|
|
ticks -= counter;
|
|
|
|
counter = reload;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, just continue.
|
2023-11-21 00:00:16 +00:00
|
|
|
counter -= ticks;
|
2023-11-21 03:19:18 +00:00
|
|
|
} while(false);
|
2023-11-21 00:00:16 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// TODO.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-21 03:36:05 +00:00
|
|
|
template <int channel>
|
|
|
|
void write([[maybe_unused]] PITObserver &observer, uint8_t value) {
|
2023-11-21 00:00:16 +00:00
|
|
|
switch(latch_mode) {
|
|
|
|
case LatchMode::LowOnly:
|
|
|
|
reload = (reload & 0xff00) | value;
|
|
|
|
break;
|
|
|
|
case LatchMode::HighOnly:
|
|
|
|
reload = uint16_t((reload & 0x00ff) | (value << 8));
|
|
|
|
break;
|
|
|
|
case LatchMode::LowHigh:
|
|
|
|
next_access_high ^= true;
|
|
|
|
if(next_access_high) {
|
|
|
|
reload = (reload & 0xff00) | value;
|
2023-11-21 03:19:18 +00:00
|
|
|
awaiting_reload = true;
|
2023-11-21 00:00:16 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
reload = uint16_t((reload & 0x00ff) | (value << 8));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
awaiting_reload = false;
|
|
|
|
|
|
|
|
switch(mode) {
|
2023-11-21 03:19:18 +00:00
|
|
|
default:
|
2023-11-21 00:00:16 +00:00
|
|
|
counter = reload;
|
|
|
|
break;
|
2023-11-21 03:19:18 +00:00
|
|
|
|
|
|
|
case OperatingMode::SquareWaveGenerator:
|
|
|
|
counter = reload & ~1;
|
|
|
|
break;
|
2023-11-21 00:00:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t read() {
|
|
|
|
switch(latch_mode) {
|
|
|
|
case LatchMode::LowOnly: return uint8_t(latch);
|
|
|
|
case LatchMode::HighOnly: return uint8_t(latch >> 8);
|
|
|
|
default:
|
|
|
|
case LatchMode::LowHigh:
|
|
|
|
next_access_high ^= true;
|
|
|
|
return next_access_high ? uint8_t(latch) : uint8_t(latch >> 8);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2023-11-21 03:19:18 +00:00
|
|
|
|
2023-11-21 03:36:05 +00:00
|
|
|
template <int channel>
|
|
|
|
void set_output(PITObserver &observer, bool level) {
|
2023-11-21 03:19:18 +00:00
|
|
|
if(output == level) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-11-21 03:36:05 +00:00
|
|
|
// TODO: how should time be notified?
|
|
|
|
observer.template update_output<channel>(level);
|
2023-11-21 03:19:18 +00:00
|
|
|
output = level;
|
|
|
|
}
|
2023-11-21 00:00:16 +00:00
|
|
|
} channels_[3];
|
|
|
|
|
|
|
|
// TODO:
|
|
|
|
//
|
|
|
|
// RateGenerator: output goes high if gated.
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* PIT_hpp */
|