-
Notifications
You must be signed in to change notification settings - Fork 1
/
SCSIBus.h
90 lines (80 loc) · 3.01 KB
/
SCSIBus.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
/* ES40 emulator.
* Copyright (C) 2007-2008 by the ES40 Emulator Project
*
* WWW : http://sourceforge.net/projects/es40
* E-mail : [email protected]
*
* 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 2
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Although this is not required, the author would appreciate being notified of,
* and receiving any modifications you may make to the source code that might serve
* the general public.
*/
/**
* \file
* Contains definitions for the SCSI bus class.
*
* $Id: SCSIBus.h,v 1.2 2008/01/20 16:18:44 iamcamiel Exp $
*
* X-1.2 Camiel Vanderhoeven 20-JAN-2008
* Avoid compiler warnings.
*
* X-1.1 Camiel Vanderhoeven 12-JAN-2008
* Initial version in CVS.
**/
#if !defined(__SCSIBUS__H__)
#define __SCSIBUS__H__
#include "SystemComponent.h"
#include "SCSIDevice.h"
/**
* \brief Emulated SCSI bus.
*
* connects SCSI Devices (class CSCSIDevice) together; SCSI devices are
* disks and controllers.
**/
class CSCSIBus : public CSystemComponent
{
public:
CSCSIBus(CConfigurator * cfg, CSystem * c);
~CSCSIBus(void);
virtual int SaveState(FILE * f);
virtual int RestoreState(FILE * f);
void scsi_register(CSCSIDevice * dev, int bus, int target);
void scsi_unregister(CSCSIDevice * dev, int target);
bool arbitrate(int initiator);
bool select(int initiator, int target);
void set_phase(int target, int phase);
int get_phase() { return state.phase; }; /**< Get current SCSI bus phase **/
void free_bus(int initiator);
CSCSIDevice * targets[16]; /**< pointers to the SCSI devices that respond to the 15 possible target id's. **/
int target_bus_no[16]; /**< indicates what bus this is for each connected SCSI device. always 0 for disks,
but controllers could have multiple SCSI busses. **/
/// The state structure contains all elements that need to be saved to the statefile
struct SSCSI_state
{
int initiator; /**< SCSI id of the initiator. **/
int target; /**< SCSI id of the target. **/
int phase; /**< SCSI bus phase. **/
} state;
};
#define SCSI_PHASE_FREE -2
#define SCSI_PHASE_ARBITRATION -1
#define SCSI_PHASE_DATA_OUT 0
#define SCSI_PHASE_DATA_IN 1
#define SCSI_PHASE_COMMAND 2
#define SCSI_PHASE_STATUS 3
#define SCSI_PHASE_MSG_OUT 6
#define SCSI_PHASE_MSG_IN 7
#endif