2017-05-19 20:28:49 +01:00
// /***************************************************************************
2016-04-13 16:28:50 +01:00
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
// Filename : Structs.cs
2016-07-28 18:13:49 +01:00
// Author(s) : Natalia Portillo <claunia@claunia.com>
2016-04-13 16:28:50 +01:00
//
2016-07-28 18:13:49 +01:00
// Component : FreeBSD direct device access.
2016-04-13 16:28:50 +01:00
//
// --[ Description ] ----------------------------------------------------------
//
2016-07-28 18:13:49 +01:00
// Contains structures necessary for directly interfacing devices under
// FreeBSD.
2016-04-13 16:28:50 +01:00
//
// --[ License ] --------------------------------------------------------------
//
2016-07-28 18:13:49 +01:00
// This library is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 2.1 of the
2016-04-13 16:28:50 +01:00
// License, or (at your option) any later version.
//
2016-07-28 18:13:49 +01:00
// This library 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
// Lesser General Public License for more details.
2016-04-13 16:28:50 +01:00
//
2016-07-28 18:13:49 +01:00
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
2016-04-13 16:28:50 +01:00
//
// ----------------------------------------------------------------------------
2017-12-19 03:50:57 +00:00
// Copyright © 2011-2018 Natalia Portillo
2016-04-13 16:28:50 +01:00
// ****************************************************************************/
2016-07-28 18:13:49 +01:00
2016-04-13 16:28:50 +01:00
using System ;
using System.Runtime.InteropServices ;
2017-12-19 19:33:46 +00:00
using lun_id_t = System . UInt32 ;
2017-12-07 18:08:09 +00:00
using path_id_t = System . UInt32 ;
using target_id_t = System . UInt32 ;
2016-04-13 16:28:50 +01:00
namespace DiscImageChef.Devices.FreeBSD
{
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct AtaCmd
2016-04-13 16:28:50 +01:00
{
public CamAtaIoFlags flags ;
public byte command ;
public byte features ;
public byte lba_low ;
public byte lba_mid ;
public byte lba_high ;
public byte device ;
public byte lba_low_exp ;
public byte lba_mid_exp ;
public byte lba_high_exp ;
public byte features_exp ;
public byte sector_count ;
public byte sector_count_exp ;
public byte control ;
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct AtaRes
2016-04-13 16:28:50 +01:00
{
public CamAtaIoFlags flags ;
public byte status ;
public byte error ;
public byte lba_low ;
public byte lba_mid ;
public byte lba_high ;
public byte device ;
public byte lba_low_exp ;
public byte lba_mid_exp ;
public byte lba_high_exp ;
public byte sector_count ;
public byte sector_count_exp ;
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct CamPinfo
2016-04-13 16:28:50 +01:00
{
2016-07-28 22:25:26 +01:00
public uint priority ;
public uint generation ;
2016-04-13 16:28:50 +01:00
public int index ;
}
2017-12-20 17:15:26 +00:00
struct ListEntry
2016-04-13 16:28:50 +01:00
{
/// <summary>
/// LIST_ENTRY(ccb_hdr)=le->*le_next
/// </summary>
2017-12-20 17:15:26 +00:00
public IntPtr LeNext ;
2016-04-13 16:28:50 +01:00
/// <summary>
/// LIST_ENTRY(ccb_hdr)=le->**le_prev
/// </summary>
2017-12-20 17:15:26 +00:00
public IntPtr LePrev ;
2017-12-08 03:19:28 +00:00
}
2017-12-20 17:15:26 +00:00
struct SlistEntry
2017-12-08 03:19:28 +00:00
{
2016-04-13 16:28:50 +01:00
/// <summary>
/// SLIST_ENTRY(ccb_hdr)=sle->*sle_next
/// </summary>
2017-12-20 17:15:26 +00:00
public IntPtr SleNext ;
2017-12-08 03:19:28 +00:00
}
2017-12-20 17:15:26 +00:00
struct TailqEntry
2017-12-08 03:19:28 +00:00
{
2016-04-13 16:28:50 +01:00
/// <summary>
/// TAILQ_ENTRY(ccb_hdr)=tqe->*tqe_next
/// </summary>
2017-12-20 17:15:26 +00:00
public IntPtr TqeNext ;
2016-04-13 16:28:50 +01:00
/// <summary>
/// TAILQ_ENTRY(ccb_hdr)=tqe->**tqe_prev
/// </summary>
2017-12-20 17:15:26 +00:00
public IntPtr TqePrev ;
2017-12-08 03:19:28 +00:00
}
2017-12-20 17:15:26 +00:00
struct StailqEntry
2017-12-08 03:19:28 +00:00
{
2016-04-13 16:28:50 +01:00
/// <summary>
/// STAILQ_ENTRY(ccb_hdr)=stqe->*stqe_next
/// </summary>
2017-12-20 17:15:26 +00:00
public IntPtr StqeNext ;
2016-04-13 16:28:50 +01:00
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Explicit)]
2017-12-20 17:15:26 +00:00
struct CamqEntry
2017-12-08 03:19:28 +00:00
{
2017-12-20 17:15:26 +00:00
[FieldOffset(0)] public ListEntry le ;
[FieldOffset(0)] public SlistEntry sle ;
[FieldOffset(0)] public TailqEntry tqe ;
[FieldOffset(0)] public StailqEntry stqe ;
2017-12-08 03:19:28 +00:00
}
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct Timeval
2016-04-13 16:28:50 +01:00
{
2016-07-28 22:25:26 +01:00
public long tv_sec ;
2016-04-13 16:28:50 +01:00
/// <summary>long</summary>
public IntPtr tv_usec ;
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct CcbQosArea
2016-04-13 16:28:50 +01:00
{
2017-12-20 17:15:26 +00:00
public Timeval etime ;
2016-04-13 16:28:50 +01:00
public UIntPtr sim_data ;
public UIntPtr periph_data ;
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct CcbHdr
2016-04-13 16:28:50 +01:00
{
2017-12-20 17:15:26 +00:00
public CamPinfo pinfo ;
public CamqEntry xpt_links ;
public CamqEntry sim_links ;
public CamqEntry periph_links ;
2016-07-28 22:25:26 +01:00
public uint retry_count ;
2016-04-13 16:28:50 +01:00
public IntPtr cbfcnp ;
2017-12-20 17:15:26 +00:00
public XptOpcode func_code ;
public CamStatus status ;
2016-04-13 16:28:50 +01:00
public IntPtr path ;
public uint path_id ;
public uint target_id ;
2016-07-28 22:25:26 +01:00
public ulong target_lun ;
2017-12-20 17:15:26 +00:00
public CcbFlags flags ;
2016-07-28 22:25:26 +01:00
public uint xflags ;
2017-12-19 20:33:03 +00:00
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)] public IntPtr [ ] periph_priv ;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)] public IntPtr [ ] sim_priv ;
2017-12-20 17:15:26 +00:00
public CcbQosArea qos ;
2016-07-28 22:25:26 +01:00
public uint timeout ;
2017-12-20 17:15:26 +00:00
public Timeval softtimeout ;
2016-04-13 16:28:50 +01:00
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct ScsiSenseData
2016-04-13 16:28:50 +01:00
{
2017-12-10 21:00:20 +00:00
const int SSD_FULL_SIZE = 252 ;
2016-04-13 16:28:50 +01:00
public byte error_code ;
2017-12-10 21:00:20 +00:00
[MarshalAs(UnmanagedType.ByValArray, SizeConst = SSD_FULL_SIZE - 1)] public byte [ ] sense_buf ;
}
2016-04-13 16:28:50 +01:00
/// <summary>
/// SCSI I/O Request CCB used for the XPT_SCSI_IO and XPT_CONT_TARGET_IO function codes.
/// </summary>
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct CcbScsiio
2016-04-13 16:28:50 +01:00
{
2017-12-20 17:15:26 +00:00
public CcbHdr ccb_h ;
2017-12-21 07:36:47 +00:00
/// <summary>Ptr for next CCB for action</summary>
2016-04-13 16:28:50 +01:00
public IntPtr next_ccb ;
/// <summary>Ptr to mapping info</summary>
public IntPtr req_map ;
/// <summary>Ptr to the data buf/SG list</summary>
public IntPtr data_ptr ;
/// <summary>Data transfer length</summary>
2016-07-28 22:25:26 +01:00
public uint dxfer_len ;
2016-04-13 16:28:50 +01:00
/// <summary>Autosense storage</summary>
2017-12-20 17:15:26 +00:00
public ScsiSenseData sense_data ;
2016-04-13 16:28:50 +01:00
/// <summary>Number of bytes to autosense</summary>
public byte sense_len ;
/// <summary>Number of bytes for the CDB</summary>
public byte cdb_len ;
/// <summary>Number of SG list entries</summary>
2016-07-28 22:25:26 +01:00
public short sglist_cnt ;
2016-04-13 16:28:50 +01:00
/// <summary>Returned SCSI status</summary>
public byte scsi_status ;
/// <summary>Autosense resid length: 2's comp</summary>
public sbyte sense_resid ;
/// <summary>Transfer residual length: 2's comp</summary>
2016-07-28 22:25:26 +01:00
public int resid ;
2017-12-10 23:16:48 +00:00
/// <summary>
/// Area for the CDB send, or pointer to the CDB bytes to send
/// </summary>
const int IOCDBLEN = 16 ;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = IOCDBLEN)] public byte [ ] cdb_bytes ;
2016-04-13 16:28:50 +01:00
/// <summary>Pointer to the message buffer</summary>
public IntPtr msg_ptr ;
/// <summary>Number of bytes for the Message</summary>
2016-07-28 22:25:26 +01:00
public short msg_len ;
2016-04-13 16:28:50 +01:00
/// <summary>What to do for tag queueing. The tag action should be either the define below (to send a non-tagged transaction) or one of the defined scsi tag messages from scsi_message.h.</summary>
public byte tag_action ;
/// <summary>tag id from initator (target mode)</summary>
2016-07-28 22:25:26 +01:00
public uint tag_id ;
2016-04-13 16:28:50 +01:00
/// <summary>initiator id of who selected</summary>
2016-07-28 22:25:26 +01:00
public uint init_id ;
2016-04-13 16:28:50 +01:00
}
2017-12-10 21:00:20 +00:00
/// <summary>
/// SCSI I/O Request CCB used for the XPT_SCSI_IO and XPT_CONT_TARGET_IO function codes.
/// </summary>
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct CcbScsiio64
2017-12-10 21:00:20 +00:00
{
2017-12-20 17:15:26 +00:00
public CcbHdr ccb_h ;
2017-12-21 07:36:47 +00:00
/// <summary>Ptr for next CCB for action</summary>
2017-12-10 21:00:20 +00:00
public IntPtr next_ccb ;
/// <summary>Ptr to mapping info</summary>
public IntPtr req_map ;
/// <summary>Ptr to the data buf/SG list</summary>
public IntPtr data_ptr ;
/// <summary>Data transfer length</summary>
public uint dxfer_len ;
/// <summary>Autosense storage</summary>
2017-12-20 17:15:26 +00:00
public ScsiSenseData sense_data ;
2017-12-10 21:00:20 +00:00
/// <summary>Number of bytes to autosense</summary>
public byte sense_len ;
/// <summary>Number of bytes for the CDB</summary>
public byte cdb_len ;
/// <summary>Number of SG list entries</summary>
public short sglist_cnt ;
/// <summary>Returned SCSI status</summary>
public byte scsi_status ;
/// <summary>Autosense resid length: 2's comp</summary>
public sbyte sense_resid ;
/// <summary>Transfer residual length: 2's comp</summary>
public int resid ;
2017-12-19 20:33:03 +00:00
public uint alignment ;
2017-12-10 23:16:48 +00:00
/// <summary>
/// Area for the CDB send, or pointer to the CDB bytes to send
/// </summary>
const int IOCDBLEN = 16 ;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = IOCDBLEN)] public byte [ ] cdb_bytes ;
2017-12-10 21:00:20 +00:00
/// <summary>Pointer to the message buffer</summary>
public IntPtr msg_ptr ;
/// <summary>Number of bytes for the Message</summary>
public short msg_len ;
/// <summary>What to do for tag queueing. The tag action should be either the define below (to send a non-tagged transaction) or one of the defined scsi tag messages from scsi_message.h.</summary>
public byte tag_action ;
/// <summary>tag id from initator (target mode)</summary>
public uint tag_id ;
/// <summary>initiator id of who selected</summary>
public uint init_id ;
}
2017-12-19 20:33:03 +00:00
2016-04-13 16:28:50 +01:00
/// <summary>
/// ATA I/O Request CCB used for the XPT_ATA_IO function code.
/// </summary>
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct CcbAtaio
2016-04-13 16:28:50 +01:00
{
2017-12-20 17:15:26 +00:00
public CcbHdr ccb_h ;
2017-12-21 07:36:47 +00:00
/// <summary>Ptr for next CCB for action</summary>
2016-04-13 16:28:50 +01:00
public IntPtr next_ccb ;
/// <summary>ATA command register set</summary>
2017-12-20 17:15:26 +00:00
public AtaCmd cmd ;
2016-04-13 16:28:50 +01:00
/// <summary>ATA result register set</summary>
2017-12-20 17:15:26 +00:00
public AtaRes res ;
2016-04-13 16:28:50 +01:00
/// <summary>Ptr to the data buf/SG list</summary>
public IntPtr data_ptr ;
/// <summary>Data transfer length</summary>
2016-07-28 22:25:26 +01:00
public uint dxfer_len ;
2016-04-13 16:28:50 +01:00
/// <summary>Transfer residual length: 2's comp</summary>
2016-07-28 22:25:26 +01:00
public int resid ;
2017-12-11 00:23:13 +00:00
/// <summary>Flags for the rest of the buffer</summary>
public byte ata_flags ;
public uint aux ;
public uint unused ;
2016-04-13 16:28:50 +01:00
}
2017-12-07 17:13:29 +00:00
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct NvmeCommand
2017-12-07 17:13:29 +00:00
{
2017-12-20 17:46:47 +00:00
ushort opc_fuse_rsvd1 ;
2017-12-07 17:13:29 +00:00
/// <summary>
/// command identifier
/// </summary>
public ushort cid ;
/// <summary>
/// namespace identifier
/// </summary>
public uint nsid ;
/// <summary>
/// reserved
/// </summary>
public uint rsvd2 ;
/// <summary>
/// reserved
/// </summary>
public uint rsvd3 ;
/// <summary>
/// metadata pointer
/// </summary>
public ulong mptr ;
/// <summary>
/// prp entry 1
/// </summary>
public ulong prp1 ;
/// <summary>
/// prp entry 2
/// </summary>
public ulong prp2 ;
/// <summary>
/// command-specific
/// </summary>
public uint cdw10 ;
/// <summary>
/// command-specific
/// </summary>
public uint cdw11 ;
/// <summary>
/// command-specific
/// </summary>
public uint cdw12 ;
/// <summary>
/// command-specific
/// </summary>
public uint cdw13 ;
/// <summary>
/// command-specific
/// </summary>
public uint cdw14 ;
/// <summary>
/// command-specific
/// </summary>
public uint cdw15 ;
/// <summary>
/// opcode
/// </summary>
2017-12-20 17:15:26 +00:00
public byte Opc = > ( byte ) ( ( opc_fuse_rsvd1 & 0xFF00 ) > > 8 ) ;
2017-12-07 17:13:29 +00:00
/// <summary>
/// fused operation
/// </summary>
2017-12-20 17:15:26 +00:00
public byte Fuse = > ( byte ) ( ( opc_fuse_rsvd1 & 0xC0 ) > > 6 ) ;
2017-12-07 17:13:29 +00:00
/// <summary>
/// reserved
/// </summary>
2017-12-20 17:15:26 +00:00
public byte Rsvd1 = > ( byte ) ( opc_fuse_rsvd1 & 0x3F ) ;
2017-12-07 17:13:29 +00:00
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct NvmeStatus
2017-12-07 17:13:29 +00:00
{
2017-12-20 17:46:47 +00:00
ushort status ;
2017-12-07 17:13:29 +00:00
/// <summary>
/// phase tag
/// </summary>
2017-12-20 17:15:26 +00:00
public byte P = > ( byte ) ( ( status & 0x8000 ) > > 15 ) ;
2017-12-07 17:13:29 +00:00
/// <summary>
/// status code
/// </summary>
2017-12-20 17:15:26 +00:00
public byte Sc = > ( byte ) ( ( status & 0x7F80 ) > > 7 ) ;
2017-12-07 17:13:29 +00:00
/// <summary>
/// status code type
/// </summary>
2017-12-20 17:15:26 +00:00
public byte Sct = > ( byte ) ( ( status & 0x70 ) > > 4 ) ;
2017-12-07 17:13:29 +00:00
/// <summary>
/// reserved
/// </summary>
2017-12-20 17:15:26 +00:00
public byte Rsvd2 = > ( byte ) ( ( status & 0xC ) > > 15 ) ;
2017-12-07 17:13:29 +00:00
/// <summary>
/// more
/// </summary>
2017-12-20 17:15:26 +00:00
public byte M = > ( byte ) ( ( status & 0x2 ) > > 1 ) ;
2017-12-07 17:13:29 +00:00
/// <summary>
/// do not retry
/// </summary>
2017-12-20 17:15:26 +00:00
public byte Dnr = > ( byte ) ( status & 0x1 ) ;
2017-12-07 17:13:29 +00:00
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct NvmeCompletion
2017-12-07 17:13:29 +00:00
{
/// <summary>
/// command-specific
/// </summary>
public uint cdw0 ;
/// <summary>
/// reserved
/// </summary>
public uint rsvd1 ;
/// <summary>
/// submission queue head pointer
/// </summary>
public ushort sqhd ;
/// <summary>
/// submission queue identifier
/// </summary>
public ushort sqid ;
/// <summary>
/// command identifier
/// </summary>
public ushort cid ;
2017-12-20 17:15:26 +00:00
public NvmeStatus status ;
2017-12-07 17:13:29 +00:00
}
/// <summary>
/// NVMe I/O Request CCB used for the XPT_NVME_IO and XPT_NVME_ADMIN function codes.
/// </summary>
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct CcbNvmeio
2017-12-07 17:13:29 +00:00
{
2017-12-20 17:15:26 +00:00
public CcbHdr ccb_h ;
2017-12-21 07:36:47 +00:00
/// <summary>Ptr for next CCB for action</summary>
2017-12-07 17:13:29 +00:00
public IntPtr next_ccb ;
/// <summary>NVME command, per NVME standard</summary>
2017-12-20 17:15:26 +00:00
public NvmeCommand cmd ;
2017-12-07 17:13:29 +00:00
/// <summary>NVME completion, per NVME standard</summary>
2017-12-20 17:15:26 +00:00
public NvmeCompletion cpl ;
2017-12-07 17:13:29 +00:00
/// <summary>Ptr to the data buf/SG list</summary>
public IntPtr data_ptr ;
/// <summary>Data transfer length</summary>
public uint dxfer_len ;
/// <summary>Number of SG list entries</summary>
public ushort sglist_cnt ;
/// <summary>padding for removed uint32_t</summary>
public ushort unused ;
}
2017-12-07 18:08:09 +00:00
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct PeriphMatchPattern
2017-12-07 18:08:09 +00:00
{
2017-12-20 17:46:47 +00:00
const int DEV_IDLEN = 16 ;
2017-12-07 18:08:09 +00:00
[MarshalAs(UnmanagedType.ByValArray, SizeConst = DEV_IDLEN)] public byte [ ] periph_name ;
public uint unit_number ;
public path_id_t path_id ;
public target_id_t target_id ;
public lun_id_t target_lun ;
2017-12-20 17:15:26 +00:00
public PeriphPatternFlags flags ;
2017-12-07 18:08:09 +00:00
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct DeviceIdMatchPattern
2017-12-07 18:08:09 +00:00
{
public byte id_len ;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 256)] public byte [ ] id ;
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct ScsiStaticInquiryPattern
2017-12-07 18:08:09 +00:00
{
2017-12-20 17:46:47 +00:00
const int SID_VENDOR_SIZE = 8 ;
const int SID_PRODUCT_SIZE = 16 ;
const int SID_REVISION_SIZE = 4 ;
2017-12-07 18:08:09 +00:00
public byte type ;
public byte media_type ;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = SID_VENDOR_SIZE + 1)] public byte [ ] vendor ;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = SID_PRODUCT_SIZE + 1)] public byte [ ] product ;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = SID_REVISION_SIZE + 1)] public byte [ ] revision ;
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Explicit)]
2017-12-20 17:15:26 +00:00
struct DeviceMatchPatternData
2017-12-07 18:08:09 +00:00
{
2017-12-20 17:15:26 +00:00
[FieldOffset(0)] public ScsiStaticInquiryPattern inq_pat ;
[FieldOffset(0)] public DeviceIdMatchPattern devid_pat ;
2017-12-07 18:08:09 +00:00
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct DeviceMatchPattern
2017-12-07 18:08:09 +00:00
{
public path_id_t path_id ;
public target_id_t target_id ;
public lun_id_t target_lun ;
2017-12-20 17:15:26 +00:00
public DevPatternFlags flags ;
public DeviceMatchPatternData data ;
2017-12-07 18:08:09 +00:00
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct BusMatchPattern
2017-12-07 18:08:09 +00:00
{
2017-12-20 17:46:47 +00:00
const int DEV_IDLEN = 16 ;
2017-12-07 18:08:09 +00:00
public path_id_t path_id ;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = DEV_IDLEN)] public byte [ ] dev_name ;
public uint unit_number ;
public uint bus_id ;
2017-12-20 17:15:26 +00:00
BusPatternFlags flags ;
2017-12-07 18:08:09 +00:00
}
[StructLayout(LayoutKind.Explicit)]
2017-12-20 17:15:26 +00:00
struct MatchPattern
2017-12-07 18:08:09 +00:00
{
2017-12-20 17:15:26 +00:00
[FieldOffset(0)] public PeriphMatchPattern periph_pattern ;
[FieldOffset(0)] public DeviceMatchPattern device_pattern ;
[FieldOffset(0)] public BusMatchPattern bus_pattern ;
2017-12-07 18:08:09 +00:00
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct DevMatchPattern
2017-12-07 18:08:09 +00:00
{
2017-12-20 17:15:26 +00:00
public DevMatchType type ;
public MatchPattern pattern ;
2017-12-07 18:08:09 +00:00
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct PeriphMatchResult
2017-12-07 18:08:09 +00:00
{
2017-12-08 03:19:28 +00:00
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)] public byte [ ] periph_name ;
2017-12-07 18:08:09 +00:00
public uint unit_number ;
public path_id_t path_id ;
public target_id_t target_id ;
public lun_id_t target_lun ;
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct MmcCid
2017-12-07 18:08:09 +00:00
{
public uint mid ;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] public byte [ ] pnm ;
public uint psn ;
public ushort oid ;
public ushort mdt_year ;
public byte mdt_month ;
public byte prv ;
public byte fwrev ;
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct MmcParams
2017-12-07 18:08:09 +00:00
{
/// <summary>
/// Card model
/// </summary>
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 40)] public byte [ ] model ;
/// <summary>
/// Card OCR
/// </summary>
public uint card_ocr ;
/// <summary>
/// OCR of the IO portion of the card
/// </summary>
public uint io_ocr ;
/// <summary>
2017-12-21 07:36:47 +00:00
/// Card CID -- raw
2017-12-07 18:08:09 +00:00
/// </summary>
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)] public uint [ ] card_cid ;
/// <summary>
2017-12-21 07:36:47 +00:00
/// Card CID -- parsed
2017-12-07 18:08:09 +00:00
/// </summary>
2017-12-20 17:15:26 +00:00
public MmcCid cid ;
2017-12-07 18:08:09 +00:00
/// <summary>
/// Card CSD -- raw
/// </summary>
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)] public uint [ ] card_csd ;
/// <summary>
/// Card RCA
/// </summary>
public ushort card_rca ;
/// <summary>
/// What kind of card is it
/// </summary>
2017-12-20 17:15:26 +00:00
public MmcCardFeatures card_features ;
2017-12-07 18:08:09 +00:00
public byte sdio_func_count ;
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct DeviceMatchResult
2017-12-07 18:08:09 +00:00
{
public path_id_t path_id ;
public target_id_t target_id ;
public lun_id_t target_lun ;
2017-12-20 17:15:26 +00:00
public CamProto protocol ;
2017-12-07 18:08:09 +00:00
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 256)] public byte [ ] inq_data ;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 512)] public byte [ ] ident_data ;
2017-12-20 17:15:26 +00:00
public DevResultFlags flags ;
public MmcParams mmc_ident_data ;
2017-12-07 18:08:09 +00:00
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct BusMatchResult
2017-12-08 03:19:28 +00:00
{
public path_id_t path_id ;
2017-12-20 17:46:47 +00:00
const int DEV_IDLEN = 16 ;
2017-12-07 18:08:09 +00:00
[MarshalAs(UnmanagedType.ByValArray, SizeConst = DEV_IDLEN)] public byte [ ] dev_name ;
2017-12-08 03:19:28 +00:00
public uint unit_number ;
public uint bus_id ;
2017-12-07 18:08:09 +00:00
}
2017-12-08 03:19:28 +00:00
2017-12-07 18:08:09 +00:00
[StructLayout(LayoutKind.Explicit)]
2017-12-20 17:15:26 +00:00
struct MatchResult
2017-12-07 18:08:09 +00:00
{
2017-12-20 17:15:26 +00:00
[FieldOffset(0)] public PeriphMatchResult periph_result ;
[FieldOffset(0)] public DeviceMatchResult device_result ;
[FieldOffset(0)] public BusMatchResult bus_result ;
2017-12-07 18:08:09 +00:00
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct DevMatchResult
2017-12-07 18:08:09 +00:00
{
2017-12-20 17:15:26 +00:00
public DevMatchType type ;
public MatchResult result ;
2017-12-07 18:08:09 +00:00
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct CcbDmCookie
2017-12-07 18:08:09 +00:00
{
public IntPtr bus ;
public IntPtr target ;
public IntPtr device ;
public IntPtr periph ;
public IntPtr pdrv ;
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct CcbDevPosition
2017-12-07 18:08:09 +00:00
{
2017-12-20 17:15:26 +00:00
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)] public CamGenerations [ ] generations ;
DevPosType position_type ;
public CcbDmCookie cookie ;
2017-12-07 18:08:09 +00:00
}
2017-12-08 03:19:28 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct CcbDevMatch
2017-12-07 18:08:09 +00:00
{
2017-12-20 17:15:26 +00:00
public CcbHdr ccb_h ;
CcbDevMatchStatus status ;
2017-12-07 18:08:09 +00:00
public uint num_patterns ;
public uint pattern_buf_len ;
/// <summary>
/// dev_match_pattern*
/// </summary>
public IntPtr patterns ;
public uint num_matches ;
public uint match_buf_len ;
/// <summary>
/// dev_match_result*
/// </summary>
public IntPtr matches ;
2017-12-20 17:15:26 +00:00
public CcbDevPosition pos ;
2017-12-07 18:08:09 +00:00
}
2017-12-10 21:00:20 +00:00
2017-12-20 17:15:26 +00:00
struct CamDevice
2017-12-10 21:00:20 +00:00
{
2017-12-20 17:46:47 +00:00
const int MAXPATHLEN = 1024 ;
const int DEV_IDLEN = 16 ;
const int SIM_IDLEN = 16 ;
2017-12-10 21:00:20 +00:00
/// <summary>
/// Pathname of the device given by the user. This may be null if the user states the device name and unit number separately.
/// </summary>
2017-12-20 17:15:26 +00:00
[MarshalAs(UnmanagedType.ByValArray, SizeConst = MAXPATHLEN)] public byte [ ] DevicePath ;
2017-12-10 21:00:20 +00:00
/// <summary>
/// Device name given by the user.
/// </summary>
2017-12-20 17:15:26 +00:00
[MarshalAs(UnmanagedType.ByValArray, SizeConst = DEV_IDLEN + 1)] public byte [ ] GivenDevName ;
2017-12-10 21:00:20 +00:00
/// <summary>
/// Unit number given by the user.
/// </summary>
2017-12-20 17:15:26 +00:00
public uint GivenUnitNumber ;
2017-12-10 21:00:20 +00:00
/// <summary>
/// Name of the device, e.g. 'pass'
/// </summary>
2017-12-20 17:15:26 +00:00
[MarshalAs(UnmanagedType.ByValArray, SizeConst = DEV_IDLEN + 1)] public byte [ ] DeviceName ;
2017-12-10 21:00:20 +00:00
/// <summary>
/// Unit number of the passthrough device associated with this particular device.
/// </summary>
2017-12-20 17:15:26 +00:00
public uint DevUnitNum ;
2017-12-10 21:00:20 +00:00
/// <summary>
/// Controller name, e.g. 'ahc'
/// </summary>
2017-12-20 17:15:26 +00:00
[MarshalAs(UnmanagedType.ByValArray, SizeConst = SIM_IDLEN + 1)] public byte [ ] SimName ;
2017-12-10 21:00:20 +00:00
/// <summary>
/// Controller unit number
/// </summary>
2017-12-20 17:15:26 +00:00
public uint SimUnitNumber ;
2017-12-10 21:00:20 +00:00
/// <summary>
/// Controller bus number
/// </summary>
2017-12-20 17:15:26 +00:00
public uint BusId ;
2017-12-10 21:00:20 +00:00
/// <summary>
/// Logical Unit Number
/// </summary>
2017-12-20 17:15:26 +00:00
public lun_id_t TargetLun ;
2017-12-10 21:00:20 +00:00
/// <summary>
/// Target ID
/// </summary>
2017-12-20 17:15:26 +00:00
public target_id_t TargetId ;
2017-12-10 21:00:20 +00:00
/// <summary>
/// System SCSI bus number
/// </summary>
2017-12-20 17:15:26 +00:00
public path_id_t PathId ;
2017-12-10 21:00:20 +00:00
/// <summary>
/// type of peripheral device
/// </summary>
2017-12-20 17:15:26 +00:00
public ushort PdType ;
2017-12-10 21:00:20 +00:00
/// <summary>
/// SCSI Inquiry data
/// </summary>
2017-12-20 17:15:26 +00:00
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 256)] public byte [ ] InqData ;
2017-12-10 21:00:20 +00:00
/// <summary>
/// device serial number
/// </summary>
2017-12-20 17:15:26 +00:00
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 252)] public byte [ ] SerialNum ;
2017-12-10 21:00:20 +00:00
/// <summary>
/// length of the serial number
/// </summary>
2017-12-20 17:15:26 +00:00
public byte SerialNumLen ;
2017-12-10 21:00:20 +00:00
/// <summary>
/// Negotiated sync period
/// </summary>
2017-12-20 17:15:26 +00:00
public byte SyncPeriod ;
2017-12-10 21:00:20 +00:00
/// <summary>
/// Negotiated sync offset
/// </summary>
2017-12-20 17:15:26 +00:00
public byte SyncOffset ;
2017-12-10 21:00:20 +00:00
/// <summary>
/// Negotiated bus width
/// </summary>
2017-12-20 17:15:26 +00:00
public byte BusWidth ;
2017-12-10 21:00:20 +00:00
/// <summary>
/// file descriptor for device
/// </summary>
2017-12-20 17:15:26 +00:00
public int Fd ;
2017-12-10 21:00:20 +00:00
}
2017-12-11 20:52:15 +00:00
[StructLayout(LayoutKind.Sequential)]
2017-12-20 17:15:26 +00:00
struct CcbGetdev
2017-12-11 20:52:15 +00:00
{
2017-12-20 17:15:26 +00:00
public CcbHdr ccb_h ;
public CamProto protocol ;
2017-12-11 20:52:15 +00:00
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 256)] public byte [ ] inq_data ;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 512)] public byte [ ] ident_data ;
/// <summary>
/// device serial number
/// </summary>
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 252)] public byte [ ] serial_num ;
public byte inq_flags ;
/// <summary>
/// length of the serial number
/// </summary>
public byte serial_num_len ;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)] public IntPtr [ ] padding ;
}
2017-12-19 20:33:03 +00:00
}