From: Vabhav <vabhav.sharma@nxp.com>
To: <ard.biesheuvel@linaro.org>, <leif.lindholm@linaro.org>,
<michael.d.kinney@intel.com>, <edk2-devel@lists.01.org>
Subject: [PATCH 0/4] Platform/NXP-Adding NXP NOR IP
Date: Fri, 1 Dec 2017 09:40:02 +0530 [thread overview]
Message-ID: <1512101406-11567-1-git-send-email-vabhav.sharma@nxp.com> (raw)
Following patches will add support of NXP NOR IP in edk2-platforms
directory 'edk2-platforms/Platform/NXP'
Updated Directory structure for added folders in 'edk2-platforms/Platform/NXP'
will be:
|-- Drivers
| |-- NorFlashDxe
| | |-- NorFlashBlockIoDxe.c
| | |-- NorFlashDxe.c
| | |-- NorFlashDxe.inf
| | `-- NorFlashFvbDxe.c
|-- Include
| `-- Library
| |-- IfcBase.h
| |-- Ifc.h
| |-- NorFlash.h
| `-- NorFlashLib.h
|-- Library
| |-- IfcFlashLib
| | |-- IfcFlashLib.c
| | `-- IfcFlashLib.inf
| `-- NorFlashLib
| |-- CfiCommand.h
| |-- CfiNorFlashLib.c
| |-- CfiNorFlashLib.h
| |-- IfcNorFlashLib.c
| |-- NorFlashLib.c
| `-- NorFlashLib.inf
|-- LS1043aRdbPkg
| |-- Include
| | `-- Library
| | `-- IfcBoardSpecificLib.h
| |-- LS1043aRdbPkg.dsc
| |-- LS1043aRdbPkg.fdf
| `-- VarStore.fdf.inc
|-- NxpQoriqLs.dsc
In Platform/NXP/Library:
IfcFlashLib and NorFlashLib will be added
In Platform/NXP/Drivers:
NorFlashDxe driver will be added
Platform/NXP/LS1043aRdbPkg will host VarStore.fdf.inc for runtime variable
support.
Please review and look forward for your support for upstreaming the patches in
edk2-platforms.
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 | 446 ++++++++++++
Platform/NXP/Drivers/NorFlashDxe/NorFlashDxe.inf | 65 ++
Platform/NXP/Drivers/NorFlashDxe/NorFlashFvbDxe.c | 807 +++++++++++++++++++++
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 | 51 ++
Platform/NXP/LS1043aRdbPkg/LS1043aRdbPkg.dsc | 22 +
Platform/NXP/LS1043aRdbPkg/LS1043aRdbPkg.fdf | 9 +-
Platform/NXP/LS1043aRdbPkg/VarStore.fdf.inc | 98 +++
Platform/NXP/Library/IfcFlashLib/IfcFlashLib.c | 65 ++
Platform/NXP/Library/IfcFlashLib/IfcFlashLib.inf | 30 +
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.dsc | 6 +-
21 files changed, 3515 insertions(+), 2 deletions(-)
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
next reply other threads:[~2017-12-01 16:07 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-01 4:10 Vabhav [this message]
2017-12-01 4:10 ` [PATCH 1/4] Platform/NXP : Add Integrated flash controller library support Vabhav
2017-12-01 4:10 ` [PATCH 2/4] Platform/NXP : Add Support for NOR flash Library Vabhav
2017-12-01 4:10 ` [PATCH 3/4] Platform/NXP : Add Support for NOR Flash driver Vabhav
2017-12-01 4:10 ` [PATCH 4/4] Compilation:Modify dsc, fdf files and add inc file Vabhav
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1512101406-11567-1-git-send-email-vabhav.sharma@nxp.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox