Files
Mike Crowe 990e3e81e6 Use LF line endings in the repository
Convert the line endings stored for all text files in the repository to
LF. The majority previously used DOS-style CRLF line endings. Add a
.gitattributes file to enforce this and treat certain extensions as
never being text files.

Update PatchCheck.py to insist on LF line endings rather than CRLF.
However, its other checks fail on this commit due to lots of
pre-existing complaints that it only notices because the line endings
have changed.

Silicon/QemuSocPkg/FspBin/Patches/0001-Build-QEMU-FSP-2.0-binaries.patch
needs to be treated as binary since it contains a mixture of line
endings.

This change has implications depending on the client platform you are
using the repository from:

* Windows

The usual configuration for Git on Windows means that text files will
be checked out to the work tree with DOS-style CRLF line endings. If
that's not the case then you can configure Git to do so for the entire
machine with:

 git config --global core.autocrlf true

or for just the repository with:

 git config core.autocrlf true

Line endings will be normalised to LF when they are committed to the
repository. If you commit a text file with only LF line endings then it
will be converted to CRLF line endings in your work tree.

* Linux, MacOS and other Unices

The usual configuration for Git on such platforms is to check files out
of the repository with LF line endings. This is probably the right thing
for you. In the unlikely even that you are using Git on Unix but editing
or compiling on Windows for some reason then you may need to tweak your
configuration to force the use of CRLF line endings as described above.

* General

For more information see
https://docs.github.com/en/get-started/getting-started-with-git/configuring-git-to-handle-line-endings .

Fixes: https://github.com/slimbootloader/slimbootloader/issues/1400
Signed-off-by: Mike Crowe <mac@mcrowe.com>
2021-11-10 12:46:42 -08:00

173 lines
4.5 KiB
C

/** @file
Copyright (c) 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <UsbInitLibInternal.h>
USB_INIT_INSTANCE mUsbInit;
/**
This function register each USB device into an array.
When a new USB device is found during USB bus enumeration, it will
be called to register this device.
@param[in] UsbIoPpi The USB device interface instance.
@retval EFI_UNSUPPORTED USB device registeration failed due to insufficant entry.
@retval EFI_SUCCESS This routinue alwasy return success.
**/
EFI_STATUS
EFIAPI
RegisterUsbDevice (
IN PEI_USB_IO_PPI *UsbIoPpi
)
{
EFI_STATUS Status;
if (mUsbInit.UsbIoCount < ARRAY_SIZE (mUsbInit.UsbIoArray)) {
mUsbInit.UsbIoArray[mUsbInit.UsbIoCount++] = UsbIoPpi;
Status = EFI_SUCCESS;
} else {
Status = EFI_UNSUPPORTED;
}
return Status;
}
/**
The function will de-initialize USB device.
For USB system, it is required to do de-initialization at the end of
the boot stage so that the host controller will stop transactions.
@retval EFI_SUCCESS The driver is successfully deinitialized.
@retval EFI_NOT_FOUND Can't find any USB block devices for boot.
**/
EFI_STATUS
EFIAPI
DeinitUsbDevices (
VOID
)
{
EFI_STATUS Status;
UINTN Index;
if (mUsbInit.UsbHostHandle == NULL) {
return EFI_NOT_FOUND;
}
DEBUG ((DEBUG_INFO, "Deinit USB controller\n"));
Status = UsbDeinitCtrl (mUsbInit.UsbHostHandle);
UsbDeInitBot ();
for (Index = 0; Index < mUsbInit.UsbIoCount; Index++) {
UsbDeinitDevice (mUsbInit.UsbIoArray[Index]);
}
ZeroMem (&mUsbInit, sizeof(mUsbInit));
return Status;
}
/**
The function will initialize USB device on bus.
Based on UsbHcPciBase, this function will initialize USB host controller, allocate
necessary resources, and enumarate all devcies on the USB bus.
@param[in] UsbHcPciBase USB Host Controller's PCI ConfigSpace Base address
@retval EFI_SUCCESS The driver is successfully initialized.
@retval EFI_NOT_FOUND Can't find any USB block devices for boot.
@retval EFI_UNSUPPORTED Device is not XHCI controller.
**/
EFI_STATUS
EFIAPI
InitUsbDevices (
IN UINTN UsbHcPciBase
)
{
EFI_STATUS Status;
UINTN PcieAddress;
UINT64 XhciMmioBase;
UINT32 Data;
UINT8 *Class;
UINT8 BarType;
Status = EFI_SUCCESS;
if (mUsbInit.UsbHostHandle == NULL) {
// Verify XHCI controller
PcieAddress = UsbHcPciBase;
Data = MmioRead32 (PcieAddress + PCI_REVISION_ID_OFFSET) >> 8;
Class = (UINT8 *)&Data;
if (((Class[0] == PCI_IF_XHCI) && (Class[1] == PCI_CLASS_SERIAL_USB) &&
(Class[2] == PCI_CLASS_SERIAL))) {
// Enable XHCI controller
MmioOr8 (PcieAddress + PCI_COMMAND_OFFSET, EFI_PCI_COMMAND_MEMORY_SPACE | EFI_PCI_COMMAND_BUS_MASTER);
// Read high 32-bit BAR only if BAR type is 64-bit address space
XhciMmioBase = (UINT32)MmioRead32 (PcieAddress + PCI_BASE_ADDRESSREG_OFFSET);
BarType = (UINT8)XhciMmioBase & 0xF;
XhciMmioBase &= (UINT32)(~BarType);
if ((BarType & 0x04) != 0) {
XhciMmioBase |= LShiftU64 ((UINT64)MmioRead32 (PcieAddress + PCI_BASE_ADDRESSREG_OFFSET + 0x4), 32);
}
Status = UsbInitCtrl ((UINTN)XhciMmioBase, &mUsbInit.UsbHostHandle);
DEBUG ((DEBUG_INFO, "Init USB XHCI - %r\n", Status));
if (!EFI_ERROR (Status)) {
// Enumerate USB bus to register all devices
Status = UsbEnumBus (mUsbInit.UsbHostHandle, RegisterUsbDevice);
DEBUG ((DEBUG_INFO, "Enumerate Bus - %r\n", Status));
if (!EFI_ERROR (Status)) {
DEBUG ((DEBUG_INFO, "Found %d USB devices on bus\n", mUsbInit.UsbIoCount));
}
}
} else {
Status = EFI_UNSUPPORTED;
}
}
return Status;
}
/**
The function will return USB device array.
@param[in, out] UsbIoArray Address to receive USB I/O instance array.
@param[in, out] UsbIoCount Address to receive USB I/O device count.
@retval EFI_SUCCESS USB I/O instancs are returned successfully.
@retval EFI_NOT_AVAILABLE_YET USB bus has not been enumerated yet.
**/
EFI_STATUS
EFIAPI
GetUsbDevices (
IN OUT PEI_USB_IO_PPI **UsbIoArray,
IN OUT UINT32 *UsbIoCount
)
{
if (mUsbInit.UsbHostHandle == NULL) {
return EFI_NOT_AVAILABLE_YET;
}
if (UsbIoArray != NULL) {
*UsbIoArray = (PEI_USB_IO_PPI *)mUsbInit.UsbIoArray;
}
if (UsbIoCount != NULL) {
*UsbIoCount = mUsbInit.UsbIoCount;
}
return EFI_SUCCESS;
}