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