VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware/OvmfPkg/PvScsiDxe/PvScsi.h

Last change on this file was 99404, checked in by vboxsync, 17 months ago

Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643

  • Property svn:eol-style set to native
File size: 2.2 KB
Line 
1/** @file
2
3 Internal definitions for the PVSCSI driver, which produces Extended SCSI
4 Pass Thru Protocol instances for pvscsi devices.
5
6 Copyright (C) 2020, Oracle and/or its affiliates.
7
8 SPDX-License-Identifier: BSD-2-Clause-Patent
9
10**/
11
12#ifndef __PVSCSI_DXE_H_
13#define __PVSCSI_DXE_H_
14
15#include <Library/DebugLib.h>
16#include <Protocol/ScsiPassThruExt.h>
17
18typedef struct {
19 EFI_PHYSICAL_ADDRESS DeviceAddress;
20 VOID *Mapping;
21} PVSCSI_DMA_DESC;
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;
32} PVSCSI_RING_DESC;
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];
47} PVSCSI_DMA_BUFFER;
48
49#define PVSCSI_SIG SIGNATURE_32 ('P', 'S', 'C', 'S')
50
51typedef struct {
52 UINT32 Signature;
53 EFI_PCI_IO_PROTOCOL *PciIo;
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;
62 EFI_EXT_SCSI_PASS_THRU_PROTOCOL PassThru;
63 EFI_EXT_SCSI_PASS_THRU_MODE PassThruMode;
64} PVSCSI_DEV;
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_
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette