]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Pci/EhciDxe/UsbHcMem.c
Adding a segment code to make sure that the EHCI controller get attached to the EHCI...
[mirror_edk2.git] / MdeModulePkg / Bus / Pci / EhciDxe / UsbHcMem.c
1 /** @file
2
3 Routine procedures for memory allocate/free.
4
5 Copyright (c) 2007 - 2009, Intel Corporation
6 All rights reserved. This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16
17 #include "Ehci.h"
18
19
20 /**
21 Allocate a block of memory to be used by the buffer pool.
22
23 @param Pool The buffer pool to allocate memory for.
24 @param Pages How many pages to allocate.
25
26 @return The allocated memory block or NULL if failed.
27
28 **/
29 USBHC_MEM_BLOCK *
30 UsbHcAllocMemBlock (
31 IN USBHC_MEM_POOL *Pool,
32 IN UINTN Pages
33 )
34 {
35 USBHC_MEM_BLOCK *Block;
36 EFI_PCI_IO_PROTOCOL *PciIo;
37 VOID *BufHost;
38 VOID *Mapping;
39 EFI_PHYSICAL_ADDRESS MappedAddr;
40 UINTN Bytes;
41 EFI_STATUS Status;
42
43 PciIo = Pool->PciIo;
44
45 Block = AllocateZeroPool (sizeof (USBHC_MEM_BLOCK));
46 if (Block == NULL) {
47 return NULL;
48 }
49
50 //
51 // each bit in the bit array represents USBHC_MEM_UNIT
52 // bytes of memory in the memory block.
53 //
54 ASSERT (USBHC_MEM_UNIT * 8 <= EFI_PAGE_SIZE);
55
56 Block->BufLen = EFI_PAGES_TO_SIZE (Pages);
57 Block->BitsLen = Block->BufLen / (USBHC_MEM_UNIT * 8);
58 Block->Bits = AllocateZeroPool (Block->BitsLen);
59
60 if (Block->Bits == NULL) {
61 gBS->FreePool (Block);
62 return NULL;
63 }
64
65 //
66 // Allocate the number of Pages of memory, then map it for
67 // bus master read and write.
68 //
69 Status = PciIo->AllocateBuffer (
70 PciIo,
71 AllocateAnyPages,
72 EfiBootServicesData,
73 Pages,
74 &BufHost,
75 0
76 );
77
78 if (EFI_ERROR (Status)) {
79 goto FREE_BITARRAY;
80 }
81
82 Bytes = EFI_PAGES_TO_SIZE (Pages);
83 Status = PciIo->Map (
84 PciIo,
85 EfiPciIoOperationBusMasterCommonBuffer,
86 BufHost,
87 &Bytes,
88 &MappedAddr,
89 &Mapping
90 );
91
92 if (EFI_ERROR (Status) || (Bytes != EFI_PAGES_TO_SIZE (Pages))) {
93 goto FREE_BUFFER;
94 }
95
96 //
97 // Check whether the data structure used by the host controller
98 // should be restricted into the same 4G
99 //
100 if (Pool->Check4G && (Pool->Which4G != USB_HC_HIGH_32BIT (MappedAddr))) {
101 PciIo->Unmap (PciIo, Mapping);
102 goto FREE_BUFFER;
103 }
104
105 Block->BufHost = BufHost;
106 Block->Buf = (UINT8 *) ((UINTN) MappedAddr);
107 Block->Mapping = Mapping;
108
109 return Block;
110
111 FREE_BUFFER:
112 PciIo->FreeBuffer (PciIo, Pages, BufHost);
113
114 FREE_BITARRAY:
115 gBS->FreePool (Block->Bits);
116 gBS->FreePool (Block);
117 return NULL;
118 }
119
120
121 /**
122 Free the memory block from the memory pool.
123
124 @param Pool The memory pool to free the block from.
125 @param Block The memory block to free.
126
127 **/
128 VOID
129 UsbHcFreeMemBlock (
130 IN USBHC_MEM_POOL *Pool,
131 IN USBHC_MEM_BLOCK *Block
132 )
133 {
134 EFI_PCI_IO_PROTOCOL *PciIo;
135
136 ASSERT ((Pool != NULL) && (Block != NULL));
137
138 PciIo = Pool->PciIo;
139
140 //
141 // Unmap the common buffer then free the structures
142 //
143 PciIo->Unmap (PciIo, Block->Mapping);
144 PciIo->FreeBuffer (PciIo, EFI_SIZE_TO_PAGES (Block->BufLen), Block->BufHost);
145
146 gBS->FreePool (Block->Bits);
147 gBS->FreePool (Block);
148 }
149
150
151 /**
152 Alloc some memory from the block.
153
154 @param Block The memory block to allocate memory from.
155 @param Units Number of memory units to allocate.
156
157 @return The pointer to the allocated memory. If couldn't allocate the needed memory,
158 the return value is NULL.
159
160 **/
161 VOID *
162 UsbHcAllocMemFromBlock (
163 IN USBHC_MEM_BLOCK *Block,
164 IN UINTN Units
165 )
166 {
167 UINTN Byte;
168 UINT8 Bit;
169 UINTN StartByte;
170 UINT8 StartBit;
171 UINTN Available;
172 UINTN Count;
173
174 ASSERT ((Block != 0) && (Units != 0));
175
176 StartByte = 0;
177 StartBit = 0;
178 Available = 0;
179
180 for (Byte = 0, Bit = 0; Byte < Block->BitsLen;) {
181 //
182 // If current bit is zero, the corresponding memory unit is
183 // available, otherwise we need to restart our searching.
184 // Available counts the consective number of zero bit.
185 //
186 if (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit)) {
187 Available++;
188
189 if (Available >= Units) {
190 break;
191 }
192
193 NEXT_BIT (Byte, Bit);
194
195 } else {
196 NEXT_BIT (Byte, Bit);
197
198 Available = 0;
199 StartByte = Byte;
200 StartBit = Bit;
201 }
202 }
203
204 if (Available < Units) {
205 return NULL;
206 }
207
208 //
209 // Mark the memory as allocated
210 //
211 Byte = StartByte;
212 Bit = StartBit;
213
214 for (Count = 0; Count < Units; Count++) {
215 ASSERT (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit));
216
217 Block->Bits[Byte] = (UINT8) (Block->Bits[Byte] | USB_HC_BIT (Bit));
218 NEXT_BIT (Byte, Bit);
219 }
220
221 return Block->Buf + (StartByte * 8 + StartBit) * USBHC_MEM_UNIT;
222 }
223
224
225 /**
226 Insert the memory block to the pool's list of the blocks.
227
228 @param Head The head of the memory pool's block list.
229 @param Block The memory block to insert.
230
231 **/
232 VOID
233 UsbHcInsertMemBlockToPool (
234 IN USBHC_MEM_BLOCK *Head,
235 IN USBHC_MEM_BLOCK *Block
236 )
237 {
238 ASSERT ((Head != NULL) && (Block != NULL));
239 Block->Next = Head->Next;
240 Head->Next = Block;
241 }
242
243
244 /**
245 Is the memory block empty?
246
247 @param Block The memory block to check.
248
249 @retval TRUE The memory block is empty.
250 @retval FALSE The memory block isn't empty.
251
252 **/
253 BOOLEAN
254 UsbHcIsMemBlockEmpty (
255 IN USBHC_MEM_BLOCK *Block
256 )
257 {
258 UINTN Index;
259
260 for (Index = 0; Index < Block->BitsLen; Index++) {
261 if (Block->Bits[Index] != 0) {
262 return FALSE;
263 }
264 }
265
266 return TRUE;
267 }
268
269
270 /**
271 Unlink the memory block from the pool's list.
272
273 @param Head The block list head of the memory's pool.
274 @param BlockToUnlink The memory block to unlink.
275
276 **/
277 VOID
278 UsbHcUnlinkMemBlock (
279 IN USBHC_MEM_BLOCK *Head,
280 IN USBHC_MEM_BLOCK *BlockToUnlink
281 )
282 {
283 USBHC_MEM_BLOCK *Block;
284
285 ASSERT ((Head != NULL) && (BlockToUnlink != NULL));
286
287 for (Block = Head; Block != NULL; Block = Block->Next) {
288 if (Block->Next == BlockToUnlink) {
289 Block->Next = BlockToUnlink->Next;
290 BlockToUnlink->Next = NULL;
291 break;
292 }
293 }
294 }
295
296
297 /**
298 Initialize the memory management pool for the host controller.
299
300 @param PciIo The PciIo that can be used to access the host controller.
301 @param Check4G Whether the host controller requires allocated memory
302 from one 4G address space.
303 @param Which4G The 4G memory area each memory allocated should be from.
304
305 @retval EFI_SUCCESS The memory pool is initialized.
306 @retval EFI_OUT_OF_RESOURCE Fail to init the memory pool.
307
308 **/
309 USBHC_MEM_POOL *
310 UsbHcInitMemPool (
311 IN EFI_PCI_IO_PROTOCOL *PciIo,
312 IN BOOLEAN Check4G,
313 IN UINT32 Which4G
314 )
315 {
316 USBHC_MEM_POOL *Pool;
317
318 Pool = AllocatePool (sizeof (USBHC_MEM_POOL));
319
320 if (Pool == NULL) {
321 return Pool;
322 }
323
324 Pool->PciIo = PciIo;
325 Pool->Check4G = Check4G;
326 Pool->Which4G = Which4G;
327 Pool->Head = UsbHcAllocMemBlock (Pool, USBHC_MEM_DEFAULT_PAGES);
328
329 if (Pool->Head == NULL) {
330 gBS->FreePool (Pool);
331 Pool = NULL;
332 }
333
334 return Pool;
335 }
336
337
338 /**
339 Release the memory management pool.
340
341 @param Pool The USB memory pool to free.
342
343 @retval EFI_SUCCESS The memory pool is freed.
344 @retval EFI_DEVICE_ERROR Failed to free the memory pool.
345
346 **/
347 EFI_STATUS
348 UsbHcFreeMemPool (
349 IN USBHC_MEM_POOL *Pool
350 )
351 {
352 USBHC_MEM_BLOCK *Block;
353
354 ASSERT (Pool->Head != NULL);
355
356 //
357 // Unlink all the memory blocks from the pool, then free them.
358 // UsbHcUnlinkMemBlock can't be used to unlink and free the
359 // first block.
360 //
361 for (Block = Pool->Head->Next; Block != NULL; Block = Pool->Head->Next) {
362 UsbHcUnlinkMemBlock (Pool->Head, Block);
363 UsbHcFreeMemBlock (Pool, Block);
364 }
365
366 UsbHcFreeMemBlock (Pool, Pool->Head);
367 gBS->FreePool (Pool);
368 return EFI_SUCCESS;
369 }
370
371
372 /**
373 Allocate some memory from the host controller's memory pool
374 which can be used to communicate with host controller.
375
376 @param Pool The host controller's memory pool.
377 @param Size Size of the memory to allocate.
378
379 @return The allocated memory or NULL.
380
381 **/
382 VOID *
383 UsbHcAllocateMem (
384 IN USBHC_MEM_POOL *Pool,
385 IN UINTN Size
386 )
387 {
388 USBHC_MEM_BLOCK *Head;
389 USBHC_MEM_BLOCK *Block;
390 USBHC_MEM_BLOCK *NewBlock;
391 VOID *Mem;
392 UINTN AllocSize;
393 UINTN Pages;
394
395 Mem = NULL;
396 AllocSize = USBHC_MEM_ROUND (Size);
397 Head = Pool->Head;
398 ASSERT (Head != NULL);
399
400 //
401 // First check whether current memory blocks can satisfy the allocation.
402 //
403 for (Block = Head; Block != NULL; Block = Block->Next) {
404 Mem = UsbHcAllocMemFromBlock (Block, AllocSize / USBHC_MEM_UNIT);
405
406 if (Mem != NULL) {
407 ZeroMem (Mem, Size);
408 break;
409 }
410 }
411
412 if (Mem != NULL) {
413 return Mem;
414 }
415
416 //
417 // Create a new memory block if there is not enough memory
418 // in the pool. If the allocation size is larger than the
419 // default page number, just allocate a large enough memory
420 // block. Otherwise allocate default pages.
421 //
422 if (AllocSize > EFI_PAGES_TO_SIZE (USBHC_MEM_DEFAULT_PAGES)) {
423 Pages = EFI_SIZE_TO_PAGES (AllocSize) + 1;
424 } else {
425 Pages = USBHC_MEM_DEFAULT_PAGES;
426 }
427
428 NewBlock = UsbHcAllocMemBlock (Pool, Pages);
429
430 if (NewBlock == NULL) {
431 DEBUG ((EFI_D_INFO, "UsbHcAllocateMem: failed to allocate block\n"));
432 return NULL;
433 }
434
435 //
436 // Add the new memory block to the pool, then allocate memory from it
437 //
438 UsbHcInsertMemBlockToPool (Head, NewBlock);
439 Mem = UsbHcAllocMemFromBlock (NewBlock, AllocSize / USBHC_MEM_UNIT);
440
441 if (Mem != NULL) {
442 ZeroMem (Mem, Size);
443 }
444
445 return Mem;
446 }
447
448
449 /**
450 Free the allocated memory back to the memory pool.
451
452 @param Pool The memory pool of the host controller.
453 @param Mem The memory to free.
454 @param Size The size of the memory to free.
455
456 **/
457 VOID
458 UsbHcFreeMem (
459 IN USBHC_MEM_POOL *Pool,
460 IN VOID *Mem,
461 IN UINTN Size
462 )
463 {
464 USBHC_MEM_BLOCK *Head;
465 USBHC_MEM_BLOCK *Block;
466 UINT8 *ToFree;
467 UINTN AllocSize;
468 UINTN Byte;
469 UINTN Bit;
470 UINTN Count;
471
472 Head = Pool->Head;
473 AllocSize = USBHC_MEM_ROUND (Size);
474 ToFree = (UINT8 *) Mem;
475
476 for (Block = Head; Block != NULL; Block = Block->Next) {
477 //
478 // scan the memory block list for the memory block that
479 // completely contains the memory to free.
480 //
481 if ((Block->Buf <= ToFree) && ((ToFree + AllocSize) <= (Block->Buf + Block->BufLen))) {
482 //
483 // compute the start byte and bit in the bit array
484 //
485 Byte = ((ToFree - Block->Buf) / USBHC_MEM_UNIT) / 8;
486 Bit = ((ToFree - Block->Buf) / USBHC_MEM_UNIT) % 8;
487
488 //
489 // reset associated bits in bit arry
490 //
491 for (Count = 0; Count < (AllocSize / USBHC_MEM_UNIT); Count++) {
492 ASSERT (USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit));
493
494 Block->Bits[Byte] = (UINT8) (Block->Bits[Byte] ^ USB_HC_BIT (Bit));
495 NEXT_BIT (Byte, Bit);
496 }
497
498 break;
499 }
500 }
501
502 //
503 // If Block == NULL, it means that the current memory isn't
504 // in the host controller's pool. This is critical because
505 // the caller has passed in a wrong memory point
506 //
507 ASSERT (Block != NULL);
508
509 //
510 // Release the current memory block if it is empty and not the head
511 //
512 if ((Block != Head) && UsbHcIsMemBlockEmpty (Block)) {
513 UsbHcUnlinkMemBlock (Head, Block);
514 UsbHcFreeMemBlock (Pool, Block);
515 }
516
517 return ;
518 }