summaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
authorSteven Lawrance <steven.lawrance@softathome.com>2022-09-14 21:57:27 +0300
committerTom Rini <trini@konsulko.com>2022-10-11 22:40:48 +0300
commit7c5eeb8309a19c662efe6d7695c256975f6da0d4 (patch)
treeeedd61149ce7dc2baf10bd7ad918b97bb43c68fb /boot
parentbda5f3e7d678ef34ca512cc5321b73e39320b147 (diff)
downloadu-boot-7c5eeb8309a19c662efe6d7695c256975f6da0d4.tar.xz
image-pre-load: Move macros/definitions to image.h
Putting these definitions in a header will allow signatures to be validated independently of bootm. Signed-off-by: Steven Lawrance <steven.lawrance@softathome.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'boot')
-rw-r--r--boot/image-pre-load.c43
1 files changed, 0 insertions, 43 deletions
diff --git a/boot/image-pre-load.c b/boot/image-pre-load.c
index 5ab9ae1874..01b60030fc 100644
--- a/boot/image-pre-load.c
+++ b/boot/image-pre-load.c
@@ -11,49 +11,6 @@ DECLARE_GLOBAL_DATA_PTR;
#include <u-boot/sha256.h>
-#define IMAGE_PRE_LOAD_SIG_MAGIC 0x55425348
-#define IMAGE_PRE_LOAD_SIG_OFFSET_MAGIC 0
-#define IMAGE_PRE_LOAD_SIG_OFFSET_IMG_LEN 4
-#define IMAGE_PRE_LOAD_SIG_OFFSET_SIG 8
-
-#define IMAGE_PRE_LOAD_PATH "/image/pre-load/sig"
-#define IMAGE_PRE_LOAD_PROP_ALGO_NAME "algo-name"
-#define IMAGE_PRE_LOAD_PROP_PADDING_NAME "padding-name"
-#define IMAGE_PRE_LOAD_PROP_SIG_SIZE "signature-size"
-#define IMAGE_PRE_LOAD_PROP_PUBLIC_KEY "public-key"
-#define IMAGE_PRE_LOAD_PROP_MANDATORY "mandatory"
-
-/*
- * Information in the device-tree about the signature in the header
- */
-struct image_sig_info {
- char *algo_name; /* Name of the algo (eg: sha256,rsa2048) */
- char *padding_name; /* Name of the padding */
- u8 *key; /* Public signature key */
- int key_len; /* Length of the public key */
- u32 sig_size; /* size of the signature (in the header) */
- int mandatory; /* Set if the signature is mandatory */
-
- struct image_sign_info sig_info; /* Signature info */
-};
-
-/*
- * Header of the signature header
- */
-struct sig_header_s {
- u32 magic;
- u32 version;
- u32 header_size;
- u32 image_size;
- u32 offset_img_sig;
- u32 flags;
- u32 reserved0;
- u32 reserved1;
- u8 sha256_img_sig[SHA256_SUM_LEN];
-};
-
-#define SIG_HEADER_LEN (sizeof(struct sig_header_s))
-
/*
* Offset of the image
*