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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [hello-uart/] [sim.cfg] - Diff between revs 1223 and 1348

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 1223 Rev 1348
Line 1... Line 1...
/* sim.cfg -- Simulator configuration script file
/* sim.cfg -- Simulator configuration script file
   Copyright (C) 2001, Marko Mlinar, markom@opencores.org
   Copyright (C) 2001-2002, Marko Mlinar, markom@opencores.org
 
 
This file includes a lot of help about configurations and default one
 
 
 
This file is part of OpenRISC 1000 Architectural Simulator.
This file is part of OpenRISC 1000 Architectural Simulator.
 
It contains the default configuration and help about configuring
 
the 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.
Line 20... Line 20...
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
 
 
 
 
/* INTRODUCTION
/* INTRODUCTION
 
 
   The or1ksim have various parameters, which can be set in configuration
   The ork1sim has various parameters, that are set in configuration files
   files.  Multiple configurations may be used and switched between at
   like this one. The user can switch between configurations at startup by
   or1ksim startup.
   specifying the required configuration file with the -f  option.
   By default, or1ksim loads condfiguration file from './sim.cfg' and if not
   If no configuration file is specified or1ksim searches for the default
   found it checks '~/.or1k/sim.cfg'. If even this file is not found or
   configuration file sim.cfg. First it searches for './sim.cfg'. If this
   all parameters are not defined, default configuration is used.
   file is not found, it searches for '~/or1k/sim.cfg'. If this file is
   Users should not rely on default configuration, but rather redefine all
   not found too, it reverts to the built-in default configuration.
   critical settings, since default configuration may differ in newer
 
   versions of the or1ksim.
   NOTE: Users should not rely on the built-in configuration, since the
   If multiple configurations are used, user can switch between them by
         default configuration may differ between version.
   supplying -f  option when starting simulator.
         Rather create a configuration file that sets all critical values.
 
 
 
   This file may contain (standard C) comments only - no // support.
 
 
   This file may contain (standard C) only comments - no // support.
   Configure files may be be included, using:
 
   include "file_name_to_include"
 
 
   Like normal configuration file, this file is divided in sections,
   Like normal configuration files, the included file is divided into
   where each section is described in detail also.
   sections. Each section is described in detail also.
 
 
   Some section also have subsections. One example of such subsection is
   Some section have subsections. One example of such a subsection is:
   block:
 
 
 
   device 
   device 
     instance specific parameters...
     instance specific parameters...
   enddevice
   enddevice
 
 
Line 50... Line 52...
*/
*/
 
 
 
 
/* MEMORY SECTION
/* MEMORY SECTION
 
 
   This section specifies how is initial memory generated and which blocks
   This section specifies how the memory is generated and the blocks
   it consist of.
   it consists of.
 
 
   type = random/unknown/pattern
   type = random/unknown/pattern
      specifies the initial memory values. 'random' parameter generate
      Specifies the initial memory values.
      random memory using seed 'random_seed' parameter. 'pattern' parameter
      'random' generates random memory using seed 'random_seed'.
      fills memory with 'pattern' parameter and 'unknown' does not specify
      'pattern' fills memory with 'pattern'.
      how memory should be generated - the fastest option.
      'unknown' does not specify how memory should be generated,
 
      leaving the memory in a undefined state. This is the fastest
 
      option.
 
 
   random_seed = 
   random_seed = 
      random seed for randomizer, used if type = random
      random seed for randomizer, used if type = 'random'.
 
 
   pattern = 
   pattern = 
      pattern to fill memory, used if type = pattern
      pattern to fill memory, used if type = 'pattern'.
 
 
   nmemories = 
   nmemories = 
      number of memory instances connected
      number of memory instances connected
 
 
   instance specific:
   instance specific:
Line 87... Line 91...
        cycles, required for read access, -1 if instance does not support reading
        cycles, required for read access, -1 if instance does not support reading
 
 
     delayw = 
     delayw = 
        cycles, required for write access, -1 if instance does not support writing
        cycles, required for write access, -1 if instance does not support writing
 
 
     16550 = 0/1
 
        0, if this device is uart 16450 and 1, if it is 16550
 
 
 
     log = ""
     log = ""
        filename, where to log memory accesses to, no log, if log command is not specified
        filename, where to log memory accesses to, no log, if log command is not specified
*/
*/
 
 
 
 
section memory
section memory
  /*random_seed = 12345
  /*random_seed = 12345
  type = random*/
  type = random*/
  pattern = 0x00
  pattern = 0x00
  type = unknown /* Fastest */
  type = unknown /* Fastest */
 
 
 
 
  nmemories = 3
  nmemories = 3
  device 0
  device 0
    name = "FLASH"
    name = "FLASH"
    ce = 0
    ce = 0
    baseaddr = 0x04000000
    baseaddr = 0xf0000000
    size = 0x00800000
    size = 0x00800000
    delayr = 10
    delayr = 10
    delayw = -1
    delayw = -1
/*    log = "flash.log"*/
 
  enddevice
  enddevice
 
 
  device 1
  device 1
    name = "RAM"
    name = "RAM"
    ce = 1
    ce = 1
    baseaddr = 0x00000000
    baseaddr = 0x00000000
    size = 0x00400000
    size = 0x00400000
    delayr = 1
    delayr = 1
    delayw = 2
    delayw = 2
/*    log = "ram.log"*/
 
  enddevice
  enddevice
 
 
  device 2
  device 2
    name = "SRAM"
    name = "SRAM"
    ce = 2
    ce = 2
    baseaddr = 0x08000000
    baseaddr = 0x08000000
    size = 0x00400000
    size = 0x00400000
    delayr = 1
    delayr = 1
    delayw = 2
    delayw = 2
/*    log = "ram.log"*/
 
  enddevice
  enddevice
end
end
 
 
 
 
/* IMMU SECTION
/* IMMU SECTION
 
 
    This section configures Instruction Memory Menangement Unit
    This section configures the Instruction Memory Manangement Unit
 
 
    enabled = 0/1
    enabled = 0/1
       whether IMMU is enabled
       '0': disabled
 
       '1': enabled
       (NOTE: UPR bit is set)
       (NOTE: UPR bit is set)
 
 
    nsets = 
    nsets = 
       number of ITLB sets; must be power of two
       number of ITLB sets; must be power of two
 
 
Line 153... Line 156...
    entrysize = 
    entrysize = 
       instruction entry size in bytes
       instruction entry size in bytes
 
 
    ustates = 
    ustates = 
       number of ITLB usage states (2, 3, 4 etc., max is 4)
       number of ITLB usage states (2, 3, 4 etc., max is 4)
 
 
 
    hitdelay = 
 
       number of cycles immu hit costs
 
 
 
    missdelay = 
 
       number of cycles immu miss costs
*/
*/
 
 
section immu
section immu
  enabled = 1
  enabled = 0
  nsets = 64
  nsets = 64
  nways = 1
  nways = 1
  pagesize = 8192
  pagesize = 8192
 
  hitdelay = 0
 
  missdelay = 0
end
end
 
 
 
 
/* DMMU SECTION
/* DMMU SECTION
 
 
    This section configures Data Memory Menangement Unit
    This section configures the Data Memory Manangement Unit
 
 
    enabled = 0/1
    enabled = 0/1
       whether DMMU is enabled
       '0': disabled
 
       '1': enabled
       (NOTE: UPR bit is set)
       (NOTE: UPR bit is set)
 
 
    nsets = 
    nsets = 
       number of DTLB sets; must be power of two
       number of DTLB sets; must be power of two
 
 
Line 184... Line 197...
    entrysize = 
    entrysize = 
       data entry size in bytes
       data entry size in bytes
 
 
    ustates = 
    ustates = 
       number of DTLB usage states (2, 3, 4 etc., max is 4)
       number of DTLB usage states (2, 3, 4 etc., max is 4)
 
 
 
    hitdelay = 
 
       number of cycles dmmu hit costs
 
 
 
    missdelay = 
 
       number of cycles dmmu miss costs
*/
*/
 
 
section dmmu
section dmmu
  enabled = 1
  enabled = 0
  nsets = 64
  nsets = 64
  nways = 1
  nways = 1
  pagesize = 8192
  pagesize = 8192
 
  hitdelay = 0
 
  missdelay = 0
end
end
 
 
 
 
/* IC SECTION
/* IC SECTION
 
 
    This section configures Instruction Cache
   This section configures the Instruction Cache
 
 
    enabled = 0/1
    enabled = 0/1
       whether IC is enabled
       '0': disabled
 
       '1': enabled
       (NOTE: UPR bit is set)
       (NOTE: UPR bit is set)
 
 
    nsets = 
    nsets = 
       number of IC sets; must be power of two
       number of IC sets; must be power of two
 
 
Line 213... Line 235...
    blocksize = 
    blocksize = 
       IC block size in bytes; must be power of two
       IC block size in bytes; must be power of two
 
 
    ustates = 
    ustates = 
       number of IC usage states (2, 3, 4 etc., max is 4)
       number of IC usage states (2, 3, 4 etc., max is 4)
 
 
 
   hitdelay = 
 
      number of cycles ic hit costs
 
 
 
    missdelay = 
 
      number of cycles ic miss costs
*/
*/
 
 
section ic
section ic
  enabled = 1
  enabled = 0
  nsets = 256
  nsets = 256
  nways = 1
  nways = 1
  blocksize = 16
  blocksize = 16
 
  hitdelay = 0
 
  missdelay = 0
end
end
 
 
 
 
/* DC SECTION
/* DC SECTION
 
 
    This section configures Data Cache
   This section configures the Data Cache
 
 
    enabled = 0/1
    enabled = 0/1
       whether DC is enabled
       '0': disabled
 
       '1': enabled
       (NOTE: UPR bit is set)
       (NOTE: UPR bit is set)
 
 
    nsets = 
    nsets = 
       number of DC sets; must be power of two
       number of DC sets; must be power of two
 
 
Line 241... Line 273...
    blocksize = 
    blocksize = 
       DC block size in bytes; must be power of two
       DC block size in bytes; must be power of two
 
 
    ustates = 
    ustates = 
       number of DC usage states (2, 3, 4 etc., max is 4)
       number of DC usage states (2, 3, 4 etc., max is 4)
 
 
 
   load_hitdelay = 
 
      number of cycles dc load hit costs
 
 
 
   load_missdelay = 
 
      number of cycles dc load miss costs
 
 
 
   store_hitdelay = 
 
      number of cycles dc load hit costs
 
 
 
   store_missdelay = 
 
      number of cycles dc load miss costs
*/
*/
 
 
section dc
section dc
  enabled = 1
  enabled = 0
  nsets = 256
  nsets = 256
  nways = 1
  nways = 1
  blocksize = 16
  blocksize = 16
 
  load_hitdelay = 0
 
  load_missdelay = 0
 
  store_hitdelay = 0
 
  store_missdelay = 0
end
end
 
 
 
 
/* SIM SECTION
/* SIM SECTION
 
 
  This section specifies how should sim behave.
  This section specifies how or1ksim should behave.
 
 
  verbose = 0/1
  verbose = 0/1
      whether to print out extra messages
       '0': don't print extra messages
 
       '1': print extra messages
 
 
  debug = 0-9
  debug = 0-9
      = 0 disabled debug messages
      0  : no debug messages
      1-9 level of sim debug information, greater the number more verbose is
      1-9: debug message level.
          the output
           higher numbers produce more messages
 
 
  profile = 0/1
  profile = 0/1
      whether to generate profiling file 'sim.profile'
      '0': don't generate profiling file 'sim.profile'
 
      '1': don't generate profiling file 'sim.profile'
 
 
  prof_fn = ""
  prof_fn = ""
      filename, where to generate profiling info, used
      optional filename for the profiling file.
      only if 'profile' is set
      valid only if 'profile' is set
 
 
 
  mprofile = 0/1
 
      '0': don't generate memory profiling file 'sim.mprofile'
 
      '1': generate memory profiling file 'sim.mprofile'
 
 
 
  mprof_fn = ""
 
      optional filename for the memory profiling file.
 
      valid only if 'mprofile' is set
 
 
  history = 0/1
  history = 0/1
      whether instruction execution flow is tracked for
      '0': don't track execution flow
      display by simulator hist command. Useful for
      '1': track execution flow
      back-trace debugging.
      Execution flow can be tracked for the simulator's
 
      'hist' command. Useful for back-trace debugging.
 
 
  iprompt = 0/1
  iprompt = 0/1
      whether we strart in interactive prompt
     '0': start in  (so what do we start in ???)
 
     '1': start in interactive prompt.
 
 
  exe_log = 0/1
  exe_log = 0/1
      whether execution log should be generated
      '0': don't generate execution log.
 
      '1': generate execution log.
 
 
 
  exe_log = default/hardware/simple/software
 
      type of execution log, default is used when not specified
 
 
 
  exe_log_start = 
 
      index of first instruction to start logging, default = 0
 
 
 
  exe_log_end = 
 
      index of last instruction to end logging; not limited, if omitted
 
 
 
  exe_log_marker = 
 
       specifies number of instructions before horizontal marker is
 
      printed; if zero, markers are disabled (default)
 
 
  exe_log_fn = ""
  exe_log_fn = ""
      where to put execution log in, used only if 'exe_log'
      filename for the exection log file.
      is set
      valid only if 'exe_log' is set
 
 
 
  spr_log = 0/1
 
      '0': log reads/writes to/from sprs
 
      '1': don't log reads/write to/from sprs
 
 
 
  spr_log_fn = ""
 
      filename for the sprs log file.
 
      valid only if 'spr_log' is set
 
 
  clkcycle = [ps|ns|us|ms]
  clkcycle = [ps|ns|us|ms]
      specifies time measurement for one cycle
      specifies time measurement for one cycle
*/
*/
 
 
section sim
section sim
  verbose = 0
  /* verbose = 1 */
  debug = 0
  debug = 0
  profile = 0
  profile = 0
  prof_fn = "sim.profile"
  prof_fn = "sim.profile"
 
 
  history = 0
  history = 1
  /* iprompt = 0 */
  /* iprompt = 0 */
  exe_log = 0
  exe_log = 0
  exe_log_type = software
  exe_log_type = software
  exe_log_start = 0
  exe_log_start = 0
/*  exe_log_end = 20000000*/
/*  exe_log_end = 20000000*/
  exe_log_marker = 10000
  exe_log_marker = 10000
  exe_log_fn = "executed.log"
  exe_log_fn = "executed.log"
 
 
 
  spr_log = 0
 
  spr_log_fn = "spr.log"
 
  clkcycle = 100ns
end
end
 
 
 
 
/* SECTION VAPI
/* SECTION VAPI
 
 
    This section configures Verification API, used for Advanced
    This section configures the Verification API, used for Advanced
    Core Verification.
    Core Verification.
 
 
    enabled = 0/1
    enabled = 0/1
        whether to start VAPI server
        '0': disbable VAPI server
 
        '1': enable/start VAPI server
 
 
    server_port = 
    server_port = 
        TCP/IP port to start VAPI server on
        TCP/IP port to start VAPI server on
 
 
    log_enabled = 0/1
    log_enabled = 0/1
       whether logging of VAPI requests is enabled
       '0': disable VAPI requests logging
 
       '1': enable VAPI requests logging
 
 
 
    hide_device_id = 0/1
 
       '0': don't log device id (for compatability with old version)
 
       '1': log device id
 
 
 
 
    vapi_fn = 
    vapi_fn = 
       specifies filename where to log into, if log_enabled is selected
       filename for the log file.
 
       valid only if log_enabled is set
*/
*/
 
 
section VAPI
section VAPI
  enabled = 0
  enabled = 0
  server_port = 9998
  server_port = 9998
Line 342... Line 437...
      specifies version and revision of the CPU used
      specifies version and revision of the CPU used
 
 
   upr = 
   upr = 
      changes the upr register
      changes the upr register
 
 
 
   sr = 
 
      sets the initial Supervision Register value
 
 
   superscalar = 0/1
   superscalar = 0/1
      whether CPU is scalar or superscalar
      '0': CPU is scalar
 
      '1': CPU is superscalar
      (modify cpu/or32/execute.c to tune superscalar model)
      (modify cpu/or32/execute.c to tune superscalar model)
 
 
   hazards = 0/1
   hazards = 0/1
      whether data hazards are tracked in superscalar CPU
      '0': don't track data hazards in superscalar CPU
      and displayed by the simulator r command
      '1': track data hazards in superscalar CPU
 
      If tracked, data hazards can be displayed using the
 
      simulator's 'r' command.
 
 
   dependstats = 0/1
   dependstats = 0/1
      whether inter-instruction dependencies are calculated
      '0': don't calculate inter-instruction dependencies.
      and displayed by simulator stats command.
      '1': calculate inter-instruction dependencies.
 
      If calculated, inter-instruction dependencies can be
 
      displayed using the simulator's 'stat' command.
 
 
 
   sbuf_len = 
 
      length of store buffer (<= 256), 0 = disabled
*/
*/
 
 
section cpu
section cpu
  ver = 0x1200
  ver = 0x1200
  rev = 0x0001
  rev = 0x0001
  /* upr = */
  /* upr = */
  superscalar = 0
  superscalar = 0
  hazards = 0
  hazards = 0
  dependstats = 0
  dependstats = 0
 
  sbuf_len = 0
 
end
 
 
 
 
 
/* PM SECTION
 
 
 
   This section specifies Power Management parameters
 
 
 
   enabled = 0/1
 
      '0': disable power management
 
      '1': enable power management
 
*/
 
 
 
section pm
 
  enabled = 0
 
end
 
 
 
 
 
/* BPB SECTION
 
 
 
   This section specifies how branch prediction should behave.
 
 
 
   enabled = 0/1
 
     '0': disable branch prediction
 
     '1': enable branch prediction
 
 
 
   btic = 0/1
 
     '0': disable branch target instruction cache model
 
     '1': enable branch target instruction cache model
 
 
 
   sbp_bf_fwd = 0/1
 
     Static branch prediction for 'l.bf'
 
     '0': don't use forward prediction
 
     '1': use forward prediction
 
 
 
   sbp_bnf_fwd = 0/1
 
     Static branch prediction for 'l.bnf'
 
     '0': don't use forward prediction
 
     '1': use forward prediction
 
 
 
   hitdelay = 
 
       number of cycles bpb hit costs
 
 
 
   missdelay = 
 
       number of cycles bpb miss costs
 
*/
 
 
 
section bpb
 
  enabled = 0
 
  btic = 0
 
  sbp_bf_fwd = 0
 
  sbp_bnf_fwd = 0
 
  hitdelay = 0
 
  missdelay = 0
end
end
 
 
 
 
/* DEBUG SECTION
/* DEBUG SECTION
 
 
   This sections specifies how debug unit should behave.
   This sections specifies how the debug unit should behave.
 
 
   enabled = 0/1
   enabled = 0/1
      whether debug unit is enabled
      '0': disable debug unit
 
      '1': enable debug unit
 
 
   gdb_enabled = 0/1
   gdb_enabled = 0/1
      whether to start gdb server at 'server_port' port
      '0': don't start gdb server
 
      '1': start gdb server at port 'server_port'
 
 
   server_port = 
   server_port = 
      TCP/IP port to start gdb server on, used only if gdb_enabled
      TCP/IP port to start gdb server on
      is set
      valid only if gdb_enabled is set
 
 
 
   vapi_id = 
 
      Used to create "fake" vapi log file containing the JTAG proxy messages.
 
*/
 
 
section debug
section debug
  enabled = 1
  enabled = 0
  gdb_enabled = 0
  gdb_enabled = 0
  server_port = 9999
  server_port = 9999
end
end
 
 
 
 
/* MC SECTION
/* MC SECTION
 
 
   This section configures the memory controller
   This section configures the memory controller
 
 
   enabled = 0/1
   enabled = 0/1
      whether memory controller is enabled
     '0': disable memory controller
 
     '1': enable memory controller
 
 
   baseaddr = 
   baseaddr = 
      address of first MC register
      address of first MC register
 
 
   POC = 
   POC = 
      Power On Configuration register
      Power On Configuration register
*/
*/
 
 
section mc
section mc
  enabled = 0
  enabled = 0
  baseaddr = 0x60000000
  baseaddr = 0x93000000
  POC = 0x00000008                 /* Power on configuration register */
  POC = 0x00000008                 /* Power on configuration register */
end
end
 
 
 
 
/* UART SECTION
/* UART SECTION
 
 
   This section configures UARTs
   This section configures the UARTs
 
 
   enabled = 0/1
 
      whether uarts are enabled
 
 
 
   nuarts = 
   nuarts = 
      make specified number of instances, configure each
      make specified number of instances, configure each
      instance within device - enddevice construct.
      instance within device - enddevice construct.
 
 
   instance specific:
   instance specific:
     baseaddr = 
     baseaddr = 
        address of first UART register for this device
        address of first UART register for this device
 
 
     rx_file = ""
 
        filename, where to read data from
 
 
 
     tx_file = ""
     channel = :
        filename, where to write data to
 
 
        The channel parameter indicates the source of received UART characters
 
        and the sink for transmitted UART characters.
 
 
 
        The  can be either "file", "xterm", "tcp", "fd", or "tty"
 
        (without quotes).
 
 
 
          A) To send/receive characters from a pair of files, use a file
 
             channel:
 
 
 
               channel=file:,
 
 
 
          B) To create an interactive terminal window, use an xterm channel:
 
 
 
               channel=xterm:[]*
 
 
 
          C) To create a bidirectional tcp socket which one could, for example,
 
             access via telnet, use a tcp channel:
 
 
 
               channel=tcp:
 
 
 
          D) To cause the UART to read/write from existing numeric file
 
             descriptors, use an fd channel:
 
 
 
               channel=fd:,
 
 
 
          E) To connect the UART to a physical serial port, create a tty
 
             channel:
 
 
 
               channel=tty:device=/dev/ttyS0,baud=9600
 
 
     irq = 
     irq = 
        irq number for this device
        irq number for this device
 
 
     16550 = 0/1
     16550 = 0/1
        0, if this device is uart 16450 and 1, if it is 16550
        '0': this device is a UART16450
 
        '1': this device is a UART16550
 
 
     jitter = 
     jitter = 
        in msecs... time to block, -1 to disable it
        in msecs... time to block, -1 to disable it
 
 
     vapi_id = 
     vapi_id = 
Line 446... Line 638...
section uart
section uart
  nuarts = 1
  nuarts = 1
 
 
  device 0
  device 0
    baseaddr = 0x90000000
    baseaddr = 0x90000000
    irq = 19
    irq = 2
    rxfile = "uart0.rx"
    channel = "file:uart0.rx,uart0.tx"
    txfile = "uart0.tx"
 
    jitter = -1                     /* async behaviour */
    jitter = -1                     /* async behaviour */
    16550 = 1
    16550 = 1
  enddevice
  enddevice
end
end
 
 
 
 
/* DMA SECTION
/* DMA SECTION
 
 
   This section configures DMAs
   This section configures the DMAs
 
 
   ndmas = 
   ndmas = 
      make specified number of instances, configure each
      make specified number of instances, configure each
      instance within device - enddevice construct.
      instance within device - enddevice construct.
 
 
Line 474... Line 665...
 
 
     vapi_id = 
     vapi_id = 
        VAPI id of this instance
        VAPI id of this instance
*/
*/
 
 
/*
 
section dma
section dma
  ndmas = 0
  ndmas = 0
 
 
 
  /*
  device 0
  device 0
    baseaddr = 0xa0000000
    baseaddr = 0x9a000000
    irq = 4
    irq = 11
  enddevice
  enddevice
end
 
*/
*/
 
end
 
 
 
 
/* ETHERNET SECTION
/* ETHERNET SECTION
 
 
   This section configures ethernets
   This section configures the ETHERNETs
 
 
   enabled = 0/1
 
      whether ethernets are enabled
 
 
 
   nethernets = 
   nethernets = 
      make specified number of instances, configure each
      make specified number of instances, configure each
      instance within device - enddevice construct.
      instance within device - enddevice construct.
 
 
Line 503... Line 692...
        address of first ethernet register for this device
        address of first ethernet register for this device
 
 
     dma = 
     dma = 
        which controller is this ethernet "connected" to
        which controller is this ethernet "connected" to
 
 
 
     irq = 
 
        ethernet mac IRQ level
 
 
 
     rtx_type = 
 
        use 0 - file interface, 1 - socket interface
 
 
     rx_channel = 
     rx_channel = 
        DMA channel used for RX
        DMA channel used for RX
 
 
     tx_channel = 
     tx_channel = 
        DMA channel used for TX
        DMA channel used for TX
 
 
     rx_file = ""
     rxfile = ""
        filename, where to read data from
        filename, where to read data from
 
 
     tx_file = ""
     txfile = ""
        filename, where to write data to
        filename, where to write data to
 
 
 
     sockif = ""
 
        interface name of ethernet socket
 
 
     vapi_id = 
     vapi_id = 
        VAPI id of this instance
        VAPI id of this instance
*/
*/
 
 
section ethernet
section ethernet
  nethernets = 1
  nethernets = 1
 
 
  device 0
  device 0
    baseaddr = 0xd0000000
    baseaddr = 0x92000000
    dma = 0
    dma = 0
    irq = 15
    irq = 4
    rtx_type = 1
    rtx_type = 1
    tx_channel = 0
    tx_channel = 0
    rx_channel = 1
    rx_channel = 1
    rxfile = "eth0.rx"
    rxfile = "eth0.rx"
    txfile = "eth0.tx"
    txfile = "eth0.tx"
    sockif = "eth0"
    sockif = "eth0"
  enddevice
  enddevice
end
end
 
 
 
 
 
/* GPIO SECTION
 
 
 
   This section configures the GPIOs
 
 
 
   ngpios = 
 
      make specified number of instances, configure each
 
      instance within device - enddevice construct.
 
 
 
   instance specific:
 
     baseaddr = 
 
        address of first GPIO register for this device
 
 
 
     irq = 
 
        irq number for this device
 
 
 
     base_vapi_id = 
 
        first VAPI id of this instance
 
        GPIO uses 8 consecutive VAPI IDs
 
*/
 
 
 
section gpio
 
  ngpios = 1
 
 
 
  device 0
 
    baseaddr = 0x91000000
 
    irq = 3
 
    base_vapi_id = 0x0200
 
  enddevice
 
end
 
 
 
/* VGA SECTION
 
 
 
    This section configures the VGA/LCD controller
 
 
 
    nvgas = 
 
       number of VGA devices connected
 
 
 
    instance specific:
 
      baseaddr = 
 
        address of first VGA register
 
 
 
      irq = 
 
        irq number for this device
 
 
 
      refresh_rate = 
 
        number of cycles between screen dumps
 
 
 
      filename = ""
 
        template name for generated names (e.g. "primary" produces "primary0023.bmp")
 
*/
 
 
 
section vga
 
  nvgas = 1
 
 
 
  device 0
 
    baseaddr = 0x97100000
 
    irq = 8
 
    refresh_rate = 100000
 
    filename = "primary"
 
  enddevice
 
end
 
 
 
 
 
/* TICK TIMER SECTION
 
 
 
    This section configures tick timer
 
 
 
    enabled = 0/1
 
      whether tick timer is enabled
 
 
 
    irq = 
 
      irq number
 
*/
 
/*
 
section tick
 
  enabled = 1
 
  irq = 0
 
end
 
*/
 
 
 
/* FB SECTION
 
 
 
    This section configures the frame buffer
 
 
 
    enabled = 0/1
 
      whether frame buffer is enabled
 
 
 
    baseaddr = 
 
      base address of frame buffer
 
 
 
    paladdr = 
 
      base address of first palette entry
 
 
 
    refresh_rate = 
 
      number of cycles between screen dumps
 
 
 
    filename = ""
 
      template name for generated names (e.g. "primary" produces "primary0023.bmp")
 
*/
 
 
section fb
section fb
  enabled = 1
  enabled = 1
  baseaddr = 0xc0000000
  baseaddr = 0x97000000
  refresh_rate = 1000000
  refresh_rate = 1000000
  filename = "primary"
  filename = "primary"
end
end
 
 
 
 
/* KBD SECTION
/* KBD SECTION
 
 
    This section configures PS/2 compatible keyboard
    This section configures the PS/2 compatible keyboard
 
 
    enabled = 0/1
    enabled = 0/1
      whether keyboard is enabled
      whether keyboard is enabled
 
 
    baseaddr = 
    baseaddr = 
Line 558... Line 858...
      filename, where to read data from
      filename, where to read data from
*/
*/
 
 
section kbd
section kbd
  enabled = 1
  enabled = 1
  irq = 12
  irq = 5
  baseaddr = 0x98000000
  baseaddr = 0x94000000
  rxfile = "kbd.rx"
  rxfile = "kbd.rx"
end
end
 
 
 
 
 
/* ATA SECTION
 
 
 
    This section configures the ATA/ATAPI host controller
 
 
 
    natas = 
 
       number of ATA hosts connected
 
 
 
    instance specific:
 
      baseaddr = 
 
        address of first ATA register
 
 
 
      irq = 
 
        irq number for this device
 
 
 
      debug = 
 
        debug level for ata models.
 
        0: no debug messages
 
        1: verbose messages
 
        3: normal messages (more messages than verbose)
 
        5: debug messages (normal debug messages)
 
        7: flow control messages (debug statemachine flows)
 
        9: low priority message (display everything the code does)
 
 
 
      dev_type0/1 = 
 
        ata device 0 type
 
        0: NO_CONNeCT: none (not connected)
 
        1: FILE      : simulated harddisk
 
        2: LOCAL     : local system harddisk
 
 
 
      dev_file0/1 = ""
 
        filename for simulated ATA device
 
        valid only if dev_type0 == 1
 
 
 
      dev_size0/1 = 
 
        size of simulated hard-disk (in MBytes)
 
        valid only if dev_type0 == 1
 
 
 
      dev_packet0/1 = 
 
        0: simulated ATA device does NOT implement PACKET command feature set
 
        1: simulated ATA device does implement PACKET command feature set
 
 
 
   FIXME: irq number
 
*/
 
 
 
section ata
 
  natas = 1
 
 
 
  device 0
 
    baseaddr = 0x9e000000
 
    irq = 15
 
 
 
    dev_type0   = 1
 
    dev_file0   = "/tmp/sim_atadev0"
 
    dev_size0   = 1
 
    dev_packet0 = 0
 
 
 
    dev_type1   = 0
 
    dev_file1   = ""
 
    dev_size1   = 0
 
    dev_packet1 = 0
 
  enddevice
 
end
 
 
 
 
 
/* CUC SECTION
 
 
 
    This section configures the OpenRISC Custom Unit Compiler
 
 
 
    memory_order = none/weak/strong/exact
 
      none   different memory ordering, even if there are dependencies,
 
             burst can be made, width can change
 
      weak   different memory ordering, if there cannot be dependencies
 
             burst can be made, width can change
 
      strong same memory ordering, burst can be made, width can change
 
      exact  exacltly the same memory ordering and widths
 
 
 
    calling_convention = 0/1
 
      whether programs follow OpenRISC calling conventions
 
 
 
    enable_bursts = 0/1
 
      whether burst are detected
 
 
 
    no_multicycle = 0/1
 
      if selected no multicycle logic paths will be generated
 
 
 
    timings_fn = ""
 
*/
 
 
 
section cuc
 
  memory_order = weak
 
  calling_convention = 1
 
  enable_bursts = 1
 
  no_multicycle = 1
 
  timings_fn = "virtex.tim"
 
end
 
 

powered by: WebSVN 2.1.0

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