]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Pci/XhciPei/UsbHcMem.c
MdeModulePkg XhciPei: Remove redundant functions
[mirror_edk2.git] / MdeModulePkg / Bus / Pci / XhciPei / UsbHcMem.c
1 /** @file
2 PEIM to produce gPeiUsb2HostControllerPpiGuid based on gPeiUsbControllerPpiGuid
3 which is used to enable recovery function from USB Drivers.
4
5 Copyright (c) 2014 - 2016, Intel Corporation. All rights reserved.<BR>
6
7 This program and the accompanying materials
8 are licensed and made available under the terms and conditions
9 of the BSD License which accompanies this distribution. The
10 full text of the license may be found at
11 http://opensource.org/licenses/bsd-license.php
12
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15
16 **/
17
18 #include "XhcPeim.h"
19
20 /**
21 Allocate a block of memory to be used by the buffer pool.
22
23 @param Pages How many pages to allocate.
24
25 @return Pointer to the allocated memory block or NULL if failed.
26
27 **/
28 USBHC_MEM_BLOCK *
29 UsbHcAllocMemBlock (
30 IN UINTN Pages
31 )
32 {
33 USBHC_MEM_BLOCK *Block;
34 VOID *BufHost;
35 VOID *Mapping;
36 EFI_PHYSICAL_ADDRESS MappedAddr;
37 EFI_STATUS Status;
38 UINTN PageNumber;
39 EFI_PHYSICAL_ADDRESS TempPtr;
40
41 PageNumber = EFI_SIZE_TO_PAGES (sizeof (USBHC_MEM_BLOCK));
42 Status = PeiServicesAllocatePages (
43 EfiBootServicesData,
44 PageNumber,
45 &TempPtr
46 );
47
48 if (EFI_ERROR (Status)) {
49 return NULL;
50 }
51 ZeroMem ((VOID *) (UINTN) TempPtr, EFI_PAGES_TO_SIZE (PageNumber));
52
53 //
54 // each bit in the bit array represents USBHC_MEM_UNIT
55 // bytes of memory in the memory block.
56 //
57 ASSERT (USBHC_MEM_UNIT * 8 <= EFI_PAGE_SIZE);
58
59 Block = (USBHC_MEM_BLOCK *) (UINTN) TempPtr;
60 Block->BufLen = EFI_PAGES_TO_SIZE (Pages);
61 Block->BitsLen = Block->BufLen / (USBHC_MEM_UNIT * 8);
62
63 PageNumber = EFI_SIZE_TO_PAGES (Block->BitsLen);
64 Status = PeiServicesAllocatePages (
65 EfiBootServicesData,
66 PageNumber,
67 &TempPtr
68 );
69
70 if (EFI_ERROR (Status)) {
71 return NULL;
72 }
73 ZeroMem ((VOID *) (UINTN) TempPtr, EFI_PAGES_TO_SIZE (PageNumber));
74
75 Block->Bits = (UINT8 *) (UINTN) TempPtr;
76
77 Status = IoMmuAllocateBuffer (
78 Pages,
79 &BufHost,
80 &MappedAddr,
81 &Mapping
82 );
83 if (EFI_ERROR (Status)) {
84 return NULL;
85 }
86 ZeroMem ((VOID *) (UINTN) BufHost, EFI_PAGES_TO_SIZE (Pages));
87
88 Block->BufHost = (UINT8 *) (UINTN) BufHost;
89 Block->Buf = (UINT8 *) (UINTN) MappedAddr;
90 Block->Mapping = Mapping;
91 Block->Next = NULL;
92
93 return Block;
94 }
95
96 /**
97 Free the memory block from the memory pool.
98
99 @param Pool The memory pool to free the block from.
100 @param Block The memory block to free.
101
102 **/
103 VOID
104 UsbHcFreeMemBlock (
105 IN USBHC_MEM_POOL *Pool,
106 IN USBHC_MEM_BLOCK *Block
107 )
108 {
109 ASSERT ((Pool != NULL) && (Block != NULL));
110
111 IoMmuFreeBuffer (EFI_SIZE_TO_PAGES (Block->BufLen), Block->BufHost, Block->Mapping);
112
113 //
114 // No free memory in PEI.
115 //
116 }
117
118 /**
119 Alloc some memory from the block.
120
121 @param Block The memory block to allocate memory from.
122 @param Units Number of memory units to allocate.
123
124 @return The pointer to the allocated memory.
125 If couldn't allocate the needed memory, the return value is NULL.
126
127 **/
128 VOID *
129 UsbHcAllocMemFromBlock (
130 IN USBHC_MEM_BLOCK *Block,
131 IN UINTN Units
132 )
133 {
134 UINTN Byte;
135 UINT8 Bit;
136 UINTN StartByte;
137 UINT8 StartBit;
138 UINTN Available;
139 UINTN Count;
140
141 ASSERT ((Block != 0) && (Units != 0));
142
143 StartByte = 0;
144 StartBit = 0;
145 Available = 0;
146
147 for (Byte = 0, Bit = 0; Byte < Block->BitsLen;) {
148 //
149 // If current bit is zero, the corresponding memory unit is
150 // available, otherwise we need to restart our searching.
151 // Available counts the consective number of zero bit.
152 //
153 if (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit)) {
154 Available++;
155
156 if (Available >= Units) {
157 break;
158 }
159
160 NEXT_BIT (Byte, Bit);
161 } else {
162 NEXT_BIT (Byte, Bit);
163
164 Available = 0;
165 StartByte = Byte;
166 StartBit = Bit;
167 }
168 }
169
170 if (Available < Units) {
171 return NULL;
172 }
173
174 //
175 // Mark the memory as allocated
176 //
177 Byte = StartByte;
178 Bit = StartBit;
179
180 for (Count = 0; Count < Units; Count++) {
181 ASSERT (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit));
182
183 Block->Bits[Byte] = (UINT8) (Block->Bits[Byte] | (UINT8) USB_HC_BIT (Bit));
184 NEXT_BIT (Byte, Bit);
185 }
186
187 return Block->BufHost + (StartByte * 8 + StartBit) * USBHC_MEM_UNIT;
188 }
189
190 /**
191 Calculate the corresponding pci bus address according to the Mem parameter.
192
193 @param Pool The memory pool of the host controller.
194 @param Mem The pointer to host memory.
195 @param Size The size of the memory region.
196
197 @return The pci memory address
198
199 **/
200 EFI_PHYSICAL_ADDRESS
201 UsbHcGetPciAddrForHostAddr (
202 IN USBHC_MEM_POOL *Pool,
203 IN VOID *Mem,
204 IN UINTN Size
205 )
206 {
207 USBHC_MEM_BLOCK *Head;
208 USBHC_MEM_BLOCK *Block;
209 UINTN AllocSize;
210 EFI_PHYSICAL_ADDRESS PhyAddr;
211 UINTN Offset;
212
213 Head = Pool->Head;
214 AllocSize = USBHC_MEM_ROUND (Size);
215
216 if (Mem == NULL) {
217 return 0;
218 }
219
220 for (Block = Head; Block != NULL; Block = Block->Next) {
221 //
222 // scan the memory block list for the memory block that
223 // completely contains the allocated memory.
224 //
225 if ((Block->BufHost <= (UINT8 *) Mem) && (((UINT8 *) Mem + AllocSize) <= (Block->BufHost + Block->BufLen))) {
226 break;
227 }
228 }
229
230 ASSERT ((Block != NULL));
231 //
232 // calculate the pci memory address for host memory address.
233 //
234 Offset = (UINT8 *) Mem - Block->BufHost;
235 PhyAddr = (EFI_PHYSICAL_ADDRESS) (UINTN) (Block->Buf + Offset);
236 return PhyAddr;
237 }
238
239 /**
240 Calculate the corresponding host address according to the pci address.
241
242 @param Pool The memory pool of the host controller.
243 @param Mem The pointer to pci memory.
244 @param Size The size of the memory region.
245
246 @return The host memory address
247
248 **/
249 EFI_PHYSICAL_ADDRESS
250 UsbHcGetHostAddrForPciAddr (
251 IN USBHC_MEM_POOL *Pool,
252 IN VOID *Mem,
253 IN UINTN Size
254 )
255 {
256 USBHC_MEM_BLOCK *Head;
257 USBHC_MEM_BLOCK *Block;
258 UINTN AllocSize;
259 EFI_PHYSICAL_ADDRESS HostAddr;
260 UINTN Offset;
261
262 Head = Pool->Head;
263 AllocSize = USBHC_MEM_ROUND (Size);
264
265 if (Mem == NULL) {
266 return 0;
267 }
268
269 for (Block = Head; Block != NULL; Block = Block->Next) {
270 //
271 // scan the memory block list for the memory block that
272 // completely contains the allocated memory.
273 //
274 if ((Block->Buf <= (UINT8 *) Mem) && (((UINT8 *) Mem + AllocSize) <= (Block->Buf + Block->BufLen))) {
275 break;
276 }
277 }
278
279 ASSERT ((Block != NULL));
280 //
281 // calculate the host memory address for pci memory address.
282 //
283 Offset = (UINT8 *) Mem - Block->Buf;
284 HostAddr = (EFI_PHYSICAL_ADDRESS) (UINTN) (Block->BufHost + Offset);
285 return HostAddr;
286 }
287
288 /**
289 Insert the memory block to the pool's list of the blocks.
290
291 @param Head The head of the memory pool's block list.
292 @param Block The memory block to insert.
293
294 **/
295 VOID
296 UsbHcInsertMemBlockToPool (
297 IN USBHC_MEM_BLOCK *Head,
298 IN USBHC_MEM_BLOCK *Block
299 )
300 {
301 ASSERT ((Head != NULL) && (Block != NULL));
302 Block->Next = Head->Next;
303 Head->Next = Block;
304 }
305
306 /**
307 Is the memory block empty?
308
309 @param Block The memory block to check.
310
311 @retval TRUE The memory block is empty.
312 @retval FALSE The memory block isn't empty.
313
314 **/
315 BOOLEAN
316 UsbHcIsMemBlockEmpty (
317 IN USBHC_MEM_BLOCK *Block
318 )
319 {
320 UINTN Index;
321
322 for (Index = 0; Index < Block->BitsLen; Index++) {
323 if (Block->Bits[Index] != 0) {
324 return FALSE;
325 }
326 }
327
328 return TRUE;
329 }
330
331
332
333 /**
334 Initialize the memory management pool for the host controller.
335
336 @return Pointer to the allocated memory pool or NULL if failed.
337
338 **/
339 USBHC_MEM_POOL *
340 UsbHcInitMemPool (
341 VOID
342 )
343 {
344 USBHC_MEM_POOL *Pool;
345 UINTN PageNumber;
346 EFI_STATUS Status;
347 EFI_PHYSICAL_ADDRESS TempPtr;
348
349 PageNumber = EFI_SIZE_TO_PAGES (sizeof (USBHC_MEM_POOL));
350 Status = PeiServicesAllocatePages (
351 EfiBootServicesData,
352 PageNumber,
353 &TempPtr
354 );
355 if (EFI_ERROR (Status)) {
356 return NULL;
357 }
358 ZeroMem ((VOID *) (UINTN) TempPtr, EFI_PAGES_TO_SIZE (PageNumber));
359
360 Pool = (USBHC_MEM_POOL *) ((UINTN) TempPtr);
361 Pool->Head = UsbHcAllocMemBlock (USBHC_MEM_DEFAULT_PAGES);
362
363 if (Pool->Head == NULL) {
364 //
365 // No free memory in PEI.
366 //
367 Pool = NULL;
368 }
369
370 return Pool;
371 }
372
373 /**
374 Release the memory management pool.
375
376 @param Pool The USB memory pool to free.
377
378 **/
379 VOID
380 UsbHcFreeMemPool (
381 IN USBHC_MEM_POOL *Pool
382 )
383 {
384 USBHC_MEM_BLOCK *Block;
385
386 ASSERT (Pool->Head != NULL);
387
388 //
389 // Unlink all the memory blocks from the pool, then free them.
390 // UsbHcUnlinkMemBlock can't be used to unlink and free the
391 // first block.
392 //
393 for (Block = Pool->Head->Next; Block != NULL; Block = Pool->Head->Next) {
394 //UsbHcUnlinkMemBlock (Pool->Head, Block);
395 UsbHcFreeMemBlock (Pool, Block);
396 }
397
398 UsbHcFreeMemBlock (Pool, Pool->Head);
399 }
400
401 /**
402 Allocate some memory from the host controller's memory pool
403 which can be used to communicate with host controller.
404
405 @param Pool The host controller's memory pool.
406 @param Size Size of the memory to allocate.
407
408 @return The allocated memory or NULL.
409
410 **/
411 VOID *
412 UsbHcAllocateMem (
413 IN USBHC_MEM_POOL *Pool,
414 IN UINTN Size
415 )
416 {
417 USBHC_MEM_BLOCK *Head;
418 USBHC_MEM_BLOCK *Block;
419 USBHC_MEM_BLOCK *NewBlock;
420 VOID *Mem;
421 UINTN AllocSize;
422 UINTN Pages;
423
424 Mem = NULL;
425 AllocSize = USBHC_MEM_ROUND (Size);
426 Head = Pool->Head;
427 ASSERT (Head != NULL);
428
429 //
430 // First check whether current memory blocks can satisfy the allocation.
431 //
432 for (Block = Head; Block != NULL; Block = Block->Next) {
433 Mem = UsbHcAllocMemFromBlock (Block, AllocSize / USBHC_MEM_UNIT);
434
435 if (Mem != NULL) {
436 ZeroMem (Mem, Size);
437 break;
438 }
439 }
440
441 if (Mem != NULL) {
442 return Mem;
443 }
444
445 //
446 // Create a new memory block if there is not enough memory
447 // in the pool. If the allocation size is larger than the
448 // default page number, just allocate a large enough memory
449 // block. Otherwise allocate default pages.
450 //
451 if (AllocSize > EFI_PAGES_TO_SIZE (USBHC_MEM_DEFAULT_PAGES)) {
452 Pages = EFI_SIZE_TO_PAGES (AllocSize);
453 } else {
454 Pages = USBHC_MEM_DEFAULT_PAGES;
455 }
456 NewBlock = UsbHcAllocMemBlock (Pages);
457
458 if (NewBlock == NULL) {
459 return NULL;
460 }
461
462 //
463 // Add the new memory block to the pool, then allocate memory from it
464 //
465 UsbHcInsertMemBlockToPool (Head, NewBlock);
466 Mem = UsbHcAllocMemFromBlock (NewBlock, AllocSize / USBHC_MEM_UNIT);
467
468 if (Mem != NULL) {
469 ZeroMem (Mem, Size);
470 }
471
472 return Mem;
473 }
474
475 /**
476 Free the allocated memory back to the memory pool.
477
478 @param Pool The memory pool of the host controller.
479 @param Mem The memory to free.
480 @param Size The size of the memory to free.
481
482 **/
483 VOID
484 UsbHcFreeMem (
485 IN USBHC_MEM_POOL *Pool,
486 IN VOID *Mem,
487 IN UINTN Size
488 )
489 {
490 USBHC_MEM_BLOCK *Head;
491 USBHC_MEM_BLOCK *Block;
492 UINT8 *ToFree;
493 UINTN AllocSize;
494 UINTN Byte;
495 UINTN Bit;
496 UINTN Count;
497
498 Head = Pool->Head;
499 AllocSize = USBHC_MEM_ROUND (Size);
500 ToFree = (UINT8 *) Mem;
501
502 for (Block = Head; Block != NULL; Block = Block->Next) {
503 //
504 // scan the memory block list for the memory block that
505 // completely contains the memory to free.
506 //
507 if ((Block->BufHost <= ToFree) && ((ToFree + AllocSize) <= (Block->BufHost + Block->BufLen))) {
508 //
509 // compute the start byte and bit in the bit array
510 //
511 Byte = ((ToFree - Block->BufHost) / USBHC_MEM_UNIT) / 8;
512 Bit = ((ToFree - Block->BufHost) / USBHC_MEM_UNIT) % 8;
513
514 //
515 // reset associated bits in bit array
516 //
517 for (Count = 0; Count < (AllocSize / USBHC_MEM_UNIT); Count++) {
518 ASSERT (USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit));
519
520 Block->Bits[Byte] = (UINT8) (Block->Bits[Byte] ^ USB_HC_BIT (Bit));
521 NEXT_BIT (Byte, Bit);
522 }
523
524 break;
525 }
526 }
527
528 //
529 // If Block == NULL, it means that the current memory isn't
530 // in the host controller's pool. This is critical because
531 // the caller has passed in a wrong memory pointer
532 //
533 ASSERT (Block != NULL);
534
535 //
536 // Release the current memory block if it is empty and not the head
537 //
538 if ((Block != Head) && UsbHcIsMemBlockEmpty (Block)) {
539 //UsbHcUnlinkMemBlock (Head, Block);
540 UsbHcFreeMemBlock (Pool, Block);
541 }
542 }
543
544 /**
545 Allocates pages at a specified alignment.
546
547 If Alignment is not a power of two and Alignment is not zero, then ASSERT().
548
549 @param Pages The number of pages to allocate.
550 @param Alignment The requested alignment of the allocation. Must be a power of two.
551 @param HostAddress The system memory address to map to the PCI controller.
552 @param DeviceAddress The resulting map address for the bus master PCI controller to
553 use to access the hosts HostAddress.
554 @param Mapping A resulting value to pass to Unmap().
555
556 @retval EFI_SUCCESS Success to allocate aligned pages.
557 @retval EFI_INVALID_PARAMETER Pages or Alignment is not valid.
558 @retval EFI_OUT_OF_RESOURCES Do not have enough resources to allocate memory.
559
560 **/
561 EFI_STATUS
562 UsbHcAllocateAlignedPages (
563 IN UINTN Pages,
564 IN UINTN Alignment,
565 OUT VOID **HostAddress,
566 OUT EFI_PHYSICAL_ADDRESS *DeviceAddress,
567 OUT VOID **Mapping
568 )
569 {
570 EFI_STATUS Status;
571 VOID *Memory;
572 UINTN AlignedMemory;
573 UINTN AlignmentMask;
574 EFI_PHYSICAL_ADDRESS DeviceMemory;
575 UINTN AlignedDeviceMemory;
576 UINTN RealPages;
577
578 //
579 // Alignment must be a power of two or zero.
580 //
581 ASSERT ((Alignment & (Alignment - 1)) == 0);
582
583 if ((Alignment & (Alignment - 1)) != 0) {
584 return EFI_INVALID_PARAMETER;
585 }
586
587 if (Pages == 0) {
588 return EFI_INVALID_PARAMETER;
589 }
590
591 if (Alignment > EFI_PAGE_SIZE) {
592 //
593 // Calculate the total number of pages since alignment is larger than page size.
594 //
595 AlignmentMask = Alignment - 1;
596 RealPages = Pages + EFI_SIZE_TO_PAGES (Alignment);
597 //
598 // Make sure that Pages plus EFI_SIZE_TO_PAGES (Alignment) does not overflow.
599 //
600 ASSERT (RealPages > Pages);
601
602 Status = IoMmuAllocateBuffer (
603 Pages,
604 &Memory,
605 &DeviceMemory,
606 Mapping
607 );
608 if (EFI_ERROR (Status)) {
609 return EFI_OUT_OF_RESOURCES;
610 }
611 AlignedMemory = ((UINTN) Memory + AlignmentMask) & ~AlignmentMask;
612 AlignedDeviceMemory = ((UINTN) DeviceMemory + AlignmentMask) & ~AlignmentMask;
613 } else {
614 //
615 // Do not over-allocate pages in this case.
616 //
617 Status = IoMmuAllocateBuffer (
618 Pages,
619 &Memory,
620 &DeviceMemory,
621 Mapping
622 );
623 if (EFI_ERROR (Status)) {
624 return EFI_OUT_OF_RESOURCES;
625 }
626 AlignedMemory = (UINTN) Memory;
627 AlignedDeviceMemory = (UINTN) DeviceMemory;
628 }
629
630 *HostAddress = (VOID *) AlignedMemory;
631 *DeviceAddress = (EFI_PHYSICAL_ADDRESS) AlignedDeviceMemory;
632
633 return EFI_SUCCESS;
634 }
635
636 /**
637 Frees memory that was allocated with UsbHcAllocateAlignedPages().
638
639 @param HostAddress The system memory address to map to the PCI controller.
640 @param Pages The number of pages to free.
641 @param Mapping The mapping value returned from Map().
642
643 **/
644 VOID
645 UsbHcFreeAlignedPages (
646 IN VOID *HostAddress,
647 IN UINTN Pages,
648 IN VOID *Mapping
649 )
650 {
651 ASSERT (Pages != 0);
652
653 IoMmuFreeBuffer (Pages, HostAddress, Mapping);
654 }
655