]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Pci/EhciDxe/UsbHcMem.c
add error handling on usb related modules.
[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 Get the pci memory address according to the allocated host memory address.
226
227 @param Pool The memory pool of the host controller.
228 @param Mem The memory to free.
229 @param Size The size of the memory to free.
230
231 @return the pci memory address
232 **/
233 EFI_PHYSICAL_ADDRESS
234 UsbHcGetPciAddressForHostMem (
235 IN USBHC_MEM_POOL *Pool,
236 IN VOID *Mem,
237 IN UINTN Size
238 )
239 {
240 USBHC_MEM_BLOCK *Head;
241 USBHC_MEM_BLOCK *Block;
242 UINTN AllocSize;
243 EFI_PHYSICAL_ADDRESS PhyAddr;
244 UINTN Offset;
245
246 Head = Pool->Head;
247 AllocSize = USBHC_MEM_ROUND (Size);
248
249 for (Block = Head; Block != NULL; Block = Block->Next) {
250 //
251 // scan the memory block list for the memory block that
252 // completely contains the allocated memory.
253 //
254 if ((Block->Buf <= (UINT8 *) Mem) && (((UINT8 *) Mem + AllocSize) <= (Block->Buf + Block->BufLen))) {
255 break;
256 }
257 }
258
259 ASSERT ((Block != NULL));
260 //
261 // calculate the pci memory address for host memory address.
262 //
263 Offset = (UINT8 *)Mem - Block->BufHost;
264 PhyAddr = (EFI_PHYSICAL_ADDRESS)(UINTN) (Block->Buf + Offset);
265 return PhyAddr;
266 }
267
268
269 /**
270 Insert the memory block to the pool's list of the blocks.
271
272 @param Head The head of the memory pool's block list.
273 @param Block The memory block to insert.
274
275 **/
276 VOID
277 UsbHcInsertMemBlockToPool (
278 IN USBHC_MEM_BLOCK *Head,
279 IN USBHC_MEM_BLOCK *Block
280 )
281 {
282 ASSERT ((Head != NULL) && (Block != NULL));
283 Block->Next = Head->Next;
284 Head->Next = Block;
285 }
286
287
288 /**
289 Is the memory block empty?
290
291 @param Block The memory block to check.
292
293 @retval TRUE The memory block is empty.
294 @retval FALSE The memory block isn't empty.
295
296 **/
297 BOOLEAN
298 UsbHcIsMemBlockEmpty (
299 IN USBHC_MEM_BLOCK *Block
300 )
301 {
302 UINTN Index;
303
304 for (Index = 0; Index < Block->BitsLen; Index++) {
305 if (Block->Bits[Index] != 0) {
306 return FALSE;
307 }
308 }
309
310 return TRUE;
311 }
312
313
314 /**
315 Unlink the memory block from the pool's list.
316
317 @param Head The block list head of the memory's pool.
318 @param BlockToUnlink The memory block to unlink.
319
320 **/
321 VOID
322 UsbHcUnlinkMemBlock (
323 IN USBHC_MEM_BLOCK *Head,
324 IN USBHC_MEM_BLOCK *BlockToUnlink
325 )
326 {
327 USBHC_MEM_BLOCK *Block;
328
329 ASSERT ((Head != NULL) && (BlockToUnlink != NULL));
330
331 for (Block = Head; Block != NULL; Block = Block->Next) {
332 if (Block->Next == BlockToUnlink) {
333 Block->Next = BlockToUnlink->Next;
334 BlockToUnlink->Next = NULL;
335 break;
336 }
337 }
338 }
339
340
341 /**
342 Initialize the memory management pool for the host controller.
343
344 @param PciIo The PciIo that can be used to access the host controller.
345 @param Check4G Whether the host controller requires allocated memory
346 from one 4G address space.
347 @param Which4G The 4G memory area each memory allocated should be from.
348
349 @retval EFI_SUCCESS The memory pool is initialized.
350 @retval EFI_OUT_OF_RESOURCE Fail to init the memory pool.
351
352 **/
353 USBHC_MEM_POOL *
354 UsbHcInitMemPool (
355 IN EFI_PCI_IO_PROTOCOL *PciIo,
356 IN BOOLEAN Check4G,
357 IN UINT32 Which4G
358 )
359 {
360 USBHC_MEM_POOL *Pool;
361
362 Pool = AllocatePool (sizeof (USBHC_MEM_POOL));
363
364 if (Pool == NULL) {
365 return Pool;
366 }
367
368 Pool->PciIo = PciIo;
369 Pool->Check4G = Check4G;
370 Pool->Which4G = Which4G;
371 Pool->Head = UsbHcAllocMemBlock (Pool, USBHC_MEM_DEFAULT_PAGES);
372
373 if (Pool->Head == NULL) {
374 gBS->FreePool (Pool);
375 Pool = NULL;
376 }
377
378 return Pool;
379 }
380
381
382 /**
383 Release the memory management pool.
384
385 @param Pool The USB memory pool to free.
386
387 @retval EFI_SUCCESS The memory pool is freed.
388 @retval EFI_DEVICE_ERROR Failed to free the memory pool.
389
390 **/
391 EFI_STATUS
392 UsbHcFreeMemPool (
393 IN USBHC_MEM_POOL *Pool
394 )
395 {
396 USBHC_MEM_BLOCK *Block;
397
398 ASSERT (Pool->Head != NULL);
399
400 //
401 // Unlink all the memory blocks from the pool, then free them.
402 // UsbHcUnlinkMemBlock can't be used to unlink and free the
403 // first block.
404 //
405 for (Block = Pool->Head->Next; Block != NULL; Block = Pool->Head->Next) {
406 UsbHcUnlinkMemBlock (Pool->Head, Block);
407 UsbHcFreeMemBlock (Pool, Block);
408 }
409
410 UsbHcFreeMemBlock (Pool, Pool->Head);
411 gBS->FreePool (Pool);
412 return EFI_SUCCESS;
413 }
414
415
416 /**
417 Allocate some memory from the host controller's memory pool
418 which can be used to communicate with host controller.
419
420 @param Pool The host controller's memory pool.
421 @param Size Size of the memory to allocate.
422
423 @return The allocated memory or NULL.
424
425 **/
426 VOID *
427 UsbHcAllocateMem (
428 IN USBHC_MEM_POOL *Pool,
429 IN UINTN Size
430 )
431 {
432 USBHC_MEM_BLOCK *Head;
433 USBHC_MEM_BLOCK *Block;
434 USBHC_MEM_BLOCK *NewBlock;
435 VOID *Mem;
436 UINTN AllocSize;
437 UINTN Pages;
438
439 Mem = NULL;
440 AllocSize = USBHC_MEM_ROUND (Size);
441 Head = Pool->Head;
442 ASSERT (Head != NULL);
443
444 //
445 // First check whether current memory blocks can satisfy the allocation.
446 //
447 for (Block = Head; Block != NULL; Block = Block->Next) {
448 Mem = UsbHcAllocMemFromBlock (Block, AllocSize / USBHC_MEM_UNIT);
449
450 if (Mem != NULL) {
451 ZeroMem (Mem, Size);
452 break;
453 }
454 }
455
456 if (Mem != NULL) {
457 return Mem;
458 }
459
460 //
461 // Create a new memory block if there is not enough memory
462 // in the pool. If the allocation size is larger than the
463 // default page number, just allocate a large enough memory
464 // block. Otherwise allocate default pages.
465 //
466 if (AllocSize > EFI_PAGES_TO_SIZE (USBHC_MEM_DEFAULT_PAGES)) {
467 Pages = EFI_SIZE_TO_PAGES (AllocSize) + 1;
468 } else {
469 Pages = USBHC_MEM_DEFAULT_PAGES;
470 }
471
472 NewBlock = UsbHcAllocMemBlock (Pool, Pages);
473
474 if (NewBlock == NULL) {
475 DEBUG ((EFI_D_INFO, "UsbHcAllocateMem: failed to allocate block\n"));
476 return NULL;
477 }
478
479 //
480 // Add the new memory block to the pool, then allocate memory from it
481 //
482 UsbHcInsertMemBlockToPool (Head, NewBlock);
483 Mem = UsbHcAllocMemFromBlock (NewBlock, AllocSize / USBHC_MEM_UNIT);
484
485 if (Mem != NULL) {
486 ZeroMem (Mem, Size);
487 }
488
489 return Mem;
490 }
491
492
493 /**
494 Free the allocated memory back to the memory pool.
495
496 @param Pool The memory pool of the host controller.
497 @param Mem The memory to free.
498 @param Size The size of the memory to free.
499
500 **/
501 VOID
502 UsbHcFreeMem (
503 IN USBHC_MEM_POOL *Pool,
504 IN VOID *Mem,
505 IN UINTN Size
506 )
507 {
508 USBHC_MEM_BLOCK *Head;
509 USBHC_MEM_BLOCK *Block;
510 UINT8 *ToFree;
511 UINTN AllocSize;
512 UINTN Byte;
513 UINTN Bit;
514 UINTN Count;
515
516 Head = Pool->Head;
517 AllocSize = USBHC_MEM_ROUND (Size);
518 ToFree = (UINT8 *) Mem;
519
520 for (Block = Head; Block != NULL; Block = Block->Next) {
521 //
522 // scan the memory block list for the memory block that
523 // completely contains the memory to free.
524 //
525 if ((Block->Buf <= ToFree) && ((ToFree + AllocSize) <= (Block->Buf + Block->BufLen))) {
526 //
527 // compute the start byte and bit in the bit array
528 //
529 Byte = ((ToFree - Block->Buf) / USBHC_MEM_UNIT) / 8;
530 Bit = ((ToFree - Block->Buf) / USBHC_MEM_UNIT) % 8;
531
532 //
533 // reset associated bits in bit arry
534 //
535 for (Count = 0; Count < (AllocSize / USBHC_MEM_UNIT); Count++) {
536 ASSERT (USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit));
537
538 Block->Bits[Byte] = (UINT8) (Block->Bits[Byte] ^ USB_HC_BIT (Bit));
539 NEXT_BIT (Byte, Bit);
540 }
541
542 break;
543 }
544 }
545
546 //
547 // If Block == NULL, it means that the current memory isn't
548 // in the host controller's pool. This is critical because
549 // the caller has passed in a wrong memory point
550 //
551 ASSERT (Block != NULL);
552
553 //
554 // Release the current memory block if it is empty and not the head
555 //
556 if ((Block != Head) && UsbHcIsMemBlockEmpty (Block)) {
557 UsbHcUnlinkMemBlock (Head, Block);
558 UsbHcFreeMemBlock (Pool, Block);
559 }
560
561 return ;
562 }