2011-06-28 01:30:55 +02:00
|
|
|
/** @file
|
|
|
|
Usb Peim definition.
|
|
|
|
|
2018-06-27 15:08:52 +02:00
|
|
|
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
|
|
|
|
2019-04-04 01:05:13 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2011-06-28 01:30:55 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef _PEI_USB_PEIM_H_
|
|
|
|
#define _PEI_USB_PEIM_H_
|
|
|
|
|
|
|
|
|
|
|
|
#include <PiPei.h>
|
|
|
|
|
|
|
|
#include <Ppi/UsbIo.h>
|
|
|
|
#include <Ppi/BlockIo.h>
|
2015-05-20 08:31:28 +02:00
|
|
|
#include <Ppi/BlockIo2.h>
|
2011-06-28 01:30:55 +02:00
|
|
|
|
|
|
|
#include <Library/DebugLib.h>
|
|
|
|
#include <Library/BaseMemoryLib.h>
|
|
|
|
#include <Library/PcdLib.h>
|
|
|
|
|
|
|
|
#include <IndustryStandard/Usb.h>
|
|
|
|
|
|
|
|
#endif
|