OpenCores
URL https://opencores.org/ocsvn/minsoc/minsoc/trunk

Subversion Repositories minsoc

[/] [minsoc/] [branches/] [rc-1.0/] [sw/] [utils/] [bin2vmem.c] - Diff between revs 2 and 109

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 2 Rev 109
/*$$HEADER*/
/*$$HEADER*/
/******************************************************************************/
/******************************************************************************/
/*                                                                            */
/*                                                                            */
/*                    H E A D E R   I N F O R M A T I O N                     */
/*                    H E A D E R   I N F O R M A T I O N                     */
/*                                                                            */
/*                                                                            */
/******************************************************************************/
/******************************************************************************/
 
 
// Project Name                   : ORPSoC v2
// Project Name                   : ORPSoC v2
// File Name                      : bin2vmem.c
// File Name                      : bin2vmem.c
// Prepared By                    : jb, jb@orsoc.se
// Prepared By                    : jb, jb@orsoc.se
// Project Start                  : 2009-05-13
// Project Start                  : 2009-05-13
 
 
/*$$COPYRIGHT NOTICE*/
/*$$COPYRIGHT NOTICE*/
/******************************************************************************/
/******************************************************************************/
/*                                                                            */
/*                                                                            */
/*                      C O P Y R I G H T   N O T I C E                       */
/*                      C O P Y R I G H T   N O T I C E                       */
/*                                                                            */
/*                                                                            */
/******************************************************************************/
/******************************************************************************/
/*
/*
  This library is free software; you can redistribute it and/or
  This library is free software; you can redistribute it and/or
  modify it under the terms of the GNU Lesser General Public
  modify it under the terms of the GNU Lesser General Public
  License as published by the Free Software Foundation;
  License as published by the Free Software Foundation;
  version 2.1 of the License, a copy of which is available from
  version 2.1 of the License, a copy of which is available from
  http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt.
  http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt.
 
 
  This library is distributed in the hope that it will be useful,
  This library is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  Lesser General Public License for more details.
  Lesser General Public License for more details.
 
 
  You should have received a copy of the GNU Lesser General Public
  You should have received a copy of the GNU Lesser General Public
  License along with this library; if not, write to the Free Software
  License along with this library; if not, write to the Free Software
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
*/
*/
 
 
/*$$DESCRIPTION*/
/*$$DESCRIPTION*/
/******************************************************************************/
/******************************************************************************/
/*                                                                            */
/*                                                                            */
/*                           D E S C R I P T I O N                            */
/*                           D E S C R I P T I O N                            */
/*                                                                            */
/*                                                                            */
/******************************************************************************/
/******************************************************************************/
//
//
// Generates VMEM output to stdout from binary images.
// Generates VMEM output to stdout from binary images.
// Use with redirection like: ./bin2vmem app.bin > app.vmem
// Use with redirection like: ./bin2vmem app.bin > app.vmem
// To change either the number of bytes per word or word per line, change
// To change either the number of bytes per word or word per line, change
// the following defines.
// the following defines.
// Currently output is WORD addressed, NOT byte addressed
// Currently output is WORD addressed, NOT byte addressed
// eg: @00000000 00000000 00000000 00000000 00000000
// eg: @00000000 00000000 00000000 00000000 00000000
//     @00000004 00000000 00000000 00000000 00000000
//     @00000004 00000000 00000000 00000000 00000000
//     @00000008 00000000 00000000 00000000 00000000
//     @00000008 00000000 00000000 00000000 00000000
//     @0000000c 00000000 00000000 00000000 00000000
//     @0000000c 00000000 00000000 00000000 00000000
//     etc..
//     etc..
//
//
 
 
#define WORDS_PER_LINE 4
#define WORDS_PER_LINE 4
#define BYTES_PER_WORD 4
#define BYTES_PER_WORD 4
 
 
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
 
 
int main(int argc, char **argv)
int main(int argc, char **argv)
{
{
 
 
        FILE  *fd;
        FILE  *fd;
        int c;
        int c;
        int i = 0;
        int i = 0;
        int write_size_word=0; // Disabled by default
        int write_size_word=0; // Disabled by default
        int filename_index=1;
        int filename_index=1;
        unsigned int image_size;
        unsigned int image_size;
 
 
        // Counters keeping track of what we've printed
        // Counters keeping track of what we've printed
        int current_addr = 0;
        int current_addr = 0;
        int word_counter = 0;
        int word_counter = 0;
        int byte_counter = 0;
        int byte_counter = 0;
 
 
        if(argc < 2) {
        if(argc < 2) {
          fprintf(stderr,"\n\tInsufficient options.\n");
          fprintf(stderr,"\n\tInsufficient options.\n");
          fprintf(stderr,"\tPlease specify a binary file to convert to VMEM\n");
          fprintf(stderr,"\tPlease specify a binary file to convert to VMEM\n");
          fprintf(stderr,"\n\tbin2vmem - creates vmem output to stdout from bin\n");
          fprintf(stderr,"\n\tbin2vmem - creates vmem output to stdout from bin\n");
          exit(1);
          exit(1);
        }
        }
 
 
        fd = fopen( argv[filename_index], "r" );
        fd = fopen( argv[filename_index], "r" );
 
 
        if (fd == NULL) {
        if (fd == NULL) {
                fprintf(stderr,"failed to open input file: %s\n",argv[1]);
                fprintf(stderr,"failed to open input file: %s\n",argv[1]);
                exit(1);
                exit(1);
        }
        }
 
 
        fseek(fd, 0, SEEK_END);
        fseek(fd, 0, SEEK_END);
        image_size = ftell(fd);
        image_size = ftell(fd);
        fseek(fd,0,SEEK_SET);
        fseek(fd,0,SEEK_SET);
 
 
        if (write_size_word)
        if (write_size_word)
          {
          {
            // or1200 startup method of determining size of boot image we're copying by reading out
            // or1200 startup method of determining size of boot image we're copying by reading out
            // the very first word in flash is used. Determine the length of this file
            // the very first word in flash is used. Determine the length of this file
            fseek(fd, 0, SEEK_END);
            fseek(fd, 0, SEEK_END);
            image_size = ftell(fd);
            image_size = ftell(fd);
            fseek(fd,0,SEEK_SET);
            fseek(fd,0,SEEK_SET);
 
 
            // Now we should have the size of the file in bytes. Let's ensure it's a word multiple
            // Now we should have the size of the file in bytes. Let's ensure it's a word multiple
            image_size+=3;
            image_size+=3;
            image_size &= 0xfffffffc;
            image_size &= 0xfffffffc;
 
 
            // Sanity check on image size
            // Sanity check on image size
            if (image_size < 8){
            if (image_size < 8){
              fprintf(stderr, "Bad binary image. Size too small\n");
              fprintf(stderr, "Bad binary image. Size too small\n");
              return 1;
              return 1;
            }
            }
 
 
            // Now write out the image size
            // Now write out the image size
            printf("@%8x", current_addr);
            printf("@%8x", current_addr);
            printf("%8x", image_size);
            printf("%8x", image_size);
            current_addr += WORDS_PER_LINE * BYTES_PER_WORD;
            current_addr += WORDS_PER_LINE * BYTES_PER_WORD;
          }
          }
        else
        else
          {
          {
          }
          }
 
 
 
 
        // Fix for the current bootloader software! Skip the first 4 bytes of application data. Hopefully it's not important. 030509 -- jb
        // Fix for the current bootloader software! Skip the first 4 bytes of application data. Hopefully it's not important. 030509 -- jb
        //for(i=0;i<4;i++)
        //for(i=0;i<4;i++)
        //  c=fgetc(fd);
        //  c=fgetc(fd);
        i=0;
        i=0;
        int starting_new_line  = 1;
        int starting_new_line  = 1;
        // Now write out the binary data to VMEM format: @ADDRESSS XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX
        // Now write out the binary data to VMEM format: @ADDRESSS XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX
        while ((c = fgetc(fd)) != EOF) {
        while ((c = fgetc(fd)) != EOF) {
          if (starting_new_line)
          if (starting_new_line)
            {
            {
              // New line - print the current addr and then increment it
              // New line - print the current addr and then increment it
              printf("@%.8x", current_addr);
              printf("@%.8x", current_addr);
              //current_addr += WORDS_PER_LINE * BYTES_PER_WORD;
              //current_addr += WORDS_PER_LINE * BYTES_PER_WORD;
              current_addr += WORDS_PER_LINE;
              current_addr += WORDS_PER_LINE;
              starting_new_line = 0;
              starting_new_line = 0;
            }
            }
          if (byte_counter == 0)
          if (byte_counter == 0)
            printf(" ");
            printf(" ");
 
 
          printf("%.2x", (unsigned int) c); // now print the actual char
          printf("%.2x", (unsigned int) c); // now print the actual char
 
 
          byte_counter++;
          byte_counter++;
 
 
          if (byte_counter == BYTES_PER_WORD)
          if (byte_counter == BYTES_PER_WORD)
            {
            {
              word_counter++;
              word_counter++;
              byte_counter=0;
              byte_counter=0;
            }
            }
          if (word_counter == WORDS_PER_LINE)
          if (word_counter == WORDS_PER_LINE)
            {
            {
              printf("\n");
              printf("\n");
              word_counter = 0;
              word_counter = 0;
              starting_new_line = 1;
              starting_new_line = 1;
            }
            }
        }
        }
 
 
        return 0;
        return 0;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.