aboutsummaryrefslogtreecommitdiffstats
path: root/tools/firmware-utils/src/mkedimaximg.c
diff options
context:
space:
mode:
authorPetr Štetiar <ynezz@true.cz>2021-07-05 11:54:26 +0200
committerRafał Miłecki <rafal@milecki.pl>2021-10-05 16:20:10 +0200
commit8cc9a74a3f6bf363645efda6db417f8dadd3d844 (patch)
tree68f1648a077df8e49328f087eccaf94c2e47d1e8 /tools/firmware-utils/src/mkedimaximg.c
parentf82c93b93c0a021921ac7a30ba6e7a090c7ddd1c (diff)
downloadupstream-8cc9a74a3f6bf363645efda6db417f8dadd3d844.tar.gz
upstream-8cc9a74a3f6bf363645efda6db417f8dadd3d844.tar.bz2
upstream-8cc9a74a3f6bf363645efda6db417f8dadd3d844.zip
firmware-utils: update to version 2021-10-05
Includes following changes: db65821f006c cmake: fix missing install target 3a0cfc856991 Add initial GitLab CI support 8f47adea6f87 Add missing includes for byte swap operations fbafae9f8037 Convert to CMake based project Additionaly moves source code into separate Git project repository and converts the package build to utilize CMake. Signed-off-by: Petr Štetiar <ynezz@true.cz> [rmilecki: rebase, update to the latest repo git & rm -r src] Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Diffstat (limited to 'tools/firmware-utils/src/mkedimaximg.c')
-rw-r--r--tools/firmware-utils/src/mkedimaximg.c281
1 files changed, 0 insertions, 281 deletions
diff --git a/tools/firmware-utils/src/mkedimaximg.c b/tools/firmware-utils/src/mkedimaximg.c
deleted file mode 100644
index 899f9f6146..0000000000
--- a/tools/firmware-utils/src/mkedimaximg.c
+++ /dev/null
@@ -1,281 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0-or-later
-/*
- * Copyright (C) 2011 Vasilis Tsiligiannis <b_tsiligiannis@silverton.gr>
- */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <libgen.h>
-#include <getopt.h>
-#include <errno.h>
-#include <sys/stat.h>
-#include <endian.h> /* for __BYTE_ORDER */
-
-#define FALSE 0
-#define TRUE 1
-
-#if (__BYTE_ORDER == __LITTLE_ENDIAN)
-# define HOST_TO_LE16(x) (x)
-# define HOST_TO_LE32(x) (x)
-# define HOST_TO_BE16(x) bswap_16(x)
-# define HOST_TO_BE32(x) bswap_32(x)
-#else
-# define HOST_TO_LE16(x) bswap_16(x)
-# define HOST_TO_LE32(x) bswap_32(x)
-# define HOST_TO_BE16(x) (x)
-# define HOST_TO_BE32(x) (x)
-#endif
-
-struct header
-{
- unsigned char sign[4];
- unsigned int start;
- unsigned int flash;
- unsigned char model[4];
- unsigned int size;
-} __attribute__ ((packed));
-
-struct finfo
-{
- char *name;
- off_t size;
-};
-
-struct buf
-{
- char *start;
- size_t size;
-};
-
-static char *progname;
-static int force_be = FALSE;
-
-static void usage(int status)
-{
- FILE *stream = (status != EXIT_SUCCESS) ? stderr : stdout;
-
- fprintf(stream, "Usage: %s [OPTIONS...]\n", progname);
- fprintf(stream,
- "\n"
- "Options:\n"
- " -s <sig> set image signature to <sig>\n"
- " -m <model> set model to <model>\n"
- " -i <file> read input from file <file>\n"
- " -o <file> write output to file <file>\n"
- " -f <flash> set flash address to <flash>\n"
- " -S <start> set start address to <start>\n"
- " -b big-endianness mode\n");
-
- exit(status);
-}
-
-static int strtou32(char *arg, unsigned int *val)
-{
- char *endptr = NULL;
-
- errno = 0;
- *val = strtoul(arg, &endptr, 0);
- if (errno || (endptr == arg) || (*endptr && (endptr != NULL))) {
- return EXIT_SUCCESS;
- }
-
- return EXIT_FAILURE;
-}
-
-static unsigned short fwcsum (struct buf *buf) {
- int i;
- unsigned short ret = 0;
-
- for (i = 0; i < buf->size / 2; i++) {
- if (force_be == FALSE)
- ret -= ((unsigned short *) buf->start)[i];
- else
- ret -= HOST_TO_BE16(((unsigned short *) buf->start)[i]);
- }
-
- return ret;
-}
-
-static int fwread(struct finfo *finfo, struct buf *buf)
-{
- FILE *f;
-
- f = fopen(finfo->name, "r");
- if (!f) {
- fprintf(stderr, "could not open \"%s\" for reading\n", finfo->name);
- usage(EXIT_FAILURE);
- }
-
- buf->size = fread(buf->start, 1, finfo->size, f);
- if (buf->size != finfo->size) {
- fprintf(stderr, "unable to read from file \"%s\"\n", finfo->name);
- usage(EXIT_FAILURE);
- }
-
- fclose(f);
-
- return EXIT_SUCCESS;
-}
-
-static int fwwrite(struct finfo *finfo, struct buf *buf)
-{
- FILE *f;
-
- f = fopen(finfo->name, "w");
- if (!f) {
- fprintf(stderr, "could not open \"%s\" for writing\n", finfo->name);
- usage(EXIT_FAILURE);
- }
-
- buf->size = fwrite(buf->start, 1, finfo->size, f);
- if (buf->size != finfo->size) {
- fprintf(stderr, "unable to write to file \"%s\"\n", finfo->name);
- usage(EXIT_FAILURE);
- }
-
- fclose(f);
-
- return EXIT_SUCCESS;
-}
-
-int main(int argc, char **argv)
-{
- struct stat st;
- struct header header;
- struct buf ibuf, obuf;
- struct finfo ifinfo, ofinfo;
- unsigned short csum;
- int c;
-
- ifinfo.name = ofinfo.name = NULL;
- header.flash = header.size = header.start = 0;
- progname = basename(argv[0]);
-
- while((c = getopt(argc, argv, "i:o:m:s:f:S:h:b")) != -1) {
- switch (c) {
- case 'i':
- ifinfo.name = optarg;
- break;
- case 'o':
- ofinfo.name = optarg;
- break;
- case 'm':
- if (strlen(optarg) != 4) {
- fprintf(stderr, "model must be 4 characters long\n");
- usage(EXIT_FAILURE);
- }
- memcpy(header.model, optarg, 4);
- break;
- case 's':
- if (strlen(optarg) != 4) {
- fprintf(stderr, "signature must be 4 characters long\n");
- usage(EXIT_FAILURE);
- }
- memcpy(header.sign, optarg, 4);
- break;
- case 'h':
- usage(EXIT_SUCCESS);
- break;
- case 'f':
- if (!strtou32(optarg, &header.flash)) {
- fprintf(stderr, "invalid flash address specified\n");
- usage(EXIT_FAILURE);
- }
- break;
- case 'S':
- if (!strtou32(optarg, &header.start)) {
- fprintf(stderr, "invalid start address specified\n");
- usage(EXIT_FAILURE);
- }
- break;
- case 'b':
- force_be = TRUE;
- break;
- default:
- usage(EXIT_FAILURE);
- break;
- }
- }
-
- if (ifinfo.name == NULL) {
- fprintf(stderr, "no input file specified\n");
- usage(EXIT_FAILURE);
- }
-
- if (ofinfo.name == NULL) {
- fprintf(stderr, "no output file specified\n");
- usage(EXIT_FAILURE);
- }
-
- if (stat(ifinfo.name, &st)) {
- fprintf(stderr, "stat failed on %s\n", ifinfo.name);
- usage(EXIT_FAILURE);
- }
-
- if (header.sign == NULL) {
- fprintf(stderr, "no signature specified\n");
- usage(EXIT_FAILURE);
- }
-
- if (header.model == NULL) {
- fprintf(stderr, "no model specified\n");
- usage(EXIT_FAILURE);
- }
-
- if (!header.flash) {
- fprintf(stderr, "no flash address specified\n");
- usage(EXIT_FAILURE);
- }
-
- if (!header.start) {
- fprintf(stderr, "no start address specified\n");
- usage(EXIT_FAILURE);
- }
-
- ifinfo.size = st.st_size;
-
- obuf.size = ifinfo.size + sizeof(struct header) + sizeof(unsigned short);
- if (obuf.size % sizeof(unsigned short))
- obuf.size++;
-
- obuf.start = malloc(obuf.size);
- if (!obuf.start) {
- fprintf(stderr, "no memory for buffer\n");
- usage(EXIT_FAILURE);
- }
- memset(obuf.start, 0, obuf.size);
-
- ibuf.size = ifinfo.size;
- ibuf.start = obuf.start + sizeof(struct header);
-
- if (fwread(&ifinfo, &ibuf))
- usage(EXIT_FAILURE);
-
- if (force_be == FALSE) {
- header.flash = HOST_TO_LE32(header.flash);
- header.size = HOST_TO_LE32(obuf.size - sizeof(struct header));
- header.start = HOST_TO_LE32(header.start);
- } else {
- header.flash = HOST_TO_BE32(header.flash);
- header.size = HOST_TO_BE32(obuf.size - sizeof(struct header));
- header.start = HOST_TO_BE32(header.start);
- }
-
- memcpy (obuf.start, &header, sizeof(struct header));
-
- if (force_be == FALSE)
- csum = HOST_TO_LE16(fwcsum(&ibuf));
- else
- csum = HOST_TO_BE16(fwcsum(&ibuf));
-
- memcpy(obuf.start + obuf.size - sizeof(unsigned short),
- &csum, sizeof(unsigned short));
-
- ofinfo.size = obuf.size;
-
- if (fwwrite(&ofinfo, &obuf))
- usage(EXIT_FAILURE);
-
- return EXIT_SUCCESS;
-}