[edk2] [PATCH edk2-platforms v2 0/4] Platform/NXP-Adding NXP NOR IP

Vabhav posted 4 patches 6 years, 4 months ago
Failed in applying to current master (apply log)
.../NXP/Drivers/NorFlashDxe/NorFlashBlockIoDxe.c   | 254 +++++++
Platform/NXP/Drivers/NorFlashDxe/NorFlashDxe.c     | 444 +++++++++++
Platform/NXP/Drivers/NorFlashDxe/NorFlashDxe.inf   |  65 ++
Platform/NXP/Drivers/NorFlashDxe/NorFlashFvbDxe.c  | 814 +++++++++++++++++++++
Platform/NXP/Include/Library/Ifc.h                 | 147 ++++
Platform/NXP/Include/Library/IfcBase.h             | 139 ++++
Platform/NXP/Include/Library/NorFlash.h            | 222 ++++++
Platform/NXP/Include/Library/NorFlashLib.h         |  67 ++
.../Include/Library/IfcBoardSpecificLib.h          |  50 ++
Platform/NXP/LS1043aRdbPkg/LS1043aRdbPkg.dsc       |  24 +
Platform/NXP/LS1043aRdbPkg/LS1043aRdbPkg.fdf       |   9 +-
Platform/NXP/LS1043aRdbPkg/VarStore.fdf.inc        |  98 +++
Platform/NXP/Library/IfcFlashLib/IfcFlashLib.c     |  70 ++
Platform/NXP/Library/IfcFlashLib/IfcFlashLib.inf   |  33 +
Platform/NXP/Library/NorFlashLib/CfiCommand.h      |  99 +++
Platform/NXP/Library/NorFlashLib/CfiNorFlashLib.c  | 184 +++++
Platform/NXP/Library/NorFlashLib/CfiNorFlashLib.h  |  54 ++
Platform/NXP/Library/NorFlashLib/IfcNorFlashLib.c  |  52 ++
Platform/NXP/Library/NorFlashLib/NorFlashLib.c     | 658 +++++++++++++++++
Platform/NXP/Library/NorFlashLib/NorFlashLib.inf   |  42 ++
Platform/NXP/NxpQoriqLs.dec                        |   1 +
Platform/NXP/NxpQoriqLs.dsc                        |   5 +
Silicon/NXP/Chassis/Chassis.c                      |  15 +
Silicon/NXP/Chassis/Chassis.h                      |   7 +
Silicon/NXP/Chassis/Chassis2/Soc.c                 |   1 +
Silicon/NXP/Chassis/LS1043aSocLib.inf              |   2 +
26 files changed, 3555 insertions(+), 1 deletion(-)
create mode 100644 Platform/NXP/Drivers/NorFlashDxe/NorFlashBlockIoDxe.c
create mode 100644 Platform/NXP/Drivers/NorFlashDxe/NorFlashDxe.c
create mode 100755 Platform/NXP/Drivers/NorFlashDxe/NorFlashDxe.inf
create mode 100644 Platform/NXP/Drivers/NorFlashDxe/NorFlashFvbDxe.c
create mode 100755 Platform/NXP/Include/Library/Ifc.h
create mode 100644 Platform/NXP/Include/Library/IfcBase.h
create mode 100644 Platform/NXP/Include/Library/NorFlash.h
create mode 100644 Platform/NXP/Include/Library/NorFlashLib.h
create mode 100755 Platform/NXP/LS1043aRdbPkg/Include/Library/IfcBoardSpecificLib.h
create mode 100644 Platform/NXP/LS1043aRdbPkg/VarStore.fdf.inc
create mode 100644 Platform/NXP/Library/IfcFlashLib/IfcFlashLib.c
create mode 100644 Platform/NXP/Library/IfcFlashLib/IfcFlashLib.inf
create mode 100644 Platform/NXP/Library/NorFlashLib/CfiCommand.h
create mode 100644 Platform/NXP/Library/NorFlashLib/CfiNorFlashLib.c
create mode 100644 Platform/NXP/Library/NorFlashLib/CfiNorFlashLib.h
create mode 100644 Platform/NXP/Library/NorFlashLib/IfcNorFlashLib.c
create mode 100644 Platform/NXP/Library/NorFlashLib/NorFlashLib.c
create mode 100644 Platform/NXP/Library/NorFlashLib/NorFlashLib.inf
[edk2] [PATCH edk2-platforms v2 0/4] Platform/NXP-Adding NXP NOR IP
Posted by Vabhav 6 years, 4 months ago
Changes for v2:
(1)Format changes as per edk2 coding guidelines

(2)Changes made to use NXP Mmio BE library

(3)Commit message updated

Vabhav (4):
  Platform/NXP : Add Integrated flash controller library support
  Platform/NXP : Add Support for NOR flash Library
  Platform/NXP : Add Support for NOR Flash driver
  Compilation:Modify dsc,fdf files and add inc file

 .../NXP/Drivers/NorFlashDxe/NorFlashBlockIoDxe.c   | 254 +++++++
 Platform/NXP/Drivers/NorFlashDxe/NorFlashDxe.c     | 444 +++++++++++
 Platform/NXP/Drivers/NorFlashDxe/NorFlashDxe.inf   |  65 ++
 Platform/NXP/Drivers/NorFlashDxe/NorFlashFvbDxe.c  | 814 +++++++++++++++++++++
 Platform/NXP/Include/Library/Ifc.h                 | 147 ++++
 Platform/NXP/Include/Library/IfcBase.h             | 139 ++++
 Platform/NXP/Include/Library/NorFlash.h            | 222 ++++++
 Platform/NXP/Include/Library/NorFlashLib.h         |  67 ++
 .../Include/Library/IfcBoardSpecificLib.h          |  50 ++
 Platform/NXP/LS1043aRdbPkg/LS1043aRdbPkg.dsc       |  24 +
 Platform/NXP/LS1043aRdbPkg/LS1043aRdbPkg.fdf       |   9 +-
 Platform/NXP/LS1043aRdbPkg/VarStore.fdf.inc        |  98 +++
 Platform/NXP/Library/IfcFlashLib/IfcFlashLib.c     |  70 ++
 Platform/NXP/Library/IfcFlashLib/IfcFlashLib.inf   |  33 +
 Platform/NXP/Library/NorFlashLib/CfiCommand.h      |  99 +++
 Platform/NXP/Library/NorFlashLib/CfiNorFlashLib.c  | 184 +++++
 Platform/NXP/Library/NorFlashLib/CfiNorFlashLib.h  |  54 ++
 Platform/NXP/Library/NorFlashLib/IfcNorFlashLib.c  |  52 ++
 Platform/NXP/Library/NorFlashLib/NorFlashLib.c     | 658 +++++++++++++++++
 Platform/NXP/Library/NorFlashLib/NorFlashLib.inf   |  42 ++
 Platform/NXP/NxpQoriqLs.dec                        |   1 +
 Platform/NXP/NxpQoriqLs.dsc                        |   5 +
 Silicon/NXP/Chassis/Chassis.c                      |  15 +
 Silicon/NXP/Chassis/Chassis.h                      |   7 +
 Silicon/NXP/Chassis/Chassis2/Soc.c                 |   1 +
 Silicon/NXP/Chassis/LS1043aSocLib.inf              |   2 +
 26 files changed, 3555 insertions(+), 1 deletion(-)
 create mode 100644 Platform/NXP/Drivers/NorFlashDxe/NorFlashBlockIoDxe.c
 create mode 100644 Platform/NXP/Drivers/NorFlashDxe/NorFlashDxe.c
 create mode 100755 Platform/NXP/Drivers/NorFlashDxe/NorFlashDxe.inf
 create mode 100644 Platform/NXP/Drivers/NorFlashDxe/NorFlashFvbDxe.c
 create mode 100755 Platform/NXP/Include/Library/Ifc.h
 create mode 100644 Platform/NXP/Include/Library/IfcBase.h
 create mode 100644 Platform/NXP/Include/Library/NorFlash.h
 create mode 100644 Platform/NXP/Include/Library/NorFlashLib.h
 create mode 100755 Platform/NXP/LS1043aRdbPkg/Include/Library/IfcBoardSpecificLib.h
 create mode 100644 Platform/NXP/LS1043aRdbPkg/VarStore.fdf.inc
 create mode 100644 Platform/NXP/Library/IfcFlashLib/IfcFlashLib.c
 create mode 100644 Platform/NXP/Library/IfcFlashLib/IfcFlashLib.inf
 create mode 100644 Platform/NXP/Library/NorFlashLib/CfiCommand.h
 create mode 100644 Platform/NXP/Library/NorFlashLib/CfiNorFlashLib.c
 create mode 100644 Platform/NXP/Library/NorFlashLib/CfiNorFlashLib.h
 create mode 100644 Platform/NXP/Library/NorFlashLib/IfcNorFlashLib.c
 create mode 100644 Platform/NXP/Library/NorFlashLib/NorFlashLib.c
 create mode 100644 Platform/NXP/Library/NorFlashLib/NorFlashLib.inf

-- 
1.9.1

_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel