dingusppc/devices/common/scsi/scsi_hd.h

82 lines
2.5 KiB
C
Raw Normal View History

2022-09-02 05:10:52 +00:00
/*
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 SCSI hard drive definitions. */
2022-09-02 05:10:52 +00:00
#ifndef SCSI_HD_H
#define SCSI_HD_H
#include <devices/common/scsi/scsi.h>
#include <cinttypes>
#include <fstream>
2022-09-02 05:10:52 +00:00
#include <stdio.h>
#include <string>
class ScsiHardDisk : public ScsiDevice {
2022-09-02 05:10:52 +00:00
public:
2022-10-25 00:10:54 +00:00
ScsiHardDisk(int my_id);
~ScsiHardDisk() = default;
2022-09-02 05:10:52 +00:00
2022-10-30 22:38:09 +00:00
static std::unique_ptr<HWComponent> create() {
return std::unique_ptr<ScsiHardDisk>(new ScsiHardDisk(0));
}
2022-10-30 22:38:09 +00:00
void insert_image(std::string filename);
void process_command();
bool prepare_data();
2022-10-31 22:17:08 +00:00
bool send_bytes(uint8_t* dst_ptr, int count);
2022-09-02 05:10:52 +00:00
int test_unit_ready();
2022-10-26 16:18:32 +00:00
int req_sense(uint16_t alloc_len);
2022-09-02 05:10:52 +00:00
int send_diagnostic();
2022-10-26 16:18:32 +00:00
int mode_select_6(uint8_t param_len);
2022-10-26 16:18:32 +00:00
void mode_sense_6(uint8_t page_code, uint8_t subpage_code, uint8_t alloc_len);
2022-09-02 05:10:52 +00:00
void format();
2022-10-26 16:30:05 +00:00
void inquiry(uint16_t alloc_len);
2022-10-23 23:45:58 +00:00
void read_capacity_10();
2022-10-26 16:18:32 +00:00
void read(uint32_t lba, uint16_t transfer_len, uint8_t cmd_len);
void write(uint32_t lba, uint16_t transfer_len, uint8_t cmd_len);
2022-09-02 05:10:52 +00:00
void seek(uint32_t lba);
void rewind();
2022-10-31 22:17:08 +00:00
private:
2022-09-02 05:10:52 +00:00
std::string img_path;
std::fstream hdd_img;
2022-09-02 05:10:52 +00:00
uint64_t img_size;
char img_buffer[1 << 17];
uint64_t file_offset = 0;
2022-10-31 22:17:08 +00:00
// SCSI transfer pointers
uint32_t cur_buf_pos = 0;
uint32_t cur_buf_cnt = 0;
2022-11-07 11:24:02 +00:00
uint8_t error = ScsiError::NO_ERROR;
uint8_t msg_code = 0;
2022-10-31 22:17:08 +00:00
//inquiry info
char vendor_info[8] = {'D', 'i', 'n', 'g', 'u', 's', 'D', '\0'};
char prod_info[16] = {'E', 'm', 'u', 'l', 'a', 't', 'e', 'd', ' ', 'D', 'i', 's', 'k', '\0'};
2022-10-23 23:45:58 +00:00
char rev_info[8] = {'d', 'i', '0', '0', '0', '0', '0', '1'};
char serial_info[8] = {'0', '0', '0', '0', '0', '0', '0', '0'};
};
2022-09-02 05:10:52 +00:00
2022-10-25 00:41:58 +00:00
#endif