]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassDiskInfo.c
5620608b40bff003a005b270746dad172b1311fb
[mirror_edk2.git] / MdeModulePkg / Bus / Usb / UsbMassStorageDxe / UsbMassDiskInfo.c
1 /** @file
2 This file is used to implement the EFI_DISK_INFO_PROTOCOL interface.
3
4 Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8
9 #include "UsbMass.h"
10
11 EFI_DISK_INFO_PROTOCOL gUsbDiskInfoProtocolTemplate = {
12 EFI_DISK_INFO_USB_INTERFACE_GUID,
13 UsbDiskInfoInquiry,
14 UsbDiskInfoIdentify,
15 UsbDiskInfoSenseData,
16 UsbDiskInfoWhichIde
17 };
18
19 /**
20 Initialize the installation of DiskInfo protocol.
21
22 This function prepares for the installation of DiskInfo protocol on the child handle.
23 By default, it installs DiskInfo protocol with USB interface GUID.
24
25 @param[in] UsbMass The pointer of USB_MASS_DEVICE.
26
27 **/
28 VOID
29 InitializeDiskInfo (
30 IN USB_MASS_DEVICE *UsbMass
31 )
32 {
33 CopyMem (&UsbMass->DiskInfo, &gUsbDiskInfoProtocolTemplate, sizeof (gUsbDiskInfoProtocolTemplate));
34 }
35
36 /**
37 Provides inquiry information for the controller type.
38
39 This function is used to get inquiry data. Data format
40 of Identify data is defined by the Interface GUID.
41
42 @param[in] This Pointer to the EFI_DISK_INFO_PROTOCOL instance.
43 @param[in, out] InquiryData Pointer to a buffer for the inquiry data.
44 @param[in, out] InquiryDataSize Pointer to the value for the inquiry data size.
45
46 @retval EFI_SUCCESS The command was accepted without any errors.
47 @retval EFI_NOT_FOUND Device does not support this data class
48 @retval EFI_DEVICE_ERROR Error reading InquiryData from device
49 @retval EFI_BUFFER_TOO_SMALL InquiryDataSize not big enough
50
51 **/
52 EFI_STATUS
53 EFIAPI
54 UsbDiskInfoInquiry (
55 IN EFI_DISK_INFO_PROTOCOL *This,
56 IN OUT VOID *InquiryData,
57 IN OUT UINT32 *InquiryDataSize
58 )
59 {
60 EFI_STATUS Status;
61 USB_MASS_DEVICE *UsbMass;
62
63 UsbMass = USB_MASS_DEVICE_FROM_DISK_INFO (This);
64
65 Status = EFI_BUFFER_TOO_SMALL;
66 if (*InquiryDataSize >= sizeof (UsbMass->InquiryData)) {
67 Status = EFI_SUCCESS;
68 CopyMem (InquiryData, &UsbMass->InquiryData, sizeof (UsbMass->InquiryData));
69 }
70
71 *InquiryDataSize = sizeof (UsbMass->InquiryData);
72 return Status;
73 }
74
75 /**
76 Provides identify information for the controller type.
77
78 This function is used to get identify data. Data format
79 of Identify data is defined by the Interface GUID.
80
81 @param[in] This Pointer to the EFI_DISK_INFO_PROTOCOL
82 instance.
83 @param[in, out] IdentifyData Pointer to a buffer for the identify data.
84 @param[in, out] IdentifyDataSize Pointer to the value for the identify data
85 size.
86
87 @retval EFI_SUCCESS The command was accepted without any errors.
88 @retval EFI_NOT_FOUND Device does not support this data class
89 @retval EFI_DEVICE_ERROR Error reading IdentifyData from device
90 @retval EFI_BUFFER_TOO_SMALL IdentifyDataSize not big enough
91
92 **/
93 EFI_STATUS
94 EFIAPI
95 UsbDiskInfoIdentify (
96 IN EFI_DISK_INFO_PROTOCOL *This,
97 IN OUT VOID *IdentifyData,
98 IN OUT UINT32 *IdentifyDataSize
99 )
100 {
101 return EFI_NOT_FOUND;
102 }
103
104 /**
105 Provides sense data information for the controller type.
106
107 This function is used to get sense data.
108 Data format of Sense data is defined by the Interface GUID.
109
110 @param[in] This Pointer to the EFI_DISK_INFO_PROTOCOL instance.
111 @param[in, out] SenseData Pointer to the SenseData.
112 @param[in, out] SenseDataSize Size of SenseData in bytes.
113 @param[out] SenseDataNumber Pointer to the value for the sense data size.
114
115 @retval EFI_SUCCESS The command was accepted without any errors.
116 @retval EFI_NOT_FOUND Device does not support this data class.
117 @retval EFI_DEVICE_ERROR Error reading SenseData from device.
118 @retval EFI_BUFFER_TOO_SMALL SenseDataSize not big enough.
119
120 **/
121 EFI_STATUS
122 EFIAPI
123 UsbDiskInfoSenseData (
124 IN EFI_DISK_INFO_PROTOCOL *This,
125 IN OUT VOID *SenseData,
126 IN OUT UINT32 *SenseDataSize,
127 OUT UINT8 *SenseDataNumber
128 )
129 {
130 return EFI_NOT_FOUND;
131 }
132
133 /**
134 This function is used to get controller information.
135
136 @param[in] This Pointer to the EFI_DISK_INFO_PROTOCOL instance.
137 @param[out] IdeChannel Pointer to the Ide Channel number. Primary or secondary.
138 @param[out] IdeDevice Pointer to the Ide Device number. Master or slave.
139
140 @retval EFI_SUCCESS IdeChannel and IdeDevice are valid.
141 @retval EFI_UNSUPPORTED This is not an IDE device.
142
143 **/
144 EFI_STATUS
145 EFIAPI
146 UsbDiskInfoWhichIde (
147 IN EFI_DISK_INFO_PROTOCOL *This,
148 OUT UINT32 *IdeChannel,
149 OUT UINT32 *IdeDevice
150 )
151 {
152 return EFI_UNSUPPORTED;
153 }