diff options
author | Leif Lindholm <leif.lindholm@linaro.org> | 2017-08-03 12:24:22 +0100 |
---|---|---|
committer | Leif Lindholm <leif.lindholm@linaro.org> | 2017-08-03 12:24:22 +0100 |
commit | f4d38e50c0f24eb78eb003a94f583025621c63db (patch) | |
tree | 1022985e88897b7bf0065905b5cb26f9a71fff25 /Silicon/AMD/Styx/Applications/StyxFlashUefi/StyxFlashImage.S | |
parent | 430bc861413cb2e8f0e50e42b56da9860584c49a (diff) | |
download | edk2-platforms-f4d38e50c0f24eb78eb003a94f583025621c63db.tar.xz |
Platform,Silicon: import AMD Styx SoC support and platforms
Common files for AMD Overdrive, SoftIron Overdrive 1000
and LeMaker Cello, as well as actual platform support.
Imported from commit efd798c1eb of
https://git.linaro.org/uefi/OpenPlatformPkg.git
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
Diffstat (limited to 'Silicon/AMD/Styx/Applications/StyxFlashUefi/StyxFlashImage.S')
-rw-r--r-- | Silicon/AMD/Styx/Applications/StyxFlashUefi/StyxFlashImage.S | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Silicon/AMD/Styx/Applications/StyxFlashUefi/StyxFlashImage.S b/Silicon/AMD/Styx/Applications/StyxFlashUefi/StyxFlashImage.S new file mode 100644 index 0000000000..041339ee9b --- /dev/null +++ b/Silicon/AMD/Styx/Applications/StyxFlashUefi/StyxFlashImage.S @@ -0,0 +1,25 @@ +/** @file
+
+ Copyright (c) 2017, Linaro Ltd. All rights reserved.<BR>
+
+ This program and the accompanying materials
+ are licensed and made available under the terms and conditions of the BSD License
+ which accompanies this distribution. The full text of the license may be found at
+ http://opensource.org/licenses/bsd-license.php
+
+ THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+
+**/
+
+ .section ".payload"
+ .align 12
+
+ASM_GLOBAL ASM_PFX(StyxFlashImageStart)
+ASM_PFX(StyxFlashImageStart):
+ .incbin "STYX_EFI.Fv"
+
+ .align 2
+ASM_GLOBAL ASM_PFX(StyxFlashImageSize)
+ASM_PFX(StyxFlashImageSize):
+ .long . - ASM_PFX(StyxFlashImageStart)
|