TianoCore EDK2 master
Loading...
Searching...
No Matches
PvScsi.h
Go to the documentation of this file.
1
12#ifndef __PVSCSI_DXE_H_
13#define __PVSCSI_DXE_H_
14
15#include <Library/DebugLib.h>
17
18typedef struct {
19 EFI_PHYSICAL_ADDRESS DeviceAddress;
20 VOID *Mapping;
22
23typedef struct {
24 PVSCSI_RINGS_STATE *RingState;
25 PVSCSI_DMA_DESC RingStateDmaDesc;
26
27 PVSCSI_RING_REQ_DESC *RingReqs;
28 PVSCSI_DMA_DESC RingReqsDmaDesc;
29
30 PVSCSI_RING_CMP_DESC *RingCmps;
31 PVSCSI_DMA_DESC RingCmpsDmaDesc;
33
34typedef struct {
35 //
36 // As EFI_EXT_SCSI_PASS_THRU_SCSI_REQUEST_PACKET.SenseDataLength is defined
37 // as UINT8, defining here SenseData size to MAX_UINT8 will guarantee it
38 // cannot overflow when passed to device.
39 //
40 UINT8 SenseData[MAX_UINT8];
41 //
42 // This size of the data is arbitrarily chosen.
43 // It seems to be sufficient for all I/O requests sent through
44 // EFI_SCSI_PASS_THRU_PROTOCOL.PassThru() for common boot scenarios.
45 //
46 UINT8 Data[0x2000];
48
49#define PVSCSI_SIG SIGNATURE_32 ('P', 'S', 'C', 'S')
50
51typedef struct {
52 UINT32 Signature;
54 EFI_EVENT ExitBoot;
55 UINT64 OriginalPciAttributes;
56 PVSCSI_RING_DESC RingDesc;
57 PVSCSI_DMA_BUFFER *DmaBuf;
58 PVSCSI_DMA_DESC DmaBufDmaDesc;
59 UINT8 MaxTarget;
60 UINT8 MaxLun;
61 UINTN WaitForCmpStallInUsecs;
63 EFI_EXT_SCSI_PASS_THRU_MODE PassThruMode;
65
66#define PVSCSI_FROM_PASS_THRU(PassThruPointer) \
67 CR (PassThruPointer, PVSCSI_DEV, PassThru, PVSCSI_SIG)
68
69#define PVSCSI_DMA_BUF_DEV_ADDR(Dev, MemberName) \
70 (Dev->DmaBufDmaDesc.DeviceAddress + OFFSET_OF(PVSCSI_DMA_BUFFER, MemberName))
71
72#endif // __PVSCSI_DXE_H_
UINT64 UINTN
UINT64 EFI_PHYSICAL_ADDRESS
Definition: UefiBaseType.h:50
VOID * EFI_EVENT
Definition: UefiBaseType.h:37