mirror of
https://github.com/akuker/RASCSI.git
synced 2026-01-22 21:16:08 +00:00
Implements the mandatory and a few optional commands for tandberd see https://bitsavers.org/pdf/tandbergData/TDC4100/6047-1_TDC-4100_SCSI-2_Interface_Functional_Specification_Aug1991.pdf for more info. Fixed #480
112 lines
3.0 KiB
C++
112 lines
3.0 KiB
C++
//---------------------------------------------------------------------------
|
||
//
|
||
// X68000 EMULATOR "XM6"
|
||
//
|
||
// Copyright (C) 2001-2006 PI.(ytanaka@ipc-tokai.or.jp)
|
||
// Copyright (C) 2014-2020 GIMONS
|
||
//
|
||
// XM6i
|
||
// Copyright (C) 2010-2015 isaki@NetBSD.org
|
||
//
|
||
// Comments translated to english by akuker.
|
||
//
|
||
//---------------------------------------------------------------------------
|
||
|
||
#pragma once
|
||
|
||
#include "shared/scsi.h"
|
||
#include "shared/piscsi_util.h"
|
||
#include "disk_track.h"
|
||
#include "disk_cache.h"
|
||
#include "interfaces/scsi_block_commands.h"
|
||
#include "storage_device.h"
|
||
#include <string>
|
||
#include <span>
|
||
#include <unordered_set>
|
||
#include <unordered_map>
|
||
#include <tuple>
|
||
|
||
using namespace std;
|
||
|
||
class Disk : public StorageDevice, private ScsiBlockCommands
|
||
{
|
||
enum access_mode { RW6, RW10, RW16, SEEK6, SEEK10 };
|
||
|
||
unique_ptr<DiskCache> cache;
|
||
|
||
uint64_t sector_read_count = 0;
|
||
uint64_t sector_write_count = 0;
|
||
|
||
inline static const string SECTOR_READ_COUNT = "sector_read_count";
|
||
inline static const string SECTOR_WRITE_COUNT = "sector_write_count";
|
||
|
||
public:
|
||
|
||
Disk(PbDeviceType type, int lun, const unordered_set<uint32_t>& s)
|
||
: StorageDevice(type, lun, s) {}
|
||
~Disk() override = default;
|
||
|
||
bool Init(const param_map&) override;
|
||
void CleanUp() override;
|
||
|
||
void Dispatch(scsi_command) override;
|
||
|
||
bool Eject(bool) override;
|
||
|
||
void Write(span<const uint8_t>, uint64_t) override;
|
||
|
||
int Read(span<uint8_t> , uint64_t) override;
|
||
|
||
bool IsSectorSizeConfigurable() const { return supported_sector_sizes.size() > 1; }
|
||
bool SetConfiguredSectorSize(uint32_t);
|
||
void FlushCache() override;
|
||
|
||
vector<PbStatistics> GetStatistics() const override;
|
||
|
||
private:
|
||
|
||
// Commands covered by the SCSI specifications (see https://www.t10.org/drafts.htm)
|
||
void StartStopUnit();
|
||
void SynchronizeCache();
|
||
void ReadDefectData10() const;
|
||
virtual void Read6() { Read(RW6); }
|
||
void Read10() override { Read(RW10); }
|
||
void Read16() override { Read(RW16); }
|
||
virtual void Write6() { Write(RW6); }
|
||
void Write10() override { Write(RW10); }
|
||
void Write16() override { Write(RW16); }
|
||
void Verify10() { Verify(RW10); }
|
||
void Verify16() { Verify(RW16); }
|
||
void Seek();
|
||
void Seek10();
|
||
void ReadCapacity10() override;
|
||
void ReadCapacity16() override;
|
||
void FormatUnit() override;
|
||
void Seek6();
|
||
void Read(access_mode);
|
||
void Write(access_mode) const;
|
||
void Verify(access_mode);
|
||
void ReadWriteLong10() const;
|
||
void ReadWriteLong16() const;
|
||
void ReadCapacity16_ReadLong16();
|
||
|
||
void ValidateBlockAddress(access_mode) const;
|
||
|
||
tuple<bool, uint64_t, uint32_t> CheckAndGetStartAndCount(access_mode) const;
|
||
|
||
int ModeSense6(cdb_t, vector<uint8_t>&) const override;
|
||
int ModeSense10(cdb_t, vector<uint8_t>&) const override;
|
||
|
||
protected:
|
||
|
||
void SetUpCache(off_t, bool = false);
|
||
void ResizeCache(const string&, bool);
|
||
|
||
void SetUpModePages(map<int, vector<byte>>&, int, bool) const override;
|
||
void AddErrorPage(map<int, vector<byte>>&, bool) const;
|
||
virtual void AddFormatPage(map<int, vector<byte>>&, bool) const;
|
||
virtual void AddDrivePage(map<int, vector<byte>>&, bool) const;
|
||
void AddCachePage(map<int, vector<byte>>&, bool) const;
|
||
|
||
};
|