-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinquiry_decode.c
102 lines (88 loc) · 3.22 KB
/
inquiry_decode.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/***************************************************************************
Aaru Data Preservation Suite
----------------------------------------------------------------------------
Filename : inquiry_decode.c
Author(s) : Natalia Portillo
Component : Aaru.Device.Report
--[ Description ] ----------------------------------------------------------
Contains decoders for SCSI INQUIRY structure.
--[ License ] --------------------------------------------------------------
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 <http://www.gnu.org/licenses/>.
----------------------------------------------------------------------------
Copyright © 2011-2020 Natalia Portillo
****************************************************************************/
#include <stdint.h>
#include <string.h>
#include "inquiry_decode.h"
char *DecodeTPGSValues(uint8_t capabilities)
{
switch(capabilities)
{
case 0:return "NotSupported";
case 1:return "OnlyImplicit";
case 2:return "OnlyExplicit";
case 3:return "Both";
default:return NULL;
}
}
char *DecodePeripheralDeviceType(uint8_t type)
{
switch(type)
{
case 0x00:return "DirectAccess";
case 0x01:return "SequentialAccess";
case 0x02:return "PrinterDevice";
case 0x03:return "ProcessorDevice";
case 0x04:return "WriteOnceDevice";
case 0x05:return "MultiMediaDevice";
case 0x06:return "ScannerDevice";
case 0x07:return "OpticalDevice";
case 0x08:return "MediumChangerDevice";
case 0x09:return "CommsDevice";
case 0x0A:return "PrePressDevice1";
case 0x0B:return "PrePressDevice2";
case 0x0C:return "ArrayControllerDevice";
case 0x0D:return "EnclosureServiceDevice";
case 0x0E:return "SimplifiedDevice";
case 0x0F:return "OCRWDevice";
case 0x10:return "BridgingExpander";
case 0x11:return "ObjectDevice";
case 0x12:return "ADCDevice";
case 0x13:return "SCSISecurityManagerDevice";
case 0x14:return "SCSIZonedBlockDevice";
case 0x1E:return "WellKnownDevice";
case 0x1F:return "UnknownDevice";
default:return NULL;
}
}
char *DecodePeripheralQualifier(uint8_t qualifier)
{
switch(qualifier)
{
case 0:return "Supported";
case 1:return "Unconnected";
case 2:return "Reserved";
case 3:return "Unsupported";
default:return NULL;
}
}
char *DecodeSPIClocking(uint8_t qualifier)
{
switch(qualifier)
{
case 0:return "ST";
case 1:return "DT";
case 2:return "Reserved";
case 3:return "StandDT";
default:return NULL;
}
}