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

Subversion Repositories or1k

[/] [or1k/] [tags/] [nog_patch_61/] [or1ksim/] [sim-config.c] - Diff between revs 221 and 230

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

Rev 221 Rev 230
/* config.c -- Simulator configuration
/* config.c -- Simulator configuration
   Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
   Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
 
 
This file is part of OpenRISC 1000 Architectural Simulator.
This file is part of OpenRISC 1000 Architectural Simulator.
 
 
This program is free software; you can redistribute it and/or modify
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
(at your option) any later version.
 
 
This program is distributed in the hope that it will be useful,
This program 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
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
GNU General Public License for more details.
 
 
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
 
 
/* Simulator configuration. Eventually this one will be a lot bigger. */
/* Simulator configuration. Eventually this one will be a lot bigger. */
 
 
#include <stdio.h>
#include <stdio.h>
#include "sim-config.h"
#include "sim-config.h"
#include "abstract.h"
#include "abstract.h"
#include "spr_defs.h"
#include "spr_defs.h"
 
#include "pic.h"
 
 
struct config config;
struct config config;
 
 
void init_defconfig()
void init_defconfig()
{
{
        unsigned long val;
        unsigned long val;
 
 
        memset(&config, 0, sizeof(config));
        memset(&config, 0, sizeof(config));
        config.dc.tagtype = NONE/*VIRTUAL*/;
        config.dc.tagtype = NONE/*VIRTUAL*/;
        config.ic.tagtype = NONE/*VIRTUAL*/;
        config.ic.tagtype = NONE/*VIRTUAL*/;
        config.bp.bpb_sim = 1;
        config.bp.bpb_sim = 1;
        config.bp.btic_sim = 1;
        config.bp.btic_sim = 1;
        config.clkcycle_ns = 4; /* 4 for 4ns (250MHz) */
        config.clkcycle_ns = 4; /* 4 for 4ns (250MHz) */
        config.uarts[0].rxfile = "/tmp/uart0.rx";
        config.uarts[0].rxfile = "/tmp/uart0.rx";
        config.uarts[0].txfile = "/tmp/uart0.tx";
        config.uarts[0].txfile = "/tmp/uart0.tx";
        config.uarts[0].baseaddr = 0x80000000;
        config.uarts[0].baseaddr = 0x80000000;
        config.uarts[0].jitter = -1; /* Async behavior */
        config.uarts[0].jitter = -1; /* Async behavior */
        config.dmas[0].baseaddr = 0x90000000;
        config.dmas[0].baseaddr = 0x90000000;
 
        config.dmas[0].irq = INT_DMA;
        config.simdebug = 0;
        config.simdebug = 0;
        config.profile = 0;
        config.profile = 0;
        config.iprompt = 0;
        config.iprompt = 0;
        config.dependstats = 1;
        config.dependstats = 1;
        config.dependency = 1;
        config.dependency = 1;
        config.history = 1;
        config.history = 1;
        config.superscalar = 1;
        config.superscalar = 1;
        config.slp = 1;
        config.slp = 1;
        config.profile = 0;
        config.profile = 0;
 
 
        mtspr(SPR_VR, SPR_VR_VER & 0x1200);
        mtspr(SPR_VR, SPR_VR_VER & 0x1200);
 
 
        val = SPR_UPR_UP | SPR_UPR_DCP | SPR_UPR_ICP | SPR_UPR_DMP |
        val = SPR_UPR_UP | SPR_UPR_DCP | SPR_UPR_ICP | SPR_UPR_DMP |
        SPR_UPR_IMP | SPR_UPR_OB32P | SPR_UPR_DUP | SPR_UPR_PICP |
        SPR_UPR_IMP | SPR_UPR_OB32P | SPR_UPR_DUP | SPR_UPR_PICP |
        SPR_UPR_PMP | SPR_UPR_TTP;
        SPR_UPR_PMP | SPR_UPR_TTP;
 
 
        mtspr(SPR_UPR, val);
        mtspr(SPR_UPR, val);
}
}
 
 
int parse_args(int argc, char *argv[])
int parse_args(int argc, char *argv[])
{
{
        unsigned long val;
        unsigned long val;
 
 
        argv++; argc--;
        argv++; argc--;
        while (argc) {
        while (argc) {
          if (argc && (*argv[0] != '-')) {
          if (argc && (*argv[0] != '-')) {
                    config.filename = argv[0];
                    config.filename = argv[0];
                    argc--;
                    argc--;
                    argv++;
                    argv++;
                 } else
                 } else
                 if (strncmp(*argv, "-loadmem",8) == 0) {  /* (CZ) */
                 if (strncmp(*argv, "-loadmem",8) == 0) {  /* (CZ) */
                        MemoryBlock** block = &config.memory;
                        MemoryBlock** block = &config.memory;
                        int address = 0;
                        int address = 0;
 
 
                        if(!--argc)
                        if(!--argc)
                          return 1;
                          return 1;
 
 
                        if(argv[0][8] == '@')
                        if(argv[0][8] == '@')
                          {
                          {
                            char *s;
                            char *s;
 
 
                            address = strtol(address,&s,0);
                            address = strtol(address,&s,0);
                            if(*s)
                            if(*s)
                              return 1;
                              return 1;
                          }
                          }
                        else if(argv[0][8])
                        else if(argv[0][8])
                          return 1;
                          return 1;
 
 
                        while(*block)
                        while(*block)
                          block = &(*block)->next;
                          block = &(*block)->next;
                        *block = (MemoryBlock*)malloc(sizeof(MemoryBlock));
                        *block = (MemoryBlock*)malloc(sizeof(MemoryBlock));
                        memset(*block,0,sizeof(MemoryBlock));
                        memset(*block,0,sizeof(MemoryBlock));
                        (*block)->address = address;
                        (*block)->address = address;
                        (*block)->file = *(++argv);
                        (*block)->file = *(++argv);
                        argv++; argc--;
                        argv++; argc--;
                } else
                } else
                if (strcmp(*argv, "-initmem") == 0) {  /* (CZ) */
                if (strcmp(*argv, "-initmem") == 0) {  /* (CZ) */
                        char *pattern,*s;
                        char *pattern,*s;
                        if(!--argc)
                        if(!--argc)
                          return 1;
                          return 1;
                        pattern = *(++argv);
                        pattern = *(++argv);
                        if(!strcmp(pattern,"random"))
                        if(!strcmp(pattern,"random"))
                          config.random_mem = 1;
                          config.random_mem = 1;
                        else
                        else
                          {
                          {
                            val = strtol(pattern,&s,0);
                            val = strtol(pattern,&s,0);
                            if(*s)
                            if(*s)
                              return 1;
                              return 1;
                            config.pattern_mem = val;
                            config.pattern_mem = val;
                          }
                          }
                } else
                } else
                if (strcmp(*argv, "-nosrv") == 0) {  /* (CZ) */
                if (strcmp(*argv, "-nosrv") == 0) {  /* (CZ) */
                        config.inhibit_server = 1;
                        config.inhibit_server = 1;
                        argv++; argc--;
                        argv++; argc--;
                } else
                } else
                if (strcmp(*argv, "-srv") == 0) {  /* (CZ) */
                if (strcmp(*argv, "-srv") == 0) {  /* (CZ) */
                        char *s;
                        char *s;
                        if(!--argc)
                        if(!--argc)
                          return 1;
                          return 1;
                        config.server_port = strtol(*(++argv),&s,10);
                        config.server_port = strtol(*(++argv),&s,10);
                        if(*s)
                        if(*s)
                          return 1;
                          return 1;
                        argv++; argc--;
                        argv++; argc--;
                } else
                } else
                if (strcmp(*argv, "-i") == 0) {
                if (strcmp(*argv, "-i") == 0) {
                        config.iprompt = 1;
                        config.iprompt = 1;
                        argv++; argc--;
                        argv++; argc--;
                } else
                } else
                if (strcmp(*argv, "-v") == 0) {
                if (strcmp(*argv, "-v") == 0) {
                        version();
                        version();
                        exit(0);
                        exit(0);
                } else
                } else
                if (strcmp(*argv, "-bpb") == 0) {
                if (strcmp(*argv, "-bpb") == 0) {
                        config.bp.bpb_sim = 0;
                        config.bp.bpb_sim = 0;
                        argv++; argc--;
                        argv++; argc--;
                } else
                } else
                if (strcmp(*argv, "-hazards") == 0) {
                if (strcmp(*argv, "-hazards") == 0) {
                        config.dependstats = 0;
                        config.dependstats = 0;
                        config.dependency = 0;
                        config.dependency = 0;
                        argv++; argc--;
                        argv++; argc--;
                } else
                } else
                if (strcmp(*argv, "-history") == 0) {
                if (strcmp(*argv, "-history") == 0) {
                        config.history = 0;
                        config.history = 0;
                        argv++; argc--;
                        argv++; argc--;
                } else
                } else
                if (strcmp(*argv, "-superscalar") == 0) {
                if (strcmp(*argv, "-superscalar") == 0) {
                        config.superscalar = 0;
                        config.superscalar = 0;
                        argv++; argc--;
                        argv++; argc--;
                } else
                } else
                if (strcmp(*argv, "-fast") == 0) {
                if (strcmp(*argv, "-fast") == 0) {
                        config.superscalar = 0;
                        config.superscalar = 0;
                        config.history = 0;
                        config.history = 0;
                        config.dependstats = 0;
                        config.dependstats = 0;
                        config.dependency = 0;
                        config.dependency = 0;
                        config.bp.bpb_sim = 0;
                        config.bp.bpb_sim = 0;
                        config.bp.btic_sim = 0;
                        config.bp.btic_sim = 0;
                        config.slp = 0;
                        config.slp = 0;
                        argv++; argc--;
                        argv++; argc--;
                } else
                } else
                if (strcmp(*argv, "-btic") == 0) {
                if (strcmp(*argv, "-btic") == 0) {
                        config.bp.btic_sim = 0;
                        config.bp.btic_sim = 0;
                        argv++; argc--;
                        argv++; argc--;
                } else
                } else
                if (strcmp(*argv, "-upr") == 0) {
                if (strcmp(*argv, "-upr") == 0) {
                        argv++; argc--;
                        argv++; argc--;
                        val = strtoul(*argv, NULL, 0);
                        val = strtoul(*argv, NULL, 0);
                        mtspr(SPR_UPR, val);
                        mtspr(SPR_UPR, val);
                        argv++; argc--;
                        argv++; argc--;
                } else
                } else
                if (strcmp(*argv, "-ver") == 0) {
                if (strcmp(*argv, "-ver") == 0) {
                        argv++; argc--;
                        argv++; argc--;
                        val = strtoul(*argv, NULL, 0);
                        val = strtoul(*argv, NULL, 0);
                        setsprbits(SPR_VR, SPR_VR_VER, val);
                        setsprbits(SPR_VR, SPR_VR_VER, val);
                        argv++; argc--;
                        argv++; argc--;
                } else
                } else
                if (strcmp(*argv, "-rev") == 0) {
                if (strcmp(*argv, "-rev") == 0) {
                        argv++; argc--;
                        argv++; argc--;
                        val = strtoul(*argv, NULL, 0);
                        val = strtoul(*argv, NULL, 0);
                        setsprbits(SPR_VR, SPR_VR_REV, val);
                        setsprbits(SPR_VR, SPR_VR_REV, val);
                        argv++; argc--;
                        argv++; argc--;
                } else
                } else
                if (strcmp(*argv, "-profile") == 0) {
                if (strcmp(*argv, "-profile") == 0) {
                  config.profile = 1;
                  config.profile = 1;
                  argv++; argc--;
                  argv++; argc--;
                } else {
                } else {
                        printf("Unknown option: %s\n", *argv);
                        printf("Unknown option: %s\n", *argv);
                        return 1;
                        return 1;
                }
                }
        }
        }
 
 
        if (!argc)
        if (!argc)
                return 0;
                return 0;
 
 
        return 0;
        return 0;
}
}
 
 
void print_config()
void print_config()
{
{
        printf("Machine initialization...\n");
        printf("Machine initialization...\n");
        if (testsprbits(SPR_UPR, SPR_UPR_DCP))
        if (testsprbits(SPR_UPR, SPR_UPR_DCP))
                printf("Data cache tag: %s\n", config.dc.tagtype == VIRTUAL ? "virtual" : "physical");
                printf("Data cache tag: %s\n", config.dc.tagtype == VIRTUAL ? "virtual" : "physical");
        else
        else
                printf("No data cache.\n");
                printf("No data cache.\n");
        if (testsprbits(SPR_UPR, SPR_UPR_ICP))
        if (testsprbits(SPR_UPR, SPR_UPR_ICP))
                printf("Insn cache tag: %s\n", config.ic.tagtype == VIRTUAL ? "virtual" : "physical");
                printf("Insn cache tag: %s\n", config.ic.tagtype == VIRTUAL ? "virtual" : "physical");
        else
        else
                printf("No instruction cache.\n");
                printf("No instruction cache.\n");
        if (config.bp.bpb_sim)
        if (config.bp.bpb_sim)
                printf("BPB simulation on.\n");
                printf("BPB simulation on.\n");
        else
        else
                printf("BPB simulation off.\n");
                printf("BPB simulation off.\n");
        if (config.bp.btic_sim)
        if (config.bp.btic_sim)
                printf("BTIC simulation on.\n");
                printf("BTIC simulation on.\n");
        else
        else
                printf("BTIC simulation off.\n");
                printf("BTIC simulation off.\n");
        printf("Clock cycle: %d ns\n", config.clkcycle_ns);
        printf("Clock cycle: %d ns\n", config.clkcycle_ns);
        /*printf("RAM: 0x%x to 0x%x (%d KB)\n\n", config.ram.startaddr, config.ram.endaddr);
        /*printf("RAM: 0x%x to 0x%x (%d KB)\n\n", config.ram.startaddr, config.ram.endaddr);
          (config.ram.endaddr - config.ram.startaddr) / 1024); MM170901 different memory scheme.  */
          (config.ram.endaddr - config.ram.startaddr) / 1024); MM170901 different memory scheme.  */
 
 
        if (config.simdebug)
        if (config.simdebug)
                printf("simdebug on, ");
                printf("simdebug on, ");
        else
        else
                printf("simdebug off, ");
                printf("simdebug off, ");
        if (config.iprompt)
        if (config.iprompt)
                printf("interactive prompt on\n");
                printf("interactive prompt on\n");
        else
        else
                printf("interactive prompt off\n");
                printf("interactive prompt off\n");
}
}
 
 

powered by: WebSVN 2.1.0

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