]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/UefiDevicePathLib/DevicePathFromText.c
6ec0a4c0bdbc2956387a135924bc0befdb9f379b
[mirror_edk2.git] / MdePkg / Library / UefiDevicePathLib / DevicePathFromText.c
1 /** @file
2 DevicePathFromText protocol as defined in the UEFI 2.0 specification.
3
4 Copyright (c) 2013 - 2014, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include "UefiDevicePathLib.h"
16
17 /**
18
19 Duplicates a string.
20
21 @param Src Source string.
22
23 @return The duplicated string.
24
25 **/
26 CHAR16 *
27 UefiDevicePathLibStrDuplicate (
28 IN CONST CHAR16 *Src
29 )
30 {
31 return AllocateCopyPool (StrSize (Src), Src);
32 }
33
34 /**
35
36 Get parameter in a pair of parentheses follow the given node name.
37 For example, given the "Pci(0,1)" and NodeName "Pci", it returns "0,1".
38
39 @param Str Device Path Text.
40 @param NodeName Name of the node.
41
42 @return Parameter text for the node.
43
44 **/
45 CHAR16 *
46 GetParamByNodeName (
47 IN CHAR16 *Str,
48 IN CHAR16 *NodeName
49 )
50 {
51 CHAR16 *ParamStr;
52 CHAR16 *StrPointer;
53 UINTN NodeNameLength;
54 UINTN ParameterLength;
55
56 //
57 // Check whether the node name matchs
58 //
59 NodeNameLength = StrLen (NodeName);
60 if (StrnCmp (Str, NodeName, NodeNameLength) != 0) {
61 return NULL;
62 }
63
64 ParamStr = Str + NodeNameLength;
65 if (!IS_LEFT_PARENTH (*ParamStr)) {
66 return NULL;
67 }
68
69 //
70 // Skip the found '(' and find first occurrence of ')'
71 //
72 ParamStr++;
73 ParameterLength = 0;
74 StrPointer = ParamStr;
75 while (!IS_NULL (*StrPointer)) {
76 if (IS_RIGHT_PARENTH (*StrPointer)) {
77 break;
78 }
79 StrPointer++;
80 ParameterLength++;
81 }
82 if (IS_NULL (*StrPointer)) {
83 //
84 // ')' not found
85 //
86 return NULL;
87 }
88
89 ParamStr = AllocateCopyPool ((ParameterLength + 1) * sizeof (CHAR16), ParamStr);
90 if (ParamStr == NULL) {
91 return NULL;
92 }
93 //
94 // Terminate the parameter string
95 //
96 ParamStr[ParameterLength] = L'\0';
97
98 return ParamStr;
99 }
100
101 /**
102 Gets current sub-string from a string list, before return
103 the list header is moved to next sub-string. The sub-string is separated
104 by the specified character. For example, the separator is ',', the string
105 list is "2,0,3", it returns "2", the remain list move to "0,3"
106
107 @param List A string list separated by the specified separator
108 @param Separator The separator character
109
110 @return A pointer to the current sub-string
111
112 **/
113 CHAR16 *
114 SplitStr (
115 IN OUT CHAR16 **List,
116 IN CHAR16 Separator
117 )
118 {
119 CHAR16 *Str;
120 CHAR16 *ReturnStr;
121
122 Str = *List;
123 ReturnStr = Str;
124
125 if (IS_NULL (*Str)) {
126 return ReturnStr;
127 }
128
129 //
130 // Find first occurrence of the separator
131 //
132 while (!IS_NULL (*Str)) {
133 if (*Str == Separator) {
134 break;
135 }
136 Str++;
137 }
138
139 if (*Str == Separator) {
140 //
141 // Find a sub-string, terminate it
142 //
143 *Str = L'\0';
144 Str++;
145 }
146
147 //
148 // Move to next sub-string
149 //
150 *List = Str;
151
152 return ReturnStr;
153 }
154
155 /**
156 Gets the next parameter string from the list.
157
158 @param List A string list separated by the specified separator
159
160 @return A pointer to the current sub-string
161
162 **/
163 CHAR16 *
164 GetNextParamStr (
165 IN OUT CHAR16 **List
166 )
167 {
168 //
169 // The separator is comma
170 //
171 return SplitStr (List, L',');
172 }
173
174 /**
175 Get one device node from entire device path text.
176
177 @param DevicePath On input, the current Device Path node; on output, the next device path node
178 @param IsInstanceEnd This node is the end of a device path instance
179
180 @return A device node text or NULL if no more device node available
181
182 **/
183 CHAR16 *
184 GetNextDeviceNodeStr (
185 IN OUT CHAR16 **DevicePath,
186 OUT BOOLEAN *IsInstanceEnd
187 )
188 {
189 CHAR16 *Str;
190 CHAR16 *ReturnStr;
191 UINTN ParenthesesStack;
192
193 Str = *DevicePath;
194 if (IS_NULL (*Str)) {
195 return NULL;
196 }
197
198 //
199 // Skip the leading '/', '(', ')' and ','
200 //
201 while (!IS_NULL (*Str)) {
202 if (!IS_SLASH (*Str) &&
203 !IS_COMMA (*Str) &&
204 !IS_LEFT_PARENTH (*Str) &&
205 !IS_RIGHT_PARENTH (*Str)) {
206 break;
207 }
208 Str++;
209 }
210
211 ReturnStr = Str;
212
213 //
214 // Scan for the separator of this device node, '/' or ','
215 //
216 ParenthesesStack = 0;
217 while (!IS_NULL (*Str)) {
218 if ((IS_COMMA (*Str) || IS_SLASH (*Str)) && (ParenthesesStack == 0)) {
219 break;
220 }
221
222 if (IS_LEFT_PARENTH (*Str)) {
223 ParenthesesStack++;
224 } else if (IS_RIGHT_PARENTH (*Str)) {
225 ParenthesesStack--;
226 }
227
228 Str++;
229 }
230
231 if (ParenthesesStack != 0) {
232 //
233 // The '(' doesn't pair with ')', invalid device path text
234 //
235 return NULL;
236 }
237
238 if (IS_COMMA (*Str)) {
239 *IsInstanceEnd = TRUE;
240 *Str = L'\0';
241 Str++;
242 } else {
243 *IsInstanceEnd = FALSE;
244 if (!IS_NULL (*Str)) {
245 *Str = L'\0';
246 Str++;
247 }
248 }
249
250 *DevicePath = Str;
251
252 return ReturnStr;
253 }
254
255
256 /**
257 Return whether the integer string is a hex string.
258
259 @param Str The integer string
260
261 @retval TRUE Hex string
262 @retval FALSE Decimal string
263
264 **/
265 BOOLEAN
266 IsHexStr (
267 IN CHAR16 *Str
268 )
269 {
270 //
271 // skip preceeding white space
272 //
273 while ((*Str != 0) && *Str == L' ') {
274 Str ++;
275 }
276 //
277 // skip preceeding zeros
278 //
279 while ((*Str != 0) && *Str == L'0') {
280 Str ++;
281 }
282
283 return (BOOLEAN) (*Str == L'x' || *Str == L'X');
284 }
285
286 /**
287
288 Convert integer string to uint.
289
290 @param Str The integer string. If leading with "0x" or "0X", it's hexadecimal.
291
292 @return A UINTN value represented by Str
293
294 **/
295 UINTN
296 Strtoi (
297 IN CHAR16 *Str
298 )
299 {
300 if (IsHexStr (Str)) {
301 return StrHexToUintn (Str);
302 } else {
303 return StrDecimalToUintn (Str);
304 }
305 }
306
307 /**
308
309 Convert integer string to 64 bit data.
310
311 @param Str The integer string. If leading with "0x" or "0X", it's hexadecimal.
312 @param Data A pointer to the UINT64 value represented by Str
313
314 **/
315 VOID
316 Strtoi64 (
317 IN CHAR16 *Str,
318 OUT UINT64 *Data
319 )
320 {
321 if (IsHexStr (Str)) {
322 *Data = StrHexToUint64 (Str);
323 } else {
324 *Data = StrDecimalToUint64 (Str);
325 }
326 }
327
328 /**
329 Converts a list of string to a specified buffer.
330
331 @param Buf The output buffer that contains the string.
332 @param BufferLength The length of the buffer
333 @param Str The input string that contains the hex number
334
335 @retval EFI_SUCCESS The string was successfully converted to the buffer.
336
337 **/
338 EFI_STATUS
339 StrToBuf (
340 OUT UINT8 *Buf,
341 IN UINTN BufferLength,
342 IN CHAR16 *Str
343 )
344 {
345 UINTN Index;
346 UINTN StrLength;
347 UINT8 Digit;
348 UINT8 Byte;
349
350 Digit = 0;
351
352 //
353 // Two hex char make up one byte
354 //
355 StrLength = BufferLength * sizeof (CHAR16);
356
357 for(Index = 0; Index < StrLength; Index++, Str++) {
358
359 if ((*Str >= L'a') && (*Str <= L'f')) {
360 Digit = (UINT8) (*Str - L'a' + 0x0A);
361 } else if ((*Str >= L'A') && (*Str <= L'F')) {
362 Digit = (UINT8) (*Str - L'A' + 0x0A);
363 } else if ((*Str >= L'0') && (*Str <= L'9')) {
364 Digit = (UINT8) (*Str - L'0');
365 } else {
366 return EFI_INVALID_PARAMETER;
367 }
368
369 //
370 // For odd characters, write the upper nibble for each buffer byte,
371 // and for even characters, the lower nibble.
372 //
373 if ((Index & 1) == 0) {
374 Byte = (UINT8) (Digit << 4);
375 } else {
376 Byte = Buf[Index / 2];
377 Byte &= 0xF0;
378 Byte = (UINT8) (Byte | Digit);
379 }
380
381 Buf[Index / 2] = Byte;
382 }
383
384 return EFI_SUCCESS;
385 }
386
387 /**
388 Converts a string to GUID value.
389 Guid Format is xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
390
391 @param Str The registry format GUID string that contains the GUID value.
392 @param Guid A pointer to the converted GUID value.
393
394 @retval EFI_SUCCESS The GUID string was successfully converted to the GUID value.
395 @retval EFI_UNSUPPORTED The input string is not in registry format.
396 @return others Some error occurred when converting part of GUID value.
397
398 **/
399 EFI_STATUS
400 StrToGuid (
401 IN CHAR16 *Str,
402 OUT EFI_GUID *Guid
403 )
404 {
405 //
406 // Get the first UINT32 data
407 //
408 Guid->Data1 = (UINT32) StrHexToUint64 (Str);
409 while (!IS_HYPHEN (*Str) && !IS_NULL (*Str)) {
410 Str ++;
411 }
412
413 if (IS_HYPHEN (*Str)) {
414 Str++;
415 } else {
416 return EFI_UNSUPPORTED;
417 }
418
419 //
420 // Get the second UINT16 data
421 //
422 Guid->Data2 = (UINT16) StrHexToUint64 (Str);
423 while (!IS_HYPHEN (*Str) && !IS_NULL (*Str)) {
424 Str ++;
425 }
426
427 if (IS_HYPHEN (*Str)) {
428 Str++;
429 } else {
430 return EFI_UNSUPPORTED;
431 }
432
433 //
434 // Get the third UINT16 data
435 //
436 Guid->Data3 = (UINT16) StrHexToUint64 (Str);
437 while (!IS_HYPHEN (*Str) && !IS_NULL (*Str)) {
438 Str ++;
439 }
440
441 if (IS_HYPHEN (*Str)) {
442 Str++;
443 } else {
444 return EFI_UNSUPPORTED;
445 }
446
447 //
448 // Get the following 8 bytes data
449 //
450 StrToBuf (&Guid->Data4[0], 2, Str);
451 //
452 // Skip 2 byte hex chars
453 //
454 Str += 2 * 2;
455
456 if (IS_HYPHEN (*Str)) {
457 Str++;
458 } else {
459 return EFI_UNSUPPORTED;
460 }
461 StrToBuf (&Guid->Data4[2], 6, Str);
462
463 return EFI_SUCCESS;
464 }
465
466 /**
467 Converts a string to IPv4 address
468
469 @param Str A string representation of IPv4 address.
470 @param IPv4Addr A pointer to the converted IPv4 address.
471
472 **/
473 VOID
474 StrToIPv4Addr (
475 IN OUT CHAR16 **Str,
476 OUT EFI_IPv4_ADDRESS *IPv4Addr
477 )
478 {
479 UINTN Index;
480
481 for (Index = 0; Index < 4; Index++) {
482 IPv4Addr->Addr[Index] = (UINT8) Strtoi (SplitStr (Str, L'.'));
483 }
484 }
485
486 /**
487 Converts a string to IPv4 address
488
489 @param Str A string representation of IPv6 address.
490 @param IPv6Addr A pointer to the converted IPv6 address.
491
492 **/
493 VOID
494 StrToIPv6Addr (
495 IN OUT CHAR16 **Str,
496 OUT EFI_IPv6_ADDRESS *IPv6Addr
497 )
498 {
499 UINTN Index;
500 UINT16 Data;
501
502 for (Index = 0; Index < 8; Index++) {
503 Data = (UINT16) StrHexToUintn (SplitStr (Str, L':'));
504 IPv6Addr->Addr[Index * 2] = (UINT8) (Data >> 8);
505 IPv6Addr->Addr[Index * 2 + 1] = (UINT8) (Data & 0xff);
506 }
507 }
508
509 /**
510 Converts a Unicode string to ASCII string.
511
512 @param Str The equivalent Unicode string
513 @param AsciiStr On input, it points to destination ASCII string buffer; on output, it points
514 to the next ASCII string next to it
515
516 **/
517 VOID
518 StrToAscii (
519 IN CHAR16 *Str,
520 IN OUT CHAR8 **AsciiStr
521 )
522 {
523 CHAR8 *Dest;
524
525 Dest = *AsciiStr;
526 while (!IS_NULL (*Str)) {
527 *(Dest++) = (CHAR8) *(Str++);
528 }
529 *Dest = 0;
530
531 //
532 // Return the string next to it
533 //
534 *AsciiStr = Dest + 1;
535 }
536
537 /**
538 Converts a generic text device path node to device path structure.
539
540 @param Type The type of the device path node.
541 @param TextDeviceNode The input text device path node.
542
543 @return A pointer to device path structure.
544 **/
545 EFI_DEVICE_PATH_PROTOCOL *
546 DevPathFromTextGenericPath (
547 IN UINT8 Type,
548 IN CHAR16 *TextDeviceNode
549 )
550 {
551 EFI_DEVICE_PATH_PROTOCOL *Node;
552 CHAR16 *SubtypeStr;
553 CHAR16 *DataStr;
554 UINTN DataLength;
555
556 SubtypeStr = GetNextParamStr (&TextDeviceNode);
557 DataStr = GetNextParamStr (&TextDeviceNode);
558
559 if (DataStr == NULL) {
560 DataLength = 0;
561 } else {
562 DataLength = StrLen (DataStr) / 2;
563 }
564 Node = CreateDeviceNode (
565 Type,
566 (UINT8) Strtoi (SubtypeStr),
567 (UINT16) (sizeof (EFI_DEVICE_PATH_PROTOCOL) + DataLength)
568 );
569
570 if (DataLength != 0) {
571 StrToBuf ((UINT8 *) (Node + 1), DataLength, DataStr);
572 }
573 return Node;
574 }
575
576 /**
577 Converts a generic text device path node to device path structure.
578
579 @param TextDeviceNode The input Text device path node.
580
581 @return A pointer to device path structure.
582
583 **/
584 EFI_DEVICE_PATH_PROTOCOL *
585 DevPathFromTextPath (
586 IN CHAR16 *TextDeviceNode
587 )
588 {
589 CHAR16 *TypeStr;
590
591 TypeStr = GetNextParamStr (&TextDeviceNode);
592
593 return DevPathFromTextGenericPath ((UINT8) Strtoi (TypeStr), TextDeviceNode);
594 }
595
596 /**
597 Converts a generic hardware text device path node to Hardware device path structure.
598
599 @param TextDeviceNode The input Text device path node.
600
601 @return A pointer to Hardware device path structure.
602
603 **/
604 EFI_DEVICE_PATH_PROTOCOL *
605 DevPathFromTextHardwarePath (
606 IN CHAR16 *TextDeviceNode
607 )
608 {
609 return DevPathFromTextGenericPath (HARDWARE_DEVICE_PATH, TextDeviceNode);
610 }
611
612 /**
613 Converts a text device path node to Hardware PCI device path structure.
614
615 @param TextDeviceNode The input Text device path node.
616
617 @return A pointer to Hardware PCI device path structure.
618
619 **/
620 EFI_DEVICE_PATH_PROTOCOL *
621 DevPathFromTextPci (
622 IN CHAR16 *TextDeviceNode
623 )
624 {
625 CHAR16 *FunctionStr;
626 CHAR16 *DeviceStr;
627 PCI_DEVICE_PATH *Pci;
628
629 DeviceStr = GetNextParamStr (&TextDeviceNode);
630 FunctionStr = GetNextParamStr (&TextDeviceNode);
631 Pci = (PCI_DEVICE_PATH *) CreateDeviceNode (
632 HARDWARE_DEVICE_PATH,
633 HW_PCI_DP,
634 (UINT16) sizeof (PCI_DEVICE_PATH)
635 );
636
637 Pci->Function = (UINT8) Strtoi (FunctionStr);
638 Pci->Device = (UINT8) Strtoi (DeviceStr);
639
640 return (EFI_DEVICE_PATH_PROTOCOL *) Pci;
641 }
642
643 /**
644 Converts a text device path node to Hardware PC card device path structure.
645
646 @param TextDeviceNode The input Text device path node.
647
648 @return A pointer to Hardware PC card device path structure.
649
650 **/
651 EFI_DEVICE_PATH_PROTOCOL *
652 DevPathFromTextPcCard (
653 IN CHAR16 *TextDeviceNode
654 )
655 {
656 CHAR16 *FunctionNumberStr;
657 PCCARD_DEVICE_PATH *Pccard;
658
659 FunctionNumberStr = GetNextParamStr (&TextDeviceNode);
660 Pccard = (PCCARD_DEVICE_PATH *) CreateDeviceNode (
661 HARDWARE_DEVICE_PATH,
662 HW_PCCARD_DP,
663 (UINT16) sizeof (PCCARD_DEVICE_PATH)
664 );
665
666 Pccard->FunctionNumber = (UINT8) Strtoi (FunctionNumberStr);
667
668 return (EFI_DEVICE_PATH_PROTOCOL *) Pccard;
669 }
670
671 /**
672 Converts a text device path node to Hardware memory map device path structure.
673
674 @param TextDeviceNode The input Text device path node.
675
676 @return A pointer to Hardware memory map device path structure.
677
678 **/
679 EFI_DEVICE_PATH_PROTOCOL *
680 DevPathFromTextMemoryMapped (
681 IN CHAR16 *TextDeviceNode
682 )
683 {
684 CHAR16 *MemoryTypeStr;
685 CHAR16 *StartingAddressStr;
686 CHAR16 *EndingAddressStr;
687 MEMMAP_DEVICE_PATH *MemMap;
688
689 MemoryTypeStr = GetNextParamStr (&TextDeviceNode);
690 StartingAddressStr = GetNextParamStr (&TextDeviceNode);
691 EndingAddressStr = GetNextParamStr (&TextDeviceNode);
692 MemMap = (MEMMAP_DEVICE_PATH *) CreateDeviceNode (
693 HARDWARE_DEVICE_PATH,
694 HW_MEMMAP_DP,
695 (UINT16) sizeof (MEMMAP_DEVICE_PATH)
696 );
697
698 MemMap->MemoryType = (UINT32) Strtoi (MemoryTypeStr);
699 Strtoi64 (StartingAddressStr, &MemMap->StartingAddress);
700 Strtoi64 (EndingAddressStr, &MemMap->EndingAddress);
701
702 return (EFI_DEVICE_PATH_PROTOCOL *) MemMap;
703 }
704
705 /**
706 Converts a text device path node to Vendor device path structure based on the input Type
707 and SubType.
708
709 @param TextDeviceNode The input Text device path node.
710 @param Type The type of device path node.
711 @param SubType The subtype of device path node.
712
713 @return A pointer to the newly-created Vendor device path structure.
714
715 **/
716 EFI_DEVICE_PATH_PROTOCOL *
717 ConvertFromTextVendor (
718 IN CHAR16 *TextDeviceNode,
719 IN UINT8 Type,
720 IN UINT8 SubType
721 )
722 {
723 CHAR16 *GuidStr;
724 CHAR16 *DataStr;
725 UINTN Length;
726 VENDOR_DEVICE_PATH *Vendor;
727
728 GuidStr = GetNextParamStr (&TextDeviceNode);
729
730 DataStr = GetNextParamStr (&TextDeviceNode);
731 Length = StrLen (DataStr);
732 //
733 // Two hex characters make up 1 buffer byte
734 //
735 Length = (Length + 1) / 2;
736
737 Vendor = (VENDOR_DEVICE_PATH *) CreateDeviceNode (
738 Type,
739 SubType,
740 (UINT16) (sizeof (VENDOR_DEVICE_PATH) + Length)
741 );
742
743 StrToGuid (GuidStr, &Vendor->Guid);
744 StrToBuf (((UINT8 *) Vendor) + sizeof (VENDOR_DEVICE_PATH), Length, DataStr);
745
746 return (EFI_DEVICE_PATH_PROTOCOL *) Vendor;
747 }
748
749 /**
750 Converts a text device path node to Vendor Hardware device path structure.
751
752 @param TextDeviceNode The input Text device path node.
753
754 @return A pointer to the newly-created Vendor Hardware device path structure.
755
756 **/
757 EFI_DEVICE_PATH_PROTOCOL *
758 DevPathFromTextVenHw (
759 IN CHAR16 *TextDeviceNode
760 )
761 {
762 return ConvertFromTextVendor (
763 TextDeviceNode,
764 HARDWARE_DEVICE_PATH,
765 HW_VENDOR_DP
766 );
767 }
768
769 /**
770 Converts a text device path node to Hardware Controller device path structure.
771
772 @param TextDeviceNode The input Text device path node.
773
774 @return A pointer to the newly-created Hardware Controller device path structure.
775
776 **/
777 EFI_DEVICE_PATH_PROTOCOL *
778 DevPathFromTextCtrl (
779 IN CHAR16 *TextDeviceNode
780 )
781 {
782 CHAR16 *ControllerStr;
783 CONTROLLER_DEVICE_PATH *Controller;
784
785 ControllerStr = GetNextParamStr (&TextDeviceNode);
786 Controller = (CONTROLLER_DEVICE_PATH *) CreateDeviceNode (
787 HARDWARE_DEVICE_PATH,
788 HW_CONTROLLER_DP,
789 (UINT16) sizeof (CONTROLLER_DEVICE_PATH)
790 );
791 Controller->ControllerNumber = (UINT32) Strtoi (ControllerStr);
792
793 return (EFI_DEVICE_PATH_PROTOCOL *) Controller;
794 }
795
796 /**
797 Converts a generic ACPI text device path node to ACPI device path structure.
798
799 @param TextDeviceNode The input Text device path node.
800
801 @return A pointer to ACPI device path structure.
802
803 **/
804 EFI_DEVICE_PATH_PROTOCOL *
805 DevPathFromTextAcpiPath (
806 IN CHAR16 *TextDeviceNode
807 )
808 {
809 return DevPathFromTextGenericPath (ACPI_DEVICE_PATH, TextDeviceNode);
810 }
811
812 /**
813 Converts a string to EisaId.
814
815 @param Text The input string.
816
817 @return UINT32 EISA ID.
818 **/
819 UINT32
820 EisaIdFromText (
821 IN CHAR16 *Text
822 )
823 {
824 return (((Text[0] - 'A' + 1) & 0x1f) << 10)
825 + (((Text[1] - 'A' + 1) & 0x1f) << 5)
826 + (((Text[2] - 'A' + 1) & 0x1f) << 0)
827 + (UINT32) (StrHexToUintn (&Text[3]) << 16)
828 ;
829 }
830
831 /**
832 Converts a text device path node to ACPI HID device path structure.
833
834 @param TextDeviceNode The input Text device path node.
835
836 @return A pointer to the newly-created ACPI HID device path structure.
837
838 **/
839 EFI_DEVICE_PATH_PROTOCOL *
840 DevPathFromTextAcpi (
841 IN CHAR16 *TextDeviceNode
842 )
843 {
844 CHAR16 *HIDStr;
845 CHAR16 *UIDStr;
846 ACPI_HID_DEVICE_PATH *Acpi;
847
848 HIDStr = GetNextParamStr (&TextDeviceNode);
849 UIDStr = GetNextParamStr (&TextDeviceNode);
850 Acpi = (ACPI_HID_DEVICE_PATH *) CreateDeviceNode (
851 ACPI_DEVICE_PATH,
852 ACPI_DP,
853 (UINT16) sizeof (ACPI_HID_DEVICE_PATH)
854 );
855
856 Acpi->HID = EisaIdFromText (HIDStr);
857 Acpi->UID = (UINT32) Strtoi (UIDStr);
858
859 return (EFI_DEVICE_PATH_PROTOCOL *) Acpi;
860 }
861
862 /**
863 Converts a text device path node to ACPI HID device path structure.
864
865 @param TextDeviceNode The input Text device path node.
866 @param PnPId The input plug and play identification.
867
868 @return A pointer to the newly-created ACPI HID device path structure.
869
870 **/
871 EFI_DEVICE_PATH_PROTOCOL *
872 ConvertFromTextAcpi (
873 IN CHAR16 *TextDeviceNode,
874 IN UINT32 PnPId
875 )
876 {
877 CHAR16 *UIDStr;
878 ACPI_HID_DEVICE_PATH *Acpi;
879
880 UIDStr = GetNextParamStr (&TextDeviceNode);
881 Acpi = (ACPI_HID_DEVICE_PATH *) CreateDeviceNode (
882 ACPI_DEVICE_PATH,
883 ACPI_DP,
884 (UINT16) sizeof (ACPI_HID_DEVICE_PATH)
885 );
886
887 Acpi->HID = EFI_PNP_ID (PnPId);
888 Acpi->UID = (UINT32) Strtoi (UIDStr);
889
890 return (EFI_DEVICE_PATH_PROTOCOL *) Acpi;
891 }
892
893 /**
894 Converts a text device path node to PCI root device path structure.
895
896 @param TextDeviceNode The input Text device path node.
897
898 @return A pointer to the newly-created PCI root device path structure.
899
900 **/
901 EFI_DEVICE_PATH_PROTOCOL *
902 DevPathFromTextPciRoot (
903 IN CHAR16 *TextDeviceNode
904 )
905 {
906 return ConvertFromTextAcpi (TextDeviceNode, 0x0a03);
907 }
908
909 /**
910 Converts a text device path node to PCIE root device path structure.
911
912 @param TextDeviceNode The input Text device path node.
913
914 @return A pointer to the newly-created PCIE root device path structure.
915
916 **/
917 EFI_DEVICE_PATH_PROTOCOL *
918 DevPathFromTextPcieRoot (
919 IN CHAR16 *TextDeviceNode
920 )
921 {
922 return ConvertFromTextAcpi (TextDeviceNode, 0x0a08);
923 }
924
925 /**
926 Converts a text device path node to Floppy device path structure.
927
928 @param TextDeviceNode The input Text device path node.
929
930 @return A pointer to the newly-created Floppy device path structure.
931
932 **/
933 EFI_DEVICE_PATH_PROTOCOL *
934 DevPathFromTextFloppy (
935 IN CHAR16 *TextDeviceNode
936 )
937 {
938 return ConvertFromTextAcpi (TextDeviceNode, 0x0604);
939 }
940
941 /**
942 Converts a text device path node to Keyboard device path structure.
943
944 @param TextDeviceNode The input Text device path node.
945
946 @return A pointer to the newly-created Keyboard device path structure.
947
948 **/
949 EFI_DEVICE_PATH_PROTOCOL *
950 DevPathFromTextKeyboard (
951 IN CHAR16 *TextDeviceNode
952 )
953 {
954 return ConvertFromTextAcpi (TextDeviceNode, 0x0301);
955 }
956
957 /**
958 Converts a text device path node to Serial device path structure.
959
960 @param TextDeviceNode The input Text device path node.
961
962 @return A pointer to the newly-created Serial device path structure.
963
964 **/
965 EFI_DEVICE_PATH_PROTOCOL *
966 DevPathFromTextSerial (
967 IN CHAR16 *TextDeviceNode
968 )
969 {
970 return ConvertFromTextAcpi (TextDeviceNode, 0x0501);
971 }
972
973 /**
974 Converts a text device path node to Parallel Port device path structure.
975
976 @param TextDeviceNode The input Text device path node.
977
978 @return A pointer to the newly-created Parallel Port device path structure.
979
980 **/
981 EFI_DEVICE_PATH_PROTOCOL *
982 DevPathFromTextParallelPort (
983 IN CHAR16 *TextDeviceNode
984 )
985 {
986 return ConvertFromTextAcpi (TextDeviceNode, 0x0401);
987 }
988
989 /**
990 Converts a text device path node to ACPI extension device path structure.
991
992 @param TextDeviceNode The input Text device path node.
993
994 @return A pointer to the newly-created ACPI extension device path structure.
995
996 **/
997 EFI_DEVICE_PATH_PROTOCOL *
998 DevPathFromTextAcpiEx (
999 IN CHAR16 *TextDeviceNode
1000 )
1001 {
1002 CHAR16 *HIDStr;
1003 CHAR16 *CIDStr;
1004 CHAR16 *UIDStr;
1005 CHAR16 *HIDSTRStr;
1006 CHAR16 *CIDSTRStr;
1007 CHAR16 *UIDSTRStr;
1008 CHAR8 *AsciiStr;
1009 UINT16 Length;
1010 ACPI_EXTENDED_HID_DEVICE_PATH *AcpiEx;
1011
1012 HIDStr = GetNextParamStr (&TextDeviceNode);
1013 CIDStr = GetNextParamStr (&TextDeviceNode);
1014 UIDStr = GetNextParamStr (&TextDeviceNode);
1015 HIDSTRStr = GetNextParamStr (&TextDeviceNode);
1016 CIDSTRStr = GetNextParamStr (&TextDeviceNode);
1017 UIDSTRStr = GetNextParamStr (&TextDeviceNode);
1018
1019 Length = (UINT16) (sizeof (ACPI_EXTENDED_HID_DEVICE_PATH) + StrLen (HIDSTRStr) + 1);
1020 Length = (UINT16) (Length + StrLen (UIDSTRStr) + 1);
1021 Length = (UINT16) (Length + StrLen (CIDSTRStr) + 1);
1022 AcpiEx = (ACPI_EXTENDED_HID_DEVICE_PATH *) CreateDeviceNode (
1023 ACPI_DEVICE_PATH,
1024 ACPI_EXTENDED_DP,
1025 Length
1026 );
1027
1028 AcpiEx->HID = EisaIdFromText (HIDStr);
1029 AcpiEx->CID = EisaIdFromText (CIDStr);
1030 AcpiEx->UID = (UINT32) Strtoi (UIDStr);
1031
1032 AsciiStr = (CHAR8 *) ((UINT8 *)AcpiEx + sizeof (ACPI_EXTENDED_HID_DEVICE_PATH));
1033 StrToAscii (HIDSTRStr, &AsciiStr);
1034 StrToAscii (UIDSTRStr, &AsciiStr);
1035 StrToAscii (CIDSTRStr, &AsciiStr);
1036
1037 return (EFI_DEVICE_PATH_PROTOCOL *) AcpiEx;
1038 }
1039
1040 /**
1041 Converts a text device path node to ACPI extension device path structure.
1042
1043 @param TextDeviceNode The input Text device path node.
1044
1045 @return A pointer to the newly-created ACPI extension device path structure.
1046
1047 **/
1048 EFI_DEVICE_PATH_PROTOCOL *
1049 DevPathFromTextAcpiExp (
1050 IN CHAR16 *TextDeviceNode
1051 )
1052 {
1053 CHAR16 *HIDStr;
1054 CHAR16 *CIDStr;
1055 CHAR16 *UIDSTRStr;
1056 CHAR8 *AsciiStr;
1057 UINT16 Length;
1058 ACPI_EXTENDED_HID_DEVICE_PATH *AcpiEx;
1059
1060 HIDStr = GetNextParamStr (&TextDeviceNode);
1061 CIDStr = GetNextParamStr (&TextDeviceNode);
1062 UIDSTRStr = GetNextParamStr (&TextDeviceNode);
1063 Length = (UINT16) (sizeof (ACPI_EXTENDED_HID_DEVICE_PATH) + StrLen (UIDSTRStr) + 3);
1064 AcpiEx = (ACPI_EXTENDED_HID_DEVICE_PATH *) CreateDeviceNode (
1065 ACPI_DEVICE_PATH,
1066 ACPI_EXTENDED_DP,
1067 Length
1068 );
1069
1070 AcpiEx->HID = EisaIdFromText (HIDStr);
1071 AcpiEx->CID = EisaIdFromText (CIDStr);
1072 AcpiEx->UID = 0;
1073
1074 AsciiStr = (CHAR8 *) ((UINT8 *)AcpiEx + sizeof (ACPI_EXTENDED_HID_DEVICE_PATH));
1075 //
1076 // HID string is NULL
1077 //
1078 *AsciiStr = '\0';
1079 //
1080 // Convert UID string
1081 //
1082 AsciiStr++;
1083 StrToAscii (UIDSTRStr, &AsciiStr);
1084 //
1085 // CID string is NULL
1086 //
1087 *AsciiStr = '\0';
1088
1089 return (EFI_DEVICE_PATH_PROTOCOL *) AcpiEx;
1090 }
1091
1092 /**
1093 Converts a text device path node to ACPI _ADR device path structure.
1094
1095 @param TextDeviceNode The input Text device path node.
1096
1097 @return A pointer to the newly-created ACPI _ADR device path structure.
1098
1099 **/
1100 EFI_DEVICE_PATH_PROTOCOL *
1101 DevPathFromTextAcpiAdr (
1102 IN CHAR16 *TextDeviceNode
1103 )
1104 {
1105 CHAR16 *DisplayDeviceStr;
1106 ACPI_ADR_DEVICE_PATH *AcpiAdr;
1107 UINTN Index;
1108 UINTN Length;
1109
1110 AcpiAdr = (ACPI_ADR_DEVICE_PATH *) CreateDeviceNode (
1111 ACPI_DEVICE_PATH,
1112 ACPI_ADR_DP,
1113 (UINT16) sizeof (ACPI_ADR_DEVICE_PATH)
1114 );
1115 ASSERT (AcpiAdr != NULL);
1116
1117 for (Index = 0; ; Index++) {
1118 DisplayDeviceStr = GetNextParamStr (&TextDeviceNode);
1119 if (IS_NULL (*DisplayDeviceStr)) {
1120 break;
1121 }
1122 if (Index > 0) {
1123 Length = DevicePathNodeLength (AcpiAdr);
1124 AcpiAdr = ReallocatePool (
1125 Length,
1126 Length + sizeof (UINT32),
1127 AcpiAdr
1128 );
1129 ASSERT (AcpiAdr != NULL);
1130 SetDevicePathNodeLength (AcpiAdr, Length + sizeof (UINT32));
1131 }
1132
1133 (&AcpiAdr->ADR)[Index] = (UINT32) Strtoi (DisplayDeviceStr);
1134 }
1135
1136 return (EFI_DEVICE_PATH_PROTOCOL *) AcpiAdr;
1137 }
1138
1139 /**
1140 Converts a generic messaging text device path node to messaging device path structure.
1141
1142 @param TextDeviceNode The input Text device path node.
1143
1144 @return A pointer to messaging device path structure.
1145
1146 **/
1147 EFI_DEVICE_PATH_PROTOCOL *
1148 DevPathFromTextMsg (
1149 IN CHAR16 *TextDeviceNode
1150 )
1151 {
1152 return DevPathFromTextGenericPath (MESSAGING_DEVICE_PATH, TextDeviceNode);
1153 }
1154
1155 /**
1156 Converts a text device path node to Parallel Port device path structure.
1157
1158 @param TextDeviceNode The input Text device path node.
1159
1160 @return A pointer to the newly-created Parallel Port device path structure.
1161
1162 **/
1163 EFI_DEVICE_PATH_PROTOCOL *
1164 DevPathFromTextAta (
1165 IN CHAR16 *TextDeviceNode
1166 )
1167 {
1168 CHAR16 *PrimarySecondaryStr;
1169 CHAR16 *SlaveMasterStr;
1170 CHAR16 *LunStr;
1171 ATAPI_DEVICE_PATH *Atapi;
1172
1173 Atapi = (ATAPI_DEVICE_PATH *) CreateDeviceNode (
1174 MESSAGING_DEVICE_PATH,
1175 MSG_ATAPI_DP,
1176 (UINT16) sizeof (ATAPI_DEVICE_PATH)
1177 );
1178
1179 PrimarySecondaryStr = GetNextParamStr (&TextDeviceNode);
1180 SlaveMasterStr = GetNextParamStr (&TextDeviceNode);
1181 LunStr = GetNextParamStr (&TextDeviceNode);
1182
1183 if (StrCmp (PrimarySecondaryStr, L"Primary") == 0) {
1184 Atapi->PrimarySecondary = 0;
1185 } else if (StrCmp (PrimarySecondaryStr, L"Secondary") == 0) {
1186 Atapi->PrimarySecondary = 1;
1187 } else {
1188 Atapi->PrimarySecondary = (UINT8) Strtoi (PrimarySecondaryStr);
1189 }
1190 if (StrCmp (SlaveMasterStr, L"Master") == 0) {
1191 Atapi->SlaveMaster = 0;
1192 } else if (StrCmp (SlaveMasterStr, L"Slave") == 0) {
1193 Atapi->SlaveMaster = 1;
1194 } else {
1195 Atapi->SlaveMaster = (UINT8) Strtoi (SlaveMasterStr);
1196 }
1197
1198 Atapi->Lun = (UINT16) Strtoi (LunStr);
1199
1200 return (EFI_DEVICE_PATH_PROTOCOL *) Atapi;
1201 }
1202
1203 /**
1204 Converts a text device path node to SCSI device path structure.
1205
1206 @param TextDeviceNode The input Text device path node.
1207
1208 @return A pointer to the newly-created SCSI device path structure.
1209
1210 **/
1211 EFI_DEVICE_PATH_PROTOCOL *
1212 DevPathFromTextScsi (
1213 IN CHAR16 *TextDeviceNode
1214 )
1215 {
1216 CHAR16 *PunStr;
1217 CHAR16 *LunStr;
1218 SCSI_DEVICE_PATH *Scsi;
1219
1220 PunStr = GetNextParamStr (&TextDeviceNode);
1221 LunStr = GetNextParamStr (&TextDeviceNode);
1222 Scsi = (SCSI_DEVICE_PATH *) CreateDeviceNode (
1223 MESSAGING_DEVICE_PATH,
1224 MSG_SCSI_DP,
1225 (UINT16) sizeof (SCSI_DEVICE_PATH)
1226 );
1227
1228 Scsi->Pun = (UINT16) Strtoi (PunStr);
1229 Scsi->Lun = (UINT16) Strtoi (LunStr);
1230
1231 return (EFI_DEVICE_PATH_PROTOCOL *) Scsi;
1232 }
1233
1234 /**
1235 Converts a text device path node to Fibre device path structure.
1236
1237 @param TextDeviceNode The input Text device path node.
1238
1239 @return A pointer to the newly-created Fibre device path structure.
1240
1241 **/
1242 EFI_DEVICE_PATH_PROTOCOL *
1243 DevPathFromTextFibre (
1244 IN CHAR16 *TextDeviceNode
1245 )
1246 {
1247 CHAR16 *WWNStr;
1248 CHAR16 *LunStr;
1249 FIBRECHANNEL_DEVICE_PATH *Fibre;
1250
1251 WWNStr = GetNextParamStr (&TextDeviceNode);
1252 LunStr = GetNextParamStr (&TextDeviceNode);
1253 Fibre = (FIBRECHANNEL_DEVICE_PATH *) CreateDeviceNode (
1254 MESSAGING_DEVICE_PATH,
1255 MSG_FIBRECHANNEL_DP,
1256 (UINT16) sizeof (FIBRECHANNEL_DEVICE_PATH)
1257 );
1258
1259 Fibre->Reserved = 0;
1260 Strtoi64 (WWNStr, &Fibre->WWN);
1261 Strtoi64 (LunStr, &Fibre->Lun);
1262
1263 return (EFI_DEVICE_PATH_PROTOCOL *) Fibre;
1264 }
1265
1266 /**
1267 Converts a text device path node to FibreEx device path structure.
1268
1269 @param TextDeviceNode The input Text device path node.
1270
1271 @return A pointer to the newly-created FibreEx device path structure.
1272
1273 **/
1274 EFI_DEVICE_PATH_PROTOCOL *
1275 DevPathFromTextFibreEx (
1276 IN CHAR16 *TextDeviceNode
1277 )
1278 {
1279 CHAR16 *WWNStr;
1280 CHAR16 *LunStr;
1281 FIBRECHANNELEX_DEVICE_PATH *FibreEx;
1282
1283 WWNStr = GetNextParamStr (&TextDeviceNode);
1284 LunStr = GetNextParamStr (&TextDeviceNode);
1285 FibreEx = (FIBRECHANNELEX_DEVICE_PATH *) CreateDeviceNode (
1286 MESSAGING_DEVICE_PATH,
1287 MSG_FIBRECHANNELEX_DP,
1288 (UINT16) sizeof (FIBRECHANNELEX_DEVICE_PATH)
1289 );
1290
1291 FibreEx->Reserved = 0;
1292 Strtoi64 (WWNStr, (UINT64 *) (&FibreEx->WWN));
1293 Strtoi64 (LunStr, (UINT64 *) (&FibreEx->Lun));
1294
1295 *(UINT64 *) (&FibreEx->WWN) = SwapBytes64 (*(UINT64 *) (&FibreEx->WWN));
1296 *(UINT64 *) (&FibreEx->Lun) = SwapBytes64 (*(UINT64 *) (&FibreEx->Lun));
1297
1298 return (EFI_DEVICE_PATH_PROTOCOL *) FibreEx;
1299 }
1300
1301 /**
1302 Converts a text device path node to 1394 device path structure.
1303
1304 @param TextDeviceNode The input Text device path node.
1305
1306 @return A pointer to the newly-created 1394 device path structure.
1307
1308 **/
1309 EFI_DEVICE_PATH_PROTOCOL *
1310 DevPathFromText1394 (
1311 IN CHAR16 *TextDeviceNode
1312 )
1313 {
1314 CHAR16 *GuidStr;
1315 F1394_DEVICE_PATH *F1394DevPath;
1316
1317 GuidStr = GetNextParamStr (&TextDeviceNode);
1318 F1394DevPath = (F1394_DEVICE_PATH *) CreateDeviceNode (
1319 MESSAGING_DEVICE_PATH,
1320 MSG_1394_DP,
1321 (UINT16) sizeof (F1394_DEVICE_PATH)
1322 );
1323
1324 F1394DevPath->Reserved = 0;
1325 F1394DevPath->Guid = StrHexToUint64 (GuidStr);
1326
1327 return (EFI_DEVICE_PATH_PROTOCOL *) F1394DevPath;
1328 }
1329
1330 /**
1331 Converts a text device path node to USB device path structure.
1332
1333 @param TextDeviceNode The input Text device path node.
1334
1335 @return A pointer to the newly-created USB device path structure.
1336
1337 **/
1338 EFI_DEVICE_PATH_PROTOCOL *
1339 DevPathFromTextUsb (
1340 IN CHAR16 *TextDeviceNode
1341 )
1342 {
1343 CHAR16 *PortStr;
1344 CHAR16 *InterfaceStr;
1345 USB_DEVICE_PATH *Usb;
1346
1347 PortStr = GetNextParamStr (&TextDeviceNode);
1348 InterfaceStr = GetNextParamStr (&TextDeviceNode);
1349 Usb = (USB_DEVICE_PATH *) CreateDeviceNode (
1350 MESSAGING_DEVICE_PATH,
1351 MSG_USB_DP,
1352 (UINT16) sizeof (USB_DEVICE_PATH)
1353 );
1354
1355 Usb->ParentPortNumber = (UINT8) Strtoi (PortStr);
1356 Usb->InterfaceNumber = (UINT8) Strtoi (InterfaceStr);
1357
1358 return (EFI_DEVICE_PATH_PROTOCOL *) Usb;
1359 }
1360
1361 /**
1362 Converts a text device path node to I20 device path structure.
1363
1364 @param TextDeviceNode The input Text device path node.
1365
1366 @return A pointer to the newly-created I20 device path structure.
1367
1368 **/
1369 EFI_DEVICE_PATH_PROTOCOL *
1370 DevPathFromTextI2O (
1371 IN CHAR16 *TextDeviceNode
1372 )
1373 {
1374 CHAR16 *TIDStr;
1375 I2O_DEVICE_PATH *I2ODevPath;
1376
1377 TIDStr = GetNextParamStr (&TextDeviceNode);
1378 I2ODevPath = (I2O_DEVICE_PATH *) CreateDeviceNode (
1379 MESSAGING_DEVICE_PATH,
1380 MSG_I2O_DP,
1381 (UINT16) sizeof (I2O_DEVICE_PATH)
1382 );
1383
1384 I2ODevPath->Tid = (UINT32) Strtoi (TIDStr);
1385
1386 return (EFI_DEVICE_PATH_PROTOCOL *) I2ODevPath;
1387 }
1388
1389 /**
1390 Converts a text device path node to Infini Band device path structure.
1391
1392 @param TextDeviceNode The input Text device path node.
1393
1394 @return A pointer to the newly-created Infini Band device path structure.
1395
1396 **/
1397 EFI_DEVICE_PATH_PROTOCOL *
1398 DevPathFromTextInfiniband (
1399 IN CHAR16 *TextDeviceNode
1400 )
1401 {
1402 CHAR16 *FlagsStr;
1403 CHAR16 *GuidStr;
1404 CHAR16 *SidStr;
1405 CHAR16 *TidStr;
1406 CHAR16 *DidStr;
1407 EFI_GUID PortGid;
1408 INFINIBAND_DEVICE_PATH *InfiniBand;
1409
1410 FlagsStr = GetNextParamStr (&TextDeviceNode);
1411 GuidStr = GetNextParamStr (&TextDeviceNode);
1412 SidStr = GetNextParamStr (&TextDeviceNode);
1413 TidStr = GetNextParamStr (&TextDeviceNode);
1414 DidStr = GetNextParamStr (&TextDeviceNode);
1415 InfiniBand = (INFINIBAND_DEVICE_PATH *) CreateDeviceNode (
1416 MESSAGING_DEVICE_PATH,
1417 MSG_INFINIBAND_DP,
1418 (UINT16) sizeof (INFINIBAND_DEVICE_PATH)
1419 );
1420
1421 InfiniBand->ResourceFlags = (UINT32) Strtoi (FlagsStr);
1422 StrToGuid (GuidStr, &PortGid);
1423 CopyMem (InfiniBand->PortGid, &PortGid, sizeof (EFI_GUID));
1424 Strtoi64 (SidStr, &InfiniBand->ServiceId);
1425 Strtoi64 (TidStr, &InfiniBand->TargetPortId);
1426 Strtoi64 (DidStr, &InfiniBand->DeviceId);
1427
1428 return (EFI_DEVICE_PATH_PROTOCOL *) InfiniBand;
1429 }
1430
1431 /**
1432 Converts a text device path node to Vendor-Defined Messaging device path structure.
1433
1434 @param TextDeviceNode The input Text device path node.
1435
1436 @return A pointer to the newly-created Vendor-Defined Messaging device path structure.
1437
1438 **/
1439 EFI_DEVICE_PATH_PROTOCOL *
1440 DevPathFromTextVenMsg (
1441 IN CHAR16 *TextDeviceNode
1442 )
1443 {
1444 return ConvertFromTextVendor (
1445 TextDeviceNode,
1446 MESSAGING_DEVICE_PATH,
1447 MSG_VENDOR_DP
1448 );
1449 }
1450
1451 /**
1452 Converts a text device path node to Vendor defined PC-ANSI device path structure.
1453
1454 @param TextDeviceNode The input Text device path node.
1455
1456 @return A pointer to the newly-created Vendor defined PC-ANSI device path structure.
1457
1458 **/
1459 EFI_DEVICE_PATH_PROTOCOL *
1460 DevPathFromTextVenPcAnsi (
1461 IN CHAR16 *TextDeviceNode
1462 )
1463 {
1464 VENDOR_DEVICE_PATH *Vendor;
1465
1466 Vendor = (VENDOR_DEVICE_PATH *) CreateDeviceNode (
1467 MESSAGING_DEVICE_PATH,
1468 MSG_VENDOR_DP,
1469 (UINT16) sizeof (VENDOR_DEVICE_PATH));
1470 CopyGuid (&Vendor->Guid, &gEfiPcAnsiGuid);
1471
1472 return (EFI_DEVICE_PATH_PROTOCOL *) Vendor;
1473 }
1474
1475 /**
1476 Converts a text device path node to Vendor defined VT100 device path structure.
1477
1478 @param TextDeviceNode The input Text device path node.
1479
1480 @return A pointer to the newly-created Vendor defined VT100 device path structure.
1481
1482 **/
1483 EFI_DEVICE_PATH_PROTOCOL *
1484 DevPathFromTextVenVt100 (
1485 IN CHAR16 *TextDeviceNode
1486 )
1487 {
1488 VENDOR_DEVICE_PATH *Vendor;
1489
1490 Vendor = (VENDOR_DEVICE_PATH *) CreateDeviceNode (
1491 MESSAGING_DEVICE_PATH,
1492 MSG_VENDOR_DP,
1493 (UINT16) sizeof (VENDOR_DEVICE_PATH));
1494 CopyGuid (&Vendor->Guid, &gEfiVT100Guid);
1495
1496 return (EFI_DEVICE_PATH_PROTOCOL *) Vendor;
1497 }
1498
1499 /**
1500 Converts a text device path node to Vendor defined VT100 Plus device path structure.
1501
1502 @param TextDeviceNode The input Text device path node.
1503
1504 @return A pointer to the newly-created Vendor defined VT100 Plus device path structure.
1505
1506 **/
1507 EFI_DEVICE_PATH_PROTOCOL *
1508 DevPathFromTextVenVt100Plus (
1509 IN CHAR16 *TextDeviceNode
1510 )
1511 {
1512 VENDOR_DEVICE_PATH *Vendor;
1513
1514 Vendor = (VENDOR_DEVICE_PATH *) CreateDeviceNode (
1515 MESSAGING_DEVICE_PATH,
1516 MSG_VENDOR_DP,
1517 (UINT16) sizeof (VENDOR_DEVICE_PATH));
1518 CopyGuid (&Vendor->Guid, &gEfiVT100PlusGuid);
1519
1520 return (EFI_DEVICE_PATH_PROTOCOL *) Vendor;
1521 }
1522
1523 /**
1524 Converts a text device path node to Vendor defined UTF8 device path structure.
1525
1526 @param TextDeviceNode The input Text device path node.
1527
1528 @return A pointer to the newly-created Vendor defined UTF8 device path structure.
1529
1530 **/
1531 EFI_DEVICE_PATH_PROTOCOL *
1532 DevPathFromTextVenUtf8 (
1533 IN CHAR16 *TextDeviceNode
1534 )
1535 {
1536 VENDOR_DEVICE_PATH *Vendor;
1537
1538 Vendor = (VENDOR_DEVICE_PATH *) CreateDeviceNode (
1539 MESSAGING_DEVICE_PATH,
1540 MSG_VENDOR_DP,
1541 (UINT16) sizeof (VENDOR_DEVICE_PATH));
1542 CopyGuid (&Vendor->Guid, &gEfiVTUTF8Guid);
1543
1544 return (EFI_DEVICE_PATH_PROTOCOL *) Vendor;
1545 }
1546
1547 /**
1548 Converts a text device path node to UART Flow Control device path structure.
1549
1550 @param TextDeviceNode The input Text device path node.
1551
1552 @return A pointer to the newly-created UART Flow Control device path structure.
1553
1554 **/
1555 EFI_DEVICE_PATH_PROTOCOL *
1556 DevPathFromTextUartFlowCtrl (
1557 IN CHAR16 *TextDeviceNode
1558 )
1559 {
1560 CHAR16 *ValueStr;
1561 UART_FLOW_CONTROL_DEVICE_PATH *UartFlowControl;
1562
1563 ValueStr = GetNextParamStr (&TextDeviceNode);
1564 UartFlowControl = (UART_FLOW_CONTROL_DEVICE_PATH *) CreateDeviceNode (
1565 MESSAGING_DEVICE_PATH,
1566 MSG_VENDOR_DP,
1567 (UINT16) sizeof (UART_FLOW_CONTROL_DEVICE_PATH)
1568 );
1569
1570 CopyGuid (&UartFlowControl->Guid, &gEfiUartDevicePathGuid);
1571 if (StrCmp (ValueStr, L"XonXoff") == 0) {
1572 UartFlowControl->FlowControlMap = 2;
1573 } else if (StrCmp (ValueStr, L"Hardware") == 0) {
1574 UartFlowControl->FlowControlMap = 1;
1575 } else {
1576 UartFlowControl->FlowControlMap = 0;
1577 }
1578
1579 return (EFI_DEVICE_PATH_PROTOCOL *) UartFlowControl;
1580 }
1581
1582 /**
1583 Converts a text device path node to Serial Attached SCSI device path structure.
1584
1585 @param TextDeviceNode The input Text device path node.
1586
1587 @return A pointer to the newly-created Serial Attached SCSI device path structure.
1588
1589 **/
1590 EFI_DEVICE_PATH_PROTOCOL *
1591 DevPathFromTextSAS (
1592 IN CHAR16 *TextDeviceNode
1593 )
1594 {
1595 CHAR16 *AddressStr;
1596 CHAR16 *LunStr;
1597 CHAR16 *RTPStr;
1598 CHAR16 *SASSATAStr;
1599 CHAR16 *LocationStr;
1600 CHAR16 *ConnectStr;
1601 CHAR16 *DriveBayStr;
1602 CHAR16 *ReservedStr;
1603 UINT16 Info;
1604 UINT16 Uint16;
1605 SAS_DEVICE_PATH *Sas;
1606
1607 AddressStr = GetNextParamStr (&TextDeviceNode);
1608 LunStr = GetNextParamStr (&TextDeviceNode);
1609 RTPStr = GetNextParamStr (&TextDeviceNode);
1610 SASSATAStr = GetNextParamStr (&TextDeviceNode);
1611 LocationStr = GetNextParamStr (&TextDeviceNode);
1612 ConnectStr = GetNextParamStr (&TextDeviceNode);
1613 DriveBayStr = GetNextParamStr (&TextDeviceNode);
1614 ReservedStr = GetNextParamStr (&TextDeviceNode);
1615 Sas = (SAS_DEVICE_PATH *) CreateDeviceNode (
1616 MESSAGING_DEVICE_PATH,
1617 MSG_VENDOR_DP,
1618 (UINT16) sizeof (SAS_DEVICE_PATH)
1619 );
1620
1621 CopyGuid (&Sas->Guid, &gEfiSasDevicePathGuid);
1622 Strtoi64 (AddressStr, &Sas->SasAddress);
1623 Strtoi64 (LunStr, &Sas->Lun);
1624 Sas->RelativeTargetPort = (UINT16) Strtoi (RTPStr);
1625
1626 if (StrCmp (SASSATAStr, L"NoTopology") == 0) {
1627 Info = 0x0;
1628
1629 } else if ((StrCmp (SASSATAStr, L"SATA") == 0) || (StrCmp (SASSATAStr, L"SAS") == 0)) {
1630
1631 Uint16 = (UINT16) Strtoi (DriveBayStr);
1632 if (Uint16 == 0) {
1633 Info = 0x1;
1634 } else {
1635 Info = (UINT16) (0x2 | ((Uint16 - 1) << 8));
1636 }
1637
1638 if (StrCmp (SASSATAStr, L"SATA") == 0) {
1639 Info |= BIT4;
1640 }
1641
1642 //
1643 // Location is an integer between 0 and 1 or else
1644 // the keyword Internal (0) or External (1).
1645 //
1646 if (StrCmp (LocationStr, L"External") == 0) {
1647 Uint16 = 1;
1648 } else if (StrCmp (LocationStr, L"Internal") == 0) {
1649 Uint16 = 0;
1650 } else {
1651 Uint16 = ((UINT16) Strtoi (LocationStr) & BIT0);
1652 }
1653 Info |= (Uint16 << 5);
1654
1655 //
1656 // Connect is an integer between 0 and 3 or else
1657 // the keyword Direct (0) or Expanded (1).
1658 //
1659 if (StrCmp (ConnectStr, L"Expanded") == 0) {
1660 Uint16 = 1;
1661 } else if (StrCmp (ConnectStr, L"Direct") == 0) {
1662 Uint16 = 0;
1663 } else {
1664 Uint16 = ((UINT16) Strtoi (ConnectStr) & (BIT0 | BIT1));
1665 }
1666 Info |= (Uint16 << 6);
1667
1668 } else {
1669 Info = (UINT16) Strtoi (SASSATAStr);
1670 }
1671
1672 Sas->DeviceTopology = Info;
1673 Sas->Reserved = (UINT32) Strtoi (ReservedStr);
1674
1675 return (EFI_DEVICE_PATH_PROTOCOL *) Sas;
1676 }
1677
1678 /**
1679 Converts a text device path node to Serial Attached SCSI Ex device path structure.
1680
1681 @param TextDeviceNode The input Text device path node.
1682
1683 @return A pointer to the newly-created Serial Attached SCSI Ex device path structure.
1684
1685 **/
1686 EFI_DEVICE_PATH_PROTOCOL *
1687 DevPathFromTextSasEx (
1688 IN CHAR16 *TextDeviceNode
1689 )
1690 {
1691 CHAR16 *AddressStr;
1692 CHAR16 *LunStr;
1693 CHAR16 *RTPStr;
1694 CHAR16 *SASSATAStr;
1695 CHAR16 *LocationStr;
1696 CHAR16 *ConnectStr;
1697 CHAR16 *DriveBayStr;
1698 UINT16 Info;
1699 UINT16 Uint16;
1700 UINT64 SasAddress;
1701 UINT64 Lun;
1702 SASEX_DEVICE_PATH *SasEx;
1703
1704 AddressStr = GetNextParamStr (&TextDeviceNode);
1705 LunStr = GetNextParamStr (&TextDeviceNode);
1706 RTPStr = GetNextParamStr (&TextDeviceNode);
1707 SASSATAStr = GetNextParamStr (&TextDeviceNode);
1708 LocationStr = GetNextParamStr (&TextDeviceNode);
1709 ConnectStr = GetNextParamStr (&TextDeviceNode);
1710 DriveBayStr = GetNextParamStr (&TextDeviceNode);
1711 SasEx = (SASEX_DEVICE_PATH *) CreateDeviceNode (
1712 MESSAGING_DEVICE_PATH,
1713 MSG_SASEX_DP,
1714 (UINT16) sizeof (SASEX_DEVICE_PATH)
1715 );
1716
1717 Strtoi64 (AddressStr, &SasAddress);
1718 Strtoi64 (LunStr, &Lun);
1719 WriteUnaligned64 ((UINT64 *) &SasEx->SasAddress, SwapBytes64 (SasAddress));
1720 WriteUnaligned64 ((UINT64 *) &SasEx->Lun, SwapBytes64 (Lun));
1721 SasEx->RelativeTargetPort = (UINT16) Strtoi (RTPStr);
1722
1723 if (StrCmp (SASSATAStr, L"NoTopology") == 0) {
1724 Info = 0x0;
1725
1726 } else if ((StrCmp (SASSATAStr, L"SATA") == 0) || (StrCmp (SASSATAStr, L"SAS") == 0)) {
1727
1728 Uint16 = (UINT16) Strtoi (DriveBayStr);
1729 if (Uint16 == 0) {
1730 Info = 0x1;
1731 } else {
1732 Info = (UINT16) (0x2 | ((Uint16 - 1) << 8));
1733 }
1734
1735 if (StrCmp (SASSATAStr, L"SATA") == 0) {
1736 Info |= BIT4;
1737 }
1738
1739 //
1740 // Location is an integer between 0 and 1 or else
1741 // the keyword Internal (0) or External (1).
1742 //
1743 if (StrCmp (LocationStr, L"External") == 0) {
1744 Uint16 = 1;
1745 } else if (StrCmp (LocationStr, L"Internal") == 0) {
1746 Uint16 = 0;
1747 } else {
1748 Uint16 = ((UINT16) Strtoi (LocationStr) & BIT0);
1749 }
1750 Info |= (Uint16 << 5);
1751
1752 //
1753 // Connect is an integer between 0 and 3 or else
1754 // the keyword Direct (0) or Expanded (1).
1755 //
1756 if (StrCmp (ConnectStr, L"Expanded") == 0) {
1757 Uint16 = 1;
1758 } else if (StrCmp (ConnectStr, L"Direct") == 0) {
1759 Uint16 = 0;
1760 } else {
1761 Uint16 = ((UINT16) Strtoi (ConnectStr) & (BIT0 | BIT1));
1762 }
1763 Info |= (Uint16 << 6);
1764
1765 } else {
1766 Info = (UINT16) Strtoi (SASSATAStr);
1767 }
1768
1769 SasEx->DeviceTopology = Info;
1770
1771 return (EFI_DEVICE_PATH_PROTOCOL *) SasEx;
1772 }
1773
1774 /**
1775 Converts a text device path node to NVM Express Namespace device path structure.
1776
1777 @param TextDeviceNode The input Text device path node.
1778
1779 @return A pointer to the newly-created NVM Express Namespace device path structure.
1780
1781 **/
1782 EFI_DEVICE_PATH_PROTOCOL *
1783 DevPathFromTextNVMe (
1784 IN CHAR16 *TextDeviceNode
1785 )
1786 {
1787 CHAR16 *NamespaceIdStr;
1788 CHAR16 *NamespaceUuidStr;
1789 NVME_NAMESPACE_DEVICE_PATH *Nvme;
1790 UINT8 *Uuid;
1791 UINTN Index;
1792
1793 NamespaceIdStr = GetNextParamStr (&TextDeviceNode);
1794 NamespaceUuidStr = GetNextParamStr (&TextDeviceNode);
1795 Nvme = (NVME_NAMESPACE_DEVICE_PATH *) CreateDeviceNode (
1796 MESSAGING_DEVICE_PATH,
1797 MSG_NVME_NAMESPACE_DP,
1798 (UINT16) sizeof (NVME_NAMESPACE_DEVICE_PATH)
1799 );
1800
1801 Nvme->NamespaceId = (UINT32) Strtoi (NamespaceIdStr);
1802 Uuid = (UINT8 *) &Nvme->NamespaceUuid;
1803
1804 Index = sizeof (Nvme->NamespaceUuid) / sizeof (UINT8);
1805 while (Index-- != 0) {
1806 Uuid[Index] = (UINT8) StrHexToUintn (SplitStr (&NamespaceUuidStr, L'-'));
1807 }
1808
1809 return (EFI_DEVICE_PATH_PROTOCOL *) Nvme;
1810 }
1811
1812 /**
1813 Converts a text device path node to Debug Port device path structure.
1814
1815 @param TextDeviceNode The input Text device path node.
1816
1817 @return A pointer to the newly-created Debug Port device path structure.
1818
1819 **/
1820 EFI_DEVICE_PATH_PROTOCOL *
1821 DevPathFromTextDebugPort (
1822 IN CHAR16 *TextDeviceNode
1823 )
1824 {
1825 VENDOR_DEFINED_MESSAGING_DEVICE_PATH *Vend;
1826
1827 Vend = (VENDOR_DEFINED_MESSAGING_DEVICE_PATH *) CreateDeviceNode (
1828 MESSAGING_DEVICE_PATH,
1829 MSG_VENDOR_DP,
1830 (UINT16) sizeof (VENDOR_DEFINED_MESSAGING_DEVICE_PATH)
1831 );
1832
1833 CopyGuid (&Vend->Guid, &gEfiDebugPortProtocolGuid);
1834
1835 return (EFI_DEVICE_PATH_PROTOCOL *) Vend;
1836 }
1837
1838 /**
1839 Converts a text device path node to MAC device path structure.
1840
1841 @param TextDeviceNode The input Text device path node.
1842
1843 @return A pointer to the newly-created MAC device path structure.
1844
1845 **/
1846 EFI_DEVICE_PATH_PROTOCOL *
1847 DevPathFromTextMAC (
1848 IN CHAR16 *TextDeviceNode
1849 )
1850 {
1851 CHAR16 *AddressStr;
1852 CHAR16 *IfTypeStr;
1853 UINTN Length;
1854 MAC_ADDR_DEVICE_PATH *MACDevPath;
1855
1856 AddressStr = GetNextParamStr (&TextDeviceNode);
1857 IfTypeStr = GetNextParamStr (&TextDeviceNode);
1858 MACDevPath = (MAC_ADDR_DEVICE_PATH *) CreateDeviceNode (
1859 MESSAGING_DEVICE_PATH,
1860 MSG_MAC_ADDR_DP,
1861 (UINT16) sizeof (MAC_ADDR_DEVICE_PATH)
1862 );
1863
1864 MACDevPath->IfType = (UINT8) Strtoi (IfTypeStr);
1865
1866 Length = sizeof (EFI_MAC_ADDRESS);
1867 StrToBuf (&MACDevPath->MacAddress.Addr[0], Length, AddressStr);
1868
1869 return (EFI_DEVICE_PATH_PROTOCOL *) MACDevPath;
1870 }
1871
1872
1873 /**
1874 Converts a text format to the network protocol ID.
1875
1876 @param Text String of protocol field.
1877
1878 @return Network protocol ID .
1879
1880 **/
1881 UINTN
1882 NetworkProtocolFromText (
1883 IN CHAR16 *Text
1884 )
1885 {
1886 if (StrCmp (Text, L"UDP") == 0) {
1887 return RFC_1700_UDP_PROTOCOL;
1888 }
1889
1890 if (StrCmp (Text, L"TCP") == 0) {
1891 return RFC_1700_TCP_PROTOCOL;
1892 }
1893
1894 return Strtoi (Text);
1895 }
1896
1897
1898 /**
1899 Converts a text device path node to IPV4 device path structure.
1900
1901 @param TextDeviceNode The input Text device path node.
1902
1903 @return A pointer to the newly-created IPV4 device path structure.
1904
1905 **/
1906 EFI_DEVICE_PATH_PROTOCOL *
1907 DevPathFromTextIPv4 (
1908 IN CHAR16 *TextDeviceNode
1909 )
1910 {
1911 CHAR16 *RemoteIPStr;
1912 CHAR16 *ProtocolStr;
1913 CHAR16 *TypeStr;
1914 CHAR16 *LocalIPStr;
1915 CHAR16 *GatewayIPStr;
1916 CHAR16 *SubnetMaskStr;
1917 IPv4_DEVICE_PATH *IPv4;
1918
1919 RemoteIPStr = GetNextParamStr (&TextDeviceNode);
1920 ProtocolStr = GetNextParamStr (&TextDeviceNode);
1921 TypeStr = GetNextParamStr (&TextDeviceNode);
1922 LocalIPStr = GetNextParamStr (&TextDeviceNode);
1923 GatewayIPStr = GetNextParamStr (&TextDeviceNode);
1924 SubnetMaskStr = GetNextParamStr (&TextDeviceNode);
1925 IPv4 = (IPv4_DEVICE_PATH *) CreateDeviceNode (
1926 MESSAGING_DEVICE_PATH,
1927 MSG_IPv4_DP,
1928 (UINT16) sizeof (IPv4_DEVICE_PATH)
1929 );
1930
1931 StrToIPv4Addr (&RemoteIPStr, &IPv4->RemoteIpAddress);
1932 IPv4->Protocol = (UINT16) NetworkProtocolFromText (ProtocolStr);
1933 if (StrCmp (TypeStr, L"Static") == 0) {
1934 IPv4->StaticIpAddress = TRUE;
1935 } else {
1936 IPv4->StaticIpAddress = FALSE;
1937 }
1938
1939 StrToIPv4Addr (&LocalIPStr, &IPv4->LocalIpAddress);
1940 if (!IS_NULL (*GatewayIPStr) && !IS_NULL (*SubnetMaskStr)) {
1941 StrToIPv4Addr (&GatewayIPStr, &IPv4->GatewayIpAddress);
1942 StrToIPv4Addr (&SubnetMaskStr, &IPv4->SubnetMask);
1943 } else {
1944 ZeroMem (&IPv4->GatewayIpAddress, sizeof (IPv4->GatewayIpAddress));
1945 ZeroMem (&IPv4->SubnetMask, sizeof (IPv4->SubnetMask));
1946 }
1947
1948 IPv4->LocalPort = 0;
1949 IPv4->RemotePort = 0;
1950
1951 return (EFI_DEVICE_PATH_PROTOCOL *) IPv4;
1952 }
1953
1954 /**
1955 Converts a text device path node to IPV6 device path structure.
1956
1957 @param TextDeviceNode The input Text device path node.
1958
1959 @return A pointer to the newly-created IPV6 device path structure.
1960
1961 **/
1962 EFI_DEVICE_PATH_PROTOCOL *
1963 DevPathFromTextIPv6 (
1964 IN CHAR16 *TextDeviceNode
1965 )
1966 {
1967 CHAR16 *RemoteIPStr;
1968 CHAR16 *ProtocolStr;
1969 CHAR16 *TypeStr;
1970 CHAR16 *LocalIPStr;
1971 CHAR16 *GatewayIPStr;
1972 CHAR16 *PrefixLengthStr;
1973 IPv6_DEVICE_PATH *IPv6;
1974
1975 RemoteIPStr = GetNextParamStr (&TextDeviceNode);
1976 ProtocolStr = GetNextParamStr (&TextDeviceNode);
1977 TypeStr = GetNextParamStr (&TextDeviceNode);
1978 LocalIPStr = GetNextParamStr (&TextDeviceNode);
1979 PrefixLengthStr = GetNextParamStr (&TextDeviceNode);
1980 GatewayIPStr = GetNextParamStr (&TextDeviceNode);
1981 IPv6 = (IPv6_DEVICE_PATH *) CreateDeviceNode (
1982 MESSAGING_DEVICE_PATH,
1983 MSG_IPv6_DP,
1984 (UINT16) sizeof (IPv6_DEVICE_PATH)
1985 );
1986
1987 StrToIPv6Addr (&RemoteIPStr, &IPv6->RemoteIpAddress);
1988 IPv6->Protocol = (UINT16) NetworkProtocolFromText (ProtocolStr);
1989 if (StrCmp (TypeStr, L"Static") == 0) {
1990 IPv6->IpAddressOrigin = 0;
1991 } else if (StrCmp (TypeStr, L"StatelessAutoConfigure") == 0) {
1992 IPv6->IpAddressOrigin = 1;
1993 } else {
1994 IPv6->IpAddressOrigin = 2;
1995 }
1996
1997 StrToIPv6Addr (&LocalIPStr, &IPv6->LocalIpAddress);
1998 if (!IS_NULL (*GatewayIPStr) && !IS_NULL (*PrefixLengthStr)) {
1999 StrToIPv6Addr (&GatewayIPStr, &IPv6->GatewayIpAddress);
2000 IPv6->PrefixLength = (UINT8) Strtoi (PrefixLengthStr);
2001 } else {
2002 ZeroMem (&IPv6->GatewayIpAddress, sizeof (IPv6->GatewayIpAddress));
2003 IPv6->PrefixLength = 0;
2004 }
2005
2006 IPv6->LocalPort = 0;
2007 IPv6->RemotePort = 0;
2008
2009 return (EFI_DEVICE_PATH_PROTOCOL *) IPv6;
2010 }
2011
2012 /**
2013 Converts a text device path node to UART device path structure.
2014
2015 @param TextDeviceNode The input Text device path node.
2016
2017 @return A pointer to the newly-created UART device path structure.
2018
2019 **/
2020 EFI_DEVICE_PATH_PROTOCOL *
2021 DevPathFromTextUart (
2022 IN CHAR16 *TextDeviceNode
2023 )
2024 {
2025 CHAR16 *BaudStr;
2026 CHAR16 *DataBitsStr;
2027 CHAR16 *ParityStr;
2028 CHAR16 *StopBitsStr;
2029 UART_DEVICE_PATH *Uart;
2030
2031 BaudStr = GetNextParamStr (&TextDeviceNode);
2032 DataBitsStr = GetNextParamStr (&TextDeviceNode);
2033 ParityStr = GetNextParamStr (&TextDeviceNode);
2034 StopBitsStr = GetNextParamStr (&TextDeviceNode);
2035 Uart = (UART_DEVICE_PATH *) CreateDeviceNode (
2036 MESSAGING_DEVICE_PATH,
2037 MSG_UART_DP,
2038 (UINT16) sizeof (UART_DEVICE_PATH)
2039 );
2040
2041 if (StrCmp (BaudStr, L"DEFAULT") == 0) {
2042 Uart->BaudRate = 115200;
2043 } else {
2044 Strtoi64 (BaudStr, &Uart->BaudRate);
2045 }
2046 Uart->DataBits = (UINT8) ((StrCmp (DataBitsStr, L"DEFAULT") == 0) ? 8 : Strtoi (DataBitsStr));
2047 switch (*ParityStr) {
2048 case L'D':
2049 Uart->Parity = 0;
2050 break;
2051
2052 case L'N':
2053 Uart->Parity = 1;
2054 break;
2055
2056 case L'E':
2057 Uart->Parity = 2;
2058 break;
2059
2060 case L'O':
2061 Uart->Parity = 3;
2062 break;
2063
2064 case L'M':
2065 Uart->Parity = 4;
2066 break;
2067
2068 case L'S':
2069 Uart->Parity = 5;
2070 break;
2071
2072 default:
2073 Uart->Parity = (UINT8) Strtoi (ParityStr);
2074 break;
2075 }
2076
2077 if (StrCmp (StopBitsStr, L"D") == 0) {
2078 Uart->StopBits = (UINT8) 0;
2079 } else if (StrCmp (StopBitsStr, L"1") == 0) {
2080 Uart->StopBits = (UINT8) 1;
2081 } else if (StrCmp (StopBitsStr, L"1.5") == 0) {
2082 Uart->StopBits = (UINT8) 2;
2083 } else if (StrCmp (StopBitsStr, L"2") == 0) {
2084 Uart->StopBits = (UINT8) 3;
2085 } else {
2086 Uart->StopBits = (UINT8) Strtoi (StopBitsStr);
2087 }
2088
2089 return (EFI_DEVICE_PATH_PROTOCOL *) Uart;
2090 }
2091
2092 /**
2093 Converts a text device path node to USB class device path structure.
2094
2095 @param TextDeviceNode The input Text device path node.
2096 @param UsbClassText A pointer to USB_CLASS_TEXT structure to be integrated to USB Class Text.
2097
2098 @return A pointer to the newly-created USB class device path structure.
2099
2100 **/
2101 EFI_DEVICE_PATH_PROTOCOL *
2102 ConvertFromTextUsbClass (
2103 IN CHAR16 *TextDeviceNode,
2104 IN USB_CLASS_TEXT *UsbClassText
2105 )
2106 {
2107 CHAR16 *VIDStr;
2108 CHAR16 *PIDStr;
2109 CHAR16 *ClassStr;
2110 CHAR16 *SubClassStr;
2111 CHAR16 *ProtocolStr;
2112 USB_CLASS_DEVICE_PATH *UsbClass;
2113
2114 UsbClass = (USB_CLASS_DEVICE_PATH *) CreateDeviceNode (
2115 MESSAGING_DEVICE_PATH,
2116 MSG_USB_CLASS_DP,
2117 (UINT16) sizeof (USB_CLASS_DEVICE_PATH)
2118 );
2119
2120 VIDStr = GetNextParamStr (&TextDeviceNode);
2121 PIDStr = GetNextParamStr (&TextDeviceNode);
2122 if (UsbClassText->ClassExist) {
2123 ClassStr = GetNextParamStr (&TextDeviceNode);
2124 UsbClass->DeviceClass = (UINT8) Strtoi (ClassStr);
2125 } else {
2126 UsbClass->DeviceClass = UsbClassText->Class;
2127 }
2128 if (UsbClassText->SubClassExist) {
2129 SubClassStr = GetNextParamStr (&TextDeviceNode);
2130 UsbClass->DeviceSubClass = (UINT8) Strtoi (SubClassStr);
2131 } else {
2132 UsbClass->DeviceSubClass = UsbClassText->SubClass;
2133 }
2134
2135 ProtocolStr = GetNextParamStr (&TextDeviceNode);
2136
2137 UsbClass->VendorId = (UINT16) Strtoi (VIDStr);
2138 UsbClass->ProductId = (UINT16) Strtoi (PIDStr);
2139 UsbClass->DeviceProtocol = (UINT8) Strtoi (ProtocolStr);
2140
2141 return (EFI_DEVICE_PATH_PROTOCOL *) UsbClass;
2142 }
2143
2144
2145 /**
2146 Converts a text device path node to USB class device path structure.
2147
2148 @param TextDeviceNode The input Text device path node.
2149
2150 @return A pointer to the newly-created USB class device path structure.
2151
2152 **/
2153 EFI_DEVICE_PATH_PROTOCOL *
2154 DevPathFromTextUsbClass (
2155 IN CHAR16 *TextDeviceNode
2156 )
2157 {
2158 USB_CLASS_TEXT UsbClassText;
2159
2160 UsbClassText.ClassExist = TRUE;
2161 UsbClassText.SubClassExist = TRUE;
2162
2163 return ConvertFromTextUsbClass (TextDeviceNode, &UsbClassText);
2164 }
2165
2166 /**
2167 Converts a text device path node to USB audio device path structure.
2168
2169 @param TextDeviceNode The input Text device path node.
2170
2171 @return A pointer to the newly-created USB audio device path structure.
2172
2173 **/
2174 EFI_DEVICE_PATH_PROTOCOL *
2175 DevPathFromTextUsbAudio (
2176 IN CHAR16 *TextDeviceNode
2177 )
2178 {
2179 USB_CLASS_TEXT UsbClassText;
2180
2181 UsbClassText.ClassExist = FALSE;
2182 UsbClassText.Class = USB_CLASS_AUDIO;
2183 UsbClassText.SubClassExist = TRUE;
2184
2185 return ConvertFromTextUsbClass (TextDeviceNode, &UsbClassText);
2186 }
2187
2188 /**
2189 Converts a text device path node to USB CDC Control device path structure.
2190
2191 @param TextDeviceNode The input Text device path node.
2192
2193 @return A pointer to the newly-created USB CDC Control device path structure.
2194
2195 **/
2196 EFI_DEVICE_PATH_PROTOCOL *
2197 DevPathFromTextUsbCDCControl (
2198 IN CHAR16 *TextDeviceNode
2199 )
2200 {
2201 USB_CLASS_TEXT UsbClassText;
2202
2203 UsbClassText.ClassExist = FALSE;
2204 UsbClassText.Class = USB_CLASS_CDCCONTROL;
2205 UsbClassText.SubClassExist = TRUE;
2206
2207 return ConvertFromTextUsbClass (TextDeviceNode, &UsbClassText);
2208 }
2209
2210 /**
2211 Converts a text device path node to USB HID device path structure.
2212
2213 @param TextDeviceNode The input Text device path node.
2214
2215 @return A pointer to the newly-created USB HID device path structure.
2216
2217 **/
2218 EFI_DEVICE_PATH_PROTOCOL *
2219 DevPathFromTextUsbHID (
2220 IN CHAR16 *TextDeviceNode
2221 )
2222 {
2223 USB_CLASS_TEXT UsbClassText;
2224
2225 UsbClassText.ClassExist = FALSE;
2226 UsbClassText.Class = USB_CLASS_HID;
2227 UsbClassText.SubClassExist = TRUE;
2228
2229 return ConvertFromTextUsbClass (TextDeviceNode, &UsbClassText);
2230 }
2231
2232 /**
2233 Converts a text device path node to USB Image device path structure.
2234
2235 @param TextDeviceNode The input Text device path node.
2236
2237 @return A pointer to the newly-created USB Image device path structure.
2238
2239 **/
2240 EFI_DEVICE_PATH_PROTOCOL *
2241 DevPathFromTextUsbImage (
2242 IN CHAR16 *TextDeviceNode
2243 )
2244 {
2245 USB_CLASS_TEXT UsbClassText;
2246
2247 UsbClassText.ClassExist = FALSE;
2248 UsbClassText.Class = USB_CLASS_IMAGE;
2249 UsbClassText.SubClassExist = TRUE;
2250
2251 return ConvertFromTextUsbClass (TextDeviceNode, &UsbClassText);
2252 }
2253
2254 /**
2255 Converts a text device path node to USB Print device path structure.
2256
2257 @param TextDeviceNode The input Text device path node.
2258
2259 @return A pointer to the newly-created USB Print device path structure.
2260
2261 **/
2262 EFI_DEVICE_PATH_PROTOCOL *
2263 DevPathFromTextUsbPrinter (
2264 IN CHAR16 *TextDeviceNode
2265 )
2266 {
2267 USB_CLASS_TEXT UsbClassText;
2268
2269 UsbClassText.ClassExist = FALSE;
2270 UsbClassText.Class = USB_CLASS_PRINTER;
2271 UsbClassText.SubClassExist = TRUE;
2272
2273 return ConvertFromTextUsbClass (TextDeviceNode, &UsbClassText);
2274 }
2275
2276 /**
2277 Converts a text device path node to USB mass storage device path structure.
2278
2279 @param TextDeviceNode The input Text device path node.
2280
2281 @return A pointer to the newly-created USB mass storage device path structure.
2282
2283 **/
2284 EFI_DEVICE_PATH_PROTOCOL *
2285 DevPathFromTextUsbMassStorage (
2286 IN CHAR16 *TextDeviceNode
2287 )
2288 {
2289 USB_CLASS_TEXT UsbClassText;
2290
2291 UsbClassText.ClassExist = FALSE;
2292 UsbClassText.Class = USB_CLASS_MASS_STORAGE;
2293 UsbClassText.SubClassExist = TRUE;
2294
2295 return ConvertFromTextUsbClass (TextDeviceNode, &UsbClassText);
2296 }
2297
2298 /**
2299 Converts a text device path node to USB HUB device path structure.
2300
2301 @param TextDeviceNode The input Text device path node.
2302
2303 @return A pointer to the newly-created USB HUB device path structure.
2304
2305 **/
2306 EFI_DEVICE_PATH_PROTOCOL *
2307 DevPathFromTextUsbHub (
2308 IN CHAR16 *TextDeviceNode
2309 )
2310 {
2311 USB_CLASS_TEXT UsbClassText;
2312
2313 UsbClassText.ClassExist = FALSE;
2314 UsbClassText.Class = USB_CLASS_HUB;
2315 UsbClassText.SubClassExist = TRUE;
2316
2317 return ConvertFromTextUsbClass (TextDeviceNode, &UsbClassText);
2318 }
2319
2320 /**
2321 Converts a text device path node to USB CDC data device path structure.
2322
2323 @param TextDeviceNode The input Text device path node.
2324
2325 @return A pointer to the newly-created USB CDC data device path structure.
2326
2327 **/
2328 EFI_DEVICE_PATH_PROTOCOL *
2329 DevPathFromTextUsbCDCData (
2330 IN CHAR16 *TextDeviceNode
2331 )
2332 {
2333 USB_CLASS_TEXT UsbClassText;
2334
2335 UsbClassText.ClassExist = FALSE;
2336 UsbClassText.Class = USB_CLASS_CDCDATA;
2337 UsbClassText.SubClassExist = TRUE;
2338
2339 return ConvertFromTextUsbClass (TextDeviceNode, &UsbClassText);
2340 }
2341
2342 /**
2343 Converts a text device path node to USB smart card device path structure.
2344
2345 @param TextDeviceNode The input Text device path node.
2346
2347 @return A pointer to the newly-created USB smart card device path structure.
2348
2349 **/
2350 EFI_DEVICE_PATH_PROTOCOL *
2351 DevPathFromTextUsbSmartCard (
2352 IN CHAR16 *TextDeviceNode
2353 )
2354 {
2355 USB_CLASS_TEXT UsbClassText;
2356
2357 UsbClassText.ClassExist = FALSE;
2358 UsbClassText.Class = USB_CLASS_SMART_CARD;
2359 UsbClassText.SubClassExist = TRUE;
2360
2361 return ConvertFromTextUsbClass (TextDeviceNode, &UsbClassText);
2362 }
2363
2364 /**
2365 Converts a text device path node to USB video device path structure.
2366
2367 @param TextDeviceNode The input Text device path node.
2368
2369 @return A pointer to the newly-created USB video device path structure.
2370
2371 **/
2372 EFI_DEVICE_PATH_PROTOCOL *
2373 DevPathFromTextUsbVideo (
2374 IN CHAR16 *TextDeviceNode
2375 )
2376 {
2377 USB_CLASS_TEXT UsbClassText;
2378
2379 UsbClassText.ClassExist = FALSE;
2380 UsbClassText.Class = USB_CLASS_VIDEO;
2381 UsbClassText.SubClassExist = TRUE;
2382
2383 return ConvertFromTextUsbClass (TextDeviceNode, &UsbClassText);
2384 }
2385
2386 /**
2387 Converts a text device path node to USB diagnostic device path structure.
2388
2389 @param TextDeviceNode The input Text device path node.
2390
2391 @return A pointer to the newly-created USB diagnostic device path structure.
2392
2393 **/
2394 EFI_DEVICE_PATH_PROTOCOL *
2395 DevPathFromTextUsbDiagnostic (
2396 IN CHAR16 *TextDeviceNode
2397 )
2398 {
2399 USB_CLASS_TEXT UsbClassText;
2400
2401 UsbClassText.ClassExist = FALSE;
2402 UsbClassText.Class = USB_CLASS_DIAGNOSTIC;
2403 UsbClassText.SubClassExist = TRUE;
2404
2405 return ConvertFromTextUsbClass (TextDeviceNode, &UsbClassText);
2406 }
2407
2408 /**
2409 Converts a text device path node to USB wireless device path structure.
2410
2411 @param TextDeviceNode The input Text device path node.
2412
2413 @return A pointer to the newly-created USB wireless device path structure.
2414
2415 **/
2416 EFI_DEVICE_PATH_PROTOCOL *
2417 DevPathFromTextUsbWireless (
2418 IN CHAR16 *TextDeviceNode
2419 )
2420 {
2421 USB_CLASS_TEXT UsbClassText;
2422
2423 UsbClassText.ClassExist = FALSE;
2424 UsbClassText.Class = USB_CLASS_WIRELESS;
2425 UsbClassText.SubClassExist = TRUE;
2426
2427 return ConvertFromTextUsbClass (TextDeviceNode, &UsbClassText);
2428 }
2429
2430 /**
2431 Converts a text device path node to USB device firmware update device path structure.
2432
2433 @param TextDeviceNode The input Text device path node.
2434
2435 @return A pointer to the newly-created USB device firmware update device path structure.
2436
2437 **/
2438 EFI_DEVICE_PATH_PROTOCOL *
2439 DevPathFromTextUsbDeviceFirmwareUpdate (
2440 IN CHAR16 *TextDeviceNode
2441 )
2442 {
2443 USB_CLASS_TEXT UsbClassText;
2444
2445 UsbClassText.ClassExist = FALSE;
2446 UsbClassText.Class = USB_CLASS_RESERVE;
2447 UsbClassText.SubClassExist = FALSE;
2448 UsbClassText.SubClass = USB_SUBCLASS_FW_UPDATE;
2449
2450 return ConvertFromTextUsbClass (TextDeviceNode, &UsbClassText);
2451 }
2452
2453 /**
2454 Converts a text device path node to USB IRDA bridge device path structure.
2455
2456 @param TextDeviceNode The input Text device path node.
2457
2458 @return A pointer to the newly-created USB IRDA bridge device path structure.
2459
2460 **/
2461 EFI_DEVICE_PATH_PROTOCOL *
2462 DevPathFromTextUsbIrdaBridge (
2463 IN CHAR16 *TextDeviceNode
2464 )
2465 {
2466 USB_CLASS_TEXT UsbClassText;
2467
2468 UsbClassText.ClassExist = FALSE;
2469 UsbClassText.Class = USB_CLASS_RESERVE;
2470 UsbClassText.SubClassExist = FALSE;
2471 UsbClassText.SubClass = USB_SUBCLASS_IRDA_BRIDGE;
2472
2473 return ConvertFromTextUsbClass (TextDeviceNode, &UsbClassText);
2474 }
2475
2476 /**
2477 Converts a text device path node to USB text and measurement device path structure.
2478
2479 @param TextDeviceNode The input Text device path node.
2480
2481 @return A pointer to the newly-created USB text and measurement device path structure.
2482
2483 **/
2484 EFI_DEVICE_PATH_PROTOCOL *
2485 DevPathFromTextUsbTestAndMeasurement (
2486 IN CHAR16 *TextDeviceNode
2487 )
2488 {
2489 USB_CLASS_TEXT UsbClassText;
2490
2491 UsbClassText.ClassExist = FALSE;
2492 UsbClassText.Class = USB_CLASS_RESERVE;
2493 UsbClassText.SubClassExist = FALSE;
2494 UsbClassText.SubClass = USB_SUBCLASS_TEST;
2495
2496 return ConvertFromTextUsbClass (TextDeviceNode, &UsbClassText);
2497 }
2498
2499 /**
2500 Converts a text device path node to USB WWID device path structure.
2501
2502 @param TextDeviceNode The input Text device path node.
2503
2504 @return A pointer to the newly-created USB WWID device path structure.
2505
2506 **/
2507 EFI_DEVICE_PATH_PROTOCOL *
2508 DevPathFromTextUsbWwid (
2509 IN CHAR16 *TextDeviceNode
2510 )
2511 {
2512 CHAR16 *VIDStr;
2513 CHAR16 *PIDStr;
2514 CHAR16 *InterfaceNumStr;
2515 CHAR16 *SerialNumberStr;
2516 USB_WWID_DEVICE_PATH *UsbWwid;
2517 UINTN SerialNumberStrLen;
2518
2519 VIDStr = GetNextParamStr (&TextDeviceNode);
2520 PIDStr = GetNextParamStr (&TextDeviceNode);
2521 InterfaceNumStr = GetNextParamStr (&TextDeviceNode);
2522 SerialNumberStr = GetNextParamStr (&TextDeviceNode);
2523 SerialNumberStrLen = StrLen (SerialNumberStr);
2524 if (SerialNumberStrLen >= 2 &&
2525 SerialNumberStr[0] == L'\"' &&
2526 SerialNumberStr[SerialNumberStrLen - 1] == L'\"'
2527 ) {
2528 SerialNumberStr[SerialNumberStrLen - 1] = L'\0';
2529 SerialNumberStr++;
2530 SerialNumberStrLen -= 2;
2531 }
2532 UsbWwid = (USB_WWID_DEVICE_PATH *) CreateDeviceNode (
2533 MESSAGING_DEVICE_PATH,
2534 MSG_USB_WWID_DP,
2535 (UINT16) (sizeof (USB_WWID_DEVICE_PATH) + SerialNumberStrLen * sizeof (CHAR16))
2536 );
2537 UsbWwid->VendorId = (UINT16) Strtoi (VIDStr);
2538 UsbWwid->ProductId = (UINT16) Strtoi (PIDStr);
2539 UsbWwid->InterfaceNumber = (UINT16) Strtoi (InterfaceNumStr);
2540 StrnCpy ((CHAR16 *) ((UINT8 *) UsbWwid + sizeof (USB_WWID_DEVICE_PATH)), SerialNumberStr, SerialNumberStrLen);
2541
2542 return (EFI_DEVICE_PATH_PROTOCOL *) UsbWwid;
2543 }
2544
2545 /**
2546 Converts a text device path node to Logic Unit device path structure.
2547
2548 @param TextDeviceNode The input Text device path node.
2549
2550 @return A pointer to the newly-created Logic Unit device path structure.
2551
2552 **/
2553 EFI_DEVICE_PATH_PROTOCOL *
2554 DevPathFromTextUnit (
2555 IN CHAR16 *TextDeviceNode
2556 )
2557 {
2558 CHAR16 *LunStr;
2559 DEVICE_LOGICAL_UNIT_DEVICE_PATH *LogicalUnit;
2560
2561 LunStr = GetNextParamStr (&TextDeviceNode);
2562 LogicalUnit = (DEVICE_LOGICAL_UNIT_DEVICE_PATH *) CreateDeviceNode (
2563 MESSAGING_DEVICE_PATH,
2564 MSG_DEVICE_LOGICAL_UNIT_DP,
2565 (UINT16) sizeof (DEVICE_LOGICAL_UNIT_DEVICE_PATH)
2566 );
2567
2568 LogicalUnit->Lun = (UINT8) Strtoi (LunStr);
2569
2570 return (EFI_DEVICE_PATH_PROTOCOL *) LogicalUnit;
2571 }
2572
2573 /**
2574 Converts a text device path node to iSCSI device path structure.
2575
2576 @param TextDeviceNode The input Text device path node.
2577
2578 @return A pointer to the newly-created iSCSI device path structure.
2579
2580 **/
2581 EFI_DEVICE_PATH_PROTOCOL *
2582 DevPathFromTextiSCSI (
2583 IN CHAR16 *TextDeviceNode
2584 )
2585 {
2586 UINT16 Options;
2587 CHAR16 *NameStr;
2588 CHAR16 *PortalGroupStr;
2589 CHAR16 *LunStr;
2590 CHAR16 *HeaderDigestStr;
2591 CHAR16 *DataDigestStr;
2592 CHAR16 *AuthenticationStr;
2593 CHAR16 *ProtocolStr;
2594 CHAR8 *AsciiStr;
2595 ISCSI_DEVICE_PATH_WITH_NAME *ISCSIDevPath;
2596
2597 NameStr = GetNextParamStr (&TextDeviceNode);
2598 PortalGroupStr = GetNextParamStr (&TextDeviceNode);
2599 LunStr = GetNextParamStr (&TextDeviceNode);
2600 HeaderDigestStr = GetNextParamStr (&TextDeviceNode);
2601 DataDigestStr = GetNextParamStr (&TextDeviceNode);
2602 AuthenticationStr = GetNextParamStr (&TextDeviceNode);
2603 ProtocolStr = GetNextParamStr (&TextDeviceNode);
2604 ISCSIDevPath = (ISCSI_DEVICE_PATH_WITH_NAME *) CreateDeviceNode (
2605 MESSAGING_DEVICE_PATH,
2606 MSG_ISCSI_DP,
2607 (UINT16) (sizeof (ISCSI_DEVICE_PATH_WITH_NAME) + StrLen (NameStr))
2608 );
2609
2610 AsciiStr = ISCSIDevPath->TargetName;
2611 StrToAscii (NameStr, &AsciiStr);
2612
2613 ISCSIDevPath->TargetPortalGroupTag = (UINT16) Strtoi (PortalGroupStr);
2614 Strtoi64 (LunStr, &ISCSIDevPath->Lun);
2615
2616 Options = 0x0000;
2617 if (StrCmp (HeaderDigestStr, L"CRC32C") == 0) {
2618 Options |= 0x0002;
2619 }
2620
2621 if (StrCmp (DataDigestStr, L"CRC32C") == 0) {
2622 Options |= 0x0008;
2623 }
2624
2625 if (StrCmp (AuthenticationStr, L"None") == 0) {
2626 Options |= 0x0800;
2627 }
2628
2629 if (StrCmp (AuthenticationStr, L"CHAP_UNI") == 0) {
2630 Options |= 0x1000;
2631 }
2632
2633 ISCSIDevPath->LoginOption = (UINT16) Options;
2634
2635 ISCSIDevPath->NetworkProtocol = (UINT16) StrCmp (ProtocolStr, L"TCP");
2636
2637 return (EFI_DEVICE_PATH_PROTOCOL *) ISCSIDevPath;
2638 }
2639
2640 /**
2641 Converts a text device path node to VLAN device path structure.
2642
2643 @param TextDeviceNode The input Text device path node.
2644
2645 @return A pointer to the newly-created VLAN device path structure.
2646
2647 **/
2648 EFI_DEVICE_PATH_PROTOCOL *
2649 DevPathFromTextVlan (
2650 IN CHAR16 *TextDeviceNode
2651 )
2652 {
2653 CHAR16 *VlanStr;
2654 VLAN_DEVICE_PATH *Vlan;
2655
2656 VlanStr = GetNextParamStr (&TextDeviceNode);
2657 Vlan = (VLAN_DEVICE_PATH *) CreateDeviceNode (
2658 MESSAGING_DEVICE_PATH,
2659 MSG_VLAN_DP,
2660 (UINT16) sizeof (VLAN_DEVICE_PATH)
2661 );
2662
2663 Vlan->VlanId = (UINT16) Strtoi (VlanStr);
2664
2665 return (EFI_DEVICE_PATH_PROTOCOL *) Vlan;
2666 }
2667
2668 /**
2669 Converts a media text device path node to media device path structure.
2670
2671 @param TextDeviceNode The input Text device path node.
2672
2673 @return A pointer to media device path structure.
2674
2675 **/
2676 EFI_DEVICE_PATH_PROTOCOL *
2677 DevPathFromTextMediaPath (
2678 IN CHAR16 *TextDeviceNode
2679 )
2680 {
2681 return DevPathFromTextGenericPath (MEDIA_DEVICE_PATH, TextDeviceNode);
2682 }
2683
2684 /**
2685 Converts a text device path node to HD device path structure.
2686
2687 @param TextDeviceNode The input Text device path node.
2688
2689 @return A pointer to the newly-created HD device path structure.
2690
2691 **/
2692 EFI_DEVICE_PATH_PROTOCOL *
2693 DevPathFromTextHD (
2694 IN CHAR16 *TextDeviceNode
2695 )
2696 {
2697 CHAR16 *PartitionStr;
2698 CHAR16 *TypeStr;
2699 CHAR16 *SignatureStr;
2700 CHAR16 *StartStr;
2701 CHAR16 *SizeStr;
2702 UINT32 Signature32;
2703 EFI_GUID SignatureGuid;
2704 HARDDRIVE_DEVICE_PATH *Hd;
2705
2706 PartitionStr = GetNextParamStr (&TextDeviceNode);
2707 TypeStr = GetNextParamStr (&TextDeviceNode);
2708 SignatureStr = GetNextParamStr (&TextDeviceNode);
2709 StartStr = GetNextParamStr (&TextDeviceNode);
2710 SizeStr = GetNextParamStr (&TextDeviceNode);
2711 Hd = (HARDDRIVE_DEVICE_PATH *) CreateDeviceNode (
2712 MEDIA_DEVICE_PATH,
2713 MEDIA_HARDDRIVE_DP,
2714 (UINT16) sizeof (HARDDRIVE_DEVICE_PATH)
2715 );
2716
2717 Hd->PartitionNumber = (UINT32) Strtoi (PartitionStr);
2718
2719 ZeroMem (Hd->Signature, 16);
2720 Hd->MBRType = (UINT8) 0;
2721
2722 if (StrCmp (TypeStr, L"MBR") == 0) {
2723 Hd->SignatureType = SIGNATURE_TYPE_MBR;
2724 Hd->MBRType = 0x01;
2725
2726 Signature32 = (UINT32) Strtoi (SignatureStr);
2727 CopyMem (Hd->Signature, &Signature32, sizeof (UINT32));
2728 } else if (StrCmp (TypeStr, L"GPT") == 0) {
2729 Hd->SignatureType = SIGNATURE_TYPE_GUID;
2730 Hd->MBRType = 0x02;
2731
2732 StrToGuid (SignatureStr, &SignatureGuid);
2733 CopyMem (Hd->Signature, &SignatureGuid, sizeof (EFI_GUID));
2734 } else {
2735 Hd->SignatureType = (UINT8) Strtoi (TypeStr);
2736 }
2737
2738 Strtoi64 (StartStr, &Hd->PartitionStart);
2739 Strtoi64 (SizeStr, &Hd->PartitionSize);
2740
2741 return (EFI_DEVICE_PATH_PROTOCOL *) Hd;
2742 }
2743
2744 /**
2745 Converts a text device path node to CDROM device path structure.
2746
2747 @param TextDeviceNode The input Text device path node.
2748
2749 @return A pointer to the newly-created CDROM device path structure.
2750
2751 **/
2752 EFI_DEVICE_PATH_PROTOCOL *
2753 DevPathFromTextCDROM (
2754 IN CHAR16 *TextDeviceNode
2755 )
2756 {
2757 CHAR16 *EntryStr;
2758 CHAR16 *StartStr;
2759 CHAR16 *SizeStr;
2760 CDROM_DEVICE_PATH *CDROMDevPath;
2761
2762 EntryStr = GetNextParamStr (&TextDeviceNode);
2763 StartStr = GetNextParamStr (&TextDeviceNode);
2764 SizeStr = GetNextParamStr (&TextDeviceNode);
2765 CDROMDevPath = (CDROM_DEVICE_PATH *) CreateDeviceNode (
2766 MEDIA_DEVICE_PATH,
2767 MEDIA_CDROM_DP,
2768 (UINT16) sizeof (CDROM_DEVICE_PATH)
2769 );
2770
2771 CDROMDevPath->BootEntry = (UINT32) Strtoi (EntryStr);
2772 Strtoi64 (StartStr, &CDROMDevPath->PartitionStart);
2773 Strtoi64 (SizeStr, &CDROMDevPath->PartitionSize);
2774
2775 return (EFI_DEVICE_PATH_PROTOCOL *) CDROMDevPath;
2776 }
2777
2778 /**
2779 Converts a text device path node to Vendor-defined media device path structure.
2780
2781 @param TextDeviceNode The input Text device path node.
2782
2783 @return A pointer to the newly-created Vendor-defined media device path structure.
2784
2785 **/
2786 EFI_DEVICE_PATH_PROTOCOL *
2787 DevPathFromTextVenMedia (
2788 IN CHAR16 *TextDeviceNode
2789 )
2790 {
2791 return ConvertFromTextVendor (
2792 TextDeviceNode,
2793 MEDIA_DEVICE_PATH,
2794 MEDIA_VENDOR_DP
2795 );
2796 }
2797
2798 /**
2799 Converts a text device path node to File device path structure.
2800
2801 @param TextDeviceNode The input Text device path node.
2802
2803 @return A pointer to the newly-created File device path structure.
2804
2805 **/
2806 EFI_DEVICE_PATH_PROTOCOL *
2807 DevPathFromTextFilePath (
2808 IN CHAR16 *TextDeviceNode
2809 )
2810 {
2811 FILEPATH_DEVICE_PATH *File;
2812
2813 File = (FILEPATH_DEVICE_PATH *) CreateDeviceNode (
2814 MEDIA_DEVICE_PATH,
2815 MEDIA_FILEPATH_DP,
2816 (UINT16) (sizeof (FILEPATH_DEVICE_PATH) + StrLen (TextDeviceNode) * 2)
2817 );
2818
2819 StrCpy (File->PathName, TextDeviceNode);
2820
2821 return (EFI_DEVICE_PATH_PROTOCOL *) File;
2822 }
2823
2824 /**
2825 Converts a text device path node to Media protocol device path structure.
2826
2827 @param TextDeviceNode The input Text device path node.
2828
2829 @return A pointer to the newly-created Media protocol device path structure.
2830
2831 **/
2832 EFI_DEVICE_PATH_PROTOCOL *
2833 DevPathFromTextMedia (
2834 IN CHAR16 *TextDeviceNode
2835 )
2836 {
2837 CHAR16 *GuidStr;
2838 MEDIA_PROTOCOL_DEVICE_PATH *Media;
2839
2840 GuidStr = GetNextParamStr (&TextDeviceNode);
2841 Media = (MEDIA_PROTOCOL_DEVICE_PATH *) CreateDeviceNode (
2842 MEDIA_DEVICE_PATH,
2843 MEDIA_PROTOCOL_DP,
2844 (UINT16) sizeof (MEDIA_PROTOCOL_DEVICE_PATH)
2845 );
2846
2847 StrToGuid (GuidStr, &Media->Protocol);
2848
2849 return (EFI_DEVICE_PATH_PROTOCOL *) Media;
2850 }
2851
2852 /**
2853 Converts a text device path node to firmware volume device path structure.
2854
2855 @param TextDeviceNode The input Text device path node.
2856
2857 @return A pointer to the newly-created firmware volume device path structure.
2858
2859 **/
2860 EFI_DEVICE_PATH_PROTOCOL *
2861 DevPathFromTextFv (
2862 IN CHAR16 *TextDeviceNode
2863 )
2864 {
2865 CHAR16 *GuidStr;
2866 MEDIA_FW_VOL_DEVICE_PATH *Fv;
2867
2868 GuidStr = GetNextParamStr (&TextDeviceNode);
2869 Fv = (MEDIA_FW_VOL_DEVICE_PATH *) CreateDeviceNode (
2870 MEDIA_DEVICE_PATH,
2871 MEDIA_PIWG_FW_VOL_DP,
2872 (UINT16) sizeof (MEDIA_FW_VOL_DEVICE_PATH)
2873 );
2874
2875 StrToGuid (GuidStr, &Fv->FvName);
2876
2877 return (EFI_DEVICE_PATH_PROTOCOL *) Fv;
2878 }
2879
2880 /**
2881 Converts a text device path node to firmware file device path structure.
2882
2883 @param TextDeviceNode The input Text device path node.
2884
2885 @return A pointer to the newly-created firmware file device path structure.
2886
2887 **/
2888 EFI_DEVICE_PATH_PROTOCOL *
2889 DevPathFromTextFvFile (
2890 IN CHAR16 *TextDeviceNode
2891 )
2892 {
2893 CHAR16 *GuidStr;
2894 MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *FvFile;
2895
2896 GuidStr = GetNextParamStr (&TextDeviceNode);
2897 FvFile = (MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *) CreateDeviceNode (
2898 MEDIA_DEVICE_PATH,
2899 MEDIA_PIWG_FW_FILE_DP,
2900 (UINT16) sizeof (MEDIA_FW_VOL_FILEPATH_DEVICE_PATH)
2901 );
2902
2903 StrToGuid (GuidStr, &FvFile->FvFileName);
2904
2905 return (EFI_DEVICE_PATH_PROTOCOL *) FvFile;
2906 }
2907
2908 /**
2909 Converts a text device path node to text relative offset device path structure.
2910
2911 @param TextDeviceNode The input Text device path node.
2912
2913 @return A pointer to the newly-created Text device path structure.
2914
2915 **/
2916 EFI_DEVICE_PATH_PROTOCOL *
2917 DevPathFromTextRelativeOffsetRange (
2918 IN CHAR16 *TextDeviceNode
2919 )
2920 {
2921 CHAR16 *StartingOffsetStr;
2922 CHAR16 *EndingOffsetStr;
2923 MEDIA_RELATIVE_OFFSET_RANGE_DEVICE_PATH *Offset;
2924
2925 StartingOffsetStr = GetNextParamStr (&TextDeviceNode);
2926 EndingOffsetStr = GetNextParamStr (&TextDeviceNode);
2927 Offset = (MEDIA_RELATIVE_OFFSET_RANGE_DEVICE_PATH *) CreateDeviceNode (
2928 MEDIA_DEVICE_PATH,
2929 MEDIA_RELATIVE_OFFSET_RANGE_DP,
2930 (UINT16) sizeof (MEDIA_RELATIVE_OFFSET_RANGE_DEVICE_PATH)
2931 );
2932
2933 Strtoi64 (StartingOffsetStr, &Offset->StartingOffset);
2934 Strtoi64 (EndingOffsetStr, &Offset->EndingOffset);
2935
2936 return (EFI_DEVICE_PATH_PROTOCOL *) Offset;
2937 }
2938
2939
2940 /**
2941 Converts a BBS text device path node to BBS device path structure.
2942
2943 @param TextDeviceNode The input Text device path node.
2944
2945 @return A pointer to BBS device path structure.
2946
2947 **/
2948 EFI_DEVICE_PATH_PROTOCOL *
2949 DevPathFromTextBbsPath (
2950 IN CHAR16 *TextDeviceNode
2951 )
2952 {
2953 return DevPathFromTextGenericPath (BBS_DEVICE_PATH, TextDeviceNode);
2954 }
2955
2956 /**
2957 Converts a text device path node to BIOS Boot Specification device path structure.
2958
2959 @param TextDeviceNode The input Text device path node.
2960
2961 @return A pointer to the newly-created BIOS Boot Specification device path structure.
2962
2963 **/
2964 EFI_DEVICE_PATH_PROTOCOL *
2965 DevPathFromTextBBS (
2966 IN CHAR16 *TextDeviceNode
2967 )
2968 {
2969 CHAR16 *TypeStr;
2970 CHAR16 *IdStr;
2971 CHAR16 *FlagsStr;
2972 CHAR8 *AsciiStr;
2973 BBS_BBS_DEVICE_PATH *Bbs;
2974
2975 TypeStr = GetNextParamStr (&TextDeviceNode);
2976 IdStr = GetNextParamStr (&TextDeviceNode);
2977 FlagsStr = GetNextParamStr (&TextDeviceNode);
2978 Bbs = (BBS_BBS_DEVICE_PATH *) CreateDeviceNode (
2979 BBS_DEVICE_PATH,
2980 BBS_BBS_DP,
2981 (UINT16) (sizeof (BBS_BBS_DEVICE_PATH) + StrLen (IdStr))
2982 );
2983
2984 if (StrCmp (TypeStr, L"Floppy") == 0) {
2985 Bbs->DeviceType = BBS_TYPE_FLOPPY;
2986 } else if (StrCmp (TypeStr, L"HD") == 0) {
2987 Bbs->DeviceType = BBS_TYPE_HARDDRIVE;
2988 } else if (StrCmp (TypeStr, L"CDROM") == 0) {
2989 Bbs->DeviceType = BBS_TYPE_CDROM;
2990 } else if (StrCmp (TypeStr, L"PCMCIA") == 0) {
2991 Bbs->DeviceType = BBS_TYPE_PCMCIA;
2992 } else if (StrCmp (TypeStr, L"USB") == 0) {
2993 Bbs->DeviceType = BBS_TYPE_USB;
2994 } else if (StrCmp (TypeStr, L"Network") == 0) {
2995 Bbs->DeviceType = BBS_TYPE_EMBEDDED_NETWORK;
2996 } else {
2997 Bbs->DeviceType = (UINT16) Strtoi (TypeStr);
2998 }
2999
3000 AsciiStr = Bbs->String;
3001 StrToAscii (IdStr, &AsciiStr);
3002
3003 Bbs->StatusFlag = (UINT16) Strtoi (FlagsStr);
3004
3005 return (EFI_DEVICE_PATH_PROTOCOL *) Bbs;
3006 }
3007
3008 /**
3009 Converts a text device path node to SATA device path structure.
3010
3011 @param TextDeviceNode The input Text device path node.
3012
3013 @return A pointer to the newly-created SATA device path structure.
3014
3015 **/
3016 EFI_DEVICE_PATH_PROTOCOL *
3017 DevPathFromTextSata (
3018 IN CHAR16 *TextDeviceNode
3019 )
3020 {
3021 SATA_DEVICE_PATH *Sata;
3022 CHAR16 *Param1;
3023 CHAR16 *Param2;
3024 CHAR16 *Param3;
3025
3026 Param1 = GetNextParamStr (&TextDeviceNode);
3027 Param2 = GetNextParamStr (&TextDeviceNode);
3028 Param3 = GetNextParamStr (&TextDeviceNode);
3029
3030 Sata = (SATA_DEVICE_PATH *) CreateDeviceNode (
3031 MESSAGING_DEVICE_PATH,
3032 MSG_SATA_DP,
3033 (UINT16) sizeof (SATA_DEVICE_PATH)
3034 );
3035 Sata->HBAPortNumber = (UINT16) Strtoi (Param1);
3036 Sata->PortMultiplierPortNumber = (UINT16) Strtoi (Param2);
3037 Sata->Lun = (UINT16) Strtoi (Param3);
3038
3039 return (EFI_DEVICE_PATH_PROTOCOL *) Sata;
3040 }
3041
3042 GLOBAL_REMOVE_IF_UNREFERENCED DEVICE_PATH_FROM_TEXT_TABLE mUefiDevicePathLibDevPathFromTextTable[] = {
3043 {L"Path", DevPathFromTextPath },
3044
3045 {L"HardwarePath", DevPathFromTextHardwarePath },
3046 {L"Pci", DevPathFromTextPci },
3047 {L"PcCard", DevPathFromTextPcCard },
3048 {L"MemoryMapped", DevPathFromTextMemoryMapped },
3049 {L"VenHw", DevPathFromTextVenHw },
3050 {L"Ctrl", DevPathFromTextCtrl },
3051
3052 {L"AcpiPath", DevPathFromTextAcpiPath },
3053 {L"Acpi", DevPathFromTextAcpi },
3054 {L"PciRoot", DevPathFromTextPciRoot },
3055 {L"PcieRoot", DevPathFromTextPcieRoot },
3056 {L"Floppy", DevPathFromTextFloppy },
3057 {L"Keyboard", DevPathFromTextKeyboard },
3058 {L"Serial", DevPathFromTextSerial },
3059 {L"ParallelPort", DevPathFromTextParallelPort },
3060 {L"AcpiEx", DevPathFromTextAcpiEx },
3061 {L"AcpiExp", DevPathFromTextAcpiExp },
3062 {L"AcpiAdr", DevPathFromTextAcpiAdr },
3063
3064 {L"Msg", DevPathFromTextMsg },
3065 {L"Ata", DevPathFromTextAta },
3066 {L"Scsi", DevPathFromTextScsi },
3067 {L"Fibre", DevPathFromTextFibre },
3068 {L"FibreEx", DevPathFromTextFibreEx },
3069 {L"I1394", DevPathFromText1394 },
3070 {L"USB", DevPathFromTextUsb },
3071 {L"I2O", DevPathFromTextI2O },
3072 {L"Infiniband", DevPathFromTextInfiniband },
3073 {L"VenMsg", DevPathFromTextVenMsg },
3074 {L"VenPcAnsi", DevPathFromTextVenPcAnsi },
3075 {L"VenVt100", DevPathFromTextVenVt100 },
3076 {L"VenVt100Plus", DevPathFromTextVenVt100Plus },
3077 {L"VenUtf8", DevPathFromTextVenUtf8 },
3078 {L"UartFlowCtrl", DevPathFromTextUartFlowCtrl },
3079 {L"SAS", DevPathFromTextSAS },
3080 {L"SasEx", DevPathFromTextSasEx },
3081 {L"NVMe", DevPathFromTextNVMe },
3082 {L"DebugPort", DevPathFromTextDebugPort },
3083 {L"MAC", DevPathFromTextMAC },
3084 {L"IPv4", DevPathFromTextIPv4 },
3085 {L"IPv6", DevPathFromTextIPv6 },
3086 {L"Uart", DevPathFromTextUart },
3087 {L"UsbClass", DevPathFromTextUsbClass },
3088 {L"UsbAudio", DevPathFromTextUsbAudio },
3089 {L"UsbCDCControl", DevPathFromTextUsbCDCControl },
3090 {L"UsbHID", DevPathFromTextUsbHID },
3091 {L"UsbImage", DevPathFromTextUsbImage },
3092 {L"UsbPrinter", DevPathFromTextUsbPrinter },
3093 {L"UsbMassStorage", DevPathFromTextUsbMassStorage },
3094 {L"UsbHub", DevPathFromTextUsbHub },
3095 {L"UsbCDCData", DevPathFromTextUsbCDCData },
3096 {L"UsbSmartCard", DevPathFromTextUsbSmartCard },
3097 {L"UsbVideo", DevPathFromTextUsbVideo },
3098 {L"UsbDiagnostic", DevPathFromTextUsbDiagnostic },
3099 {L"UsbWireless", DevPathFromTextUsbWireless },
3100 {L"UsbDeviceFirmwareUpdate", DevPathFromTextUsbDeviceFirmwareUpdate },
3101 {L"UsbIrdaBridge", DevPathFromTextUsbIrdaBridge },
3102 {L"UsbTestAndMeasurement", DevPathFromTextUsbTestAndMeasurement },
3103 {L"UsbWwid", DevPathFromTextUsbWwid },
3104 {L"Unit", DevPathFromTextUnit },
3105 {L"iSCSI", DevPathFromTextiSCSI },
3106 {L"Vlan", DevPathFromTextVlan },
3107
3108 {L"MediaPath", DevPathFromTextMediaPath },
3109 {L"HD", DevPathFromTextHD },
3110 {L"CDROM", DevPathFromTextCDROM },
3111 {L"VenMedia", DevPathFromTextVenMedia },
3112 {L"Media", DevPathFromTextMedia },
3113 {L"Fv", DevPathFromTextFv },
3114 {L"FvFile", DevPathFromTextFvFile },
3115 {L"Offset", DevPathFromTextRelativeOffsetRange },
3116
3117 {L"BbsPath", DevPathFromTextBbsPath },
3118 {L"BBS", DevPathFromTextBBS },
3119 {L"Sata", DevPathFromTextSata },
3120 {NULL, NULL}
3121 };
3122
3123 /**
3124 Convert text to the binary representation of a device node.
3125
3126 @param TextDeviceNode TextDeviceNode points to the text representation of a device
3127 node. Conversion starts with the first character and continues
3128 until the first non-device node character.
3129
3130 @return A pointer to the EFI device node or NULL if TextDeviceNode is NULL or there was
3131 insufficient memory or text unsupported.
3132
3133 **/
3134 EFI_DEVICE_PATH_PROTOCOL *
3135 EFIAPI
3136 UefiDevicePathLibConvertTextToDeviceNode (
3137 IN CONST CHAR16 *TextDeviceNode
3138 )
3139 {
3140 DEVICE_PATH_FROM_TEXT FromText;
3141 CHAR16 *ParamStr;
3142 EFI_DEVICE_PATH_PROTOCOL *DeviceNode;
3143 CHAR16 *DeviceNodeStr;
3144 UINTN Index;
3145
3146 if ((TextDeviceNode == NULL) || (IS_NULL (*TextDeviceNode))) {
3147 return NULL;
3148 }
3149
3150 ParamStr = NULL;
3151 FromText = NULL;
3152 DeviceNodeStr = UefiDevicePathLibStrDuplicate (TextDeviceNode);
3153 ASSERT (DeviceNodeStr != NULL);
3154
3155 for (Index = 0; mUefiDevicePathLibDevPathFromTextTable[Index].Function != NULL; Index++) {
3156 ParamStr = GetParamByNodeName (DeviceNodeStr, mUefiDevicePathLibDevPathFromTextTable[Index].DevicePathNodeText);
3157 if (ParamStr != NULL) {
3158 FromText = mUefiDevicePathLibDevPathFromTextTable[Index].Function;
3159 break;
3160 }
3161 }
3162
3163 if (FromText == NULL) {
3164 //
3165 // A file path
3166 //
3167 FromText = DevPathFromTextFilePath;
3168 DeviceNode = FromText (DeviceNodeStr);
3169 } else {
3170 DeviceNode = FromText (ParamStr);
3171 FreePool (ParamStr);
3172 }
3173
3174 FreePool (DeviceNodeStr);
3175
3176 return DeviceNode;
3177 }
3178
3179 /**
3180 Convert text to the binary representation of a device path.
3181
3182
3183 @param TextDevicePath TextDevicePath points to the text representation of a device
3184 path. Conversion starts with the first character and continues
3185 until the first non-device node character.
3186
3187 @return A pointer to the allocated device path or NULL if TextDeviceNode is NULL or
3188 there was insufficient memory.
3189
3190 **/
3191 EFI_DEVICE_PATH_PROTOCOL *
3192 EFIAPI
3193 UefiDevicePathLibConvertTextToDevicePath (
3194 IN CONST CHAR16 *TextDevicePath
3195 )
3196 {
3197 EFI_DEVICE_PATH_PROTOCOL *DeviceNode;
3198 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
3199 CHAR16 *DevicePathStr;
3200 CHAR16 *Str;
3201 CHAR16 *DeviceNodeStr;
3202 BOOLEAN IsInstanceEnd;
3203 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
3204
3205 if ((TextDevicePath == NULL) || (IS_NULL (*TextDevicePath))) {
3206 return NULL;
3207 }
3208
3209 DevicePath = (EFI_DEVICE_PATH_PROTOCOL *) AllocatePool (END_DEVICE_PATH_LENGTH);
3210 ASSERT (DevicePath != NULL);
3211 SetDevicePathEndNode (DevicePath);
3212
3213 DevicePathStr = UefiDevicePathLibStrDuplicate (TextDevicePath);
3214
3215 Str = DevicePathStr;
3216 while ((DeviceNodeStr = GetNextDeviceNodeStr (&Str, &IsInstanceEnd)) != NULL) {
3217 DeviceNode = UefiDevicePathLibConvertTextToDeviceNode (DeviceNodeStr);
3218
3219 NewDevicePath = AppendDevicePathNode (DevicePath, DeviceNode);
3220 FreePool (DevicePath);
3221 FreePool (DeviceNode);
3222 DevicePath = NewDevicePath;
3223
3224 if (IsInstanceEnd) {
3225 DeviceNode = (EFI_DEVICE_PATH_PROTOCOL *) AllocatePool (END_DEVICE_PATH_LENGTH);
3226 ASSERT (DeviceNode != NULL);
3227 SetDevicePathEndNode (DeviceNode);
3228
3229 NewDevicePath = AppendDevicePathNode (DevicePath, DeviceNode);
3230 FreePool (DevicePath);
3231 FreePool (DeviceNode);
3232 DevicePath = NewDevicePath;
3233 }
3234 }
3235
3236 FreePool (DevicePathStr);
3237 return DevicePath;
3238 }