1 /** @file 2 GUIDs to identify devices that are not on a discoverable bus but can be 3 controlled by a standard class driver 4 5 Copyright (c) 2016, Linaro, Ltd. All rights reserved.<BR> 6 7 This program and the accompanying materials 8 are licensed and made available under the terms and conditions of the BSD License 9 which accompanies this distribution. The full text of the license may be found at 10 http://opensource.org/licenses/bsd-license.php 11 12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 14 15 **/ 16 17 #ifndef __NON_DISCOVERABLE_DEVICE_GUID_H__ 18 #define __NON_DISCOVERABLE_DEVICE_GUID_H__ 19 20 #define EDKII_NON_DISCOVERABLE_AHCI_DEVICE_GUID \ 21 { 0xC7D35798, 0xE4D2, 0x4A93, {0xB1, 0x45, 0x54, 0x88, 0x9F, 0x02, 0x58, 0x4B } } 22 23 #define EDKII_NON_DISCOVERABLE_AMBA_DEVICE_GUID \ 24 { 0x94440339, 0xCC93, 0x4506, {0xB4, 0xC6, 0xEE, 0x8D, 0x0F, 0x4C, 0xA1, 0x91 } } 25 26 #define EDKII_NON_DISCOVERABLE_EHCI_DEVICE_GUID \ 27 { 0xEAEE5615, 0x0CFD, 0x45FC, {0x87, 0x69, 0xA0, 0xD8, 0x56, 0x95, 0xAF, 0x85 } } 28 29 #define EDKII_NON_DISCOVERABLE_NVME_DEVICE_GUID \ 30 { 0xC5F25542, 0x2A79, 0x4A26, {0x81, 0xBB, 0x4E, 0xA6, 0x32, 0x33, 0xB3, 0x09 } } 31 32 #define EDKII_NON_DISCOVERABLE_OHCI_DEVICE_GUID \ 33 { 0xB20005B0, 0xBB2D, 0x496F, {0x86, 0x9C, 0x23, 0x0B, 0x44, 0x79, 0xE7, 0xD1 } } 34 35 #define EDKII_NON_DISCOVERABLE_SDHCI_DEVICE_GUID \ 36 { 0x1DD1D619, 0xF9B8, 0x463E, {0x86, 0x81, 0xD1, 0xDC, 0x7C, 0x07, 0xB7, 0x2C } } 37 38 #define EDKII_NON_DISCOVERABLE_UFS_DEVICE_GUID \ 39 { 0x2EA77912, 0x80A8, 0x4947, {0xBE, 0x69, 0xCD, 0xD0, 0x0A, 0xFB, 0xE5, 0x56 } } 40 41 #define EDKII_NON_DISCOVERABLE_UHCI_DEVICE_GUID \ 42 { 0xA8CDA0A2, 0x4F37, 0x4A1B, {0x8E, 0x10, 0x8E, 0xF3, 0xCC, 0x3B, 0xF3, 0xA8 } } 43 44 #define EDKII_NON_DISCOVERABLE_XHCI_DEVICE_GUID \ 45 { 0xB1BE0BC5, 0x6C28, 0x442D, {0xAA, 0x37, 0x15, 0x1B, 0x42, 0x57, 0xBD, 0x78 } } 46 47 48 extern EFI_GUID gEdkiiNonDiscoverableAhciDeviceGuid; 49 extern EFI_GUID gEdkiiNonDiscoverableAmbaDeviceGuid; 50 extern EFI_GUID gEdkiiNonDiscoverableEhciDeviceGuid; 51 extern EFI_GUID gEdkiiNonDiscoverableNvmeDeviceGuid; 52 extern EFI_GUID gEdkiiNonDiscoverableOhciDeviceGuid; 53 extern EFI_GUID gEdkiiNonDiscoverableSdhciDeviceGuid; 54 extern EFI_GUID gEdkiiNonDiscoverableUfsDeviceGuid; 55 extern EFI_GUID gEdkiiNonDiscoverableUhciDeviceGuid; 56 extern EFI_GUID gEdkiiNonDiscoverableXhciDeviceGuid; 57 58 #endif 59