]>
Commit | Line | Data |
---|---|---|
1 | /** @file\r | |
2 | *\r | |
3 | * Copyright (c) 2011, ARM Limited. All rights reserved.\r | |
4 | *\r | |
5 | * This program and the accompanying materials\r | |
6 | * are licensed and made available under the terms and conditions of the BSD License\r | |
7 | * which accompanies this distribution. The full text of the license may be found at\r | |
8 | * http://opensource.org/licenses/bsd-license.php\r | |
9 | *\r | |
10 | * THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
11 | * WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
12 | *\r | |
13 | **/\r | |
14 | \r | |
15 | #ifndef _MMC_HOST_DXE_H_\r | |
16 | #define _MMC_HOST_DXE_H_\r | |
17 | \r | |
18 | #include <Uefi.h>\r | |
19 | \r | |
20 | #include <Library/BaseLib.h>\r | |
21 | #include <Library/MemoryAllocationLib.h>\r | |
22 | #include <Library/DebugLib.h>\r | |
23 | #include <Library/DevicePathLib.h>\r | |
24 | #include <Library/IoLib.h>\r | |
25 | #include <Library/PcdLib.h>\r | |
26 | #include <Library/UefiBootServicesTableLib.h>\r | |
27 | #include <Library/BaseMemoryLib.h>\r | |
28 | #include <Library/OmapLib.h>\r | |
29 | #include <Library/OmapDmaLib.h>\r | |
30 | #include <Library/DmaLib.h>\r | |
31 | \r | |
32 | #include <Protocol/EmbeddedExternalDevice.h>\r | |
33 | #include <Protocol/BlockIo.h>\r | |
34 | #include <Protocol/DevicePath.h>\r | |
35 | #include <Protocol/MmcHost.h>\r | |
36 | \r | |
37 | #include <Omap3530/Omap3530.h>\r | |
38 | #include <TPS65950.h>\r | |
39 | \r | |
40 | #define MAX_RETRY_COUNT (100*5)\r | |
41 | \r | |
42 | extern EFI_BLOCK_IO_PROTOCOL gBlockIo;\r | |
43 | \r | |
44 | #endif\r |