-
Notifications
You must be signed in to change notification settings - Fork 0
/
sim_scsi.h
134 lines (112 loc) · 6.57 KB
/
sim_scsi.h
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/* sim_scsi.h: SCSI bus simulation
Copyright (c) 2019, Matt Burke
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of the author shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from the author.
*/
#ifndef _SIM_SCSI_H_
#define _SIM_SCSI_H_ 0
#include "sim_defs.h"
#include "sim_disk.h"
#include "sim_tape.h"
/* SCSI device states */
#define SCSI_DISC 0 /* disconnected */
#define SCSI_TARG 1 /* target mode */
#define SCSI_INIT 2 /* initiator mode */
/* SCSI device types */
#define SCSI_DISK 0 /* direct access device */
#define SCSI_TAPE 1 /* sequential access device */
#define SCSI_PRINT 2 /* printer */
#define SCSI_PROC 3 /* processor */
#define SCSI_WORM 4 /* write-once device */
#define SCSI_CDROM 5 /* CD-ROM */
#define SCSI_SCAN 6 /* scanner */
#define SCSI_OPTI 7 /* optical */
#define SCSI_JUKE 8 /* jukebox */
#define SCSI_COMM 9 /* communications device */
/* SCSI bus phases */
#define SCSI_DATO 0 /* data out */
#define SCSI_DATI 1 /* data in */
#define SCSI_CMD 2 /* command */
#define SCSI_STS 3 /* status */
#define SCSI_MSGO 6 /* message out */
#define SCSI_MSGI 7 /* message in */
/* Debugging bitmaps */
#define SCSI_DBG_CMD 0x01000000 /* SCSI commands */
#define SCSI_DBG_MSG 0x02000000 /* SCSI messages */
#define SCSI_DBG_BUS 0x04000000 /* bus activity */
#define SCSI_DBG_DSK 0x08000000 /* disk activity */
#define SCSI_DBG_TAP 0x10000000 /* tape activity */
#define SCSI_WLK (UNIT_WLK|UNIT_RO) /* hwre write lock */
/* This structure has been obsoleted and its role is now provided by
the DRVTYP structure */
#if 0
struct scsi_dev_t {
uint8 devtype; /* device type */
uint8 pqual; /* peripheral qualifier */
uint32 scsiver; /* SCSI version */
t_bool removeable; /* removable flag */
uint32 block_size; /* device block size */
uint32 lbn; /* device size (blocks) */
const char *manufacturer; /* manufacturer string */
const char *product; /* product string */
const char *rev; /* revision string */
const char *name; /* gap length for tapes */
uint32 gaplen;
};
#endif
struct scsi_bus_t {
DEVICE *dptr; /* SCSI device */
UNIT *dev[8]; /* target units */
int32 initiator; /* current initiator */
int32 target; /* current target */
t_bool atn; /* attention flag */
t_bool req; /* request flag */
uint8 *buf; /* transfer buffer */
uint8 cmd[10]; /* command buffer */
uint32 buf_b; /* buffer bottom ptr */
uint32 buf_t; /* buffer top ptr */
uint32 phase; /* current bus phase */
uint32 lun; /* selected lun */
uint32 status;
uint32 sense_key;
uint32 sense_code;
uint32 sense_qual;
uint32 sense_info;
};
typedef struct scsi_bus_t SCSI_BUS;
t_bool scsi_arbitrate (SCSI_BUS *bus, uint32 initiator);
void scsi_release (SCSI_BUS *bus);
void scsi_set_atn (SCSI_BUS *bus);
void scsi_release_atn (SCSI_BUS *bus);
t_bool scsi_select (SCSI_BUS *bus, uint32 target);
uint32 scsi_write (SCSI_BUS *bus, uint8 *data, uint32 len);
uint32 scsi_read (SCSI_BUS *bus, uint8 *data, uint32 len);
uint32 scsi_state (SCSI_BUS *bus, uint32 id);
void scsi_add_unit (SCSI_BUS *bus, uint32 id, UNIT *uptr);
void scsi_reset_unit (UNIT *uptr);
void scsi_reset (SCSI_BUS *bus);
t_stat scsi_init (SCSI_BUS *bus, uint32 maxfr);
t_stat scsi_set_fmt (UNIT *uptr, int32 val, CONST char *cptr, void *desc);
t_stat scsi_set_wlk (UNIT *uptr, int32 val, CONST char *cptr, void *desc);
t_stat scsi_show_fmt (FILE *st, UNIT *uptr, int32 val, CONST void *desc);
t_stat scsi_show_wlk (FILE *st, UNIT *uptr, int32 val, CONST void *desc);
t_stat scsi_attach (UNIT *uptr, CONST char *cptr);
t_stat scsi_attach_ex (UNIT *uptr, CONST char *cptr, const char **drivetypes);
t_stat scsi_detach (UNIT *uptr);
t_stat scsi_help (FILE *st, DEVICE *dptr, UNIT *uptr, int32 flag, const char *cptr);
#endif