MdeModulePkg/PciSioSerial: Fix a bug that wrongly produces 2 UARTs

When PciSioSerial is firstly started with a non-NULL remaining
device path, the UART instance is created using the parameters
specified in the remaining device path. Later when the driver
is started again on the same UART controller with NULL remaining
device path, the correct logic is to directly return SUCCESS
instead of current buggy implementation which wrongly produces
another UART using the default parameters.

The bug causes two UARTs are created when the UART is configured
in 57600 baud rate.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
Reviewed-by: Star Zeng <star.zeng@intel.com>
Cc: Eric Dong <eric.dong@intel.com>
This commit is contained in:
Ruiyu Ni 2016-11-08 10:35:22 +08:00
parent faabc5d497
commit 4ab04a72f5
1 changed files with 66 additions and 58 deletions

View File

@ -1,7 +1,7 @@
/** @file /** @file
Serial driver for PCI or SIO UARTS. Serial driver for PCI or SIO UARTS.
Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at which accompanies this distribution. The full text of the license may be found at
@ -863,67 +863,75 @@ SerialControllerDriverStart (
ControllerNumber = 0; ControllerNumber = 0;
ContainsControllerNode = FALSE; ContainsControllerNode = FALSE;
SerialDevices = GetChildSerialDevices (Controller, IoProtocolGuid, &SerialDeviceCount); SerialDevices = GetChildSerialDevices (Controller, IoProtocolGuid, &SerialDeviceCount);
//
// If the SerialIo instance specified by RemainingDevicePath is already created, if (SerialDeviceCount != 0) {
// update the attributes/control. if (RemainingDevicePath == NULL) {
// //
if ((SerialDeviceCount != 0) && (RemainingDevicePath != NULL)) { // If the SerialIo instance is already created, NULL as RemainingDevicePath is treated
Uart = (UART_DEVICE_PATH *) SkipControllerDevicePathNode (RemainingDevicePath, &ContainsControllerNode, &ControllerNumber); // as to create the same SerialIo instance.
for (Index = 0; Index < SerialDeviceCount; Index++) { //
ASSERT ((SerialDevices != NULL) && (SerialDevices[Index] != NULL)); return EFI_SUCCESS;
if ((!SerialDevices[Index]->ContainsControllerNode && !ContainsControllerNode) || } else {
(SerialDevices[Index]->ContainsControllerNode && ContainsControllerNode && SerialDevices[Index]->Instance == ControllerNumber) //
) { // Update the attributes/control of the SerialIo instance specified by RemainingDevicePath.
SerialIo = &SerialDevices[Index]->SerialIo; //
Status = EFI_INVALID_PARAMETER; Uart = (UART_DEVICE_PATH *) SkipControllerDevicePathNode (RemainingDevicePath, &ContainsControllerNode, &ControllerNumber);
// for (Index = 0; Index < SerialDeviceCount; Index++) {
// Pass NULL ActualBaudRate to VerifyUartParameters to disallow baudrate degrade. ASSERT ((SerialDevices != NULL) && (SerialDevices[Index] != NULL));
// DriverBindingStart() shouldn't create a handle with different UART device path. if ((!SerialDevices[Index]->ContainsControllerNode && !ContainsControllerNode) ||
// (SerialDevices[Index]->ContainsControllerNode && ContainsControllerNode && SerialDevices[Index]->Instance == ControllerNumber)
if (VerifyUartParameters (SerialDevices[Index]->ClockRate, Uart->BaudRate, Uart->DataBits, ) {
(EFI_PARITY_TYPE) Uart->Parity, (EFI_STOP_BITS_TYPE) Uart->StopBits, NULL, NULL)) { SerialIo = &SerialDevices[Index]->SerialIo;
Status = SerialIo->SetAttributes ( Status = EFI_INVALID_PARAMETER;
SerialIo, //
Uart->BaudRate, // Pass NULL ActualBaudRate to VerifyUartParameters to disallow baudrate degrade.
SerialIo->Mode->ReceiveFifoDepth, // DriverBindingStart() shouldn't create a handle with different UART device path.
SerialIo->Mode->Timeout, //
(EFI_PARITY_TYPE) Uart->Parity, if (VerifyUartParameters (SerialDevices[Index]->ClockRate, Uart->BaudRate, Uart->DataBits,
Uart->DataBits, (EFI_PARITY_TYPE) Uart->Parity, (EFI_STOP_BITS_TYPE) Uart->StopBits, NULL, NULL)) {
(EFI_STOP_BITS_TYPE) Uart->StopBits Status = SerialIo->SetAttributes (
); SerialIo,
} Uart->BaudRate,
FlowControl = (UART_FLOW_CONTROL_DEVICE_PATH *) NextDevicePathNode (Uart); SerialIo->Mode->ReceiveFifoDepth,
if (!EFI_ERROR (Status) && IsUartFlowControlDevicePathNode (FlowControl)) { SerialIo->Mode->Timeout,
Status = SerialIo->GetControl (SerialIo, &Control); (EFI_PARITY_TYPE) Uart->Parity,
if (!EFI_ERROR (Status)) { Uart->DataBits,
if (ReadUnaligned32 (&FlowControl->FlowControlMap) == UART_FLOW_CONTROL_HARDWARE) { (EFI_STOP_BITS_TYPE) Uart->StopBits
Control |= EFI_SERIAL_HARDWARE_FLOW_CONTROL_ENABLE; );
} else {
Control &= ~EFI_SERIAL_HARDWARE_FLOW_CONTROL_ENABLE;
}
//
// Clear the bits that are not allowed to pass to SetControl
//
Control &= (EFI_SERIAL_REQUEST_TO_SEND | EFI_SERIAL_DATA_TERMINAL_READY |
EFI_SERIAL_HARDWARE_LOOPBACK_ENABLE | EFI_SERIAL_SOFTWARE_LOOPBACK_ENABLE |
EFI_SERIAL_HARDWARE_FLOW_CONTROL_ENABLE);
Status = SerialIo->SetControl (SerialIo, Control);
} }
FlowControl = (UART_FLOW_CONTROL_DEVICE_PATH *) NextDevicePathNode (Uart);
if (!EFI_ERROR (Status) && IsUartFlowControlDevicePathNode (FlowControl)) {
Status = SerialIo->GetControl (SerialIo, &Control);
if (!EFI_ERROR (Status)) {
if (ReadUnaligned32 (&FlowControl->FlowControlMap) == UART_FLOW_CONTROL_HARDWARE) {
Control |= EFI_SERIAL_HARDWARE_FLOW_CONTROL_ENABLE;
} else {
Control &= ~EFI_SERIAL_HARDWARE_FLOW_CONTROL_ENABLE;
}
//
// Clear the bits that are not allowed to pass to SetControl
//
Control &= (EFI_SERIAL_REQUEST_TO_SEND | EFI_SERIAL_DATA_TERMINAL_READY |
EFI_SERIAL_HARDWARE_LOOPBACK_ENABLE | EFI_SERIAL_SOFTWARE_LOOPBACK_ENABLE |
EFI_SERIAL_HARDWARE_FLOW_CONTROL_ENABLE);
Status = SerialIo->SetControl (SerialIo, Control);
}
}
break;
} }
break; }
if (Index != SerialDeviceCount) {
//
// Directly return if the SerialIo instance specified by RemainingDevicePath is found and updated.
// Otherwise continue to create the instance specified by RemainingDevicePath.
//
if (SerialDevices != NULL) {
FreePool (SerialDevices);
}
return Status;
} }
} }
if (Index != SerialDeviceCount) { }
//
// Directly return if the SerialIo instance specified by RemainingDevicePath is found and updated.
// Otherwise continue to create the instance specified by RemainingDevicePath.
//
if (SerialDevices != NULL) {
FreePool (SerialDevices);
}
return Status;
}
}
if (RemainingDevicePath != NULL) { if (RemainingDevicePath != NULL) {
Uart = (UART_DEVICE_PATH *) SkipControllerDevicePathNode (RemainingDevicePath, &ContainsControllerNode, &ControllerNumber); Uart = (UART_DEVICE_PATH *) SkipControllerDevicePathNode (RemainingDevicePath, &ContainsControllerNode, &ControllerNumber);