public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-platforms 0/4] Enable USB support on LS1046aFrwy board
@ 2020-09-15 16:28 Meenakshi Aggarwal
  2020-09-15 16:29 ` [edk2-platforms 1/4] Silicon/NXP: Add GPIO driver support Meenakshi Aggarwal
                   ` (4 more replies)
  0 siblings, 5 replies; 29+ messages in thread
From: Meenakshi Aggarwal @ 2020-09-15 16:28 UTC (permalink / raw)
  To: ard.biesheuvel, leif, michael.d.kinney, devel; +Cc: v.sethi, Meenakshi Aggarwal

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


^ permalink raw reply	[flat|nested] 29+ messages in thread
* [edk2-platforms 0/4] Enable USB support on LS1046aFrwy board
@ 2020-09-14 15:46 Meenakshi Aggarwal
  0 siblings, 0 replies; 29+ messages in thread
From: Meenakshi Aggarwal @ 2020-09-14 15:46 UTC (permalink / raw)
  To: ard.biesheuvel, leif, michael.d.kinney, devel; +Cc: v.sethi, Meenakshi Aggarwal

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                |  10 +
 Silicon/NXP/NxpQoriqLs.dsc.inc                     |   2 +
 Platform/NXP/LS1046aFrwyPkg/LS1046aFrwyPkg.dsc     |   1 +
 Platform/NXP/LS1046aFrwyPkg/LS1046aFrwyPkg.fdf     |  11 +
 .../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, 933 insertions(+)
 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


^ permalink raw reply	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2020-10-09 16:04 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-15 16:28 [edk2-platforms 0/4] Enable USB support on LS1046aFrwy board Meenakshi Aggarwal
2020-09-15 16:29 ` [edk2-platforms 1/4] Silicon/NXP: Add GPIO driver support Meenakshi Aggarwal
2020-09-25 11:12   ` Leif Lindholm
2020-09-15 16:29 ` [edk2-platforms 2/4] Platform/NXP/LS1046aFrwyPkg: GPIO mux changes for USB Meenakshi Aggarwal
2020-09-25 11:17   ` Leif Lindholm
2020-09-15 16:29 ` [edk2-platforms 3/4] Silicon/NXP: Implement USB Errata Meenakshi Aggarwal
2020-09-25 11:47   ` Leif Lindholm
2020-09-15 16:29 ` [edk2-platforms 4/4] LS1046aFrwy: Enable USB support for LS1046AFRWY board Meenakshi Aggarwal
2020-09-25 11:47   ` Leif Lindholm
2020-10-07 16:10 ` [edk2-platforms v2 0/6] Enable USB support on LS1046aFrwy board Meenakshi Aggarwal
2020-10-07 16:10   ` [edk2-platforms v2 1/6] Silicon/NXP: Add GPIO Library support Meenakshi Aggarwal
2020-10-08 12:10     ` Leif Lindholm
2020-10-07 16:10   ` [edk2-platforms v2 2/6] Platform/NXP/LS1046aFrwyPkg: MUX changes for USB Meenakshi Aggarwal
2020-10-08 12:13     ` Leif Lindholm
2020-10-07 16:10   ` [edk2-platforms v2 3/6] Silicon/NXP: Add SCFG support for Chassis2 Meenakshi Aggarwal
2020-10-08 12:15     ` Leif Lindholm
2020-10-07 16:10   ` [edk2-platforms v2 4/6] Silicon/NXP: Implement USB Errata Workarounds Meenakshi Aggarwal
2020-10-08 12:18     ` Leif Lindholm
2020-10-07 16:10   ` [edk2-platforms v2 5/6] Silicon/NXP/LS1046A: Apply USB errata workarounds Meenakshi Aggarwal
2020-10-08 12:05     ` Leif Lindholm
2020-10-07 16:10   ` [edk2-platforms v2 6/6] LS1046aFrwy: Enable USB support for LS1046AFRWY board Meenakshi Aggarwal
2020-10-09 15:19     ` [edk2-platforms v3 0/6] Enable USB support on LS1046aFrwy board Meenakshi Aggarwal
2020-10-09 15:19       ` [edk2-platforms v3 4/6] Silicon/NXP: Implement USB Errata Workarounds Meenakshi Aggarwal
2020-10-09 15:19       ` [edk2-platforms v3 5/6] Silicon/NXP/LS1046A: Apply USB errata workarounds Meenakshi Aggarwal
2020-10-09 16:02         ` Leif Lindholm
2020-10-09 15:19       ` [edk2-platforms v3 6/6] LS1046aFrwy: Enable USB support for LS1046AFRWY board Meenakshi Aggarwal
2020-10-09 16:04       ` [edk2-platforms v3 0/6] Enable USB support on LS1046aFrwy board Leif Lindholm
2020-10-08 12:20   ` [edk2-platforms v2 " Leif Lindholm
  -- strict thread matches above, loose matches on Subject: below --
2020-09-14 15:46 [edk2-platforms 0/4] " Meenakshi Aggarwal

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox