/device/linaro/bootloader/edk2/CorebootPayloadPkg/Library/PlatformBootManagerLib/ |
PlatformBootManager.h | 66 UART_DEVICE_PATH Uart;
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SerialDxe/ |
SerialIo.c | 28 UART_DEVICE_PATH Uart;
249 if (mSerialDevicePath.Uart.BaudRate == This->Mode->BaudRate &&
250 mSerialDevicePath.Uart.DataBits == (UINT8) This->Mode->DataBits &&
251 mSerialDevicePath.Uart.Parity == (UINT8) This->Mode->Parity &&
252 mSerialDevicePath.Uart.StopBits == (UINT8) This->Mode->StopBits
261 mSerialDevicePath.Uart.BaudRate = This->Mode->BaudRate;
262 mSerialDevicePath.Uart.DataBits = (UINT8) This->Mode->DataBits;
263 mSerialDevicePath.Uart.Parity = (UINT8) This->Mode->Parity;
264 mSerialDevicePath.Uart.StopBits = (UINT8) This->Mode->StopBits;
343 if (mSerialDevicePath.Uart.BaudRate == BaudRate && [all...] |
/device/linaro/bootloader/edk2/Nt32Pkg/Library/PlatformBootManagerLib/ |
PlatformBootManager.h | 72 UART_DEVICE_PATH Uart;
|
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Library/PlatformBootManagerLib/ |
PlatformData.c | 40 UART_DEVICE_PATH Uart;
47 UART_DEVICE_PATH Uart;
243 // Update UART device path nodes based on UART PCD settings
245 gPciUartDevicePath0.Uart.BaudRate = PcdGet64 (PcdUartDefaultBaudRate);
246 gPciUartDevicePath0.Uart.DataBits = PcdGet8 (PcdUartDefaultDataBits);
247 gPciUartDevicePath0.Uart.Parity = PcdGet8 (PcdUartDefaultParity);
248 gPciUartDevicePath0.Uart.StopBits = PcdGet8 (PcdUartDefaultStopBits);
249 gPciUartDevicePath1.Uart.BaudRate = PcdGet64 (PcdUartDefaultBaudRate);
250 gPciUartDevicePath1.Uart.DataBits = PcdGet8 (PcdUartDefaultDataBits); [all...] |
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Library/PlatformIntelBdsLib/ |
IntelBdsPlatform.c | 60 UART_DEVICE_PATH Uart;
81 // UART_DEVICE_PATH Uart
|
/device/linaro/bootloader/edk2/EmbeddedPkg/SimpleTextInOutSerial/ |
SimpleTextInOut.c | 207 UART_DEVICE_PATH Uart;
|
/device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/Library/PlatformBootManagerLib/ |
PlatformBm.c | 43 UART_DEVICE_PATH Uart;
64 // UART_DEVICE_PATH Uart
|
/device/linaro/bootloader/edk2/ArmPkg/Library/PlatformBootManagerLib/ |
PlatformBm.c | 40 UART_DEVICE_PATH Uart;
61 // UART_DEVICE_PATH Uart
|
/device/linaro/bootloader/edk2/ArmVirtPkg/Library/PlatformBootManagerLib/ |
PlatformBm.c | 41 UART_DEVICE_PATH Uart;
62 // UART_DEVICE_PATH Uart
|
/device/linaro/bootloader/edk2/DuetPkg/Library/DuetBdsLib/ |
BdsPlatform.h | 183 UART_DEVICE_PATH Uart;
198 UART_DEVICE_PATH Uart;
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/ |
Serial.c | 167 // Initialize UART default setting in gSerialDevTempate
290 // When the driver has produced device path with flow control node but RemainingDevicePath only contains UART node,
359 // Use the ISA I/O Protocol to see if Controller is standard ISA UART that
409 UART_DEVICE_PATH *Uart;
489 Uart = (UART_DEVICE_PATH *) RemainingDevicePath;
492 Uart->BaudRate,
495 (EFI_PARITY_TYPE) Uart->Parity,
496 Uart->DataBits,
497 (EFI_STOP_BITS_TYPE) Uart->StopBits
500 FlowControl = (UART_FLOW_CONTROL_DEVICE_PATH *) NextDevicePathNode (Uart);
[all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciSioSerialDxe/ |
Serial.c | 147 // Initialize UART default setting in gSerialDevTempate
359 UART_DEVICE_PATH *Uart;
368 Uart = SkipControllerDevicePathNode (RemainingDevicePath, NULL, NULL);
369 if (DevicePathType (Uart) != MESSAGING_DEVICE_PATH ||
370 DevicePathSubType (Uart) != MSG_UART_DP ||
371 DevicePathNodeLength (Uart) != sizeof (UART_DEVICE_PATH)
379 if (!VerifyUartParameters (0, Uart->BaudRate, Uart->DataBits, Uart->Parity, Uart->StopBits, NULL, NULL)) { [all...] |
SerialIo.c | 53 Checks whether the UART parameters are valid and computes the Divisor.
69 @retval TRUE The UART parameters are valid.
70 @retval FALSE The UART parameters are not valid.
119 // into the UART, then the requested baud rate can not be supported.
617 UART_DEVICE_PATH *Uart;
770 Uart = SkipControllerDevicePathNode (
777 CopyMem (Uart, &SerialDevice->UartDevicePath, sizeof (UART_DEVICE_PATH));
[all...] |
/device/linaro/bootloader/edk2/Nt32Pkg/WinNtSerialIoDxe/ |
WinNtSerialIo.c | 24 The new handle is required, since the serial device must add an UART device
27 Handle(2) - SerialIo - DevicePath(1)\UART
252 // When the driver has produced device path with flow control node but RemainingDevicePath only contains UART node,
391 UART_DEVICE_PATH *Uart;
471 Uart = (UART_DEVICE_PATH *) RemainingDevicePath;
474 Uart->BaudRate,
477 (EFI_PARITY_TYPE) Uart->Parity,
478 Uart->DataBits,
479 (EFI_STOP_BITS_TYPE) Uart->StopBits
481 FlowControl = (UART_FLOW_CONTROL_DEVICE_PATH *) NextDevicePathNode (Uart);
[all...] |
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/ |
ConsoleOption.c | 107 UART_DEVICE_PATH *Uart;
127 Uart = (UART_DEVICE_PATH *) Node;
129 &Uart->BaudRate,
135 &Uart->DataBits,
141 &Uart->Parity,
147 &Uart->StopBits,
236 UART_DEVICE_PATH *Uart;
257 Uart = (UART_DEVICE_PATH *) Node;
259 &Uart->BaudRate,
265 &Uart->DataBits, [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Library/BootMaintenanceManagerUiLib/ |
ConsoleOption.c | 122 UART_DEVICE_PATH *Uart;
141 Uart = (UART_DEVICE_PATH *) Node;
143 &Uart->BaudRate,
149 &Uart->DataBits,
155 &Uart->Parity,
161 &Uart->StopBits,
233 UART_DEVICE_PATH *Uart;
254 Uart = (UART_DEVICE_PATH *) Node;
256 &Uart->BaudRate,
262 &Uart->DataBits, [all...] |
/device/linaro/bootloader/edk2/OptionRomPkg/Bus/Usb/FtdiUsbSerialDxe/ |
FtdiUsbSerialDriver.c | 854 UART_DEVICE_PATH *Uart;
859 Uart = NULL;
953 Uart = (UART_DEVICE_PATH *) NextDevicePathNode (RemainingDevicePath);
954 if (Uart->Header.Type == MESSAGING_DEVICE_PATH &&
955 Uart->Header.SubType == MSG_UART_DP &&
956 sizeof (UART_DEVICE_PATH) == DevicePathNodeLength ((EFI_DEVICE_PATH *) Uart)) {
957 Uart->BaudRate = BaudRate;
958 Uart->DataBits = DataBits;
959 Uart->StopBits = (UINT8)StopBits;
960 Uart->Parity = (UINT8) Parity; [all...] |
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/PlatformBdsLib/ |
BdsPlatform.h | 250 UART_DEVICE_PATH Uart;
294 // Debug Agent UART Console device path definition
298 UART_DEVICE_PATH Uart;
|
/device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLib/ |
DevicePathToText.c | [all...] |
DevicePathFromText.c | [all...] |
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellCommandLib/ |
ConsistMapping.c | 582 UART_DEVICE_PATH *Uart;
587 Uart = (UART_DEVICE_PATH *) DevicePathNode;
588 Status = AppendCSDNum (MappingItem, Uart->BaudRate);
590 Status = AppendCSDNum (MappingItem, Uart->DataBits);
593 Status = AppendCSDNum (MappingItem, Uart->Parity);
596 Status = AppendCSDNum (MappingItem, Uart->StopBits);
[all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Include/ |
EfiDevicePath.h | 510 UART_DEVICE_PATH Uart;
558 UART_DEVICE_PATH *Uart;
|
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/ |
DevicePath.h | 682 /// UART Device Path SubType.
692 /// The baud rate setting for the UART style device. A value of 0
697 /// The number of data bits for the UART style device. A value
702 /// The parity setting for the UART style device.
712 /// The number of stop bits for the UART style device.
734 /// UART Flow Control Messaging Device Path
[all...] |