mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 16:33:17 +00:00
52c2aa474f
* Rebrand project to PiSCSI - rascsi ->piscsi - rasctl -> scsictl - rasdump -> scsidump - ras* -> piscsi* (rasutil -> piscsi_util, etc.) * Refined the formatting and wording of the app startup banner * Kept some references to rascsi and rasctl where backwards compatibility is concerned * Point to the new github repo URL Co-authored-by: nucleogenic <nr@nucleogenic.com> Co-authored-by: Uwe Seimet <Uwe.Seimet@seimet.de>
50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
//---------------------------------------------------------------------------
|
||
//
|
||
// SCSI Target Emulator PiSCSI
|
||
// for Raspberry Pi
|
||
//
|
||
// Copyright (C) 2001-2006 PI.(ytanaka@ipc-tokai.or.jp)
|
||
// Copyright (C) 2014-2020 GIMONS
|
||
// Copyright (C) akuker
|
||
//
|
||
// Licensed under the BSD 3-Clause License.
|
||
// See LICENSE file in the project root folder.
|
||
//
|
||
//---------------------------------------------------------------------------
|
||
|
||
#pragma once
|
||
|
||
#include "disk.h"
|
||
#include <vector>
|
||
#include <map>
|
||
|
||
using Geometry = pair<uint32_t, uint32_t>;
|
||
|
||
class SCSIMO : public Disk
|
||
{
|
||
public:
|
||
|
||
SCSIMO(int, const unordered_set<uint32_t>&);
|
||
~SCSIMO() override = default;
|
||
|
||
void Open() override;
|
||
|
||
vector<uint8_t> InquiryInternal() const override;
|
||
void ModeSelect(scsi_defs::scsi_command, const vector<int>&, const vector<uint8_t>&, int) const override;
|
||
|
||
protected:
|
||
|
||
void SetUpModePages(map<int, vector<byte>>&, int, bool) const override;
|
||
void AddFormatPage(map<int, vector<byte>>&, bool) const override;
|
||
void AddVendorPage(map<int, vector<byte>>&, int, bool) const override;
|
||
|
||
private:
|
||
|
||
void AddOptionPage(map<int, vector<byte>>&, bool) const;
|
||
|
||
bool SetGeometryForCapacity(uint64_t);
|
||
|
||
// The mapping of supported capacities to block sizes and block counts, empty if there is no capacity restriction
|
||
unordered_map<uint64_t, Geometry> geometries;
|
||
};
|