From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from inva020.nxp.com (inva020.nxp.com [92.121.34.13]) by mx.groups.io with SMTP id smtpd.web12.10729.1600166866220471139 for ; Tue, 15 Sep 2020 03:47:46 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: oss.nxp.com, ip: 92.121.34.13, mailfrom: meenakshi.aggarwal@oss.nxp.com) Received: from inva020.nxp.com (localhost [127.0.0.1]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id 189D31A08AA; Tue, 15 Sep 2020 12:47:44 +0200 (CEST) Received: from inv0113.in-blr01.nxp.com (inv0113.in-blr01.nxp.com [165.114.116.118]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id D8A5B1A0886; Tue, 15 Sep 2020 12:47:43 +0200 (CEST) Received: from uefi-OptiPlex-790.ap.freescale.net (unknown [10.232.132.78]) by inv0113.in-blr01.nxp.com (Postfix) with ESMTP id BA150342; Tue, 15 Sep 2020 16:17:42 +0530 (IST) From: Meenakshi Aggarwal To: ard.biesheuvel@arm.com, leif@nuviainc.com, michael.d.kinney@intel.com, devel@edk2.groups.io Cc: v.sethi@nxp.com, Meenakshi Aggarwal Subject: [edk2-platforms 0/4] Enable USB support on LS1046aFrwy board Date: Tue, 15 Sep 2020 21:58:59 +0530 Message-Id: <1600187343-18732-1-git-send-email-meenakshi.aggarwal@oss.nxp.com> X-Mailer: git-send-email 1.9.1 X-Virus-Scanned: ClamAV using ClamSMTP This patch set adds GPIO Library. Gpio Library is required to set muxing to enable USB controller. Meenakshi Aggarwal (4): Silicon/NXP: Add GPIO driver support. Platform/NXP/LS1046aFrwyPkg: GPIO mux changes for USB Silicon/NXP: Implement USB Errata LS1046aFrwy: Enable USB support for LS1046AFRWY board. Silicon/NXP/NxpQoriqLs.dec | 9 + Silicon/NXP/LS1046A/LS1046A.dsc.inc | 9 + Silicon/NXP/NxpQoriqLs.dsc.inc | 2 + Platform/NXP/LS1046aFrwyPkg/LS1046aFrwyPkg.dsc | 2 + Platform/NXP/LS1046aFrwyPkg/LS1046aFrwyPkg.fdf | 13 ++ .../Library/ArmPlatformLib/ArmPlatformLib.inf | 1 + .../NXP/Chassis2/Library/ChassisLib/ChassisLib.inf | 2 + Silicon/NXP/LS1046A/Library/SocLib/SocLib.inf | 2 + Silicon/NXP/Library/GpioLib/GpioLib.inf | 39 ++++ Silicon/NXP/Chassis2/Include/Chassis.h | 112 ++++++++++ Silicon/NXP/Chassis2/Library/ChassisLib/Erratum.h | 23 ++ Silicon/NXP/Include/Library/ChassisLib.h | 62 ++++++ Silicon/NXP/Include/Library/GpioLib.h | 110 ++++++++++ Silicon/NXP/LS1046A/Include/Soc.h | 2 + .../Library/ArmPlatformLib/ArmPlatformLib.c | 17 ++ .../NXP/Chassis2/Library/ChassisLib/ChassisLib.c | 63 ++++++ Silicon/NXP/Chassis2/Library/ChassisLib/Erratum.c | 159 ++++++++++++++ Silicon/NXP/LS1046A/Library/SocLib/SocLib.c | 66 ++++++ Silicon/NXP/Library/GpioLib/GpioLib.c | 242 +++++++++++++++++++++ 19 files changed, 935 insertions(+) mode change 100644 => 100755 Platform/NXP/LS1046aFrwyPkg/LS1046aFrwyPkg.dsc mode change 100644 => 100755 Platform/NXP/LS1046aFrwyPkg/LS1046aFrwyPkg.fdf create mode 100644 Silicon/NXP/Library/GpioLib/GpioLib.inf create mode 100644 Silicon/NXP/Chassis2/Library/ChassisLib/Erratum.h create mode 100644 Silicon/NXP/Include/Library/GpioLib.h create mode 100644 Silicon/NXP/Chassis2/Library/ChassisLib/Erratum.c create mode 100644 Silicon/NXP/Library/GpioLib/GpioLib.c -- 1.9.1