]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Bus/Pci/UhciDxe/UsbHcMem.h
Minor code enhancement.
[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
913cb9dc 19#define USB_HC_BIT(a) ((UINTN)(1 << (a)))\r
20\r
21#define USB_HC_BIT_IS_SET(Data, Bit) \\r
22 ((BOOLEAN)(((Data) & USB_HC_BIT(Bit)) == USB_HC_BIT(Bit)))\r
23\r
24#define USB_HC_HIGH_32BIT(Addr64) \\r
25 ((UINT32)(RShiftU64((UINTN)(Addr64), 32) & 0XFFFFFFFF))\r
26\r
913cb9dc 27\r
fd0d4841 28typedef struct _USBHC_MEM_BLOCK {\r
913cb9dc 29 UINT8 *Bits; // Bit array to record which unit is allocated\r
30 UINTN BitsLen;\r
31 UINT8 *Buf;\r
32 UINT8 *BufHost;\r
33 UINTN BufLen; // Memory size in bytes\r
34 VOID *Mapping;\r
fd0d4841 35 struct _USBHC_MEM_BLOCK *Next;\r
36} USBHC_MEM_BLOCK;\r
913cb9dc 37\r
38//\r
39// USBHC_MEM_POOL is used to manage the memory used by USB\r
40// host controller. EHCI requires the control memory and transfer\r
41// data to be on the same 4G memory.\r
42//\r
43typedef struct _USBHC_MEM_POOL {\r
44 EFI_PCI_IO_PROTOCOL *PciIo;\r
45 BOOLEAN Check4G;\r
46 UINT32 Which4G;\r
47 USBHC_MEM_BLOCK *Head;\r
48} USBHC_MEM_POOL;\r
49\r
ab6495ea 50typedef enum {\r
913cb9dc 51 USBHC_MEM_UNIT = 64, // Memory allocation unit, must be 2^n, n>4\r
52\r
53 USBHC_MEM_UNIT_MASK = USBHC_MEM_UNIT - 1,\r
c52fa98c 54 USBHC_MEM_DEFAULT_PAGES = 16\r
ab6495ea 55}UHCI_MEM_UNIT_DATA;\r
913cb9dc 56\r
57#define USBHC_MEM_ROUND(Len) (((Len) + USBHC_MEM_UNIT_MASK) & (~USBHC_MEM_UNIT_MASK))\r
58\r
59//\r
60// Advance the byte and bit to the next bit, adjust byte accordingly.\r
61//\r
62#define NEXT_BIT(Byte, Bit) \\r
63 do { \\r
64 (Bit)++; \\r
65 if ((Bit) > 7) { \\r
66 (Byte)++; \\r
67 (Bit) = 0; \\r
68 } \\r
69 } while (0)\r
70\r
71\r
ab6495ea 72/**\r
73 Initialize the memory management pool for the host controller.\r
74\r
75 @param PciIo The PciIo that can be used to access the host controller.\r
76 @param Check4G Whether the host controller requires allocated memory\r
77 from one 4G address space.\r
78 @param Which4G The 4G memory area each memory allocated should be from.\r
913cb9dc 79\r
ab6495ea 80 @retval EFI_SUCCESS The memory pool is initialized.\r
81 @retval EFI_OUT_OF_RESOURCE Fail to init the memory pool.\r
82\r
83**/\r
913cb9dc 84USBHC_MEM_POOL *\r
85UsbHcInitMemPool (\r
86 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
87 IN BOOLEAN Check4G,\r
88 IN UINT32 Which4G\r
ed66e1bc 89 );\r
913cb9dc 90\r
91\r
913cb9dc 92/**\r
ab6495ea 93 Release the memory management pool.\r
913cb9dc 94\r
ab6495ea 95 @param Pool The USB memory pool to free.\r
913cb9dc 96\r
ab6495ea 97 @return EFI_SUCCESS The memory pool is freed.\r
98 @return EFI_DEVICE_ERROR Failed to free the memory pool.\r
913cb9dc 99\r
100**/\r
101EFI_STATUS\r
102UsbHcFreeMemPool (\r
103 IN USBHC_MEM_POOL *Pool\r
ed66e1bc 104 );\r
913cb9dc 105\r
106\r
107\r
108/**\r
109 Allocate some memory from the host controller's memory pool\r
110 which can be used to communicate with host controller.\r
111\r
ab6495ea 112 @param Pool The host controller's memory pool.\r
113 @param Size Size of the memory to allocate.\r
913cb9dc 114\r
ab6495ea 115 @return The allocated memory or NULL.\r
913cb9dc 116\r
117**/\r
118VOID *\r
119UsbHcAllocateMem (\r
120 IN USBHC_MEM_POOL *Pool,\r
121 IN UINTN Size\r
ed66e1bc 122 );\r
913cb9dc 123\r
124\r
125\r
126/**\r
ab6495ea 127 Free the allocated memory back to the memory pool.\r
913cb9dc 128\r
ab6495ea 129 @param Pool The memory pool of the host controller.\r
130 @param Mem The memory to free.\r
131 @param Size The size of the memory to free.\r
913cb9dc 132\r
ab6495ea 133 @return None.\r
913cb9dc 134\r
135**/\r
136VOID\r
137UsbHcFreeMem (\r
138 IN USBHC_MEM_POOL *Pool,\r
139 IN VOID *Mem,\r
140 IN UINTN Size\r
ed66e1bc 141 );\r
913cb9dc 142#endif\r