]> git.sur5r.net Git - u-boot/blobdiff - tools/ifdtool.c
Merge branch 'master' of git://git.denx.de/u-boot-sunxi
[u-boot] / tools / ifdtool.c
index b794516189cd66991b6826f6f58b089864dfe7fe..3a39b7bc701194e6bf1e9b0cb767c2feb7abca39 100644 (file)
@@ -1,10 +1,9 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * ifdtool - Manage Intel Firmware Descriptor information
  *
  * Copyright 2014 Google, Inc
  *
- * SPDX-License-Identifier:    GPL-2.0
- *
  * From Coreboot project, but it got a serious code clean-up
  * and a few new features
  */
 #include <assert.h>
 #include <fcntl.h>
 #include <getopt.h>
+#include <stdbool.h>
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
 #include <unistd.h>
 #include <sys/types.h>
 #include <sys/stat.h>
-#include <libfdt.h>
+#include <linux/libfdt.h>
 #include "ifdtool.h"
 
 #undef DEBUG
 #define FLREG_BASE(reg)                ((reg & 0x00000fff) << 12);
 #define FLREG_LIMIT(reg)       (((reg & 0x0fff0000) >> 4) | 0xfff);
 
-enum input_file_type_t {
-       IF_normal,
-       IF_fdt,
-       IF_uboot,
-};
-
 struct input_file {
        char *fname;
        unsigned int addr;
-       enum input_file_type_t type;
 };
 
 /**
@@ -707,10 +700,12 @@ int inject_region(char *image, int size, int region_type, char *region_fname)
  *                     8MB ROM the start address is 0xfff80000.
  * @write_fname:       Filename to add to the image
  * @offset_uboot_top:  Offset of the top of U-Boot
+ * @offset_uboot_start:        Offset of the start of U-Boot
  * @return number of bytes written if OK, -ve on error
  */
 static int write_data(char *image, int size, unsigned int addr,
-                     const char *write_fname, int offset_uboot_top)
+                     const char *write_fname, int offset_uboot_top,
+                     int offset_uboot_start)
 {
        int write_fd, write_size;
        int offset;
@@ -720,13 +715,25 @@ static int write_data(char *image, int size, unsigned int addr,
                return write_fd;
 
        offset = (uint32_t)(addr + size);
-       if (offset_uboot_top && offset_uboot_top >= offset) {
-               fprintf(stderr, "U-Boot image overlaps with region '%s'\n",
-                       write_fname);
-               fprintf(stderr,
-                       "U-Boot finishes at offset %x, file starts at %x\n",
-                       offset_uboot_top, offset);
-               return -EXDEV;
+       if (offset_uboot_top) {
+               if (offset_uboot_start < offset &&
+                   offset_uboot_top >= offset) {
+                       fprintf(stderr, "U-Boot image overlaps with region '%s'\n",
+                               write_fname);
+                       fprintf(stderr,
+                               "U-Boot finishes at offset %x, file starts at %x\n",
+                               offset_uboot_top, offset);
+                       return -EXDEV;
+               }
+               if (offset_uboot_start > offset &&
+                   offset_uboot_start <= offset + write_size) {
+                       fprintf(stderr, "U-Boot image overlaps with region '%s'\n",
+                               write_fname);
+                       fprintf(stderr,
+                               "U-Boot starts at offset %x, file finishes at %x\n",
+                               offset_uboot_start, offset + write_size);
+                       return -EXDEV;
+               }
        }
        debug("Writing %s to offset %#x\n", write_fname, offset);
 
@@ -746,123 +753,11 @@ static int write_data(char *image, int size, unsigned int addr,
        return write_size;
 }
 
-static int scan_ucode(const void *blob, char *ucode_base, int *countp,
-                     const char **datap, int *data_sizep)
-{
-       const char *data = NULL;
-       int node, count;
-       int data_size;
-       char *ucode;
-
-       for (node = 0, count = 0, ucode = ucode_base; node >= 0; count++) {
-               node = fdt_node_offset_by_compatible(blob, node,
-                                                    "intel,microcode");
-               if (node < 0)
-                       break;
-
-               data = fdt_getprop(blob, node, "data", &data_size);
-               if (!data) {
-                       debug("Missing microcode data in FDT '%s': %s\n",
-                             fdt_get_name(blob, node, NULL),
-                             fdt_strerror(data_size));
-                       return -ENOENT;
-               }
-
-               ucode += data_size;
-       }
-
-       if (countp)
-               *countp = count;
-       if (datap)
-               *datap = data;
-       if (data_sizep)
-               *data_sizep = data_size;
-
-       return ucode - ucode_base;
-}
-
-static int write_ucode(char *image, int size, struct input_file *fdt,
-                      int fdt_size, unsigned int ucode_ptr)
-{
-       const char *data = NULL;
-       const void *blob;
-       uint32_t *ptr;
-       int ucode_size;
-       int data_size;
-       int offset;
-       int count;
-
-       blob = (void *)image + (uint32_t)(fdt->addr + size);
-
-       debug("DTB at %lx\n", (char *)blob - image);
-
-       /* Find out about the micrcode we have */
-       ucode_size = scan_ucode(blob, NULL, &count, &data, &data_size);
-       if (ucode_size < 0)
-               return ucode_size;
-       if (!count) {
-               debug("No microcode found in FDT\n");
-               return -ENOENT;
-       }
-
-       if (count > 1) {
-               fprintf(stderr,
-                       "Cannot handle multiple microcode blocks\n");
-               return -EMLINK;
-       }
-
-       offset = (uint32_t)(ucode_ptr + size);
-       ptr = (void *)image + offset;
-
-       ptr[0] = (data - image) - size;
-       ptr[1] = data_size;
-       debug("Wrote microcode pointer at %x: addr=%x, size=%x\n", ucode_ptr,
-             ptr[0], ptr[1]);
-
-       return 0;
-}
-
-/**
- * write_uboot() - Write U-Boot, device tree and microcode pointer
- *
- * This writes U-Boot into a place in the flash, followed by its device tree.
- * The microcode pointer is written so that U-Boot can find the microcode in
- * the device tree very early in boot.
- *
- * @image:     Pointer to image
- * @size:      Size of image in bytes
- * @uboot:     Input file information for u-boot.bin
- * @fdt:       Input file information for u-boot.dtb
- * @ucode_ptr: Address in U-Boot where the microcode pointer should be placed
- * @return 0 if OK, -ve on error
- */
-static int write_uboot(char *image, int size, struct input_file *uboot,
-                      struct input_file *fdt, unsigned int ucode_ptr)
-{
-       const void *blob;
-       int uboot_size, fdt_size;
-
-       uboot_size = write_data(image, size, uboot->addr, uboot->fname, 0);
-       if (uboot_size < 0)
-               return uboot_size;
-       fdt->addr = uboot->addr + uboot_size;
-       debug("U-Boot size %#x, FDT at %#x\n", uboot_size, fdt->addr);
-       fdt_size = write_data(image, size, fdt->addr, fdt->fname, 0);
-       if (fdt_size < 0)
-               return fdt_size;
-       blob = (void *)image + (uint32_t)(fdt->addr + size);
-
-       if (ucode_ptr)
-               return write_ucode(image, size, fdt, fdt_size, ucode_ptr);
-
-       return ((char *)blob + fdt_size) - image;
-}
-
 static void print_version(void)
 {
        printf("ifdtool v%s -- ", IFDTOOL_VERSION);
        printf("Copyright (C) 2014 Google Inc.\n\n");
-       printf("SPDX-License-Identifier:        GPL-2.0+\n");
+       printf("SPDX-License-Identifier: GPL-2.0+\n");
 }
 
 static void print_usage(const char *name)
@@ -932,7 +827,6 @@ int main(int argc, char *argv[])
        char *outfile = NULL;
        struct stat buf;
        int size = 0;
-       unsigned int ucode_ptr = 0;
        bool have_uboot = false;
        int bios_fd;
        char *image;
@@ -946,7 +840,6 @@ int main(int argc, char *argv[])
                {"fdt", 1, NULL, 'f'},
                {"inject", 1, NULL, 'i'},
                {"lock", 0, NULL, 'l'},
-               {"microcode", 1, NULL, 'm'},
                {"romsize", 1, NULL, 'r'},
                {"spifreq", 1, NULL, 's'},
                {"unlock", 0, NULL, 'u'},
@@ -957,7 +850,7 @@ int main(int argc, char *argv[])
                {0, 0, 0, 0}
        };
 
-       while ((opt = getopt_long(argc, argv, "cdD:ef:hi:lm:r:s:uU:vw:x?",
+       while ((opt = getopt_long(argc, argv, "cdD:ef:hi:lr:s:uU:vw:x?",
                                  long_options, &option_index)) != EOF) {
                switch (opt) {
                case 'c':
@@ -1000,9 +893,6 @@ int main(int argc, char *argv[])
                case 'l':
                        mode_locked = 1;
                        break;
-               case 'm':
-                       ucode_ptr = strtoul(optarg, NULL, 0);
-                       break;
                case 'r':
                        rom_size = strtol(optarg, NULL, 0);
                        debug("ROM size %d\n", rom_size);
@@ -1047,12 +937,6 @@ int main(int argc, char *argv[])
                                        exit(EXIT_FAILURE);
                                }
                                ifile->addr = strtoll(optarg, NULL, 0);
-                               ifile->type = opt == 'f' ? IF_fdt :
-                                       opt == 'U' ? IF_uboot : IF_normal;
-                               if (ifile->type == IF_fdt)
-                                       fdt = ifile;
-                               else if (ifile->type == IF_uboot)
-                                       have_uboot = true;
                                wr_num++;
                        } else {
                                fprintf(stderr,
@@ -1172,26 +1056,20 @@ int main(int argc, char *argv[])
        }
 
        if (mode_write_descriptor)
-               ret = write_data(image, size, -size, desc_fname, 0);
+               ret = write_data(image, size, -size, desc_fname, 0, 0);
 
        if (mode_inject)
                ret = inject_region(image, size, region_type, inject_fname);
 
        if (mode_write) {
                int offset_uboot_top = 0;
+               int offset_uboot_start = 0;
 
                for (wr_idx = 0; wr_idx < wr_num; wr_idx++) {
                        ifile = &input_file[wr_idx];
-                       if (ifile->type == IF_fdt) {
-                               continue;
-                       } else if (ifile->type == IF_uboot) {
-                               ret = write_uboot(image, size, ifile, fdt,
-                                                 ucode_ptr);
-                               offset_uboot_top = ret;
-                       } else {
-                               ret = write_data(image, size, ifile->addr,
-                                        ifile->fname, offset_uboot_top);
-                       }
+                       ret = write_data(image, size, ifile->addr,
+                                        ifile->fname, offset_uboot_top,
+                                        offset_uboot_start);
                        if (ret < 0)
                                break;
                }