dingusppc/devices/common/ide/ide_hd.cpp

138 lines
4.1 KiB
C++
Raw Normal View History

/*
DingusPPC - The Experimental PowerPC Macintosh emulator
Copyright (C) 2018-22 divingkatae and maximum
(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 Heathrow hard drive controller */
2022-10-30 22:38:09 +00:00
#include <devices/deviceregistry.h>
#include <devices/common/ide/ide_hd.h>
#include <fstream>
#include <limits>
#include <stdio.h>
#include <loguru.hpp>
#define sector_size 512
using namespace std;
IdeHardDisk::IdeHardDisk() {
2022-11-27 04:34:54 +00:00
this->name = "IdeHardDisk";
supports_types(HWCompType::IDE_DEV);
}
void IdeHardDisk::insert_image(std::string filename) {
2022-11-27 04:34:54 +00:00
this->hdd_img.open(filename, ios::out | ios::in | ios::binary);
// Taken from:
// https://stackoverflow.com/questions/22984956/tellg-function-give-wrong-size-of-file/22986486
hdd_img.ignore(std::numeric_limits<std::streamsize>::max());
img_size = this->hdd_img.gcount();
hdd_img.clear(); // Since ignore will have set eof.
hdd_img.seekg(0, std::ios_base::beg);
}
uint32_t IdeHardDisk::read(int reg) {
switch (reg) {
case IDE_Reg::IDE_DATA:
LOG_F(0, "Retrieving DATA from IDE: %x", regs[IDE_Reg::IDE_DATA]);
return regs[IDE_Reg::IDE_DATA];
case IDE_Reg::ERROR:
return regs[IDE_Reg::ERROR];
case IDE_Reg::SEC_COUNT:
return regs[IDE_Reg::SEC_COUNT];
case IDE_Reg::SEC_NUM:
return regs[IDE_Reg::SEC_NUM];
case IDE_Reg::CYL_LOW:
return regs[IDE_Reg::CYL_LOW];
case IDE_Reg::CYL_HIGH:
return regs[IDE_Reg::CYL_HIGH];
case IDE_Reg::DRIVE_HEAD:
return regs[IDE_Reg::DRIVE_HEAD];
case IDE_Reg::STATUS:
return regs[IDE_Reg::STATUS];
case IDE_Reg::ALT_STATUS:
return regs[IDE_Reg::ALT_STATUS];
case IDE_Reg::TIME_CONFIG:
return regs[IDE_Reg::TIME_CONFIG];
default:
LOG_F(WARNING, "Attempted to read unknown IDE register: %x", reg);
return 0x0;
}
}
void IdeHardDisk::write(int reg, uint32_t value) {
switch (reg) {
case IDE_Reg::IDE_DATA:
regs[IDE_Reg::IDE_DATA] = value;
2022-11-27 04:34:54 +00:00
break;
break;
case IDE_Reg::FEATURES:
regs[IDE_Reg::FEATURES] = value;
2022-11-27 04:34:54 +00:00
break;
case IDE_Reg::SEC_COUNT:
regs[IDE_Reg::SEC_COUNT] = value;
2022-11-27 04:34:54 +00:00
break;
case IDE_Reg::SEC_NUM:
regs[IDE_Reg::SEC_NUM] = value;
2022-11-27 04:34:54 +00:00
break;
case IDE_Reg::CYL_LOW:
regs[IDE_Reg::CYL_LOW] = value;
2022-11-27 04:34:54 +00:00
break;
case IDE_Reg::CYL_HIGH:
regs[IDE_Reg::CYL_HIGH] = value;
2022-11-27 04:34:54 +00:00
break;
case IDE_Reg::DRIVE_HEAD:
regs[IDE_Reg::DRIVE_HEAD] = value;
2022-11-27 04:34:54 +00:00
break;
case IDE_Reg::COMMAND:
2022-11-27 04:34:54 +00:00
regs[IDE_Reg::COMMAND] = value;
LOG_F(0, "Executing COMMAND for IDE: %x", value);
perform_command(value);
2022-11-27 04:34:54 +00:00
break;
case IDE_Reg::DEV_CTRL:
regs[IDE_Reg::DEV_CTRL] = value;
2022-11-27 04:34:54 +00:00
break;
case IDE_Reg::TIME_CONFIG:
regs[IDE_Reg::TIME_CONFIG] = value;
2022-11-27 04:34:54 +00:00
break;
default:
LOG_F(WARNING, "Attempted to write unknown IDE register: %x", reg);
}
}
void IdeHardDisk::perform_command(uint32_t command) {
switch (command) {
case IDE_Cmd::READ_SECTOR:
LOG_F(WARNING, "Trying to read sector with: %x", command);
2022-11-27 04:34:54 +00:00
break;
case IDE_Cmd::WRITE_SECTOR:
LOG_F(WARNING, "Trying to write sector with: %x", command);
2022-11-27 04:34:54 +00:00
break;
default:
LOG_F(WARNING, "Attempted to execute IDE command: %x", command);
}
2022-10-30 22:38:09 +00:00
}
static const DeviceDescription IDE_Descriptor = {
IdeHardDisk::create, {}, {}
};
REGISTER_DEVICE(IdeHardDisk, IDE_Descriptor);