mirror of
https://github.com/akuker/RASCSI.git
synced 2026-01-22 21:16:08 +00:00
Mode Sense (6) supports a 32-bit number for the maximum block count, where Mode Sense (10) supports a 64-bit number for the count. The Seagate SCSI Commands Reference Manual from 2016, has this to say about a "Short LBA mode parameter block descriptor" as returned by Mode Sense (6): > On a MODE SENSE command, if the number of logical blocks on the > medium exceeds the maximum value that is able to be specified in > the NUMBER OF LOGICAL BLOCKS field, the device server shall return > a value of FFFFFFFh. Similarly, the Read Capacity (10) command should return FFFFFFFFh if the capacity of the drive exceeds 2^32 sectors, and that a driver should then know to use Read Capacity (16) if it supports that command. There may be an unexpected side-effect if presenting a drive of more than 2^32 sectors to a legacy host that does not support devices that large. The Read Capacity commands specify the value returned as the last addressable sector on the device. This means that typically, an application which uses the value returned by that command is going to add 1 to it to get the actual number of blocks on a given device. If the program is not aware of Read Capacity (16), and is not using greater than 32-bit math, then it might report to the user that the total number of sectors on the drive as 0. I don't view this as a huge problem, however. In that case, the legacy driver wouldn't correctly support the capacity of the drive anyway, so providing that driver with a device that is 2 ^ 32 sectors or larger wouldn't make sense from the user perspective.
79 lines
2.2 KiB
C++
79 lines
2.2 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
|
||
//
|
||
// Imported sava's Anex86/T98Next image and MO format support patch.
|
||
// Comments translated to english by akuker.
|
||
//
|
||
//---------------------------------------------------------------------------
|
||
|
||
#pragma once
|
||
|
||
#include "generated/piscsi_interface.pb.h"
|
||
#include <span>
|
||
#include <array>
|
||
#include <memory>
|
||
#include <string>
|
||
|
||
using namespace std;
|
||
using namespace piscsi_interface;
|
||
|
||
class DiskCache
|
||
{
|
||
// Number of tracks to cache
|
||
static const int64_t CACHE_MAX = 16;
|
||
|
||
uint64_t read_error_count = 0;
|
||
uint64_t write_error_count = 0;
|
||
uint64_t cache_miss_read_count = 0;
|
||
uint64_t cache_miss_write_count = 0;
|
||
|
||
inline static const string READ_ERROR_COUNT = "read_error_count";
|
||
inline static const string WRITE_ERROR_COUNT = "write_error_count";
|
||
inline static const string CACHE_MISS_READ_COUNT = "cache_miss_read_count";
|
||
inline static const string CACHE_MISS_WRITE_COUNT = "cache_miss_write_count";
|
||
|
||
public:
|
||
|
||
// Internal data definition
|
||
using cache_t = struct {
|
||
shared_ptr<DiskTrack> disktrk; // Disk Track
|
||
uint32_t serial; // Serial
|
||
};
|
||
|
||
DiskCache(const string&, int, uint64_t, off_t = 0);
|
||
~DiskCache() = default;
|
||
|
||
void SetRawMode(bool b) { cd_raw = b; } // CD-ROM raw mode setting
|
||
|
||
bool Save(); // Save and release all
|
||
bool ReadSector(span<uint8_t>, uint64_t); // Sector Read
|
||
bool WriteSector(span<const uint8_t>, uint64_t); // Sector Write
|
||
|
||
vector<PbStatistics> GetStatistics(bool) const;
|
||
|
||
private:
|
||
|
||
// Internal Management
|
||
shared_ptr<DiskTrack> Assign(int64_t);
|
||
shared_ptr<DiskTrack> GetTrack(uint64_t);
|
||
bool Load(int index, int64_t track, shared_ptr<DiskTrack>);
|
||
void UpdateSerialNumber();
|
||
|
||
// Internal data
|
||
array<cache_t, CACHE_MAX> cache = {}; // Cache management
|
||
uint32_t serial = 0; // Last serial number
|
||
string sec_path; // Path
|
||
int sec_size; // Sector Size (8=256, 9=512, 10=1024, 11=2048, 12=4096)
|
||
int64_t sec_blocks; // Blocks per sector
|
||
bool cd_raw = false; // CD-ROM RAW mode
|
||
off_t imgoffset; // Offset to actual data
|
||
};
|
||
|