dingusppc/devices/common/ata/atabasedevice.h

85 lines
2.5 KiB
C
Raw Normal View History

2022-12-05 15:42:51 +00:00
/*
DingusPPC - The Experimental PowerPC Macintosh emulator
2023-04-24 21:02:32 +00:00
Copyright (C) 2018-23 divingkatae and maximum
2022-12-05 15:42:51 +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/>.
*/
2022-12-07 21:36:25 +00:00
/** @file Base class for ATA devices. */
2022-12-05 15:42:51 +00:00
2022-12-07 21:36:25 +00:00
#ifndef ATA_BASE_DEVICE_H
#define ATA_BASE_DEVICE_H
2022-12-05 15:42:51 +00:00
2022-12-07 21:36:25 +00:00
#include <devices/common/ata/atadefs.h>
2023-04-24 21:02:32 +00:00
#include <devices/common/ata/idechannel.h>
2022-12-07 21:36:25 +00:00
#include <devices/common/hwcomponent.h>
2022-12-05 15:42:51 +00:00
2022-12-07 21:36:25 +00:00
#include <cinttypes>
2023-05-15 15:56:14 +00:00
#include <string>
2022-12-05 15:42:51 +00:00
2022-12-07 21:36:25 +00:00
class AtaBaseDevice : public HWComponent, public AtaInterface
{
2022-12-05 15:42:51 +00:00
public:
2023-04-24 21:02:32 +00:00
AtaBaseDevice(const std::string name, uint8_t type);
2022-12-07 21:36:25 +00:00
~AtaBaseDevice() = default;
2022-12-05 15:42:51 +00:00
2023-04-24 21:02:32 +00:00
void set_host(IdeChannel* host) { this->host_obj = host; };
uint16_t read(const uint8_t reg_addr) override;
void write(const uint8_t reg_addr, const uint16_t value) override;
2022-12-05 15:42:51 +00:00
2022-12-07 21:36:25 +00:00
virtual int perform_command() = 0;
2022-12-05 15:42:51 +00:00
2023-04-24 21:02:32 +00:00
int get_device_id() override { return this->my_dev_id; };
void pdiag_callback() override {
this->r_error &= 0x7F;
};
2022-12-08 23:52:39 +00:00
2023-05-15 15:56:14 +00:00
virtual void device_reset(bool is_soft_reset);
virtual void device_set_signature();
2023-04-24 21:02:32 +00:00
void device_control(const uint8_t new_ctrl);
2023-05-15 15:56:14 +00:00
protected:
bool is_selected() { return ((this->r_dev_head >> 4) & 1) == this->my_dev_id; };
uint8_t my_dev_id = 0; // my IDE device ID configured by the host
uint8_t device_type = ata_interface::DEVICE_TYPE_UNKNOWN;
2023-04-24 21:02:32 +00:00
IdeChannel* host_obj = nullptr;
// IDE aka task file registers
uint8_t r_error;
uint8_t r_features;
uint8_t r_sect_count;
uint8_t r_sect_num;
uint8_t r_cylinder_lo;
uint8_t r_cylinder_hi;
uint8_t r_dev_head;
uint8_t r_command;
uint8_t r_status;
2023-04-24 21:02:32 +00:00
uint8_t r_status_save;
uint8_t r_dev_ctrl = 0x08;
2023-05-15 15:56:14 +00:00
uint16_t *data_ptr = nullptr;
uint8_t data_buf[512] = {};
int data_pos = 0;
int xfer_cnt = 0;
2022-12-05 15:42:51 +00:00
};
2022-12-07 21:36:25 +00:00
#endif // ATA_BASE_DEVICE_H