]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Bus/Pci/UhciDxe/UsbHcMem.h
clean up the un-suitable ';' location when declaring the functions.
[mirror_edk2.git] / MdeModulePkg / Bus / Pci / UhciDxe / UsbHcMem.h
CommitLineData
913cb9dc 1/** @file\r
2\r
ab6495ea 3 This file contains the definination for host controller memory management routines\r
4\r
913cb9dc 5Copyright (c) 2007, Intel Corporation\r
6All rights reserved. This program and the accompanying materials\r
7are licensed and made available under the terms and conditions of the BSD License\r
8which accompanies this distribution. The full text of the license may be found at\r
9http://opensource.org/licenses/bsd-license.php\r
10\r
11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
913cb9dc 14**/\r
15\r
16#ifndef _EFI_EHCI_MEM_H_\r
17#define _EFI_EHCI_MEM_H_\r
18\r
19#include <IndustryStandard/Pci22.h>\r
20\r
21#define USB_HC_BIT(a) ((UINTN)(1 << (a)))\r
22\r
23#define USB_HC_BIT_IS_SET(Data, Bit) \\r
24 ((BOOLEAN)(((Data) & USB_HC_BIT(Bit)) == USB_HC_BIT(Bit)))\r
25\r
26#define USB_HC_HIGH_32BIT(Addr64) \\r
27 ((UINT32)(RShiftU64((UINTN)(Addr64), 32) & 0XFFFFFFFF))\r
28\r
29typedef struct _USBHC_MEM_BLOCK USBHC_MEM_BLOCK;\r
30\r
c52fa98c 31struct _USBHC_MEM_BLOCK {\r
913cb9dc 32 UINT8 *Bits; // Bit array to record which unit is allocated\r
33 UINTN BitsLen;\r
34 UINT8 *Buf;\r
35 UINT8 *BufHost;\r
36 UINTN BufLen; // Memory size in bytes\r
37 VOID *Mapping;\r
38 USBHC_MEM_BLOCK *Next;\r
c52fa98c 39};\r
913cb9dc 40\r
41//\r
42// USBHC_MEM_POOL is used to manage the memory used by USB\r
43// host controller. EHCI requires the control memory and transfer\r
44// data to be on the same 4G memory.\r
45//\r
46typedef struct _USBHC_MEM_POOL {\r
47 EFI_PCI_IO_PROTOCOL *PciIo;\r
48 BOOLEAN Check4G;\r
49 UINT32 Which4G;\r
50 USBHC_MEM_BLOCK *Head;\r
51} USBHC_MEM_POOL;\r
52\r
ab6495ea 53typedef enum {\r
913cb9dc 54 USBHC_MEM_UNIT = 64, // Memory allocation unit, must be 2^n, n>4\r
55\r
56 USBHC_MEM_UNIT_MASK = USBHC_MEM_UNIT - 1,\r
c52fa98c 57 USBHC_MEM_DEFAULT_PAGES = 16\r
ab6495ea 58}UHCI_MEM_UNIT_DATA;\r
913cb9dc 59\r
60#define USBHC_MEM_ROUND(Len) (((Len) + USBHC_MEM_UNIT_MASK) & (~USBHC_MEM_UNIT_MASK))\r
61\r
62//\r
63// Advance the byte and bit to the next bit, adjust byte accordingly.\r
64//\r
65#define NEXT_BIT(Byte, Bit) \\r
66 do { \\r
67 (Bit)++; \\r
68 if ((Bit) > 7) { \\r
69 (Byte)++; \\r
70 (Bit) = 0; \\r
71 } \\r
72 } while (0)\r
73\r
74\r
ab6495ea 75/**\r
76 Initialize the memory management pool for the host controller.\r
77\r
78 @param PciIo The PciIo that can be used to access the host controller.\r
79 @param Check4G Whether the host controller requires allocated memory\r
80 from one 4G address space.\r
81 @param Which4G The 4G memory area each memory allocated should be from.\r
913cb9dc 82\r
ab6495ea 83 @retval EFI_SUCCESS The memory pool is initialized.\r
84 @retval EFI_OUT_OF_RESOURCE Fail to init the memory pool.\r
85\r
86**/\r
913cb9dc 87USBHC_MEM_POOL *\r
88UsbHcInitMemPool (\r
89 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
90 IN BOOLEAN Check4G,\r
91 IN UINT32 Which4G\r
ed66e1bc 92 );\r
913cb9dc 93\r
94\r
913cb9dc 95/**\r
ab6495ea 96 Release the memory management pool.\r
913cb9dc 97\r
ab6495ea 98 @param Pool The USB memory pool to free.\r
913cb9dc 99\r
ab6495ea 100 @return EFI_SUCCESS The memory pool is freed.\r
101 @return EFI_DEVICE_ERROR Failed to free the memory pool.\r
913cb9dc 102\r
103**/\r
104EFI_STATUS\r
105UsbHcFreeMemPool (\r
106 IN USBHC_MEM_POOL *Pool\r
ed66e1bc 107 );\r
913cb9dc 108\r
109\r
110\r
111/**\r
112 Allocate some memory from the host controller's memory pool\r
113 which can be used to communicate with host controller.\r
114\r
ab6495ea 115 @param Pool The host controller's memory pool.\r
116 @param Size Size of the memory to allocate.\r
913cb9dc 117\r
ab6495ea 118 @return The allocated memory or NULL.\r
913cb9dc 119\r
120**/\r
121VOID *\r
122UsbHcAllocateMem (\r
123 IN USBHC_MEM_POOL *Pool,\r
124 IN UINTN Size\r
ed66e1bc 125 );\r
913cb9dc 126\r
127\r
128\r
129/**\r
ab6495ea 130 Free the allocated memory back to the memory pool.\r
913cb9dc 131\r
ab6495ea 132 @param Pool The memory pool of the host controller.\r
133 @param Mem The memory to free.\r
134 @param Size The size of the memory to free.\r
913cb9dc 135\r
ab6495ea 136 @return None.\r
913cb9dc 137\r
138**/\r
139VOID\r
140UsbHcFreeMem (\r
141 IN USBHC_MEM_POOL *Pool,\r
142 IN VOID *Mem,\r
143 IN UINTN Size\r
ed66e1bc 144 );\r
913cb9dc 145#endif\r