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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [or1ksim/] [doc/] [or1ksim.info] - Blame information for rev 552

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 538 julius
This is ../../or1ksim/doc/or1ksim.info, produced by makeinfo version
2
4.13 from ../../or1ksim/doc/or1ksim.texi.
3 19 jeremybenn
 
4
INFO-DIR-SECTION Embedded development
5
START-INFO-DIR-ENTRY
6 442 julius
* Or1ksim: (or32-elf-or1ksim).  The OpenRISC 1000 Architectural
7 19 jeremybenn
                                        Simulator
8
END-INFO-DIR-ENTRY
9
 
10
This file documents the OpenRISC Architectural Simulator, Or1ksim.
11
 
12
Copyright (C) 2008, 2009 Embecosm Limited.
13
 
14
     Permission is granted to copy, distribute and/or modify this
15
     document under the terms of the GNU Free Documentation License,
16
     Version 1.2 or any later version published by the Free Software
17
     Foundation; with no Invariant Sections, with no Front-Cover Texts,
18
     and with no Back-Cover Texts.  A copy of the license is included
19
     in the section entitled "GNU Free Documentation License".
20
 
21

22
File: or1ksim.info,  Node: Top,  Next: Installation,  Up: (dir)
23
 
24
Scope of this Document
25
**********************
26
 
27
This document is the user guide for Or1ksim, the OpenRISC 1000
28
Architectural Simulator.
29
 
30
* Menu:
31
 
32
* Installation::
33
* Usage::
34
* Configuration::
35
* Interactive Command Line::
36
* Verification API::
37
 
38
* Code Internals::
39
 
40
* GNU Free Documentation License::  The license for this documentation
41
* Index::
42
 
43

44
File: or1ksim.info,  Node: Installation,  Next: Usage,  Prev: Top,  Up: Top
45
 
46
1 Installation
47
**************
48
 
49
Installation follows standard GNU protocols.
50
 
51
* Menu:
52
 
53
* Preparation::
54
* Configuring the Build::
55
* Build and Install::
56
* Known Issues::
57
 
58

59
File: or1ksim.info,  Node: Preparation,  Next: Configuring the Build,  Up: Installation
60
 
61
1.1 Preparation
62
===============
63
 
64
Unpack the software and create a _separate_ directory in which to build
65
it:
66
 
67 538 julius
     tar jxf or1ksim-2011-04-28.tar.bz2
68 19 jeremybenn
     mkdir builddir_or1ksim
69
     cd builddir_or1ksim
70
 
71

72
File: or1ksim.info,  Node: Configuring the Build,  Next: Build and Install,  Prev: Preparation,  Up: Installation
73
 
74
1.2 Configuring the Build
75
=========================
76
 
77
Configure the software using the `configure' script in the main
78
directory.
79
 
80
The most significant argument is `--target', which should specify the
81 82 jeremybenn
OpenRISC 1000 32-bit architecture.  If this argument is omitted, it will
82 19 jeremybenn
default to OpenRISC 1000 32-bit with a warning
83
 
84 538 julius
     ../or1ksim-2011-04-28/configure --target=or32-elf ...
85 19 jeremybenn
 
86
There are several other options available, many of which are standard
87 82 jeremybenn
to GNU `configure' scripts.  Use `configure --help' to see all the
88
options.  The most useful is `--prefix' to specify a directory for
89 19 jeremybenn
installation of the tools.
90
 
91 385 jeremybenn
For testing (using `make check'), the `--target' parameter may be
92
specified, to allow the target tool chain to be selected.  If not
93
specified, it will default to `or32-elf', which is the same prefix used
94
with the standard OpenRISC toolchain installation script.
95 19 jeremybenn
 
96 104 jeremybenn
A number of Or1ksim specific features in the simulator do require
97
enabling at configuration.  These include
98
 
99 19 jeremybenn
`--enable-profiling'
100
`--disable-profiling'
101 82 jeremybenn
     If enabled, Or1ksim is compiled for profiling with `gprof'.  This
102
     is disabled by default.  Only really of value for developers of
103 19 jeremybenn
     Or1ksim.
104
 
105
`--enable-execution=simple'
106
`--enable-execution=complex'
107
     Or1ksim has developed to improve functionality and performance.
108
     This feature allows three versions of Or1ksim to be built
109
 
110
    `--enable-execution=simple'
111
          Build the original simple interpreting simulator
112
 
113
    `--enable-execution=complex'
114 82 jeremybenn
          Build a more complex interpreting simulator.  Experiments
115
          suggest this is 50% faster than the simple simulator.  This
116
          is the default.
117 19 jeremybenn
 
118
 
119
     The default is `--enable-execution=complex'.
120
 
121
`--enable-ethphy'
122
`--disable-ethphy'
123
     If enabled, this option allows the Ethernet to be simulated by
124
     connecting via a socket (the alternative reads and writes, from
125 82 jeremybenn
     and to files).  This must then be configured using the relevant
126
     fields in the `ethernet' section of the configuration file.  *Note
127 19 jeremybenn
     Ethernet Configuration: Ethernet Configuration.
128
 
129
     The default is for this to be disabled.
130
 
131 127 jeremybenn
`--enable-unsigned-xori'
132
`--disable-unsigned-xori'
133 346 jeremybenn
     Historically, `l.xori', has sign extended its operand.  This is
134 127 jeremybenn
     inconsistent with the other logical opcodes (`l.andi', `l.ori'),
135
     but in the absence of `l.not', it allows a register to be inverted
136
     in a single instruction using:
137
 
138
          `l.xori  rD,rA,-1'
139
 
140
     This flag causes Or1ksim to treat the immediate operand as
141
     unsigned (i.e to zero-extend rather than sign-extend).
142
 
143
     The default is to sign-extend, so that existing code will continue
144
     to work.
145
 
146
          Caution: The GNU compiler tool chain makes heavy use of this
147
          instruction.  Using unsigned behavior will require the
148
          compiler to be modified accordingly.
149
 
150
          This option is provided for experimentation.  A future
151
          version of OpenRISC may adopt this more consistent behavior
152
          and also provide a `l.not' opcode.
153
 
154 19 jeremybenn
`--enable-range-stats'
155
`--disable-range-stats'
156
     If enabled, this option allows statistics to be collected to
157 82 jeremybenn
     analyse register access over time.  The default is for this to be
158 19 jeremybenn
     disabled.
159
 
160
`--enable-debug'
161
`--disable-debug'
162
     This is a feature of the Argtable2 package used to process
163 82 jeremybenn
     arguments.  If enabled, some debugging features are turned on in
164
     Argtable2.  It is provided for completeness, but there is no
165
     reason why this feature should ever be needed by any Or1ksim user.
166 19 jeremybenn
 
167 82 jeremybenn
`--enable-all-tests'
168
`--disable-all-tests'
169
     Some of the tests (at the time of writing just one) will not
170
     compile without error.  If enabled with this flag, all test
171
     programs will be compiled with `make check'.
172 19 jeremybenn
 
173 82 jeremybenn
     This flag is intended for those working on the test package, who
174
     wish to get the missing test(s) working.
175
 
176
 
177 112 jeremybenn
A number of configuration flags have been removed since version 0.3.0,
178 346 jeremybenn
because they led to invalid behavior of Or1ksim.  Those removed are:
179 112 jeremybenn
 
180 124 jeremybenn
`--enable-arith-flag'
181
`--disable-arith-flag'
182
     If enabled, this option caused certain instructions to set the flag
183
     (`F' bit) in the supervision register if the result were zero.
184
     The instructions affected by this were `l.add', `l.addc',
185
     `l.addi', `l.and' and `l.andi'.
186
 
187 346 jeremybenn
     If set, this caused incorrect behavior.  Whether or not flags are
188 124 jeremybenn
     set is part of the OpenRISC 1000 architectural specification.  The
189
     only flags which should set this are the "set flag" instructions:
190
     `l.sfeq', `l.sfeqi', `l.sfges', `l.sfgesi', `l.sfgeu', `l.sfgeui',
191
     `l.sfgts', `l.sfgtsi', `l.sfgtu', `l.sfgtui', `l.sfles',
192
     `l.sflesi', `l.sfleu', `l.sfleui', `l.sflts', `l.sfltsi',
193
     `l.sfltu', `l.sfltui', `l.sfne' and `l.sfnei'.
194
 
195 112 jeremybenn
`--enable-ov-flag'
196
`--disable-ov-flag'
197 124 jeremybenn
     This flag caused certain instructions to set the overflow flag.
198
     If not, those instructions would not set the overflow flat.  The
199
     instructions affected by this were `l.add', `l.addc', `l.addi',
200
     `l.and', `l.andi', `l.div', `l.divu', `l.mul', `l.muli', `l.or',
201
     `l.ori', `l.sll', `l.slli', `l.srl', `l.srli', `l.sra', `l.srai',
202
     `l.sub', `l.xor' and `l.xori'.
203 112 jeremybenn
 
204
     This guaranteed incorrect behavior.  The OpenRISC 1000 architecture
205
     specification defines which flags are set by which instructions.
206
 
207
     Within the above list, the arithmetic instructions (`l.add',
208
     `l.addc', `l.addi', `l.div', `l.divu', `l.mul', `l.muli' and
209
     `l.sub'), together with `l.addic' which is missed out, set the
210
     overflow flag.  All the others (`l.and', `l.andi', `l.or',
211
     `l.ori', `l.sll', `l.slli', `l.srl', `l.srli', `l.sra', `l.srai',
212
     `l.xor' and `l.xori') do not.
213
 
214
 
215 19 jeremybenn

216
File: or1ksim.info,  Node: Build and Install,  Next: Known Issues,  Prev: Configuring the Build,  Up: Installation
217
 
218
1.3 Building and Installing
219
===========================
220
 
221 82 jeremybenn
Build the tool with:
222 19 jeremybenn
 
223
     make all
224 82 jeremybenn
 
225
If you have the OpenRISC tool chain and DejaGNU installed, you can
226
verify the tool as follows (otherwise omit this step):
227
 
228
     make check
229
 
230
Install the tool with:
231
 
232 19 jeremybenn
     make install
233
 
234
This will install the three variations of the Or1ksim tool,
235 442 julius
`or32-elf-sim', `or32-elf-psim' and `or32-elf-mpsim', the Or1ksim
236
library, `libsim', the header file, `or1ksim.h' and this documentation
237
in `info' format.
238 19 jeremybenn
 
239
The documentation may be created and installed in alternative formats
240
(PDF, Postscript, DVI, HTML) with for example:
241
 
242
     make pdf
243
     make install-pdf
244
 
245

246
File: or1ksim.info,  Node: Known Issues,  Prev: Build and Install,  Up: Installation
247
 
248
1.4 Known Problems and Issues
249
=============================
250
 
251 346 jeremybenn
Full details of outstanding issues may be found in the `NEWS' file in
252
the main directory of the distribution.  The OpenRISC tracker may be
253
used to see the current state of these issues and to raise new problems
254
and feature requests.  It may be found at bugtracker.
255 19 jeremybenn
 
256 346 jeremybenn
The following issues are long standing and unlikely to be fixed in
257
Or1ksim in the near future.
258
 
259 19 jeremybenn
   * The Supervision Register Little Endian Enable (LEE) bit is
260 82 jeremybenn
     ignored.  Or1ksim can be built for either little endian or big
261 19 jeremybenn
     endian use, but that behavior cannot be changed dynamically.
262
 
263
   * Or1ksim is not reentrant, so a program cannot instantiate multiple
264 82 jeremybenn
     instances using the library.  This is clearly a problem when
265
     considering multi-core applications.  However it stems from the
266
     original design, and can only be fixed by a complete rewrite.  The
267 19 jeremybenn
     entire source code uses static global constants liberally!
268
 
269
 
270

271
File: or1ksim.info,  Node: Usage,  Next: Configuration,  Prev: Installation,  Up: Top
272
 
273
2 Usage
274
*******
275
 
276
* Menu:
277
 
278
* Standalone Simulator::
279
* Profiling Utility::
280
* Memory Profiling Utility::
281 442 julius
* Trace Generation::
282 19 jeremybenn
* Simulator Library::
283 440 jeremybenn
* Ethernet TUN/TAP Interface::
284 460 jeremybenn
* l.nop Support::
285 19 jeremybenn
 
286

287
File: or1ksim.info,  Node: Standalone Simulator,  Next: Profiling Utility,  Up: Usage
288
 
289
2.1 Standalone Simulator
290
========================
291
 
292
The general form the standalone command is:
293
 
294 442 julius
     or32-elf-sim [-vhiqVt] [-f FILE] [--nosrv] [--srv=[N]]
295 346 jeremybenn
                      [-m ][-d STR]
296 19 jeremybenn
                      [--enable-profile] [--enable-mprofile] [FILE]
297
 
298 82 jeremybenn
Many of the options have both a short and a long form.  For example
299
`-h' or `--help'.
300 19 jeremybenn
 
301
`-v'
302
`--version'
303
     Print out the version and copyright notice for Or1ksim and exit.
304
 
305
`-h'
306
`--help'
307
     Print out help about the command line options and what they mean.
308
 
309 346 jeremybenn
`-i'
310
`--interactive'
311
     After starting, drop into the Or1ksim interactive command shell.
312
 
313
`-q'
314
`--quiet'
315
     Do not generate any information messages, only error messages.
316
 
317
`-V'
318
`--verbose'
319
     Generate extra output messages (equivalent of specifying the
320
     "verbose" option in the simulator configuration section (see *note
321
     Simulator Behavior: Simulator Behavior.).
322
 
323 385 jeremybenn
`-t'
324
`--trace'
325 420 jeremybenn
     Dump instruction just executed and any register/memory location
326
     chaged after each instruction (one line per instruction).
327 385 jeremybenn
 
328 472 jeremybenn
`--trace-physical'
329
`--trace-virtual'
330
     When tracing instructions, show the physical address
331
     (`--trace-physical') and/or the virtual address
332
     (`--trace-virtual') of the instruction being executed.  Both flags
333
     may be specified, in which case both physical and virtual
334
     addresses are shown, physical first.
335
 
336
          Note: Either or both flags may be specified without
337
          `--trace', to indicate how addresses should be shown if
338
          subsequently enabled by a `SIGUSER1' signal or `l.nop 8'
339
          opcode (*note Trace Generation: Trace Generation.).
340
 
341 19 jeremybenn
`-f FILE'
342 385 jeremybenn
`--file=FILE'
343 19 jeremybenn
     Read configuration commands from the specified file, looking first
344
     in the current directory, and otherwise in the `$HOME/.or1k'
345 82 jeremybenn
     directory.  If this argument is not specified, the file `sim.cfg'
346
     in those two locations is used.  Failure to find the file is a
347
     fatal error.  *Note Configuration: Configuration, for detailed
348
     information on configuring Or1ksim.
349 19 jeremybenn
 
350
`--nosrv'
351 235 jeremybenn
     Do not start up the "Remote Serial Protocol" debug server.  This
352
     overrides any setting specified in the configuration file.  This
353
     option may not be specified with `--srv'.  If it is, a rude
354
     message is printed and the `--nosrv' option is ignored.
355 19 jeremybenn
 
356
`--srv'
357
 
358
`--srv=N'
359 235 jeremybenn
     Start up the "Remote Serial Protocol" debug server.  This
360
     overrides any setting specified in the configuration file.  If the
361
     parameter, N, is specified, use that as the TCP/IP port for the
362
     server, otherwise a random value from the private port range
363
     (41920-65535) will be used.  This option may not be specified with
364
     `--nosrv'.  If it is, a rude message is printed and the `--nosrv'
365
     option is ignored.
366 19 jeremybenn
 
367 385 jeremybenn
`-m SIZE'
368 346 jeremybenn
`--memory=SIZE'
369
     Configure a memory block of SIZE bytes, starting at address zero.
370
     The size may be followed by `k', `K', `m', `M', `g', `G', to
371
     indicate kilobytes (2^10 bytes), megabytes (2^20 bytes) and
372
     gigabytes (2^30 bytes).
373
 
374
     This is mainly intended for use when Or1ksim is used without a
375
     configuration file, to allow just the processor and memory to be
376
     set up.  This is the equivalent of specifying a configuration
377
     memory section with `baseaddr = 0' and `size = SIZE' and all other
378
     parameters taking their default value.
379
 
380
     If a configuration file is also used, it should be sure not to
381
     specify an overlapping memory block.
382
 
383 385 jeremybenn
`-d CONFIG_STRING'
384 19 jeremybenn
`--debug-config=CONFIG_STRING'
385 82 jeremybenn
     Enable selected debug messages in Or1ksim.  This parameter is for
386
     use by developers only, and is not covered further here.  See the
387 19 jeremybenn
     source code for more details.
388
 
389 346 jeremybenn
`--report-memory-errors'
390
     By default all exceptions are now handled silently.  If this
391
     option is specified, bus exceptions will be reported with a
392
     message to standard error indicating the address at which the
393
     exception occurred.
394 19 jeremybenn
 
395 346 jeremybenn
     This was the default behaviour up to Or1ksim 0.4.0.  This flag is
396
     provided for those who wish to keep that behavior.
397
 
398 19 jeremybenn
`--strict-npc'
399
     In real hardware, setting the next program counter (NPC, SPR 16),
400 82 jeremybenn
     flushes the processor pipeline.  The consequence of this is that
401
     until the pipeline refills, reading the NPC will return zero.
402
     This is typically the case when debugging, since the processor is
403 19 jeremybenn
     stalled.
404
 
405
     Historically, Or1ksim has always returned the value of the NPC,
406 82 jeremybenn
     irrespective of when it is changed.  If the `--strict-npc' option
407
     is used, then Or1ksim will mirror real hardware more accurately.
408
     If the NPC is changed while the processor is stalled, subsequent
409 19 jeremybenn
     reads of its value will return 0 until the processor is unstalled.
410
 
411
     This is not currently the default behavior, since tools such as
412
     GDB have been implemented assuming the historic Or1ksim behavior.
413
     However at some time in the future it will become the default.
414
 
415
`--enable-profile'
416
     Enable instruction profiling.
417
 
418
`--enable-mprofile'
419
     Enable memory profiling.
420
 
421
 
422

423
File: or1ksim.info,  Node: Profiling Utility,  Next: Memory Profiling Utility,  Prev: Standalone Simulator,  Up: Usage
424
 
425
2.2 Profiling Utility
426
=====================
427
 
428 82 jeremybenn
This utility analyses instruction profile data generated by Or1ksim.
429
It may be invoked as a standalone command, or from the Or1ksim CLI.
430
The general form the standalone command is:
431 19 jeremybenn
 
432 442 julius
     or32-elf-profile [-vhcq] [-g=FILE]
433 19 jeremybenn
 
434 82 jeremybenn
Many of the options have both a short and a long form.  For example
435
`-h' or `--help'.
436 19 jeremybenn
 
437
`-v'
438
`--version'
439
     Print out the version and copyright notice for the Or1ksim
440
     profiling utility and exit.
441
 
442
`-h'
443
`--help'
444
     Print out help about the command line options and what they mean.
445
 
446
`-c'
447
`--cumulative'
448
     Show cumulative sum of cycles in functions
449
 
450
`-q'
451
`--quiet'
452
     Suppress messages
453
 
454
`-g=FILE'
455
`--generate=FILE'
456 82 jeremybenn
     The data file to analyse.  If omitted, the default file,
457 19 jeremybenn
     `sim.profile' is used.
458
 
459
 
460

461 442 julius
File: or1ksim.info,  Node: Memory Profiling Utility,  Next: Trace Generation,  Prev: Profiling Utility,  Up: Usage
462 19 jeremybenn
 
463
2.3 Memory Profiling Utility
464
============================
465
 
466 82 jeremybenn
This utility analyses memory profile data generated by Or1ksim.  It may
467
be invoked as a standalone command, or from the Or1ksim CLI.  The
468 19 jeremybenn
general form the standalone command is:
469
 
470 442 julius
     or32-elf-mprofile  [-vh] [-m=M] [-g=N] [-f=FILE] FROM TO
471 19 jeremybenn
 
472 82 jeremybenn
Many of the options have both a short and a long form.  For example
473
`-h' or `--help'.
474 19 jeremybenn
 
475
`-v'
476
`--version'
477
     Print out the version and copyright notice for the Or1ksim memory
478
     profiling utility and exit.
479
 
480
`-h'
481
`--help'
482
     Print out help about the command line options and what they mean.
483
 
484
`-m=M'
485
`--mode=M'
486 82 jeremybenn
     Specify the mode out output.  Permitted options are
487 19 jeremybenn
 
488
    `detailed'
489
    `d'
490 82 jeremybenn
          Detailed output.  This is the default if no mode is specified.
491 19 jeremybenn
 
492
    `pretty'
493
    `p'
494
          Pretty printed output.
495
 
496
    `access'
497
    `a'
498
          Memory accesses only.
499
 
500
    `width'
501
    `w'
502
          Access width only.
503
 
504
 
505
`-g=N'
506
`--group=N'
507
     Group 2^n bits of successive addresses together.
508
 
509
`-f=FILE'
510
`--filename=FILE'
511 82 jeremybenn
     The data file to analyse.  If not specified, the default,
512 19 jeremybenn
     `sim.profile' is used.
513
 
514
`FROM'
515
`TO'
516
     FROM and TO are respectively the start and end address of the
517
     region of memory to be analysed.
518
 
519
 
520

521 442 julius
File: or1ksim.info,  Node: Trace Generation,  Next: Simulator Library,  Prev: Memory Profiling Utility,  Up: Usage
522 19 jeremybenn
 
523 442 julius
2.4 Trace Generation
524
====================
525
 
526
An execution trace can be generated at run time with options passed by
527
the command line, or via the operating system's signal passing
528 472 jeremybenn
mechanism, or by `l.nop' opcodes in an application program.
529 442 julius
 
530 472 jeremybenn
The following flag can be used to create an execution dump.
531 450 jeremybenn
 
532 442 julius
`-t'
533
`--trace'
534
     Dump instruction just executed and any register/memory location
535 472 jeremybenn
     changed after each instruction (one line per instruction).  Each
536
     line starts with either "S" or "U" to indicate whether the
537
     processor was in supervisor or user mode _when the instruction
538
     completed_.  It is worth bearing in mind that tracing happens at
539
     completion of instruction execution and shows the state at that
540
     time.
541 442 julius
 
542 450 jeremybenn
Passing a signal `SIGUSR1' while the simulator is running toggles trace
543
generation. This can be done with the following command, assuming
544
Or1ksim's executable name is `or32-elf-sim':
545
 
546
     pkill -SIGUSR1 or32-elf-sim
547
 
548
This is useful in the case where trace output is desired after a
549
significant amount of simulation time, where it would be inconvenient to
550
generate trace up to that point.
551
 
552
If the `pkill' utility is not available, the `kill' utility can be used
553
if Or1ksim's process number is known. Use the following to determine
554
the process ID of the `or32-elf-sim' and then send the `SIGUSR1'
555
command to toggle execution trace generation:
556
 
557
     ps a | grep or32-elf-sim
558
     kill -SIGUSR1 _process-number_
559
 
560 472 jeremybenn
Tracing can also be enabled and disabled from within a target program
561
using the `l.nop 8' and `l.nop 9' opcodes to enable and disable tracing
562
respectively.
563
 
564
By default tracing will show the virtual address of each instruction
565
traced.  This may be controlled by two options, `--trace-physical' to
566
show the physical address and/or `--trace-virtual' to show the virtual
567
address. If neither is specified, the virtual address is shown.
568
 
569
     Note: Either or both flags may be specified without `--trace', to
570
     indicate how addresses should be shown if subsequently enabled by a
571
     `SIGUSER1' signal or `l.nop 8' opcode.
572
 
573 442 julius

574
File: or1ksim.info,  Node: Simulator Library,  Next: Ethernet TUN/TAP Interface,  Prev: Trace Generation,  Up: Usage
575
 
576
2.5 Simulator Library
577 19 jeremybenn
=====================
578
 
579
Or1ksim may be used as a static of dynamic library, `libsim.a' or
580 82 jeremybenn
`libsim.so'.  When compiling with the static library, the flag, `-lsim'
581 19 jeremybenn
should be added to the link command.
582
 
583
The header file `or1ksim.h' contains appropriate declarations of the
584 82 jeremybenn
functions exported by the Or1ksim library.  These are:
585 19 jeremybenn
 
586 346 jeremybenn
 -- `or1ksim.h': int or1ksim_init (int ARGC, char *ARGV, void
587 432 jeremybenn
          *CLASS_PTR, int (*UPR)(void *CLASS_PTR, unsigned long int
588
          ADDR, unsigned char MASK[], unsigned char RDATA[], int
589
          DATA_LEN), int (*UPW)(void *CLASS_PTR, unsigned long int
590
          ADDR, unsigned char MASK[], unsigned char WDATA[], int
591
          DATA_LEN))
592 346 jeremybenn
     The initialization function is supplied with a vector of arguments,
593
     which are interpreted as arguments to the standalone version (see
594
     *note Standalone Simulator: Standalone Simulator.), a pointer to
595
     the calling class, CLASS_PTR (since the library may be used from
596
     C++) and two up-call functions, one for reads, UPR, and one for
597
     writes, UPW.
598 19 jeremybenn
 
599
     UPW is called for any write to an address external to the model
600 82 jeremybenn
     (determined by a `generic' section in the configuration file).
601
     UPR is called for any reads to an external address.  The CLASS_PTR
602
     is passed back with these upcalls, allowing the function to
603
     associate the call with the class which originally initialized the
604 93 jeremybenn
     library.  Both UPW and UPR should return zero on success and
605
     non-zero otherwise.  At the present time the meaning of non-zero
606
     values is not defined but this may change in the future.
607 19 jeremybenn
 
608 93 jeremybenn
     MASK indicates which bytes in the data are to be written or read.
609 82 jeremybenn
     Bytes to be read/written should have 0xff set in MASK.  Otherwise
610 93 jeremybenn
     the byte should be zero.  The adddress, ADDR, is the _full_
611
     address, since the upcall function must handle all generic
612
     devices, using the full address for decoding.
613 19 jeremybenn
 
614 346 jeremybenn
     Endianness is not a concern, since Or1ksim is transferring byte
615
     vectors, not multi-byte values.
616 19 jeremybenn
 
617 346 jeremybenn
     The result indicates whether the initialization was successful.
618
     The integer values are available as an `enum or1ksim', with
619
     possible values `OR1KSIM_RC_OK' and `OR1KSIM_RC_BADINIT'.
620 19 jeremybenn
 
621 346 jeremybenn
          Caution: This is a change from versions 0.3.0 and 0.4.0.  It
622
          further simplifies the interface, and makes Or1ksim more
623
          consistent with payload representation in SystemC TLM 2.0.
624
 
625 93 jeremybenn
          Note: The current implementation of Or1ksim always transfers
626
          single words (4 bytes), using masks if smaller values are
627
          required.  In this it mimcs the behavior of the WishBone bus.
628
 
629
 
630 19 jeremybenn
 -- `or1ksim.h': int or1ksim_run (double DURATION)
631
     Run the simulator for the simulated duration specified (in
632 346 jeremybenn
     seconds).  A duration of -1 indicates `run forever'
633 19 jeremybenn
 
634 346 jeremybenn
     The result indicates how the run terminated.  The integer values
635
     are available as an `enum or1ksim', with possible values
636
     `OR1KSIM_RC_OK' (ran for the full duration), `OR1KSIM_RC_BRKPT'
637
     (terminated early due to hitting a breakpoint) and
638
     `OR1KSIM_RC_HALTED' (terminated early due to hitting `l.nop 1').
639 19 jeremybenn
 
640 346 jeremybenn
 
641 19 jeremybenn
 -- `or1ksim.h': void or1ksim_reset_duration (double DURATION)
642
     Change the duration of a run specified in an earlier call to
643 82 jeremybenn
     `or1ksim_run'.  Typically this is called from an upcall, which
644 19 jeremybenn
     realizes it needs to change the duration of the run specified in
645
     the call to `or1ksim_run' that has been interrupted by the upcall.
646
 
647
     The time specified is the amount of time that the run must continue
648
     for (i.e the duration from _now_, not the duration from the
649
     original call to `or1ksim_run').
650
 
651
 
652
 -- `or1ksim.h': void or1ksim_set_time_point ()
653 82 jeremybenn
     Set a timing point.  For use with `or1ksim_get_time_period'.
654 19 jeremybenn
 
655
 
656
 -- `or1ksim.h': double or1ksim_get_time_period ()
657
     Return the simulated time (in seconds) that has elapsed since the
658
     last call to `or1ksim_set_time_point'.
659
 
660
 
661
 -- `or1ksim.h': int or1ksim_is_le ()
662
     Return 1 (logical true) if the Or1ksim simulation is
663
     little-endian, 0 otherwise.
664
 
665
 
666
 -- `or1ksim.h': unsigned long int or1ksim_clock_rate ()
667 82 jeremybenn
     Return the Or1ksim clock rate (in Hz).  This is the value
668
     specified in the configuration file.
669 19 jeremybenn
 
670
 
671
 -- `or1ksim.h': void or1ksim_interrupt (int I)
672 82 jeremybenn
     Generate an edge-triggered interrupt on interrupt line I.  The
673 432 jeremybenn
     interrupt must be cleared separately by clearing the corresponding
674
     bit in the PICSR SPR.  Until the interrupt is cleared, any further
675
     interrupts on the same line will be ignored with a warning.  A
676
     warning will be generated and the interrupt request ignored if
677
     level sensitive interrupts have been configured with the
678
     programmable interrupt controller (*note Interrupt Configuration:
679
     Interrupt Configuration.).
680 19 jeremybenn
 
681
 
682
 -- `or1ksim.h': void or1ksim_interrupt_set (int I)
683 82 jeremybenn
     Assert a level-triggered interrupt on interrupt line I.  The
684 19 jeremybenn
     interrupt must be cleared separately by an explicit call to
685 432 jeremybenn
     `or1ksim_interrupt_clear'.  Until the interrupt is cleared, any
686
     further setting of interrupts on the same line will be ignored
687
     with a warning.  A warning will be generated, and the interrupt
688
     request ignored if edge sensitive interrupts have been configured
689
     with the programmable interrupt controller (*note Interrupt
690
     Configuration: Interrupt Configuration.).
691 19 jeremybenn
 
692
 
693
 -- `or1ksim.h': void or1ksim_interrupt_clear (int I)
694
     Clear a level-triggered interrupt on interrupt line I, which was
695 82 jeremybenn
     previously asserted by a call to `or1ksim_interrupt_set'.  A
696 19 jeremybenn
     warning will be generated, and the interrupt request ignored if
697
     edge sensitive interrupts have been configured with the
698
     programmable interrupt controller (*note Interrupt Configuration:
699
     Interrupt Configuration.).
700
 
701
 
702 104 jeremybenn
 -- `or1ksim.h': double or1ksim_jtag_reset ()
703 346 jeremybenn
     Drive a reset sequence through the JTAG interface.  Return the
704 104 jeremybenn
     (model) time taken for this action.  Remember that the JTAG has
705
     its own clock, which can be an order of magnitude slower than the
706
     main clock, so even a reset (5 JTAG cycles) could take 50
707
     processor clock cycles to complete.
708
 
709
 
710 432 jeremybenn
 -- `or1ksim.h': double or1ksim_jtag_shift_ir (unsigned char *JREG, int
711
          NUM_BITS)
712 104 jeremybenn
     Shift the supplied register through the JTAG instruction register.
713 346 jeremybenn
     Return the (model) time taken for this action.  The register is
714 104 jeremybenn
     supplied as a byte vector, with the least significant bits in the
715
     least significant byte.  If the total number of bits is not an
716
     exact number of bytes, then the odd bits are found in the least
717
     significant end of the highest numbered byte.
718
 
719
     For example a 12-bit register would have bits 0-7 in byte 0 and
720
     bits 11-8 in the least significant 4 bits of byte 1.
721
 
722
 
723 432 jeremybenn
 -- `or1ksim.h': double or1ksim_jtag_shift_dr (unsigned char *JREG, int
724
          NUM_BITS)
725 104 jeremybenn
     Shift the supplied register through the JTAG data register.
726 346 jeremybenn
     Return the (model) time taken for this action.  The register is
727 104 jeremybenn
     supplied as a byte vector, with the least significant bits in the
728
     least significant byte.  If the total number of bits is not an
729
     exact number of bytes, then the odd bits are found in the least
730
     significant end of the highest numbered byte.
731
 
732
     For example a 12-bit register would have bits 0-7 in byte 0 and
733
     bits 11-8 in the least significant 4 bits of byte 1.
734
 
735
 
736 432 jeremybenn
 -- `or1ksim.h': int or1ksim_read_mem (unsigned long int ADDR, unsigned
737
          char *BUF, int LEN)
738 346 jeremybenn
     Read LEN bytes from ADDR, placing the result in BUF.  Return LEN
739
     on success and 0 on failure.
740
 
741
          Note: This function was added in Or1ksim 0.5.0.
742
 
743
 
744 432 jeremybenn
 -- `or1ksim.h': int or1ksim_write_mem (unsigned long int ADDR, const
745
          unsigned char *BUF, int LEN)
746 346 jeremybenn
     Write LEN bytes to ADDR, taking the data from BUF.  Return LEN on
747
     success and 0 on failure.
748
 
749
          Note: This function was added in Or1ksim 0.5.0.
750
 
751
 
752 432 jeremybenn
 -- `or1ksim.h': int or1ksim_read_spr (int SPRNUM, unsigned long int
753
          *SPRVAL_PTR)
754 346 jeremybenn
     Read the SPR specified by SPRNUM, placing the result in
755
     SPRVAL_PTR.  Return non-zero on success and 0 on failure.
756
 
757
          Note: This function was added in Or1ksim 0.5.0.
758
 
759
 
760 432 jeremybenn
 -- `or1ksim.h': int or1ksim_write_spr (int SPRNUM, unsigned long int
761
          SPRVA)
762 346 jeremybenn
     Write SPRVAL to the SPR specified by SPRNUM.  Return non-zero on
763
     success and 0 on failure.
764
 
765
          Note: This function was added in Or1ksim 0.5.0.
766
 
767
 
768 432 jeremybenn
 -- `or1ksim.h': int or1ksim_read_reg (int REGNUM, unsigned long int
769
          *REGVAL_PTR)
770 346 jeremybenn
     Read the general purpose register specified by REGNUM, placing the
771
     result in REGVAL_PTR.  Return non-zero on success and 0 on failure.
772
 
773
          Note: This function was added in Or1ksim 0.5.0.
774
 
775
 
776 432 jeremybenn
 -- `or1ksim.h': int or1ksim_write_reg (int REGNUM, unsigned long int
777
          REGVA)
778 346 jeremybenn
     Write REGVAL to the general purpose register specified by REGNUM.
779
     Return non-zero on success and 0 on failure.
780
 
781
          Note: This function was added in Or1ksim 0.5.0.
782
 
783
 
784 432 jeremybenn
 -- `or1ksim.h': void or1ksim_set_stall_state (int STATE)
785 346 jeremybenn
     Set the processor's state according to STATE (1 = stalled, 0 = not
786
     stalled).
787
 
788
          Note: This function was added in Or1ksim 0.5.0.
789
 
790
 
791 19 jeremybenn
The libraries will be installed in the `lib' sub-directory of the main
792
installation directory (as specified with the `--prefix' option to the
793
`configure' script).
794
 
795
For example if the main installation directory is `/opt/or1ksim', the
796 82 jeremybenn
library will be found in the `/opt/or1ksim/lib' directory.  It is
797 19 jeremybenn
available as both a static library (`libsim.a') and a shared object
798
(`libsim.so').
799
 
800
To link against the library add the `-lsim' flag when linking and do
801
one of the following:
802
 
803
   * Add the library directory to the `LD_LIBRARY_PATH' environment
804 82 jeremybenn
     variable during execution.  For example:
805 19 jeremybenn
 
806
          export LD_LIBRARY_PATH=/opt/or1ksim/lib:$LD_LIBRARY_PATH
807
 
808
   * Add the library directory to the `LD_RUN_PATH' environment
809 82 jeremybenn
     variable during linking.  For example:
810 19 jeremybenn
 
811
          export LD_RUN_PATH=/opt/or1ksim/lib:$LD_RUN_PATH
812
 
813
   * Use the linker `--rpath' option and specify the library directory
814 82 jeremybenn
     when linking your program.  For example
815 19 jeremybenn
 
816 82 jeremybenn
          gcc ...  -Wl,--rpath -Wl,/opt/or1ksim/lib ...
817 19 jeremybenn
 
818
   * Add the library directory to `/etc/ld.so.conf'
819
 
820
 
821

822 460 jeremybenn
File: or1ksim.info,  Node: Ethernet TUN/TAP Interface,  Next: l.nop Support,  Prev: Simulator Library,  Up: Usage
823 440 jeremybenn
 
824 442 julius
2.6 Ethernet TUN/TAP Interface
825 440 jeremybenn
==============================
826
 
827
When an Ethernet peripheral is configured (*note Ethernet
828
Configuration: Ethernet Configuration.), one option is to tunnel
829
traffic through a TUN/TAP interface.  The low level TAP interface is
830
used to tunnel raw Ethernet datagrams.
831
 
832
The TAP interface can then be connected to a physical Ethernet through a
833
bridge, allowing the Or1ksim model to connect to a physical network.
834
This is particularly when Or1ksim is running the OpenRISC Linux kernel
835
image.
836
 
837
This section explains how to set up a bridge for use by Or1ksim. It does
838
require superuser access to the host machine (or at least the relevant
839
network capabilities). A system administrator can modify these
840
guidelines so they are executed on reboot if appropriate.
841
 
842
* Menu:
843
 
844
* Setting Up a Persistent TAP device::
845
* Establishing a Bridge::
846
* Opening the Firewall::
847
* Disabling Ethernet Filtering::
848
* Networking from OpenRISC Linux and BusyBox::
849
* Tearing Down a Bridge::
850
 
851

852
File: or1ksim.info,  Node: Setting Up a Persistent TAP device,  Next: Establishing a Bridge,  Up: Ethernet TUN/TAP Interface
853
 
854 442 julius
2.6.1 Setting Up a Persistent TAP device
855 440 jeremybenn
----------------------------------------
856
 
857
TUN/TAP devices can be created dynamically, but this requires superuser
858
privileges (or at least `CAP_NET_ADMIN' capability).  The solution is
859
to create a persistent TAP device.  This can be done using either
860
`openvpn' or `tunctl'.  In either case the package must be installed on
861
the host system.  Using `openvpn', the following would set up a TAP
862
interface for a specified user and group.
863
 
864
     openvpn --mktun --dev tap_n_ --user _username_ --group _groupname_
865
 
866

867
File: or1ksim.info,  Node: Establishing a Bridge,  Next: Opening the Firewall,  Prev: Setting Up a Persistent TAP device,  Up: Ethernet TUN/TAP Interface
868
 
869 442 julius
2.6.2 Establishing a Bridge
870 440 jeremybenn
---------------------------
871
 
872
A bridge is a "virtual" local area network interfaces, subsuming two or
873
more existing network interfaces.  In this case we will bridge the
874
physical Ethernet interface of the host with the TAP interface that
875
will be used by Or1ksim.
876
 
877
The Ethernet and TAP must lose their own individual IP addresses (by
878
setting them to 0.0.0.0) and are replaced by the IP address of the
879
bridge interface. To do this we use the `bridge-utils' package, which
880
must be installed on the host system. These commands are require
881
superuser privileges or `CAP_NET_ADMIN' capability. To create a new
882
interface `br_n_' the following commands are appropriate.
883
 
884
     brctl addbr br_n_
885
     brctl addif br_n_ eth_x_
886
     brctl addif br_n_ tap_y_
887
 
888
     ifconfig eth_x_ 0.0.0.0 promisc up
889
     ifconfig tap_y_ 0.0.0.0 promisc up
890
 
891
     dhclient br_n_
892
 
893
The last command instructs the bridge to obtain its IP address, netmask,
894
broadcast address, gateway and nameserver information using DHCP.  In a
895
network without DHCP it should be replaced by `ifconfig' to set a
896
static IP address, netmask and broadcast address.
897
 
898
     Note: This will leave a spare dhclient process running in the
899
     background, which should be killed for tidiness. There is a
900
     technique to avoid this using `omshell', but that is beyond the
901
     scope of this guide.
902
 
903
     Note: It is not clear to the author why the existing interfaces
904
     need to be brought up in promiscuous mode, but it seems to cure
905
     various problems.
906
 
907

908
File: or1ksim.info,  Node: Opening the Firewall,  Next: Disabling Ethernet Filtering,  Prev: Establishing a Bridge,  Up: Ethernet TUN/TAP Interface
909
 
910 442 julius
2.6.3 Opening the Firewall
911 440 jeremybenn
--------------------------
912
 
913
Firewall rules should be added to ensure traffic flows freely through
914
the TAP and bridge interfaces. As superuser the following commands are
915
appropriate.
916
 
917
     iptables -A INPUT -i tap_y_ -j ACCEPT
918
     iptables -A INPUT -i br_n_ -j ACCEPT
919
     iptables -A FORWARD -i br_n_ -j ACCEPT
920
 
921

922
File: or1ksim.info,  Node: Disabling Ethernet Filtering,  Next: Networking from OpenRISC Linux and BusyBox,  Prev: Opening the Firewall,  Up: Ethernet TUN/TAP Interface
923
 
924 442 julius
2.6.4 Disabling Ethernet Filtering
925 440 jeremybenn
----------------------------------
926
 
927
Some systems may have ethernet filtering enabled (`ebtables',
928
`bridge-nf', `arptables') which will stop traffic flowing through the
929
bridge.
930
 
931
The easiest way to disable this is by writing zero to all `bridge-nf-*'
932
entries in `/proc/sys/net/bridge'. As superuser the following commands
933
will achieve this.
934
 
935
     cd /proc/sys/net/bridge
936
     for f in bridge-nf-*; do echo 0 > $f; done
937
 
938

939
File: or1ksim.info,  Node: Networking from OpenRISC Linux and BusyBox,  Next: Tearing Down a Bridge,  Prev: Disabling Ethernet Filtering,  Up: Ethernet TUN/TAP Interface
940
 
941 442 julius
2.6.5 Networking from OpenRISC Linux and BusyBox
942 440 jeremybenn
------------------------------------------------
943
 
944
The main use of this style of Ethernet interface to Or1ksim is when
945
running the OpenRISC Linux kernel with BusyBox. The following commands
946
in the BusyBox console window will configure the Ethernet interface
947
(assumed to be `eth0') and bring it up with a DHCP assigned address.
948
 
949
     ifconfig eth0
950
     ifup eth0
951
 
952
At this stage interface to IP addresses will work correctly.
953
 
954
For DNS to work the BusyBox system needs to know where to find a
955
nameserver.  Under BusyBox, `udhcp' does not configure
956
`/etc/resolv.conf' automatically.
957
 
958
The solution is to duplicate the nameserver entry from the
959
`/etc/resolv.conf' file of the host on the BusyBox system. A typical
960
file might be as follows:
961
 
962
     `nameserver 192.168.0.1'
963
 
964
It is convenient to make this permanent within the Linux initramfs. Add
965
the file as `arch/openrisc/support/initramfs/etc/resolv.conf' within
966
the Linux source tree and rebuild `vmlinux'. It will then be present
967
automatically.
968
 
969
One of the most useful functions that is possible is to mount the host
970
file system through NFS. For example, from the BusyBox console:
971
 
972
     mount -t nfs -o nolock 192.168.0.60:/home /mnt
973
 
974
Another useful technique is to telnet into the BusyBox system from the
975
host. This is particularly valuable when a console process locks up,
976
since the `xterm' console will not recognize ctrl-C. Instead the rogue
977
process can be killed from a telnet connection.
978
 
979

980
File: or1ksim.info,  Node: Tearing Down a Bridge,  Prev: Networking from OpenRISC Linux and BusyBox,  Up: Ethernet TUN/TAP Interface
981
 
982 442 julius
2.6.6 Tearing Down a Bridge
983 440 jeremybenn
---------------------------
984
 
985
There is little reason why a bridge should ever need to be torn down,
986
but if desired, the following commands will achieve the effect.
987
 
988
     ifconfig br_n_ down
989
     brctl delbr br_n_
990
 
991
     dhclient eth_x_
992
 
993
As before this will leave a spare `dhclient' process in the background
994
which should be killed.
995
 
996
If desired the TAP interface can be deleted using
997
 
998
     openvpn --rmtun -dev tap_y_
999
 
1000
     Caution: The TAP interface should not be in use when running this
1001
     command. For example any OpenRISC Linux/BusyBox sessions should be
1002
     closed first.
1003
 
1004

1005 460 jeremybenn
File: or1ksim.info,  Node: l.nop Support,  Prev: Ethernet TUN/TAP Interface,  Up: Usage
1006
 
1007
2.7 l.nop Opcode Support
1008
========================
1009
 
1010
The OpenRISC `l.nop' opcode can take a parameter.  This has no effect
1011
on the semantics of the opcode, but can be used to trigger side effect
1012
behavior in a simulator.  Within Or1ksim, the following parameters are
1013
supported.
1014
 
1015
`l.nop 0'
1016
     The equivalent to `l.nop' with no parameter. Has no side effects.
1017
 
1018
`l.nop 1'
1019
     Execution of Or1ksim is terminated. This is used to implement the
1020
     library `exit' functions.
1021
 
1022
`l.nop 2'
1023
     Report the value in `r3' on the console as a 32-bit hex value.
1024
 
1025
`l.nop 3'
1026
     In earlier versions of Or1ksim this treated `r3' as a pointer to a
1027 508 jeremybenn
     `printf' style format string, and registers `r4' through `r8' as
1028 460 jeremybenn
     parameters for that format string.
1029
 
1030
     This opcode is no longer supported, and has no effect if used.
1031
 
1032
`l.nop 4'
1033
     The value in `r3' is printed to standard output as an ASCII
1034
     character.  All library output routines are implemented using this
1035
     opcode.
1036
 
1037
`l.nop 5'
1038
     The statistics counters are reset.
1039
 
1040
`l.nop 6'
1041
     The number of clock ticks since start of execution (a 64-bit
1042
     value) is returned in `r11' (low 32 bits) and `r12' (high 32 bits).
1043
 
1044
`l.nop 7'
1045
     The number of picoseconds per clock cycle is returned in `r11'.
1046
     This is used with `l.nop 6' to implement timing functions.
1047
 
1048
`l.nop 8'
1049
     Instruction tracing is turned on.
1050
 
1051
`l.nop 9'
1052
     Instruction tracing is turned off.
1053
 
1054 483 jeremybenn
`l.nop 10'
1055
     A 32-bit random number is returned in `r11'.
1056 460 jeremybenn
 
1057 483 jeremybenn
     The random numbers are generated using `random', which in turn is
1058
     seeded through `srandom' using the host `/dev/urandom' if
1059
     available, or else the process ID of the Or1ksim instance.
1060
 
1061
     This opcode is particularly useful for situations where a target
1062
     program running on Or1ksim needs to obtain genuine system entropy
1063
     to generate random numbers.
1064
 
1065
`l.nop 11'
1066
     Return a non-zero value in `r11'.
1067
 
1068
     This opcode can be used to detect if a target is running under
1069
     Or1ksim.  Set `r11' to zero, issue this opcode, and look to see if
1070
     `r11' is non-zero.
1071
 
1072
 
1073 460 jeremybenn

1074 19 jeremybenn
File: or1ksim.info,  Node: Configuration,  Next: Interactive Command Line,  Prev: Usage,  Up: Top
1075
 
1076
3 Configuration
1077
***************
1078
 
1079 82 jeremybenn
Or1ksim is configured through a configuration file.  This is specified
1080 19 jeremybenn
through the `-f' parameter to the Or1ksim command, or passed as a
1081 82 jeremybenn
string when initializing the Or1ksim library.  If no file is specified,
1082
the default `sim.cfg' is used.  The file is looked for first in the
1083 224 jeremybenn
current directory, then in the `$HOME/.or1ksim' directory of the user.
1084 19 jeremybenn
 
1085
* Menu:
1086
 
1087
* Configuration File Format::
1088
* Simulator Configuration::
1089
* Core OpenRISC Configuration::
1090
* Peripheral Configuration::
1091
 
1092

1093
File: or1ksim.info,  Node: Configuration File Format,  Next: Simulator Configuration,  Up: Configuration
1094
 
1095
3.1 Configuration File Format
1096
=============================
1097
 
1098 346 jeremybenn
The configuration file is a plain text file.  A reference example,
1099
`sim.cfg', is included in the top level directory of the distribution.
1100 19 jeremybenn
 
1101
* Menu:
1102
 
1103
* Configuration File Preprocessing::
1104
* Configuration File Syntax::
1105
 
1106

1107
File: or1ksim.info,  Node: Configuration File Preprocessing,  Next: Configuration File Syntax,  Up: Configuration File Format
1108
 
1109
3.1.1 Configuration File Preprocessing
1110
--------------------------------------
1111
 
1112 82 jeremybenn
The configuration file may include C style comments (i.e.  delimited by
1113 19 jeremybenn
`/*' and `*/').
1114
 
1115

1116
File: or1ksim.info,  Node: Configuration File Syntax,  Prev: Configuration File Preprocessing,  Up: Configuration File Format
1117
 
1118
3.1.2 Configuration File Syntax
1119
-------------------------------
1120
 
1121
The configuration file is divided into a series of sections, with the
1122
general form:
1123
 
1124
     section SECTION_NAME
1125
 
1126
       ...
1127
 
1128
     end
1129
 
1130
Sections may also have sub-sections within them (currently only the
1131
ATA/ATAPI disc interface uses this).
1132
 
1133
Within a section, or sub-section are a series of parameter assignments,
1134
one per line, withe the general form
1135
 
1136
       PARAMETER = VALUE
1137
 
1138
Depending on the parameter, the value may be a named value (an
1139
enumeration), an integer (specified in any format acceptable in C) or a
1140 82 jeremybenn
string in doubple quotes.  For flag parameters, the value 1 is used to
1141
mean "true" or "on" and the value "0" to mean "false" or "off".  An
1142 19 jeremybenn
example from a memory section shows each of these
1143
 
1144
     section memory
1145
       type    = random
1146
       pattern = 0x00
1147
       name    = "FLASH"
1148
       ...
1149
     end
1150
 
1151
Many parameters are optional and take reasonable default values if not
1152 82 jeremybenn
specified.  However there are some parameters (for example the `ce'
1153 19 jeremybenn
parameter in `section memory') _must_ be specified.
1154
 
1155
Subsections are introduced by a keyword, with a parameter value (no `='
1156 82 jeremybenn
sign), and end with the same keyword prefixed by `end'.  Thus the
1157 19 jeremybenn
ATA/ATAPI inteface (`section ata') has a `device' subsection, thus:
1158
 
1159
     section ata
1160
       ...
1161
       device 0
1162
         type    = 1
1163
         file = "FILENAME"
1164
         ...
1165
       enddevice
1166
       ...
1167
     end
1168
 
1169
Some sections (for example `section sim') should appear only once.
1170
Others (for example `section memory' may appear multiple times.
1171
 
1172
Sections may be omitted, _unless they contain parameters which are
1173 82 jeremybenn
non-optional_.  If the section describes a part of the simulator which
1174 19 jeremybenn
is optional (for example whether it has a UART), then that
1175 82 jeremybenn
functionality will not be provided.  If the section describes a part of
1176 19 jeremybenn
the simulator which is not optional (for example the CPU), then all the
1177
parameters of that section will take their default values.
1178
 
1179
All optional parts of the functionality are always described by
1180
sections including a `enabled' parameter, which can be set to 0 to
1181
ensure that functionality is explicitly omitted.
1182
 
1183
Even if a section is disabled, all its parameters will be read and
1184 82 jeremybenn
stored.  This is helpful if the section is subsequently enabled from
1185
the Or1ksim command line (*note Interactive Command Line: Interactive
1186 19 jeremybenn
Command Line.).
1187
 
1188
     Tip: It generally clearer to have sections describing _all_
1189
     components, with omitted functionality explicitly indicated by
1190
     setting the `enabled' parameter to 0
1191
 
1192
The following sections describe the various configuration sections and
1193
the parameters which may be set in each.
1194
 
1195

1196
File: or1ksim.info,  Node: Simulator Configuration,  Next: Core OpenRISC Configuration,  Prev: Configuration File Format,  Up: Configuration
1197
 
1198
3.2 Simulator Configuration
1199
===========================
1200
 
1201
* Menu:
1202
 
1203
* Simulator Behavior::
1204
* Verification API Configuration::
1205
* CUC Configuration::
1206
 
1207

1208
File: or1ksim.info,  Node: Simulator Behavior,  Next: Verification API Configuration,  Up: Simulator Configuration
1209
 
1210
3.2.1 Simulator Behavior
1211
------------------------
1212
 
1213 82 jeremybenn
Simulator behavior is described in `section sim'.  This section should
1214
appear only once.  The following parameters may be specified.
1215 19 jeremybenn
 
1216
`verbose = 0|1'
1217 82 jeremybenn
     If 1 (true), print extra messages.  Default 0.
1218 19 jeremybenn
 
1219
`debug = 0-9'
1220 82 jeremybenn
 
1221
     higher the value the greater the number of messages.  Default 0.
1222
     Negative values will be treated as 0 (with a warning).  Values
1223
     that are too large will be treated as 9 (with a warning).
1224 19 jeremybenn
 
1225
`profile = 0|1'
1226
     If 1 (true) generate a profiling file using the file specified in
1227 82 jeremybenn
     the `prof_file' parameter or otherwise `sim.profile'.  Default 0.
1228 19 jeremybenn
 
1229
`prof_file = ``FILENAME'''
1230 82 jeremybenn
     Specifies the file to be used with the `profile' parameter.
1231
     Default `sim.profile'.  For backwards compatibility, the
1232
     alternative name `prof_fn' is supported for this parameter, but
1233 346 jeremybenn
     deprecated.  Default `sim.profile'.
1234 19 jeremybenn
 
1235
`mprofile = 0|1'
1236
     If 1 (true) generate a memory profiling file using the file
1237
     specified in the `mprof_file' parameter or otherwise
1238 82 jeremybenn
     `sim.mprofile'.  Default 0.
1239 19 jeremybenn
 
1240 346 jeremybenn
`mprof_file = ``FILENAME'''
1241 19 jeremybenn
     Specifies the file to be used with the `mprofile' parameter.
1242 82 jeremybenn
     Default `sim.mprofile'.  For backwards compatibility, the
1243 19 jeremybenn
     alternative name `mprof_fn' is supported for this parameter, but
1244 346 jeremybenn
     deprecated.  Default `sim.mprofile'.
1245 19 jeremybenn
 
1246
`history = 0|1'
1247 82 jeremybenn
     If 1 (true) track execution flow.  Default 0.
1248 19 jeremybenn
 
1249
          Note: Setting this parameter seriously degrades performance.
1250
 
1251
          Note: If this execution flow tracking is enabled, then
1252
          `dependstats' must be enabled in the CPU configuration
1253
          section (*note CPU Configuration: CPU Configuration.).
1254
 
1255
`exe_log = 0|1'
1256 82 jeremybenn
     If 1 (true), generate an execution log.  Log is written to the
1257
     file specified in parameter `exe_log_file'.  Default 0.
1258 19 jeremybenn
 
1259
          Note: Setting this parameter seriously degrades performance.
1260
 
1261
`exe_log_type = default|hardware|simple|software'
1262
     Type of execution log to produce.
1263
 
1264
    `default'
1265 82 jeremybenn
          Produce default output for the execution log.  In the current
1266 19 jeremybenn
          implementation this is the equivalent of `hardware'.
1267
 
1268
    `hardware'
1269
          After each instruction execution, log the number of
1270
          instructions executed so far, the next instruction to execute
1271
          (in hex), the general purpose registers (GPRs), status
1272
          register, exception program counter, exception, effective
1273
          address register and exception status register.
1274
 
1275
    `simple'
1276
          After each instruction execution, log the number of
1277
          instructions executed so far and the next instruction to
1278
          execute, symbolically disassembled.
1279
 
1280
    `software'
1281
          After each instruction execution, log the number of
1282
          instructions executed so far and the next instruction to
1283 82 jeremybenn
          execute, symbolically disassembled.  Also show the value of
1284 19 jeremybenn
          each operand to the instruction.
1285
 
1286
 
1287 82 jeremybenn
     Default value `hardware'.  Any unrecognized keyword (case
1288 19 jeremybenn
     insensitive) will be treated as the default with a warning.
1289
 
1290
          Note: Execution logs can be _very_ big.
1291
 
1292
`exe_log_start = VALUE'
1293 82 jeremybenn
     Address of the first instruction to start logging.  Default 0.
1294 19 jeremybenn
 
1295
`exe_log_end = VALUE'
1296 82 jeremybenn
     Address of the last instruction to log.  Default no limit (i.e
1297
     once started logging will continue until the simulator exits).
1298 19 jeremybenn
 
1299
`exe_log_marker = VALUE'
1300
     Specifies the number of instructions between printing horizontal
1301 82 jeremybenn
     markers.  Default is to produce no markers.
1302 19 jeremybenn
 
1303
`exe_log_file = FILENAME'
1304
     Filename for the execution log filename if `exe_log' is enabled.
1305 82 jeremybenn
     Default `executed.log'.  For backwards compatibility, the
1306 19 jeremybenn
     alternative name `exe_log_fn' is supported for this parameter, but
1307
     deprecated.
1308
 
1309 202 julius
`exe_bin_insn_log = 0|1'
1310 346 jeremybenn
     Enable logging of executed instructions to a file in binary format.
1311
     This is helpful for off-line dynamic execution analysis.
1312 202 julius
 
1313 346 jeremybenn
          Note: Execution logs can be _very_ big.  For example, while
1314 220 jeremybenn
          booting the Linux kernel, version 2.6.34, a log file 1.2GB in
1315
          size was generated.
1316 202 julius
 
1317
`exe_bin_insn_log_file = FILENAME'
1318
     Filename for the binary execution log filename if
1319
     `exe_bin_insn_log' is enabled.  Default `exe-insn.bin'.
1320
 
1321 19 jeremybenn
`clkcycle = VALUE[ps|ns|us|ms]'
1322 82 jeremybenn
     Specify the time taken by one clock cycle.  If no units are
1323
     specified, `ps' is assumed.  Default 4000ps (250MHz).
1324 19 jeremybenn
 
1325
 
1326

1327
File: or1ksim.info,  Node: Verification API Configuration,  Next: CUC Configuration,  Prev: Simulator Behavior,  Up: Simulator Configuration
1328
 
1329
3.2.2 Verification API (VAPI) Configuration
1330
-------------------------------------------
1331
 
1332
The Verification API (VAPI) provides a TCP/IP interface to allow
1333 82 jeremybenn
components of the simulation to be controlled externally.  *Note
1334 19 jeremybenn
Verification API: Verification API, for more details.
1335
 
1336 82 jeremybenn
Verification API configuration is described in `section vapi'.  This
1337
section may appear at most once.  The following parameters may be
1338 19 jeremybenn
specified.
1339
 
1340
`enabled = 0|1'
1341
     If 1 (true), verification API is enabled and its server started.
1342
     If 0 (the default), it is disabled.
1343
 
1344
`server_port = VALUE'
1345
     When VAPI is enabled, communication will be via TCP/IP on the port
1346 82 jeremybenn
     specified by VALUE.  The value must lie in the range 1 to 65535.
1347 19 jeremybenn
     The default value is 50000.
1348
 
1349 82 jeremybenn
          Tip: There is no registered port for Or1ksim VAPI.  Good
1350 19 jeremybenn
          practice suggests users should adopt port values in the
1351 82 jeremybenn
          "Dynamic" or "Private" port range, i.e.  49152-65535.
1352 19 jeremybenn
 
1353
`log_enabled = 0|1'
1354
     If 1 (true), all VAPI requests and sent commands will be logged.
1355 82 jeremybenn
     If 0 (the default), logging is diabled.  Logs are written to the
1356 19 jeremybenn
     file specified by the `vapi_log_file' field (see below).
1357
 
1358
          Caution: This can generate a substantial amount of file I/O
1359
          and seriously degrade simulator performance.
1360
 
1361
`hide_device_id = 0|1'
1362 82 jeremybenn
     If 1 (true) don't log the device ID.  If 0 (the default), log the
1363
     device ID.  This feature (when set to 1) is provided for backwards
1364 19 jeremybenn
     compatibility with an old version of VAPI.
1365
 
1366
`vapi_log_file = "FILENAME"'
1367
     Use `filename' as the file for logged data is logging is enabled
1368 82 jeremybenn
     (see `log_enabled' above).  The default is `"vapi.log"'.  For
1369 19 jeremybenn
     backwards compatibility, the alternative name `vapi_log_fn' is
1370
     supported for this parameter, but deprecated.
1371
 
1372
 
1373

1374
File: or1ksim.info,  Node: CUC Configuration,  Prev: Verification API Configuration,  Up: Simulator Configuration
1375
 
1376
3.2.3 Custom Unit Compiler (CUC) Configuration
1377
----------------------------------------------
1378
 
1379
The Custom Unit Compiler (CUC) was a project by Marko Mlinar to generate
1380 82 jeremybenn
Verilog from ANSI C functions.  The project seems to not have progressed
1381
beyond the initial prototype phase.  The configuration parameters are
1382 19 jeremybenn
described here for the record.
1383
 
1384 82 jeremybenn
CUC configuration is described in `section cuc'.  This section may
1385
appear at most once.  The following parameters may be specified.
1386 19 jeremybenn
 
1387
`memory_order = none|weak|strong|exact'
1388
     This parameter specifies the memory ordering required:
1389
 
1390
    `memory_order=none'
1391
          Different memory ordering, even if there are dependencies.
1392
          Bursts can be made, width can change.
1393
 
1394 346 jeremybenn
    `memory_order=weak'
1395 82 jeremybenn
          Different memory ordering, even if there are dependencies.  If
1396 19 jeremybenn
          dependencies cannot occur, then bursts can be made, width can
1397
          change.
1398
 
1399 346 jeremybenn
    `memory_order=strong'
1400 82 jeremybenn
          Same memory ordering.  Bursts can be made, width can change.
1401 19 jeremybenn
 
1402 346 jeremybenn
    `memory_order=exact'
1403 19 jeremybenn
          Exactly the same memory ordering and widths.
1404
 
1405
 
1406 82 jeremybenn
     The default value is `memory_order=exact'.  Invalid memory
1407 19 jeremybenn
     orderings are ignored with a warning.
1408
 
1409
`calling_convention = 0|1'
1410 82 jeremybenn
     If 1 (true), programs follow OpenRISC calling conventions.  If 0
1411 19 jeremybenn
     (the default), they may use other convenitions.
1412
 
1413
`enable_bursts = 0 | 1'
1414 82 jeremybenn
     If 1 (true), bursts are detected.  If 0 (the default), bursts are
1415 19 jeremybenn
     not detected.
1416
 
1417
`no_multicycle = 0 | 1'
1418 82 jeremybenn
     If 1 (true), no multicycle logic paths will be generated.  If 0
1419
     (the default), multicycle logic paths will be generated.
1420 19 jeremybenn
 
1421
`timings_file = "FILENAME"'
1422 82 jeremybenn
     FILENAME specifies a file containing timing information.  The
1423
     default value is `"virtex.tim"'.  For backwards compatibility, the
1424 19 jeremybenn
     alternative name `timings_fn' is supported for this parameter, but
1425
     deprecated.
1426
 
1427
 
1428

1429
File: or1ksim.info,  Node: Core OpenRISC Configuration,  Next: Peripheral Configuration,  Prev: Simulator Configuration,  Up: Configuration
1430
 
1431
3.3 Configuring the OpenRISC Architectural Components
1432
=====================================================
1433
 
1434
* Menu:
1435
 
1436
* CPU Configuration::
1437
* Memory Configuration::
1438
* Memory Management Configuration::
1439
* Cache Configuration::
1440
* Interrupt Configuration::
1441
* Power Management Configuration::
1442
* Branch Prediction Configuration::
1443
* Debug Interface Configuration::
1444
 
1445

1446
File: or1ksim.info,  Node: CPU Configuration,  Next: Memory Configuration,  Up: Core OpenRISC Configuration
1447
 
1448
3.3.1 CPU Configuration
1449
-----------------------
1450
 
1451 82 jeremybenn
CPU configuration is described in `section cpu'.  This section should
1452
appear only once.  At present Or1ksim does not model multi-CPU systems.
1453 19 jeremybenn
The following parameters may be specified.
1454
 
1455
`ver = VALUE'
1456
 
1457
`cfg = VALUE'
1458
 
1459
`rev = VALUE'
1460
     The values are used to form the corresponding fields in the `VR'
1461 82 jeremybenn
     Special Purpose Register (SPR 0).  Default values 0.  A warning is
1462 19 jeremybenn
     given and the value truncated if it is too large (8 bits for `ver'
1463
     and `cfg', 6 bits for `rev').
1464
 
1465
`upr = VALUE'
1466
     Used as the value of the Unit Present Register (UPR) Special
1467 82 jeremybenn
     Purpose Register (SPR 1) to VALUE.  Default value is 0x0000075f,
1468 19 jeremybenn
     i.e.
1469
        * UPR present (0x00000001)
1470
 
1471
        * Data cache present (0x00000002)
1472
 
1473
        * Instruction cache present (0x00000004)
1474
 
1475
        * Data MMY present (0x00000008)
1476
 
1477
        * Instruction MMU present (0x00000010)
1478
 
1479
        * Debug unit present (0x00000040)
1480
 
1481
        * Power management unit present (0x00000100)
1482
 
1483
        * Programmable interrupt controller present (0x00000200)
1484
 
1485
        * Tick timer present (0x00000400)
1486
 
1487
     However, with the exection of the UPR present (0x00000001) and tick
1488
     timer present, the various fields will be modified with the values
1489
     specified in their corresponding configuration sections.
1490
 
1491
`cfgr = VALUE'
1492
     Sets the CPU configuration register (Special Purpose Register 2) to
1493 82 jeremybenn
     VALUE.  Default value is 0x00000020, i.e.  support for the ORBIS32
1494
     instruction set.  Attempts to set any other value are accepted, but
1495 19 jeremybenn
     issue a warning that there is no support for the instruction set.
1496
 
1497
`sr = VALUE'
1498
     Sets the supervision register Special Purpose Register (SPR 0x11)
1499 82 jeremybenn
     to VALUE.  Default value is 0x00008001, i.e.  start in supervision
1500 19 jeremybenn
     mode (0x00000001) and set the "Fixed One" bit (0x00008000).
1501
 
1502 98 jeremybenn
          Note: This is particularly useful when an image is held in
1503
          Flash at high memory (0xf0000000).  The EPH  bit can be set,
1504
          so that interrupt vectors are basedf at 0xf0000000, rather
1505
          than 0x0.
1506
 
1507 19 jeremybenn
`superscalar = 0|1'
1508 82 jeremybenn
     If 1, the processor operates in superscalar mode.  Default value is
1509 19 jeremybenn
     0.
1510
 
1511
     In the current simulator, the only functional effect of superscalar
1512
     mode is to affect the calculation of the number of cycles taken to
1513
     execute an instruction.
1514
 
1515
          Caution: The code for this does not appear to be complete or
1516
          well tested, so users are advised not to use this option.
1517
 
1518
`hazards = 0|1'
1519 82 jeremybenn
     If 1, data hazards are tracked in a superscalar CPU.  Default
1520
     value is 0.
1521 19 jeremybenn
 
1522
     In the current simulator, the only functional effect is to cause
1523
     logging of hazard waiting information if the CPU is superscalar.
1524
     However nowhere in the simulator is this data actually computed,
1525
     so the net result is probably to have no effect.
1526
 
1527
     if harzards are tracked, current hazards can be displayed using the
1528
     simulator's `r' command.
1529
 
1530
          Caution: The code for this does not appear to be complete or
1531
          well tested, so users are advised not to use this option.
1532
 
1533
`dependstats = 0|1'
1534 82 jeremybenn
     If 1, inter-instruction dependencies are calculated.  Default
1535
     value 0.
1536 19 jeremybenn
 
1537
     If these values are calculated, the depencies can be displayed
1538
     using the simulator's `stat' command.
1539
 
1540
          Note: This field must be enabled, if execution execution flow
1541
          tracking (field `history') has been requested in the simulator
1542
          configuration section (*note Simulator Behavior: Simulator
1543
          Behavior.).
1544
 
1545
`sbuf_len = VALUE'
1546
     The length of the store buffer is set to VALUE, which must be no
1547 82 jeremybenn
     greater than 256.  Larger values will be truncated to 256 with a
1548
     warning.  Negative values will be treated as 0 with a warning.
1549
     Use 0 to disable the store buffer.
1550 19 jeremybenn
 
1551
     When the store buffer is active, stores are accumulated and
1552
     committed when I/O is idle.
1553
 
1554 100 julius
`hardfloat = 0|1'
1555 346 jeremybenn
     If 1, hardfloat instructions are enabled.  Default value 0.
1556 19 jeremybenn
 
1557 104 jeremybenn
 
1558 19 jeremybenn

1559
File: or1ksim.info,  Node: Memory Configuration,  Next: Memory Management Configuration,  Prev: CPU Configuration,  Up: Core OpenRISC Configuration
1560
 
1561
3.3.2 Memory Configuration
1562
--------------------------
1563
 
1564 82 jeremybenn
Memory configuration is described in `section memory'.  This section
1565 98 jeremybenn
may appear multiple times, specifying multiple blocks of memory.
1566 19 jeremybenn
 
1567 98 jeremybenn
     Caution: The user may choose whether or not to enable a memory
1568 385 jeremybenn
     controller.  If a memory controller is enabled, then appropriate
1569
     initalization code must be provided.  The section describing
1570
     memory controller configuration describes the steps necessary for
1571
     using smaller or larger memory sections (*note Memory Controller
1572
     Configuration: Memory Controller Configuration.).
1573 98 jeremybenn
 
1574 385 jeremybenn
     The "uClibc" startup code initalizes a memory controller, assumed
1575
     to be mapped at 0x93000000.  If a memory controller is _not_
1576
     enabled, then the standard C library code will generate memory
1577
     access errors.  The solution is to declare an additional writable
1578
     memory block, mimicing the memory controller's register bank as
1579
     follows.
1580 98 jeremybenn
 
1581
          section memory
1582
            pattern = 0x00
1583
            type = unknown
1584
            name = "MC shadow"
1585
            baseaddr = 0x93000000
1586
            size     = 0x00000080
1587
            delayr = 2
1588
            delayw = 4
1589
          end
1590
 
1591
 
1592
The following parameters may be specified.
1593
 
1594 418 julius
`type=random|pattern|unknown|zero|exitnops'
1595 82 jeremybenn
     Specifies the values to which memory should be initialized.  The
1596 19 jeremybenn
     default value is `unknown'.
1597
 
1598
    `random'
1599 82 jeremybenn
          Set the memory values to be a random value.  A seed for the
1600 19 jeremybenn
          random generator may be set using the `random_seed' field in
1601
          this section (see below), thus ensuring the same "random"
1602
          values are used each time.
1603
 
1604
    `pattern'
1605
          Set the memory values to be a pattern value, which is set
1606
          using the `pattern' field in this section (see below).
1607
 
1608
    `unknown'
1609 82 jeremybenn
          The memory values are not initialized (i.e.  left "unknown").
1610 240 julius
          This option will yield faster initialization of the
1611 346 jeremybenn
          simulator.  This is the default.
1612 19 jeremybenn
 
1613
    `zero'
1614 82 jeremybenn
          Set the memory values to be 0.  This is the equivalent of
1615 19 jeremybenn
          `type=pattern' and a `pattern' value of 0, and implemented as
1616
          such.
1617
 
1618 420 jeremybenn
               Note: As a consequence, if the `pattern' field is
1619
               _subsequently_ specified in this section, the value in
1620
               that field will be used instead of zero to initialize
1621
               the memory.
1622
 
1623 418 julius
    `exitnops'
1624
          Set the memory values to be an instruction used to signal end
1625
          of simulation. This is useful for causing immediate end of
1626
          simulation when PC corruption occurs.
1627
 
1628 19 jeremybenn
 
1629
`random_seed = VALUE'
1630 82 jeremybenn
     Set the seed for the random number generator to VALUE.  This only
1631 19 jeremybenn
     has any effect for memory type `random'.
1632
 
1633
     The default value is -1, which means the seed will be set from a
1634
     call to the `time' function, thus ensuring different random values
1635 82 jeremybenn
     are used on each run.  The simulator prints out the seed used in
1636 19 jeremybenn
     this case, allowing repeat runs to regenerate the same random
1637
     values used in any particular run.
1638
 
1639
`pattern = VALUE'
1640 82 jeremybenn
     Set the pattern to be used when initializing memory to VALUE.  The
1641
     default value is 0.  This only has any effect for memory type
1642
     `pattern'.  The least significant 8 bits of this value is used to
1643
     initialize each byte.  More than 8 bits can be specified, but will
1644 19 jeremybenn
     ignored with a warning.
1645
 
1646
          Tip: The default value, is equivalent to setting the memory
1647 82 jeremybenn
          `type' to be `zero'.  If that is what is intended, then using
1648 19 jeremybenn
          `type=zero' explicitly is better than using `type=pattern'
1649
          and not specifying a value for `pattern'.
1650
 
1651
`baseaddr = VALUE'
1652 82 jeremybenn
     Set the base address of the memory to VALUE.  It should be aligned
1653 19 jeremybenn
     to a multiple of the memory size rounded up to the nearest 2^n.
1654
     The default value is 0.
1655
 
1656
`size = VALUE'
1657 82 jeremybenn
     Set the size of the memory block to be VALUE bytes.  This should
1658
     be a multiple of 4 (i.e.  word aligned).  The default value is
1659
     1024.
1660 19 jeremybenn
 
1661
          Note: When allocating memory, the simulator will allocate the
1662
          nearest 2^n bytes greater than or equal to VALUE, and will not
1663
          notice memory misses in any part of the memory between VALUE
1664
          and the amount allocated.
1665
 
1666
          As a consequence users are strongly recommended to specify
1667 82 jeremybenn
          memory sizes that are an exact power of 2.  If some other
1668 19 jeremybenn
          amount of memory is required, it should be specified as
1669
          separate, contiguous blocks, each of which is a power of 2 in
1670
          size.
1671
 
1672
`name = "TEXT"'
1673 82 jeremybenn
     Name the block.  Typically these describe the type of memory being
1674
     modeled (thus `"SRAM"' or `"Flash"'.  The default is
1675 19 jeremybenn
     `"anonymous memory block"'.
1676
 
1677
          Note: It is not clear that this information is currently ever
1678 82 jeremybenn
          used in normal operation of the simulator.  Even the `info'
1679 19 jeremybenn
          command of the simulator ignores it.
1680
 
1681
`ce = VALUE'
1682 82 jeremybenn
     Set the chip enable index of the memory instance.  Each memory
1683 19 jeremybenn
     instance should have a unique chip enable index, which should be
1684 82 jeremybenn
     greater than or equal to zero.  This is used by the memory
1685 19 jeremybenn
     controller when identifying different memory instances.
1686
 
1687 346 jeremybenn
     There is no requirement to set `ce' if a memory controller is not
1688
     enabled.  The default value is -1 (invalid).
1689 19 jeremybenn
 
1690
`mc = VALUE'
1691 82 jeremybenn
     Specifies the memory controller this memory is connected to.  It
1692 19 jeremybenn
     should correspond to the `index' field specified in a `section mc'
1693
     for a memory controller (*note Memory Controller Configuration:
1694
     Memory Controller Configuration.).
1695
 
1696 346 jeremybenn
     There is no requirement to set `mc' if a memory controller is not
1697
     enabled.  Default value is 0, which is also the default value of a
1698 98 jeremybenn
     memory controller `index' field.  This is suitable therefore for
1699
     designs with just one memory controller.
1700 19 jeremybenn
 
1701
`delayr = VALUE'
1702 82 jeremybenn
     The number of cycles required for a read access.  Set to -1 if the
1703
     memory does not support reading.  Default value 1.  The simulator
1704 19 jeremybenn
     will add this number of cycles to the total instruction cycle
1705
     count when reading from main memory.
1706
 
1707
`delayw = VALUE'
1708 82 jeremybenn
     The number of cycles required for a write access.  Set to -1 if the
1709
     memory does not support writing.  Default value 1.  The simulator
1710 19 jeremybenn
     will add this number of cycles to the total instruction cycle
1711
     count when writing to main memory.
1712
 
1713
`log = "FILE"'
1714
     If specified, `file' names a file for all memory accesses to be
1715 82 jeremybenn
     logged.  If not specified, the default value, NULL is used, meaning
1716 19 jeremybenn
     that the memory is not logged.
1717
 
1718
 
1719

1720
File: or1ksim.info,  Node: Memory Management Configuration,  Next: Cache Configuration,  Prev: Memory Configuration,  Up: Core OpenRISC Configuration
1721
 
1722
3.3.3 Memory Management Configuration
1723
-------------------------------------
1724
 
1725
Memory Management Unit (MMU) configuration is described in `section
1726
dmmu' (for the data MMU) and `section immu' (for the instruction MMU).
1727 82 jeremybenn
Each section should appear at most once.  The following parameters may
1728 19 jeremybenn
be specified.
1729
 
1730
`enabled = 0|1'
1731
     If 1 (true), the data or instruction (as appropriate) MMU is
1732 82 jeremybenn
     enabled.  If 0 (the default), it is disabled.
1733 19 jeremybenn
 
1734
`nsets = VALUE'
1735
     Sets the number of data or instruction (as appropriate) TLB sets to
1736 82 jeremybenn
     VALUE, which must be a power of two, not exceeding 128.  Values
1737
     which do not fit these criteria are ignored with a warning.  The
1738 19 jeremybenn
     default value is 1.
1739
 
1740
`nways = VALUE'
1741
     Sets the number of data or instruction (as appropriate) TLB ways to
1742 82 jeremybenn
     VALUE.  The value must be in the range 1 to 4.  Values outside
1743
     this range are ignored with a warning.  The default value is 1.
1744 19 jeremybenn
 
1745
`pagesize = VALUE'
1746
     The data or instruction (as appropriate) MMU page size is set to
1747 82 jeremybenn
     VALUE, which must be a power of 2.  Values which are not a power
1748
     of 2 are ignored with a warning.  The default is 8192 (0x2000).
1749 19 jeremybenn
 
1750
`entrysize = VALUE'
1751
     The data or instruction (as appropriate) MMU entry size is set to
1752 82 jeremybenn
     VALUE, which must be a power of 2.  Values which are not a power
1753
     of 2 are ignored with a warning.  The default value is 1.
1754 19 jeremybenn
 
1755
          Note: Or1ksim does not appear to use the `entrysize' parameter
1756 82 jeremybenn
          in its simulation of the MMUs.  Thus setting this value does
1757 19 jeremybenn
          not seem to matter.
1758
 
1759
`ustates = VALUE'
1760
     The number of instruction usage states for the data or instruction
1761
     (as appropriate) MMU is set to VALUE, which must be 2, 3 or 4.
1762 82 jeremybenn
     Values outside this range are ignored with a warning.  The default
1763 19 jeremybenn
     value is 2.
1764
 
1765
          Note: Or1ksim does not appear to use the `ustates' parameter
1766 82 jeremybenn
          in its simulation of the MMUs.  Thus setting this value does
1767 19 jeremybenn
          not seem to matter.
1768
 
1769
`hitdelay = VALUE'
1770
     Set the number of cycles a data or instruction (as appropriate) MMU
1771 82 jeremybenn
     hit costs.  Default value 1.
1772 19 jeremybenn
 
1773
`missdelay = VALUE'
1774
     Set the number of cycles a data or instruction (as appropriate) MMU
1775 82 jeremybenn
     miss costs.  Default value 1.
1776 19 jeremybenn
 
1777
 
1778

1779
File: or1ksim.info,  Node: Cache Configuration,  Next: Interrupt Configuration,  Prev: Memory Management Configuration,  Up: Core OpenRISC Configuration
1780
 
1781
3.3.4 Cache Configuration
1782
-------------------------
1783
 
1784
Cache configuration is described in `section dc' (for the data cache)
1785 82 jeremybenn
and `seciton ic' (for the instruction cache).  Each section should
1786
appear at most once.  The following parameters may be specified.
1787 19 jeremybenn
 
1788
`enabled = 0|1'
1789
     If 1 (true), the data or instruction (as appropriate) cache is
1790 82 jeremybenn
     enabled.  If 0 (the default), it is disabled.
1791 19 jeremybenn
 
1792
`nsets = VALUE'
1793
     Sets the number of data or instruction (as appropriate) cache sets
1794
     to VALUE, which must be a power of two, not exceeding
1795
     `MAX_DC_SETS' (for the data cache) or `MAX_IC_SETS' (for the
1796 82 jeremybenn
     instruction cache).  At the time of writing, these constants are
1797
     both defined in the code to be 1024).  The default value is 1.
1798 19 jeremybenn
 
1799
`nways = VALUE'
1800
     Sets the number of data or instruction (as appropriate) cache ways
1801
     to VALUE, which must be a power of two, not exceeding
1802
     `MAX_DC_WAYS' (for the data cache) or `MAX_IC_WAYS' (for the
1803 82 jeremybenn
     instruction cache).  At the time of writing, these constants are
1804
     both defined in the code to be 32).  The default value is 1.
1805 19 jeremybenn
 
1806
`blocksize = VALUE'
1807
     The data or instruction (as appropriate) cache block size is set to
1808 82 jeremybenn
     VALUE bytes, which must be either 16 or 32.  The default is 16.
1809 19 jeremybenn
 
1810
`ustates = VALUE'
1811
     The number of instruction usage states for the data or instruction
1812
     (as appropriate) cache is set to VALUE, which must be 2, 3 or 4.
1813
     The default value is 2.
1814
 
1815
`hitdelay = VALUE'
1816 82 jeremybenn
     _Instruction cache only_.  Set the number of cycles an instruction
1817
     cache hit costs.  Default value 1.
1818 19 jeremybenn
 
1819
`missdelay = VALUE'
1820 82 jeremybenn
     _Instruction cache only_.  Set the number of cycles an instruction
1821
     cache miss costs.  Default value 1.
1822 19 jeremybenn
 
1823
`load_hitdelay = VALUE'
1824 82 jeremybenn
     _Data cache only_.  Set the number of cycles a data load cache hit
1825
     costs.  Default value 2.
1826 19 jeremybenn
 
1827
`load_missdelay = VALUE'
1828 82 jeremybenn
     _Data cache only_.  Set the number of cycles a data load cache
1829
     miss costs.  Default value 2.
1830 19 jeremybenn
 
1831
`store_hitdelay = VALUE'
1832 82 jeremybenn
     _Data cache only_.  Set the number of cycles a data store cache hit
1833
     costs.  Default value 0.
1834 19 jeremybenn
 
1835
`store_missdelay = VALUE'
1836 82 jeremybenn
     _Data cache only_.  Set the number of cycles a data store cache
1837
     miss costs.  Default value 0.
1838 19 jeremybenn
 
1839
 
1840

1841
File: or1ksim.info,  Node: Interrupt Configuration,  Next: Power Management Configuration,  Prev: Cache Configuration,  Up: Core OpenRISC Configuration
1842
 
1843
3.3.5 Interrupt Configuration
1844
-----------------------------
1845
 
1846
Programmable Interrupt Controller (PIC) configuration is described in
1847 82 jeremybenn
`section pic'.  This section may appear at most once--Or1ksim has no
1848
mechanism for handling multiple interrupt controllers.  The following
1849 19 jeremybenn
parameters may be specified.
1850
 
1851
`enabled = 0|1'
1852 82 jeremybenn
     If 1 (true), the programmable interrupt controller is enabled.  If
1853
 
1854 19 jeremybenn
 
1855
`edge_trigger = 0|1'
1856
     If 1 (true, the default), the programmable interrupt controller is
1857 82 jeremybenn
     edge triggered.  If 0 (false), it is level triggered.
1858 19 jeremybenn
 
1859 432 jeremybenn
     The library interface (*note Simulator Library: Simulator Library.)
1860
     provides different functions for setting the different types of
1861
     interrupt, and a function to clear level sensitive interrupts. Edge
1862
     sensitive interrupts must be cleared by clearing the corresponding
1863
     bit in the PICSR SPR.
1864 19 jeremybenn
 
1865 432 jeremybenn
     Internal functions to set and clear interrupts are also provided
1866
     for peripherals implemented within Or1ksim. *Note Interrupts
1867
     Internal: Interrupts Internal for more details.
1868 430 julius
 
1869 432 jeremybenn
`use_nmi = 0|1'
1870
     If 1 (true, the default), interrupt lines 0 and 1 are
1871
     non-maskable. In other words the least significant 2 bits of the
1872
     PICMR SPR are hard-wired to 1.  If 0 (false), all interrupt lines
1873
     are treated as equivalent.
1874 430 julius
 
1875 432 jeremybenn
          Note: These are not non-maskable in the true sense that they
1876
          will pre-empt other interrupts.  Rather they can never be
1877
          masked out using the PICMR register. It is up the interrupt
1878
          exception handler to give these interrupt lines priority, and
1879
          indeed to decide on the priority order in general.
1880 430 julius
 
1881 432 jeremybenn
 
1882 19 jeremybenn

1883
File: or1ksim.info,  Node: Power Management Configuration,  Next: Branch Prediction Configuration,  Prev: Interrupt Configuration,  Up: Core OpenRISC Configuration
1884
 
1885
3.3.6 Power Management Configuration
1886
------------------------------------
1887
 
1888 82 jeremybenn
Power management implementation is incomplete.  At present the effect
1889 19 jeremybenn
(which only happens when the power management unit is enabled) of
1890
setting the different bits in the power management Special Purpose
1891
Register (PMR, SPR 0x4000) is
1892
 
1893
`SDF (bit mask 0x0000000f)'
1894
     No effect - these bits are ignored
1895
 
1896
`DME (bit mask 0x00000010)'
1897
`SME (bit mask 0x00000020)'
1898
     Both these bits cause the processor to stop executing
1899 82 jeremybenn
     instructions.  However all other functions (debug interaction, CLI,
1900 19 jeremybenn
     VAPI etc) carry on as normal.
1901
 
1902
`DCGE (bit mask 0x00000004)'
1903
     No effect - this bit is ignored
1904
 
1905
`SUME (bit mask 0x00000008)'
1906
     Enabling this bit causes a message to be printed, advising that the
1907
     processor is suspending and the simulator exits.
1908
 
1909
 
1910
On reset all bits are cleared.
1911
 
1912 82 jeremybenn
Power management configuration is described in `section pm'.  This
1913
section may appear at most once.  The following parameter may be
1914 19 jeremybenn
specified.
1915
 
1916
`enabled = 0|1'
1917 82 jeremybenn
     If 1 (true), power management is enabled.  If 0 (the default), it
1918
     is disabled.
1919 19 jeremybenn
 
1920
 
1921

1922
File: or1ksim.info,  Node: Branch Prediction Configuration,  Next: Debug Interface Configuration,  Prev: Power Management Configuration,  Up: Core OpenRISC Configuration
1923
 
1924
3.3.7 Branch Prediction Configuration
1925
-------------------------------------
1926
 
1927
From examining the code base, it seems the branch prediction function
1928 82 jeremybenn
is not fully implemented.  At present the functionality seems
1929
restricted to collection of statistics.
1930 19 jeremybenn
 
1931 82 jeremybenn
Branch prediction configuration is described in `section bpb'.  This
1932
section may appear at most once.  The following parameters may be
1933 19 jeremybenn
specified.
1934
 
1935
`enabled = 0|1'
1936 82 jeremybenn
     If 1 (true), branch prediction is enabled.  If 0 (the default), it
1937 19 jeremybenn
     is disabled.
1938
 
1939
`btic = 0|1'
1940
     If 1 (true), the branch target instruction cache model is enabled.
1941
     If 0 (the default), it is disabled.
1942
 
1943
`sbp_bf_fwd = 0|1'
1944 82 jeremybenn
     If 1 (true), use forward prediction for the `l.bf' instruction.  If
1945 19 jeremybenn
 
1946
     instruction.
1947
 
1948
`sbp_bnf_fwd = 0|1'
1949 82 jeremybenn
     If 1 (true), use forward prediction for the `l.bnf' instruction.
1950
     If 0 (the default), do not use forward prediction for this
1951 19 jeremybenn
     instruction.
1952
 
1953
`hitdelay = VALUE'
1954 82 jeremybenn
     Set the number of cycles a branch prediction hit costs.  Default
1955 19 jeremybenn
     value 0.
1956
 
1957
`missdelay = VALUE'
1958 82 jeremybenn
     Set the number of cycles a branch prediction miss costs.  Default
1959 19 jeremybenn
     value 0.
1960
 
1961
 
1962

1963
File: or1ksim.info,  Node: Debug Interface Configuration,  Prev: Branch Prediction Configuration,  Up: Core OpenRISC Configuration
1964
 
1965
3.3.8 Debug Interface Configuration
1966
-----------------------------------
1967
 
1968
The debug unit and debug interface configuration is described in
1969 82 jeremybenn
`section debug'.  This section may appear at most once.  The following
1970 19 jeremybenn
parameters may be specified.
1971
 
1972
`enabled = 0|1'
1973 82 jeremybenn
     If 1 (true), the debug unit is enabled.  If 0 (the default), it is
1974 19 jeremybenn
     disabled.
1975
 
1976
          Note: This enables the functionality of the debug unit (its
1977 82 jeremybenn
          registers etc) within the mode.  It does not provide any
1978
          external interface to the debug unit.  For that, see
1979 235 jeremybenn
          `rsp_enabled' below.
1980 19 jeremybenn
 
1981
`rsp_enabled = 0|1'
1982
     If 1 (true), the GDB "Remote Serial Protocol" server is started,
1983
     provding an interface to an external GNU debugger, using the port
1984
     specified in the `rsp_port' field (see below), or the
1985 82 jeremybenn
     `or1ksim-rsp' TCP/IP service.  If 0 (the default), the server is
1986 19 jeremybenn
     not started, and no external interface is provided.
1987
 
1988
     For more detailed information on the interface to the GNU Debugger
1989
     see Embecosm Application Note 2, `Howto: Porting the GNU Debugger
1990
     Practical Experience with the OpenRISC 1000 Architecture', by
1991
     Jeremy Bennett, published by Embecosm Limited (`www.embecosm.com').
1992
 
1993
`rsp_port = VALUE'
1994
     VALUE specifies the port to be used for the GDB "Remote Serial
1995 82 jeremybenn
     Protocol" interface to the GNU Debugger (GDB).  Default value
1996
     51000.  If the value 0 is specified, Or1ksim will instead look for
1997 19 jeremybenn
     a TCP/IP service named `or1ksim-rsp'.
1998
 
1999
          Tip: There is no registered port for Or1ksim "Remote Serial
2000 82 jeremybenn
          Protocol" service `or1ksim-rsp'.  Good practice suggests
2001
          users should adopt port values in the "Dynamic" or "Private"
2002
          port range, i.e.  49152-65535.
2003 19 jeremybenn
 
2004
`vapi_id = VALUE'
2005
     VALUE specifies the value of the Verification API (VAPI) base
2006 82 jeremybenn
     address to be used with the debug unit.  *Note Verification API:
2007 19 jeremybenn
     Verification API, for more details.
2008
 
2009
     If this is specified and VALUE is non-zero, all OpenRISC Remote
2010
     JTAG protocol transactions will be logged to the VAPI log file, if
2011 82 jeremybenn
     enabled.  This is the only functionality associated with VAPI for
2012
     the debug unit.  No VAPI commands are sent, nor requests handled.
2013 19 jeremybenn
 
2014
 
2015

2016
File: or1ksim.info,  Node: Peripheral Configuration,  Prev: Core OpenRISC Configuration,  Up: Configuration
2017
 
2018
3.4 Configuring Memory Mapped Peripherals
2019
=========================================
2020
 
2021 82 jeremybenn
All peripheral components are optional.  If they are specified, then
2022 19 jeremybenn
(unlike other components) by default they are enabled.
2023
 
2024
* Menu:
2025
 
2026
* Memory Controller Configuration::
2027
* UART Configuration::
2028
* DMA Configuration::
2029
* Ethernet Configuration::
2030
* GPIO Configuration::
2031
* Display Interface Configuration::
2032
* Frame Buffer Configuration::
2033
* Keyboard Configuration::
2034
* Disc Interface Configuration::
2035
* Generic Peripheral Configuration::
2036
 
2037

2038
File: or1ksim.info,  Node: Memory Controller Configuration,  Next: UART Configuration,  Up: Peripheral Configuration
2039
 
2040
3.4.1 Memory Controller Configuration
2041
-------------------------------------
2042
 
2043
The memory controller used in Or1ksim is the component implemented at
2044 98 jeremybenn
OpenCores, and found in the top level SVN directory, `mem_ctrl'.  It is
2045 19 jeremybenn
described in the document `Memory Controller IP Core' by Rudolf
2046 82 jeremybenn
Usselmann, which can be found in the `doc' subdirectory.  It is a
2047
memory mapped component, which resides on the main OpenRISC Wishbone
2048
data bus.
2049 19 jeremybenn
 
2050 82 jeremybenn
The memory controller configuration is described in `section mc'.  This
2051 19 jeremybenn
section may appear multiple times, specifying multiple memory
2052 98 jeremybenn
controllers.
2053 19 jeremybenn
 
2054 385 jeremybenn
     Warning: There are known to be problems with the current memory
2055
     controller, which currently is not included in the regression test
2056
     suite. Users are advised not to use the memory controller in the
2057
     current release.
2058 98 jeremybenn
 
2059 385 jeremybenn
     Caution: There is no initialization code in the standard "newlib"
2060
     library.
2061
 
2062
     The standard "uClibc" library assumes a memory controller mapped
2063
     at 0x93000000 and will initialize the memory controller to expect
2064
     64MB memory blocks, and any memory declarations _must_ reflect
2065
     this.
2066
 
2067 98 jeremybenn
     If smaller memory blocks are declared with a memory controller,
2068
     then sufficient memory will not be allocated by Or1ksim, but out of
2069 346 jeremybenn
     range memory accesses will not be trapped.  For example declaring a
2070 98 jeremybenn
     memory section from 0-4MB with a memory controller enabled would
2071
     mean that accesses between 4MB and 64MB would be permitted, but
2072
     having no allocated memory would likely cause a segmentation fault.
2073
 
2074
     If the user is determined to use smaller memories with the memory
2075
     controller, then custom initialization code must be provided, to
2076
     ensure the memory controller traps out-of-memory accesses.
2077
 
2078
The following parameters may be specified.
2079
 
2080 19 jeremybenn
`enabled = 0|1'
2081 82 jeremybenn
     If 1 (true, the default), this memory controller is enabled.  If
2082
     0, it is disabled.
2083 19 jeremybenn
 
2084
          Note: The memory controller can effectively also be disabled
2085
          by setting an appropriate power on control register value
2086 82 jeremybenn
          (see below).  However this should only be used if it is
2087 19 jeremybenn
          desired to specifically model this behavior of the memory
2088
          controller, not as a way of disabling the memory controller
2089
          in general.
2090
 
2091
`baseaddr = VALUE'
2092
     Set the base address of the memory controller's memory mapped
2093 82 jeremybenn
     registers to VALUE.  The default is 0, which is probably not a
2094 19 jeremybenn
     sensible value.
2095
 
2096
     The memory controller has a 7 bit address bus, with a total of 19
2097
     32-bit registers, at addresses 0x00 through 0x4c (address 0x0c and
2098
     addresses 0x50 through 0x7c are not used).
2099
 
2100
`poc = VALUE'
2101
     Specifies the value of the power on control register, The least
2102
     signficant two bits specify the bus width (use 0 for an 8-bit bus,
2103
     1 for a 16-bit bus and 2 for a 32-bit bus) and the next two bits
2104
     the type of memory connected (use 0 for a disabled interface, 1
2105
     for SSRAM, 2 for asyncrhonous devices and 3 for synchronous
2106
     devices).
2107
 
2108
     If other bits are specified, they are ignored with a warning.
2109
 
2110
          Caution: The default value, 0, corresponds to a disabled
2111
          8-bit bus, and is likely not the most suitable value
2112
 
2113
`index = VALUE'
2114
     Specify the index of this memory controller amongst all the memory
2115 82 jeremybenn
     controllers.  This value should be unique for each memory
2116 19 jeremybenn
     controller, and is used to associate specific memories with the
2117
     controller, through the `mc' field in the `section memory'
2118
     configuration (*note Memory Configuration: Memory Configuration.).
2119
 
2120
     The default value, 0, is suitable when there is only one memory
2121
     controller.
2122
 
2123
 
2124

2125
File: or1ksim.info,  Node: UART Configuration,  Next: DMA Configuration,  Prev: Memory Controller Configuration,  Up: Peripheral Configuration
2126
 
2127
3.4.2 UART Configuration
2128
------------------------
2129
 
2130
The UART implemented in Or1ksim follows the specification of the
2131 82 jeremybenn
National Semiconductor 16450 and 16550 parts.  It is a memory mapped
2132 19 jeremybenn
component, which resides on the main OpenRISC Wishbone data bus.
2133
 
2134
The component provides a number of interfaces to emulate the behavior
2135
of an external terminal connected to the UART.
2136
 
2137 82 jeremybenn
UART configuration is described in `section uart'.  This section may
2138
appear multiple times, specifying multiple UARTs.  The following
2139 19 jeremybenn
parameters may be specified.
2140
 
2141
`enabled = 0|1'
2142 82 jeremybenn
     If 1 (true, the default), this UART is enabled.  If 0, it is
2143 19 jeremybenn
     disabled.
2144
 
2145
`baseaddr = VALUE'
2146
     Set the base address of the UART's memory mapped registers to
2147 82 jeremybenn
     VALUE.  The default is 0, which is probably not a sensible value.
2148 19 jeremybenn
 
2149
     The UART has a 3 bit address bus, with a total of 8 8-bit
2150
     registers, at addresses 0x0 through 0x7.
2151
 
2152
`channel = "TYPE:ARGS"'
2153
     Specify the channel representing the terminal connected to the UART
2154
     Rx & Tx pins.
2155
 
2156
    `channel="file:`rxfile',`txfile'"'
2157
          Read input characters from the file `rxfile' and write output
2158
          characters to the file `txfile' (which will be created if
2159
          required).
2160
 
2161
    `channel="xterm:ARGS"'
2162
          Create an xterm on startup, write UART Tx traffic to the
2163
          xterm and take Rx traffic from the keyboard when the xterm
2164 82 jeremybenn
          window is selected.  Additional arguments to the xterm
2165
          command (for example specifying window size may be specified
2166
          in ARGS, or this may be left blank.
2167 19 jeremybenn
 
2168
    `channel="tcp:VALUE"'
2169
          Open the TCP/IP port specified by VALUE and read and write
2170
          UART traffic from and to it.
2171
 
2172
          Typically a telnet session is connected to the other end of
2173
          this port.
2174
 
2175
               Tip: There is no registered port for Or1ksim telnet UART
2176 82 jeremybenn
               connection.  Priviledged access is required to read
2177 19 jeremybenn
               traffic on the registered "well-known" telnet port (23).
2178 346 jeremybenn
               Instead users should use port values in the "Dynamic" or
2179
               "Private" port range, i.e.  49152-65535.
2180 19 jeremybenn
 
2181
    `channel="fd:`rxfd',`txfd'"'
2182
          Read and write characters from and to the existing open
2183
          numerical file descriptors, file `rxfd' and `txfd'.
2184
 
2185
    `channel="tty:device=/dev/ttyS0,baud=9600"'
2186
          Read and write characters from and to a physical serial port.
2187 346 jeremybenn
          The precise device (shown here as `/dev/ttyS0') may vary from
2188
          machine to machine.
2189 19 jeremybenn
 
2190
 
2191
     The default value for this field is `"xterm:"'.
2192
 
2193
`irq = VALUE'
2194 82 jeremybenn
     Use VALUE as the IRQ number of this UART.  Default value 0.
2195 19 jeremybenn
 
2196
`16550 = 0|1'
2197 82 jeremybenn
     If 1 (true), the UART has the functionality of a 16550.  If 0 (the
2198
     default), it has the functionality of a 16450.  The principal
2199 19 jeremybenn
     difference is that the 16550 can buffer multiple characters.
2200
 
2201
`jitter = VALUE'
2202
     Set the jitter, modeled as a time to block, to VALUE milliseconds.
2203 82 jeremybenn
     Set to -1 to disable jitter modeling.  Default value 0.
2204 19 jeremybenn
 
2205
          Note: This functionality has yet to be implemented, so this
2206
          parameter has no effect.
2207
 
2208
`vapi_id = VALUE'
2209
     VALUE specifies the value of the Verification API (VAPI) base
2210 82 jeremybenn
     address to be used with the UART.  *Note Verification API:
2211 19 jeremybenn
     Verification API, for more details, which details the use of the
2212
     VAPI with the UART.
2213
 
2214
 
2215

2216
File: or1ksim.info,  Node: DMA Configuration,  Next: Ethernet Configuration,  Prev: UART Configuration,  Up: Peripheral Configuration
2217
 
2218
3.4.3 DMA Configuration
2219
-----------------------
2220
 
2221
The DMA controller used in Or1ksim is the component implemented at
2222 98 jeremybenn
OpenCores, and found in the top level SVN directory, `wb_dma'.  It is
2223 19 jeremybenn
described in the document `Wishbone DMA/Bridge IP Core' by Rudolf
2224 82 jeremybenn
Usselmann, which can be found in the `doc' subdirectory.  It is a
2225
memory mapped component, which resides on the main OpenRISC Wishbone
2226
data bus.  The present implementation is incomplete, intended only to
2227
support the Ethernet interface (*note Ethernet Configuration::),
2228
although the Ethernet interface is not yet completed.
2229 19 jeremybenn
 
2230 82 jeremybenn
DMA configuration is described in `section dma'.  This section may
2231
appear multiple times, specifying multiple DMA controllers.  The
2232 19 jeremybenn
following parameters may be specified.
2233
 
2234
`enabled = 0|1'
2235 82 jeremybenn
     If 1 (true, the default), this DMA controller is enabled.  If 0,
2236
     it is disabled.
2237 19 jeremybenn
 
2238
`baseaddr = VALUE'
2239
     Set the base address of the DMA's memory mapped registers to
2240 82 jeremybenn
     VALUE.  The default is 0, which is probably not a sensible value.
2241 19 jeremybenn
 
2242
     The DMA controller has a 10 bit address bus, with a total of 253
2243 82 jeremybenn
     32-bit registers.  The first 5 registers at addresses 0x000 through
2244
     0x010 control the overall behavior of the DMA controller.  There
2245
     are then 31 blocks of 8 registers, controlling each of the 31 DMA
2246
     channels available.  Addresses 0x014 through 0x01c are not used.
2247 19 jeremybenn
 
2248
`irq = VALUE'
2249 82 jeremybenn
     Use VALUE as the IRQ number of this DMA controller.  Default value
2250 19 jeremybenn
     0.
2251
 
2252
`vapi_id = VALUE'
2253
     VALUE specifies the value of the Verification API (VAPI) base
2254 82 jeremybenn
     address to be used with the DMA controller.  *Note Verification
2255 19 jeremybenn
     API: Verification API, for more details, which details the use of
2256
     the VAPI with the DMA controller.
2257
 
2258
 
2259

2260
File: or1ksim.info,  Node: Ethernet Configuration,  Next: GPIO Configuration,  Prev: DMA Configuration,  Up: Peripheral Configuration
2261
 
2262
3.4.4 Ethernet Configuration
2263
----------------------------
2264
 
2265 82 jeremybenn
Ethernet configuration is described in `section ethernet'.  This
2266
section may appear multiple times, specifying multiple Ethernet
2267
interfaces.  The following parameters may be specified.
2268 19 jeremybenn
 
2269 440 jeremybenn
The Ethernet MAC used in Or1ksim corresponds to the Verilog
2270
implementation in project "ethmac". It's source code can be found in
2271
the top level SVN directory, `ethmac'.  It also forms part of the
2272
OpenRISC reference SoC, ORPSoC.  It is described in the document
2273
`Ethernet IP Core Specification' by Igor Mohor, which can be found in
2274
the `doc' subdirectory.  It is a memory mapped component, which resides
2275
on the main OpenRISC Wishbone data bus.
2276
 
2277 19 jeremybenn
`enabled = 0|1'
2278 82 jeremybenn
     If 1 (true, the default), this Ethernet MAC is enabled.  If 0, it
2279
     is disabled.
2280 19 jeremybenn
 
2281
`baseaddr = VALUE'
2282
     Set the base address of the MAC's memory mapped registers to
2283 82 jeremybenn
     VALUE.  The default is 0, which is probably not a sensible value.
2284 19 jeremybenn
 
2285
     The Ethernet MAC has a 7-bit address bus, with a total of 21
2286 82 jeremybenn
     32-bit registers.  Addresses 0x54 through 0x7c are not used.
2287 19 jeremybenn
 
2288
          Note: The Ethernet specification describes a Tx control
2289 82 jeremybenn
          register, `TXCTRL', at address 0x50.  However this register
2290
          is not implemented in the Or1ksim model.
2291 19 jeremybenn
 
2292
`dma = VALUE'
2293
     VALUE specifies the DMA controller with which this Ethernet is
2294 82 jeremybenn
     associated.  The default value is 0.
2295 19 jeremybenn
 
2296
          Note: Support for external DMA is not provided in the current
2297 82 jeremybenn
          implementation, and this value is ignored.  In any case there
2298 19 jeremybenn
          is no equivalent field to which this can be matched in the
2299
          current DMA component implementation (*note DMA
2300
          Configuration: DMA Configuration.).
2301
 
2302
`irq = VALUE'
2303 82 jeremybenn
     Use VALUE as the IRQ number of this Ethernet MAC.  Default value 0.
2304 19 jeremybenn
 
2305 440 jeremybenn
`rtx_type = "file"|"tap"'
2306
     Specifies whether to use a TUN/TAP interface or file interface
2307
     (the default) to model the external connection of the Ethernet.
2308 19 jeremybenn
 
2309 440 jeremybenn
     If a TUN/TAP interface is requested, Ethernet packets will be sent
2310
     and received through the pesistent TAP interface specified in
2311
     parameter `tap_dev' (see below).
2312 19 jeremybenn
 
2313 440 jeremybenn
     More details on configuring the TUN/TAP interface are given in the
2314
     Usage section (*note Ethernet TUN/TAP Interface: Ethernet TUN/TAP
2315
     Interface.).
2316 19 jeremybenn
 
2317 440 jeremybenn
     If a file interface (the default), is requested, the Ethernet will
2318
     be modelled by reading and writing from and to the files specified
2319
     in the `rxfile' and `txfile' parameters (see below).
2320
 
2321
          Caution: If a file interface is specified, Or1ksim will
2322
          terminate once the receive file specified by `rxfile' is
2323
          exhausted.
2324
 
2325 19 jeremybenn
`rx_channel = RXVALUE'
2326
`tx_channel = TXVALUE'
2327
     RXVALUE specifies the DMA channel to use for receive and TXVALUE
2328 82 jeremybenn
     the DMA channel to use for transmit.  Both default to 0.
2329 19 jeremybenn
 
2330
          Note: As noted above, support for external DMA is not
2331
          provided in the current implementation, and so these values
2332
          are ignored.
2333
 
2334
`rxfile = "RXFILE"'
2335
`txfile = "TXFILE"'
2336
     When `rtx_type' is 0 (see above), RXFILE specifies the file to use
2337
     as input and TXFILE specifies the fie to use as output.
2338
 
2339 82 jeremybenn
     The file contains a sequence of packets.  Each packet consists of a
2340
     packet length (32 bits), followed by that many bytes of data.
2341
     Once the input file is empty, the Ethernet MAC behaves as though
2342
     there were no data on the Ethernet.  The default values of these
2343 19 jeremybenn
     parameters are `"eth_rx"' and `"eth_tx"' respectively.
2344
 
2345 82 jeremybenn
     The input file must exist and be readable.  The output file must be
2346
     writable and will be created if necessary.  If either of these
2347 19 jeremybenn
     conditions is not met, a warning will be given.
2348
 
2349 440 jeremybenn
          Caution: Or1ksim will terminate once the RXFILE is exhausted.
2350 19 jeremybenn
 
2351 440 jeremybenn
`tap_dev = "TAP"'
2352
     When `rtx_type' is `"tap"' (see above), TAP_DEV specifies the TAP
2353
     device to use for communication.  This should be a persistent TAP
2354
     device configured for the system (*note Ethernet TUN/TAP
2355
     Interface: Ethernet TUN/TAP Interface.)
2356
 
2357 451 jeremybenn
`phy_addr = VALUE'
2358
     VALUE specifies the address for emulated ethernet PHY (default 0).
2359
     If there are multiple Ethernet peripherals, they should each have a
2360
     different PHY value.
2361
 
2362
`dummy_crc = 0|1'
2363
     If 1 (true, the default), the length of the data transferred to
2364
     the core will be increased by 4 bytes, as though the CRC were
2365
     included.
2366
 
2367
          Note: This is for historical consistency with the OpenRISC
2368
          Ethernet hardware MAC, which passes on the CRC in the data
2369
          packet. This is unusual behavior for a MAC, but the OpenRISC
2370
          Linux device drivers have been written to expect it.
2371
 
2372
`phy_addr = VALUE'
2373
     VALUE specifies the address for emulated ethernet PHY (default 0).
2374
     If there are multiple Ethernet peripherals, they should each have a
2375
     different PHY value.
2376
 
2377 19 jeremybenn
`vapi_id = VALUE'
2378
     VALUE specifies the value of the Verification API (VAPI) base
2379 82 jeremybenn
     address to be used with the Ethernet PHY.  *Note Verification API:
2380 19 jeremybenn
     Verification API, for more details, which details the use of the
2381
     VAPI with the DMA controller.
2382
 
2383
 
2384

2385
File: or1ksim.info,  Node: GPIO Configuration,  Next: Display Interface Configuration,  Prev: Ethernet Configuration,  Up: Peripheral Configuration
2386
 
2387
3.4.5 GPIO Configuration
2388
------------------------
2389
 
2390
The GPIO used in Or1ksim is the component implemented at OpenCores, and
2391 98 jeremybenn
found in the top level SVN directory, `gpio'.  It is described in the
2392 19 jeremybenn
document `GPIO IP Core Specification' by Damjan Lampret and Goran
2393 82 jeremybenn
Djakovic, which can be found in the `doc' subdirectory.  It is a memory
2394 19 jeremybenn
mapped component, which resides on the main OpenRISC Wishbone data bus.
2395
 
2396 82 jeremybenn
GPIO configuration is described in `section gpio'.  This section may
2397
appear multiple times, specifying multiple GPIO devices.  The following
2398 19 jeremybenn
parameters may be specified.
2399
 
2400
`enabled = 0|1'
2401 82 jeremybenn
     If 1 (true, the default), this GPIO is enabled.  If 0, it is
2402 19 jeremybenn
     disabled.
2403
 
2404
`baseaddr = VALUE'
2405
     Set the base address of the GPIO's memory mapped registers to
2406 82 jeremybenn
     VALUE.  The default is 0, which is probably not a sensible value.
2407 19 jeremybenn
 
2408
     The GPIO has a 6 bit address bus, with a total of 10 32-bit
2409
     registers, although the number of bits that are actively used
2410 82 jeremybenn
     varies.  Addresses 0x28 through 0x3c are not used.
2411 19 jeremybenn
 
2412
`irq = VALUE'
2413 82 jeremybenn
     Use VALUE as the IRQ number of this GPIO.  Default value 0.
2414 19 jeremybenn
 
2415
`vapi_id = VALUE'
2416
     VALUE specifies the value of the Verification API (VAPI) base
2417 82 jeremybenn
     address to be used with the GPIO.  *Note Verification API:
2418 19 jeremybenn
     Verification API, for more details, which details the use of the
2419 82 jeremybenn
     VAPI with the GPIO controller.  For backwards compatibility, the
2420 19 jeremybenn
     alternative name `base_vapi_id' is supported for this parameter,
2421
     but deprecated.
2422
 
2423
 
2424

2425
File: or1ksim.info,  Node: Display Interface Configuration,  Next: Frame Buffer Configuration,  Prev: GPIO Configuration,  Up: Peripheral Configuration
2426
 
2427
3.4.6 Display Interface Configuration
2428
-------------------------------------
2429
 
2430
Or1ksim models a VGA interface to an external monitor.  The VGA
2431
controller used in Or1ksim is the component implemented at OpenCores,
2432 98 jeremybenn
and found in the top level SVN directory, `vga_lcd', with no support
2433 82 jeremybenn
for the optional hardware cursors.  It is described in the document
2434 19 jeremybenn
`VGA/LCD Core v2.0 Specifications' by Richard Herveille, which can be
2435 82 jeremybenn
found in the `doc' subdirectory.  It is a memory mapped component,
2436
which resides on the main OpenRISC Wishbone data bus.
2437 19 jeremybenn
 
2438
The current implementation provides only functionality to dump the
2439
screen to a file at intervals.
2440
 
2441 82 jeremybenn
VGA controller configuration is described in `section vga'.  This
2442 19 jeremybenn
section may appear multiple times, specifying multiple VGA controllers.
2443
The following parameters may be specified.
2444
 
2445
`enabled = 0|1'
2446 82 jeremybenn
     If 1 (true, the default), this VGA is enabled.  If 0, it is
2447 19 jeremybenn
     disabled.
2448
 
2449
`baseaddr = VALUE'
2450
     Set the base address of the VGA controller's memory mapped
2451 82 jeremybenn
     registers to VALUE.  The default is 0, which is probably not a
2452 19 jeremybenn
     sensible value.
2453
 
2454
     The VGA controller has a 12-bit address bus, with 7 32-bit
2455
     registers, at addresses 0x000 through 0x018, and two color lookup
2456 82 jeremybenn
     tables at addresses 0x800 through 0xfff.  The hardware cursor
2457 19 jeremybenn
     registers are not implemented, so addresses 0x01c through 0x7fc
2458
     are not used.
2459
 
2460
`irq = VALUE'
2461 82 jeremybenn
     Use VALUE as the IRQ number of this VGA controller.  Default value
2462 19 jeremybenn
     0.
2463
 
2464
`refresh_rate = VALUE'
2465 82 jeremybenn
     VALUE specifies number of cycles between screen dumps.  Default
2466 19 jeremybenn
     value is derived from the simulation clock cycle time (*note
2467
     Simulator Behavior: Simulator Behavior.), to correspond to dumping
2468
     50 times per simulated second.
2469
 
2470
`txfile = "FILE"'
2471
     FILE specifies the base of the filename for screen dumps.
2472
     Successive screen dumps will be in BMP format, in files with the
2473
     name `FILENNNN.bmp', where NNNN is a sequential count of the
2474 82 jeremybenn
     screen dumps starting at zero.  The default value is `"vga_out"'.
2475 19 jeremybenn
     For backwards compatibility, the alternative name `filename' is
2476
     supported for this parameter, but deprecated.
2477
 
2478
 
2479

2480
File: or1ksim.info,  Node: Frame Buffer Configuration,  Next: Keyboard Configuration,  Prev: Display Interface Configuration,  Up: Peripheral Configuration
2481
 
2482
3.4.7 Frame Buffer Configuration
2483
--------------------------------
2484
 
2485 82 jeremybenn
     Caution: The frame buffer is only partially implemented.  Its
2486 19 jeremybenn
     configuration fields are described here, but the component should
2487 82 jeremybenn
     not be used at this time.  Like the VGA controller, it is designed
2488 19 jeremybenn
     to make screen dumps to file.
2489
 
2490 82 jeremybenn
Frame buffer configuration is described in `section fb'.  This section
2491
may appear multiple times, specifying multiple frame buffers.  The
2492 19 jeremybenn
following parameters may be specified.
2493
 
2494
`enabled = 0|1'
2495 82 jeremybenn
     If 1 (true, the default), this frame buffer is enabled.  If 0, it
2496 19 jeremybenn
     is disabled.
2497
 
2498
`baseaddr = VALUE'
2499
     Set the base address of the frame buffer's memory mapped registers
2500 82 jeremybenn
     to VALUE.  The default is 0, which is probably not a sensible
2501
     value.
2502 19 jeremybenn
 
2503
     The frame buffer has an 121-bit address bus, with 4 32-bit
2504
     registers, at addresses 0x000 through 0x00c, and a PAL lookup
2505 82 jeremybenn
     table at addresses 0x400 through 0x4ff.  Addresses 0x010 through
2506 19 jeremybenn
     0x3fc and addresses 0x500 through 0x7ff are not used.
2507
 
2508
`refresh_rate = VALUE'
2509 82 jeremybenn
     VALUE specifies number of cycles between screen dumps.  Default
2510 19 jeremybenn
     value is derived from the simulation clock cycle time (*note
2511
     Simulator Behavior: Simulator Behavior.), to correspond to dumping
2512
     50 times per simulated second.
2513
 
2514
`txfile = "FILE"'
2515
     FILE specifies the base of the filename for screen dumps.
2516
     Successive screen dumps will be in BMP format, in files with the
2517
     name `FILENNNN.bmp', where NNNN is a sequential count of the
2518 82 jeremybenn
     screen dumps starting at zero.  The default value is `"fb_out"'.
2519 19 jeremybenn
     For backwards compatibility, the alternative name `filename' is
2520
     supported for this parameter, but deprecated.
2521
 
2522
 
2523

2524
File: or1ksim.info,  Node: Keyboard Configuration,  Next: Disc Interface Configuration,  Prev: Frame Buffer Configuration,  Up: Peripheral Configuration
2525
 
2526
3.4.8 Keyboard Configuration (PS2)
2527
----------------------------------
2528
 
2529 82 jeremybenn
The PS2 interface provided by Or1ksim is not documented.  It may be
2530 98 jeremybenn
based on the PS2 project at OpenCores, and found in the top level SVN
2531 82 jeremybenn
directory, `ps2'.  However this project lacks any documentation beyond
2532
its project webpage.  Since most PS2 interfaces follow the Intel i8042
2533 19 jeremybenn
standard, this is presumably what is expected with this device.
2534
 
2535
The implementation only provides for keyboard support, which is
2536 82 jeremybenn
modelled as a file of keystrokes.  There is no mouse support.
2537 19 jeremybenn
 
2538
     Caution: A standard i8042 device has two registers at addresses
2539 82 jeremybenn
     0x60 (command) and 0x64 (status).  Inspection of the code,
2540
     suggests that the Or1ksim component places these registers at
2541
     addresses 0x00 and 0x04.
2542 19 jeremybenn
 
2543
     The port of Linux for the OpenRISC 1000, which runs on Or1ksim
2544
     implements the i8042 device driver, anticipating these registers
2545 82 jeremybenn
     reside at their conventional address.  It seems unlikel that this
2546 19 jeremybenn
     code will work.
2547
 
2548
     This component should be used with caution.
2549
 
2550 82 jeremybenn
Keyboard configuration is described in `section kbd'.  This section may
2551
appear multiple times, specifying multiple keyboard interfaces.  The
2552 19 jeremybenn
following parameters may be specified.
2553
 
2554
`enabled = 0|1'
2555 82 jeremybenn
     If 1 (true, the default), this keyboard is enabled.  If 0, it is
2556 19 jeremybenn
     disabled.
2557
 
2558
`baseaddr = VALUE'
2559
     Set the base address of the keyboard's memory mapped registers to
2560 82 jeremybenn
     VALUE.  The default is 0, which is probably not a sensible value.
2561 19 jeremybenn
 
2562
     The keyboard PS/2 interface has an 3-bit address bus, with 2 8-bit
2563
     registers, at addresses 0x000 and 0x004.
2564
 
2565
          Caution: As noted above, a standard Intel 8042 interface
2566
          would expect to find these registers at locations 0x60 and
2567
          0x64, thus requiring at least a 7-bit bus.
2568
 
2569
`irq = VALUE'
2570 82 jeremybenn
     Use VALUE as the IRQ number of this Keyboard interface.  Default
2571 19 jeremybenn
     value 0.
2572
 
2573
`rxfile = "FILE"'
2574
     `file' specifies a file containing raw key stroke data, which
2575 82 jeremybenn
     models the input from a physical keyboard.  The default value is
2576 19 jeremybenn
     `"kbd_in"'.
2577
 
2578
 
2579

2580
File: or1ksim.info,  Node: Disc Interface Configuration,  Next: Generic Peripheral Configuration,  Prev: Keyboard Configuration,  Up: Peripheral Configuration
2581
 
2582
3.4.9 Disc Interface Configuration
2583
----------------------------------
2584
 
2585
The ATA/ATAPI disc controller used in Or1ksim is the OCIDEC (OpenCores
2586
IDE Controller) component implemented at OpenCores, and found in the
2587 98 jeremybenn
top level SVN directory, `ata'.  It is described in the document
2588 19 jeremybenn
`ATA/ATAPI-5 Core Specification' by Richard Herveille, which can be
2589 82 jeremybenn
found in the `doc' subdirectory.  It is a memory mapped component,
2590
which resides on the main OpenRISC Wishbone data bus.
2591 19 jeremybenn
 
2592 385 jeremybenn
     Warning: In the current release of Or1ksim, parsing of the ATA
2593
     section is broken. Users should not configure the disc interface
2594
     in this release.
2595
 
2596 82 jeremybenn
ATA/ATAPI configuration is described in `section ata'.  This section
2597
may appear multiple times, specifying multiple disc controllers.  The
2598 19 jeremybenn
following parameters may be specified.
2599
 
2600
`enabled = 0|1'
2601 82 jeremybenn
     If 1 (true, the default), this ATA/ATAPI interface is enabled.  If
2602 19 jeremybenn
     0, it is disabled.
2603
 
2604
`baseaddr = VALUE'
2605
     Set the base address of the ATA/ATAPI interface's memory mapped
2606 82 jeremybenn
     registers to VALUE.  The default is 0, which is probably not a
2607 19 jeremybenn
     sensible value.
2608
 
2609
     The ATA/ATAPI PS/2 interface has an 5-bit address bus, with 8
2610 82 jeremybenn
     32-bit registers.  Depending on the version of the OCIDEC
2611
     ATA/ATAPI interface selected (see `dev_id' below), not all
2612
     registers will be available.
2613 19 jeremybenn
 
2614
`irq = VALUE'
2615 82 jeremybenn
     Use VALUE as the IRQ number of this ATA/ATAPI interface.  Default
2616 19 jeremybenn
     value 0.
2617
 
2618
`dev_id = 1|2|3'
2619
     This parameter specifies which version of the OCIDEC ATA/ATAPI
2620 82 jeremybenn
     interface to model.  The default value is 1.
2621 19 jeremybenn
 
2622
     Version 1 supports only the `CTRL', `STAT' and `PCTR' registers.
2623
     Versions 2 & 3 add the `FCTR' registers, Version 3 adds the `DTR'
2624
     registers and the `RXD'/`TXD' registers.
2625
 
2626
`rev = VALUE'
2627
     Set the VALUE as the revision of the OCIDEC ATA/ATAPI interface.
2628 82 jeremybenn
     The default value is 1.  The default value is 0.  Its value should
2629
     be in the range 0-15.  Larger values are truncated with a warning.
2630 346 jeremybenn
     This only affects the reset value of the `STAT' register, where it
2631
     forms bits 24-27.
2632 19 jeremybenn
 
2633
`pio_mode0_t1 = VALUE'
2634
`pio_mode0_t2 = VALUE'
2635
`pio_mode0_t4 = VALUE'
2636
`pio_mode0_teoc = VALUE'
2637
     These parameters specify the timings for use with Programmed
2638 82 jeremybenn
     Input/Output (PIO) transfers.  They are specified as the number of
2639 19 jeremybenn
     clock cycles - 2, rounded up to the next highest integer, or zero
2640 82 jeremybenn
     if that would be negative.  The values should not exceed 255.  If
2641 19 jeremybenn
     they do, they will be ignored with a warning.
2642
 
2643
     See the ATA/ATAPI-5 specification for explanations of each of these
2644 82 jeremybenn
     timing parameters.  The default values are:
2645 19 jeremybenn
 
2646
          pio_mode0_t1   =  6
2647
          pio_mode0_t2   = 28
2648
          pio_mode0_t4   =  2
2649
          pio_mode0_teoc = 23
2650
 
2651
`dma_mode0_tm = VALUE'
2652
`dma_mode0_td = VALUE'
2653
`dma_mode0_teoc = VALUE'
2654
     These parameters specify the timings for use with DMA transfers.
2655
     They are specified as the number of clock cycles - 2, rounded up
2656
     to the next highest integer, or zero if that would be negative.
2657 82 jeremybenn
     The values should not exceed 255.  If they do, they will be
2658
     ignored with a warning.
2659 19 jeremybenn
 
2660
     See the ATA/ATAPI-5 specification for explanations of each of these
2661 82 jeremybenn
     timing parameters.  The default values are:
2662 19 jeremybenn
 
2663
          dma_mode0_tm   =  4
2664
          dma_mode0_td   = 21
2665
          dma_mode0_teoc = 21
2666
 
2667
 
2668
3.4.9.1 ATA/ATAPI Device Configuration
2669
......................................
2670
 
2671 82 jeremybenn
Within the `section ata', each device is specified separately.  The
2672 19 jeremybenn
device subsection is introduced by
2673
 
2674
     device VALUE
2675
 
2676 82 jeremybenn
VALUE is the device number, which should be 0 or 1.  The subsection
2677
ends with `enddevice'.  Note that if the same device number is
2678
specified more than once, the previous values will be overwritten.
2679
Within the `device' subsection, the following parameters may appear:
2680 19 jeremybenn
 
2681
`type = VALUE'
2682
     VALUEspecifies the type of device: 0 (the default) for "not
2683
     connected", 1 for hard disk simulated in a file and 2 for local
2684
     system hard disk.
2685
 
2686
`file = "FILENAME"'
2687
     `filename' specifies the file to be used for a simulated ATA
2688 82 jeremybenn
     device if the file type (see `type' above) is 1.  Default value
2689 346 jeremybenn
     `"ata_fileN"', where N is the device number.
2690 19 jeremybenn
 
2691
`size = VALUE'
2692
     VALUE specifies the size of a simulated ATA device if the file
2693 82 jeremybenn
     type (see `type' above) is 1.  The default value is zero.
2694 19 jeremybenn
 
2695
`packet = 0|1'
2696 82 jeremybenn
     If 1 (true), implement the PACKET command feature set.  If 0 (the
2697 19 jeremybenn
     default), do not implement the PACKET command feature set.
2698
 
2699
`firmware = "STR"'
2700
     Firmware to report in response to the "Identify Device" command.
2701
     Default `"02207031"'.
2702
 
2703
`heads = VALUE'
2704 82 jeremybenn
     Number of heads in the device.  Default 7, use -1 to disable all
2705 19 jeremybenn
     heads.
2706
 
2707
`sectors = VALUE'
2708 82 jeremybenn
     Number of sectors per track in the device.  Default 32.
2709 19 jeremybenn
 
2710
`mwdma = 0|1|2|-1'
2711 82 jeremybenn
     Highest multi-word DMA mode supported.  Default 2, use -1 to
2712 19 jeremybenn
     disable.
2713
 
2714
`pio = 0|1|2|3|4'
2715 82 jeremybenn
     Highest PIO mode supported.  Default 4.
2716 19 jeremybenn
 
2717
 
2718

2719
File: or1ksim.info,  Node: Generic Peripheral Configuration,  Prev: Disc Interface Configuration,  Up: Peripheral Configuration
2720
 
2721
3.4.10 Generic Peripheral Configuration
2722
---------------------------------------
2723
 
2724
When used as a library (*note Simulator Library: Simulator Library.),
2725
Or1ksim makes provision for any additional peripheral to be implemented
2726 82 jeremybenn
externally.  Any read or write access to this peripheral's memory map
2727
generates "upcall"s to an external handler.  This interface can support
2728 19 jeremybenn
either C or C++, and was particularly designed to facilitate support
2729
for OSCI SystemC (see `http://www.systemc.org').
2730
 
2731
Generic peripheral configuration is described in `section generic'.
2732
This section may appear multiple times, specifying multiple external
2733 82 jeremybenn
peripherals.  The following parameters may be specified.
2734 19 jeremybenn
 
2735
`enabled = 0|1'
2736 82 jeremybenn
     If 1 (true, the default), this ATA/ATAPI interface is enabled.  If
2737 19 jeremybenn
     0, it is disabled.
2738
 
2739
`baseaddr = VALUE'
2740
     Set the base address of the generic peripheral's memory mapped
2741 82 jeremybenn
     registers to VALUE.  The default is 0, which is probably not a
2742 19 jeremybenn
     sensible value.
2743
 
2744
     The size of the memory mapped register space is controlled by the
2745
     `size' paramter, described below.
2746
 
2747
`size = VALUE'
2748
     Set the size of the generic peripheral's memory mapped register
2749 82 jeremybenn
     space to VALUE bytes.  Any read or write accesses to addresses with
2750 19 jeremybenn
     offsets of 0 to VALUE-1 bytes from the base address specified in
2751
     parameter `baseaddr' (see above) will be directed to the external
2752
     interface.
2753
 
2754 82 jeremybenn
     VALUE will be rounded up the nearest power of 2.  It's default
2755
     value is zero.  If VALUE is not an exact power of two, accesses to
2756 19 jeremybenn
     address offsets of VALUE or above up to the next power of 2 will
2757
     generate a warning, and have no effect (reads will return zero).
2758
 
2759
`name = "STR"'
2760 82 jeremybenn
     This gives the peripheral the name `"STR"'.  This is used to
2761 19 jeremybenn
     identify the peripheral in error messages and warnings, and when
2762 82 jeremybenn
     reporting its status.  The default value is
2763 19 jeremybenn
     `"anonymous external peripheral"'.
2764
 
2765
`byte_enabled = 0|1'
2766
`hw_enabled = 0|1'
2767
`word_enabled = 0|1'
2768
     If 1 (true, the default), these parameters respectively enable the
2769 82 jeremybenn
     device for byte wide, half-word wide and word wide accesses.  If 0,
2770 19 jeremybenn
     accesses of that width will fail.
2771
 
2772
 
2773

2774
File: or1ksim.info,  Node: Interactive Command Line,  Next: Verification API,  Prev: Configuration,  Up: Top
2775
 
2776
4 Interactive Command Line
2777
**************************
2778
 
2779
If started with the `-f' flag, or if interrupted with `ctrl-C', Or1ksim
2780 82 jeremybenn
provides the user with an interactive command line.  The commands
2781 19 jeremybenn
available, which may not be abbreviated, are:
2782
 
2783
`q'
2784
     Exit the simulator
2785
 
2786
`r'
2787 82 jeremybenn
     Display all the General Purpose Registers (GPRs).  Also shows the
2788 19 jeremybenn
     just executed and next to be executed instructions symbolically
2789
     and the state of the flag in the Supervision Register.
2790
 
2791
`t'
2792
     Execute the next instruction and then display register/instruction
2793
     information as with the `r' command (see above).
2794
 
2795
`run NUM [ hush ]'
2796 82 jeremybenn
     Execute NUM instructions.  The register/instruction information is
2797 19 jeremybenn
     displayed after each instruction, as with the `r' command (see
2798
     above) _unless_ `hush' is specified.
2799
 
2800
`pr REG VALUE'
2801
     Patch register REG with VALUE.
2802
 
2803
`dm FROMADDR [ TOADDR ]'
2804 82 jeremybenn
     Display memory bytes between FROMADDR and TOADDR.  If TOADDR is
2805
     not given, 64 bytes are displayed, starting at FROMADDR.
2806 19 jeremybenn
 
2807
          Caution: The output from this command is broken (a bug).
2808 82 jeremybenn
          Or1ksim attempts to print out 16 bytes per row.  However,
2809 19 jeremybenn
          instead of printing out the address at the start of each row,
2810
          it prints the address (of the first of the 16 bytes) before
2811
          _each_ byte.
2812
 
2813
`de FROMADDR [ TOADDR ]'
2814 82 jeremybenn
     Disassemble code between FROMADDR and TOADDR.  If TOADDR is not
2815 19 jeremybenn
     given, 16 instructions are disassembled.
2816
 
2817
     The disassembly is entirely numerical, and gives no symbolic
2818
     information.
2819
 
2820
`pm ADDR VALUE'
2821
     Patch the 4 bytes in memory starting at ADDR with the 32-bit VALUE.
2822
 
2823
`pc VALUE'
2824
     Patch the program counter with VALUE.
2825
 
2826
`cm FROMADDR TOADDR SIZE'
2827
     Copy SIZE bytes in memory from FROMADDR to TOADDR.
2828
 
2829
`break ADDR'
2830
     Toggle the breakpoint set at ADDR.
2831
 
2832
`breaks'
2833
     List all set breakpoints
2834
 
2835
`reset'
2836 82 jeremybenn
     Reset the simulator.  Includes modeling a reset of the processor,
2837
     so execution will restart from the reset vector location, 0x100.
2838 19 jeremybenn
 
2839
`hist'
2840
     If saving the execution history has been configured (*note
2841
     Simulator Behavior: Simulator Behavior.), display the execution
2842
     history.
2843
 
2844
`stall'
2845
     Stall the processor, so that control is passed to the debug unit.
2846 82 jeremybenn
     When stalled, the processor can execute no instructions.  This
2847 19 jeremybenn
     command is useful when debugging the JTAG interface, used by
2848
     debuggers such as GDB.
2849
 
2850
`unstall'
2851 82 jeremybenn
     Unstall the processor, so that normal execution can continue.
2852
     This command is useful when debugging the JTAG interface, used by
2853 19 jeremybenn
     debuggers such as GDB.
2854
 
2855
`stats CATEGORY | clear'
2856
     Print the statistics for the given CATEGORY, if available, or
2857 82 jeremybenn
     clear if `clear' is specified.  The categories are:
2858 19 jeremybenn
 
2859
    1
2860
          Miscellaneous statistics: branch predictions (if branch
2861
          predictions are enabled), branch target cache model (if
2862
          enabled), cache (if enbaled), MMU (if enabled) and number of
2863
          addtional load & store cycles.
2864
 
2865
          *Note Configuring the OpenRisc Achitectural Components: Core
2866
          OpenRISC Configuration, for details of how to enable these
2867
          various features.
2868
 
2869
    2
2870 82 jeremybenn
          Instruction usage statistics.  Requires hazard analysis to be
2871 19 jeremybenn
          enabled (*note CPU Configuration: CPU Configuration.).
2872
 
2873
    3
2874 82 jeremybenn
          Instruction dependency statistics.  Requires hazard analysis
2875 19 jeremybenn
          to be enabled (*note CPU Configuration: CPU Configuration.).
2876
 
2877
    4
2878 82 jeremybenn
          Functional unit dependency statistics.  Requires hazard
2879 19 jeremybenn
          analysis to be enabled (*note CPU Configuration: CPU
2880
          Configuration.).
2881
 
2882
    5
2883 82 jeremybenn
          Raw register usage over time.  Requires hazard analysis to be
2884 19 jeremybenn
          enabled (*note CPU Configuration: CPU Configuration.).
2885
 
2886
    6
2887 82 jeremybenn
          Store buffer statistics.  Requires the store buffer to be
2888 19 jeremybenn
          enabled (*note CPU Configuration: CPU Configuration.).
2889
 
2890
 
2891
`info'
2892
     Display detailed information about the simulator configuration.
2893
     This is quite a lengthy about, because all MMU TLB information is
2894
     displayed.
2895
 
2896
`dv FROMADDR [ TOADDR ] [ MODULE ]'
2897
     Dump the area of memory between FROMADDR and TOADDR as Verilog
2898 82 jeremybenn
     code for a synchronous, 23-bit wide SRAM module, named MODULE.  If
2899 19 jeremybenn
     TOADDR is not specified, then 64 bytes are dumped (as 16 32-bit
2900 82 jeremybenn
     words).  If MODULE is not specified, `or1k_mem' is used.
2901 19 jeremybenn
 
2902
     To save to a file, use the redirection function (described after
2903
     this table, below).
2904
 
2905
`dh FROMADDR [ TOADDR ]'
2906
     Dump the area of memory between FROMADDR and TOADDR as 32-bit hex
2907 82 jeremybenn
     numbers (no `0x', or `32'h' prefix).  If TOADDR is not specified,
2908 19 jeremybenn
     then 64 bytes are dumped (as 16 32-bit words).
2909
 
2910
     To save to a file, use the redirection function (described after
2911
     this table, below).
2912
 
2913
`setdbch'
2914 82 jeremybenn
     Toggle debug channels on/off.  *Note Standalone Simulator:
2915 19 jeremybenn
     Standalone Simulator, for a description of specifying debug
2916
     channels on the command line.
2917
 
2918
`set SECTION PARAM = VALUE'
2919
     Set the configuration parameter PARA in section SECTION to VALUE.
2920
     *Note Configuration: Configuration, for details of configuration
2921
     parameters and their settings.
2922
 
2923
`debug'
2924 82 jeremybenn
     Toggle the simulator debug mode.  *Note Debug Interface
2925 19 jeremybenn
     Configuration: Debug Interface Configuration, for information on
2926
     this parameter.
2927
 
2928
          Caution: This is effectively enabling or disabling the debug
2929 82 jeremybenn
          unit.  It does not effect the remote GDB debug interface.
2930 19 jeremybenn
          However using the remote debug interface while the debug unit
2931
          is disabled will lead to undefined behavior and likely crash
2932
          Or1ksim
2933
 
2934
`cuc'
2935
     Enter the the Custom Unit Compiler command prompt (*note CUC
2936
     Configuration: CUC Configuration.).
2937
 
2938
          Caution: The CUC must be properly configured, for this to
2939 82 jeremybenn
          succeed.  In particular a timing file must be available and
2940
          readable.  Otherwise Or1ksim will crash.
2941 19 jeremybenn
 
2942
`help'
2943
     Print out brief information about each command available.
2944
 
2945
`mprofile [-vh] [-m M] [-g N] [-f FILE] FROM TO'
2946 82 jeremybenn
     Run the memory profiling utility.  This follows the same usage as
2947 19 jeremybenn
     the standalone command (*note Memory Profiling Utility: Memory
2948
     Profiling Utility.).
2949
 
2950
`profile [-vhcq] [-g FILE]'
2951 82 jeremybenn
     Run the instruction profiling utility.  This follows the same
2952
     usage as the standalone command (*note Profiling Utility:
2953
     Profiling Utility.).
2954 19 jeremybenn
 
2955
 
2956
For all commands, it is possible to redirect the output to a file, by
2957
using the redirection operator, `>'.
2958
 
2959
     COMMAND > FILENAME
2960
 
2961
This is particularly useful for commands dumping a large amount of
2962
output, such as `dv'.
2963
 
2964
     Caution: Unfortunately there is a serious bug with the redirection
2965 82 jeremybenn
     operator.  It does not return output to standard output after the
2966
     command completes.  Until this bug is fixed, file redirection
2967 19 jeremybenn
     should not be used.
2968
 
2969

2970
File: or1ksim.info,  Node: Verification API,  Next: Code Internals,  Prev: Interactive Command Line,  Up: Top
2971
 
2972
5 Verification API (VAPI)
2973
*************************
2974
 
2975
The Verification API (VAPI) provides a TCP/IP interface to allow
2976 82 jeremybenn
components of the simulation to be controlled externally.  The
2977
interface is polled for new requests on each simulated clock cycle.
2978
Components within the simulator may send responses to such requests.
2979 19 jeremybenn
 
2980 82 jeremybenn
The inteface is an asynchronous duplex protocol.  On the request side
2981
it provides for simple commands, known as VAPI IDs (a 32 bit integer),
2982
with a single piece of data (also a 32 bit integer).  On the send side,
2983
it provides for sending a single VAPI ID and data.  However there is no
2984
explicit command-response structure.  Some components just accept
2985
requests (e.g.  to set values), some just generate sends (to report
2986 19 jeremybenn
values), and some do both.
2987
 
2988
Each component has a base ID (32 bit) and its commands will start from
2989 82 jeremybenn
that base ID.  This provides a simple partitioning of the command space
2990
amongst components.  Request commands will be directed to the component
2991 19 jeremybenn
with the closest base ID lower than the VAPI ID of the command.
2992
 
2993
Thus if there are two components with base IDs of 0x200 and 0x300, and
2994
a request with VAPI ID of 0x203 is received, it will be directed to the
2995
first component as its command #3.
2996
 
2997
The results of VAPI interactions are logged (by default in `vapi.log'
2998
unless an alternative is specified in `section vapi').
2999
 
3000
Currently the following components support VAPI:
3001
 
3002
Debug Unit
3003
     Although the Debug Unit can specify a base VAPI ID, it is not used
3004
     to send commands or receive requests.
3005
 
3006
     Instead, if the base VAPI ID is set, all remote JTAG protocol
3007
     exchanges are logged in the VAPI log file.
3008
 
3009
UART
3010
     If a base VAPI ID is specified, the UART sends details of any
3011
     chars or break characters sent, with dteails of the line control
3012
     register etc encoded in the data packet sent.
3013
 
3014
     This supports a single VAPI command request, but encodes a
3015
     sub-command in the top 8 bits of the associated data.
3016
 
3017
    `0x00'
3018
          This stuffs the least significant 8 bits of the data into the
3019
          serial register of the UART and the next 8 bits into the line
3020
          control register, effectively providing control of the next
3021
          character to be sent or received.
3022
 
3023
    `0x01'
3024
          The divisor latch bytes are set from the least significant 16
3025
          bits of the data.
3026
 
3027
    `0x02'
3028
          The line control register is set from bits 15-8 of the data.
3029
 
3030
    `0x03'
3031
          The UART skew is set from the least significant 16 bits of
3032
          the data
3033
 
3034
    `0x04'
3035
          If the 16th most significant bit of the data is 1, start
3036 82 jeremybenn
          sending breaks, otherwise stop sending breaks.  The breaks
3037
          are sent or cleared after the number of UART clock divider
3038
          ticks specified by the data (immediately if the data is zero).
3039 19 jeremybenn
 
3040
 
3041
DMA
3042
     Although the DMA unit supports a base VAPI ID in its configuration
3043
     (`section dma'), no VAPI data is sent, nor VAPI requests currently
3044
     implemented.
3045
 
3046
Ethernet
3047 82 jeremybenn
     The following requests are handled by the Ethernet.  Specified
3048 19 jeremybenn
     symbolically, these are the increments from the base VAPI ID of the
3049 82 jeremybenn
     Ethernet.  At present no implementation is provided behind these
3050 19 jeremybenn
     VAPI requests.
3051
 
3052
    `ETH_VAPI_DATA (0)'
3053
 
3054
    `ETH_VAPI_CTRL (0)'
3055
 
3056
GPIO
3057
     If a base VAPI ID is specified, the GPIO sends out on its base
3058
     VAPI ID (symbolically, GPIO_VAPI_DATA (0) offset from the base
3059
     VAPI ID) any changes in outputs.
3060
 
3061 82 jeremybenn
     The following requests are handled by the GPIO.  Specified
3062 19 jeremybenn
     symbolically, these are the increments from the VAPI base ID of the
3063
     GPIO.
3064
 
3065
    `GPIO_VAPI_DATA (0)'
3066
          Set the next input to the commands data field
3067
 
3068
    `GPIO_VAPI_AUX (1)'
3069
          Set the GPIO auxiliary inputs to the data field
3070
 
3071
    `GPIO_VAPI_CLOCK (2)'
3072
          Add an external GPIO clock trigger of period specified in the
3073
          data field.
3074
 
3075
    `GPIO_VAPI_RGPIO_OE (3)'
3076
          Set the GPIO output enable to the data field
3077
 
3078
    `GPIO_VAPI_RGPIO_INTE (4)'
3079
          Set the next interrupt to the data field
3080
 
3081
    `GPIO_VAPI_RGPIO_PTRIG (5)'
3082
          Set the next trigger to the data field
3083
 
3084
    `GPIO_VAPI_RGPIO_AUX (6)'
3085
          Set the next auxiliary input to the data field
3086
 
3087
    `GPIO_VAPI_RGPIO_CTRL (7)'
3088
          Set th next control input to the data field
3089
 
3090
 
3091
 
3092

3093
File: or1ksim.info,  Node: Code Internals,  Next: GNU Free Documentation License,  Prev: Verification API,  Up: Top
3094
 
3095
6 A Guide to Or1ksim Internals
3096
******************************
3097
 
3098 82 jeremybenn
These are notes to help those wanting to extend Or1ksim.  This section
3099 19 jeremybenn
assumes the use of a tag file, so file locations of entities'
3100 82 jeremybenn
definitions are not in general provided.  For more on tags, see the
3101
Linux manual page for `etags'.  A tag file can be created with:
3102 19 jeremybenn
 
3103
     make tags
3104
 
3105
* Menu:
3106
 
3107
* Coding Conventions::
3108
* Global Data Structures::
3109
* Concepts::
3110
* Internal Debugging::
3111 104 jeremybenn
* Regression Testing::
3112 19 jeremybenn
 
3113

3114
File: or1ksim.info,  Node: Coding Conventions,  Next: Global Data Structures,  Up: Code Internals
3115
 
3116
6.1 Coding Conventions for Or1ksim
3117
==================================
3118
 
3119
This chapter provides some guidelines for coding, to facilitate
3120
extensions to Or1ksim
3121
 
3122
_GNU Coding Standard_
3123
     Code should follow the GNU coding standard for C
3124 82 jeremybenn
     (`http://www.gnu.org/prep/standards/'.  If in doubt, put your code
3125 19 jeremybenn
     through the `indent' program.
3126
 
3127
_`#include' headers_
3128
     All C source code files should include `config.h' before any other
3129
     file.
3130
 
3131
     This should be followed by inclusion of any system headers (but see
3132
     the comments about portability and `port.h' below) and then by any
3133
     Or1ksim package headers.
3134
 
3135
     If `port.h' is required, it should be the first package header to
3136
     be included after the system headers.
3137
 
3138
     All C source code and header files should directly include any
3139 82 jeremybenn
     system or package header they depend on, i.e.  not rely on any
3140
     other header having already included it.  The two exceptions are
3141 19 jeremybenn
 
3142
       1. All header files may assume that `config.h' has already been
3143
          included.
3144
 
3145
       2. System headers which impose portability problems should be
3146
          included by using the package header `port.h', rather than
3147 82 jeremybenn
          the system headers themselves.  This is the case for code
3148 19 jeremybenn
          requiring
3149
 
3150
             * `strndup' (from `string.h')
3151
 
3152
             * Integer types (`intN_t', `uintN_t') (from `inttypes.h').
3153
 
3154
             * `isblank' (from `ctype.h')
3155
 
3156
 
3157
 
3158
_`#include' files once only_
3159
     All include files should be protected by `#ifndef' to ensure their
3160 82 jeremybenn
     definitions are only included once.  For instance a header file
3161 19 jeremybenn
     `X-Y.H' should surround its contents with:
3162
 
3163
          #ifndef X_Y__H
3164
          #define X_Y__H
3165
 
3166
          
3167
 
3168
          #endif  /* X_Y__H */
3169
 
3170
_Avoid `typedef'_
3171
     The GNU coding style for C does not have a clear way to distinguish
3172 82 jeremybenn
     between user type name and user variables.  For this reason
3173 19 jeremybenn
     `typedef' should be avoided except for the most ubiquitous user
3174 82 jeremybenn
     defined types.  This makes the code much easier to read.
3175 19 jeremybenn
 
3176
     There are some `typedef' declarations in the `argtable2' library
3177
     and the ELF and COFF headers, because this code is taken from
3178
     other places.
3179
 
3180
     Within Or1ksim legacy uses of `typedef' have largely been purged,
3181
     except in the Custom Unit Compiler (*note Custom Unit Compiler
3182
     (CUC) Configuration: CUC Configuration.).
3183
 
3184
     The remaining uses of `typedef' occur in two places:
3185
 
3186
        * `port/port.h' defines types to replace those in header files
3187
          that are not available (character functions, string
3188
          duplication, integer types).
3189
 
3190
          `cpu/or1k/arch.h' defines types for the key Or1ksim entities:
3191
          addresses (`oraddr_t'), unsigned register values (`uorreg_t')
3192
          and signed register (`orreg_t') values.
3193
 
3194
 
3195
     Where new types are defined, they should appear in one of these two
3196 82 jeremybenn
     files as appropriate.  Or1ksim specific types appearing in
3197
     `arch.h' should always have the suffix `_h'.
3198 19 jeremybenn
 
3199
_Don't begin names with underscore_
3200
     Names beginning with `_' are intended to be part of the C
3201 82 jeremybenn
     infrastructure.  They should not be used in the simulator code.
3202 19 jeremybenn
 
3203
_Keep Non-global top level entities static_
3204
     All top level entities (functions, variables), which are not
3205
     explicitly part of a global interface should be declared static.
3206
     This ensures that unwanted connections are not inadvertently built
3207
     across the program.
3208
 
3209
_Use of `inline'_
3210 82 jeremybenn
     Code should not be declared `inline'.  Modern compilers can work
3211 19 jeremybenn
     out for themselves what is best in this respect.
3212
 
3213
_Initialization_
3214 82 jeremybenn
     All data structures should be explicitly initialized.  In
3215
     particular code should not rely on static data structures being
3216
     initialized to zero.
3217 19 jeremybenn
 
3218
     The rationale is that in future static data structures may become
3219 82 jeremybenn
     dynamic.  This has been a particular source of bugs in Or1ksim
3220 19 jeremybenn
     historically.
3221
 
3222
     A specific case is with new peripherals, which should always
3223
     include a `start' function to pre-initialize all configuration
3224
     parameters to sensible defaults
3225
 
3226
_Configuration Validation_
3227
     All configuration values should be validated, preferably when
3228
     encountered, if not when the `section' is closed, or otherwise at
3229
     run time when the parameter is first used.
3230
 
3231
 
3232

3233
File: or1ksim.info,  Node: Global Data Structures,  Next: Concepts,  Prev: Coding Conventions,  Up: Code Internals
3234
 
3235
6.2 Global Data Structures
3236
==========================
3237
 
3238
`config'
3239
     The global variable `config' of type `struct config' holds the
3240
     configuration data for some of the Or1ksim components which are
3241 82 jeremybenn
     always present.  At present the components are:
3242 19 jeremybenn
 
3243
        * The simulator defined in `section sim' (*note Simulator
3244
          Configuration: Simulator Configuration.).
3245
 
3246
        * The Verification API (VAPI) defined  in `section vapi' (*note
3247
          Verification API (VAPI) Configuration: Verification API
3248
          Configuration.).
3249
 
3250
        * The Custom Unit Compiler (CUC), defined in `section cuc'
3251
          (*note Custom Unit Compiler (CUC) Configuration: CUC
3252
          Configuration.).
3253
 
3254
        * The CPU, defined in `section cpu' (*note CPU Configuration:
3255
          CPU Configuration.).
3256
 
3257
        * The data cache (but not the instruction cache), defined in
3258
          `section dc' (*note Cache Configuration: Cache
3259
          Configuration.).
3260
 
3261
        * The power management unit, defined in `section pm' (*note
3262
          Power Management Configuration: Power Management
3263
          Configuration.).
3264
 
3265
        * The programmable interrupt controller, defined in
3266
          `section pic' (*note Interrupt Configuration: Interrupt
3267
          Configuration.).
3268
 
3269
        * Branch prediciton, defined in `section bpb' (*note Branch
3270
          Prediction Configuration: Branch Prediction Configuration.).
3271
 
3272
        * The debug unit, defined in `section debug' (*note Debug
3273
          Interface Configuration: Debug Interface Configuration.).
3274
 
3275
 
3276
     This struct is made of a collection of structs, one for each
3277 82 jeremybenn
     component.  For example the simulator configuration is held in
3278 19 jeremybenn
     `config.sim'.
3279
 
3280
`config'
3281
     This is a linked list of data structures holding configuration data
3282
     for all sections which are not held in the main `config' data
3283 82 jeremybenn
     structure.  In general these are components (such as peripherals
3284
     and memory) which may occur multiple times.  However it also
3285
     handles some architectural components which may occur only once,
3286
     such as the memory management units, the instruction cache, the
3287
     interrupt controller and branch prediction.
3288 19 jeremybenn
 
3289
`runtime'
3290
     The global variable `runtime' of type `struct runtime' holds all
3291 82 jeremybenn
     the runtime information about the simulation.  To access this
3292 19 jeremybenn
     variable, `sim-config.h' must be included.
3293
 
3294
     This struct is itself made of 3 other structs, `cpu' (for CPU run
3295
     time state), `vapi' (for Verification API state) and `cuc' (for
3296
     Custom Unit Compiler state).
3297
 
3298
 
3299

3300
File: or1ksim.info,  Node: Concepts,  Next: Internal Debugging,  Prev: Global Data Structures,  Up: Code Internals
3301
 
3302
6.3 Concepts
3303
============
3304
 
3305
_Output Redirection_
3306 82 jeremybenn
     The current output stream is held in `runtime.cpu.fout'.  Output
3307 19 jeremybenn
     should be explicitly written to this stream, or may use the
3308
     `PRINTF' macro, which will write its arguments to this output
3309
     stream.
3310
 
3311
_Reset Hooks_
3312
     Any peripheral may register a routine to be called when the the
3313
     processor is reset by calling `reg_sim_reset', providing a
3314 82 jeremybenn
     function and pointer to a data structure as arguments.  On reset
3315 19 jeremybenn
     that function will be called with the data stucture pointer as
3316
     argument.
3317
 
3318 432 jeremybenn
_Interrupts_
3319
     An internal peripheral can model the effect of an interrupt being
3320
     asserted by calling `report_interrupt'.  This is used for both edge
3321
     and level sensitive interrupts.
3322 19 jeremybenn
 
3323 432 jeremybenn
     The effect is to set the corresponding bit in the PICSR SPR and to
3324
     queue an interrupt exception to take place after the current
3325
     instruction completes execution.
3326
 
3327
     Externally, the different interrupts require different mechanisms
3328
     for clearing.  Level sensitive interrupts should be cleared by
3329
     deasserting the interrupt line, edge sensitive interrupts by
3330
     clearing the corresponding bit in the PICSR SPR.
3331
 
3332
     Internally this amounts to the same thing (clearing the PICSPR
3333
     bit), so a single function is provided, `clear_interrupt'.  Note
3334
     however that when level sensitive interrupts are configured, PICSR
3335
     is read only, and can only be cleared by calling
3336
     `clear_interrupt'.  Using the two functions provided will ensure
3337
     the peripheral works correctly whichever type of interrupt is used.
3338
 
3339
          Note: Until an interrupt is cleared, all subsequent
3340
          interrupts are ignored with a warning.
3341
 
3342
 
3343 19 jeremybenn

3344 104 jeremybenn
File: or1ksim.info,  Node: Internal Debugging,  Next: Regression Testing,  Prev: Concepts,  Up: Code Internals
3345 19 jeremybenn
 
3346
6.4 Internal Debugging
3347
======================
3348
 
3349
The function `debug' is like `printf', but with an extra first
3350 82 jeremybenn
argument, which is the debug level.  If the debug level specified in
3351
the simulator configuration (*note Simulator Behavior: Simulator
3352
Behavior.) is greater than or equal to this value, the remaining
3353
arguments are printed to the current output stream (*note Output
3354
Redirection: Output Redirection.).
3355 19 jeremybenn
 
3356

3357 104 jeremybenn
File: or1ksim.info,  Node: Regression Testing,  Prev: Internal Debugging,  Up: Code Internals
3358
 
3359
6.5 Regression Testing
3360
======================
3361
 
3362
Or1ksim now includes a regression test suite for both standalone and
3363
library usage as described earlier (*note Building and Installing:
3364
Build and Install.).  Running the tests requires that the OpenRISC
3365
toolchain and DejaGNU are both installed.
3366
 
3367
Tests are written using `expect', a derivative of TCL.  Documentation
3368
of DejaGnu, `expect' and TCL are freely available on the Web.  The
3369
Embecosm Application Note 8, `Howto: Using DejaGnu for Testing: A
3370
Simple Introduction' (`http://www.embecosm.com/download/ean8.html')
3371
provides a concise introduction.
3372
 
3373
All test code is found in the `testsuite' directory.  The key files and
3374
directories used are as follows.
3375
 
3376
`global-conf.exp'
3377
     This is the global DejaGNU configuration file used to set up
3378
     parameters common to all tests.  If the user has the environment
3379
     varialbe `DEJAGNU' defined, it will be used instead, but this is
3380
     not recommended.
3381
 
3382
`Makefile.am'
3383
     This is the top level `automake' file for the testsuite.  The only
3384
     changes likely to be needed here is additional local cleanup of
3385
     files created by new tests.
3386
 
3387
`README'
3388
     This contains details of all the tests
3389
 
3390
`config'
3391
     This contains DejaGnu board configurations.  Since the tests are
3392
     generally run on a Unix host, this should just contain `Unix.exp'.
3393
 
3394
`lib'
3395
     This contains DejaGnu tool specific configurations.  "Tool" has a
3396
     specific meaning in DejaGNU, referring just to a grouping of
3397
     tests.  In this case there are two such "tools", "or1ksim" and
3398
     "libsim" for tests of the standalone tool and tests of the library.
3399
 
3400
     Corresponding to this, there are two tool specific configuration
3401
     files, `or1ksim.exp' and `libsim.exp'.  These contain `expect'/TCL
3402
     procedures for common use among the tests.
3403
 
3404
`libsim.tests'
3405
`or1ksim.tests'
3406
     These are the directories of tests of the Or1ksim library.  They
3407
     also include Or1ksim configuration files and each has a
3408
     `Makefile.am' file.  `Makefile.am' should be updated whenever
3409
     files are added to this directory, to ensure they are included in
3410
     the distribution.
3411
 
3412
`test-code'
3413
     These are all the test programs to be compiled on the host (each
3414
     in its own directory).  In general these are programs to support
3415
     testing of the library, and build various programs linking in the
3416
     library.
3417
 
3418
`test-code'
3419
     These are all the test programs to be compiled with the OpenRISC
3420
     tool chain to run with either standalone Or1ksim or the library.
3421
     This directory includes its own `configure.ac', since it must set
3422
     up a separate tool chain based on the target, not the host.
3423
 
3424
 
3425
To add a new test needs the following steps.
3426
 
3427 346 jeremybenn
   * Put new host C code in its own directory within `test-code'.  Add
3428 104 jeremybenn
     the directory to the existing `Makefile.am' in the `test-code'
3429
     directory and create a `Makefile.am' in the new directory to drive
3430 346 jeremybenn
     building the test program(s).  Don't forget to add the new
3431 104 jeremybenn
     `Makefile' to the top level `configure.ac' so it gets generated.
3432
     Not all tests require code here.
3433
 
3434 346 jeremybenn
   * Put new target C code in its own directory within `test-code-or1k'.
3435
     Once again modify & create `Makefile.am'.  This time modify the
3436
     `configure.ac' in the `test-code-or1k' so the `Makefile' gets
3437
     generated.  The existing programs provide examples to start from,
3438
     including custom linker scripts where needed.
3439 104 jeremybenn
 
3440
   * Add one or more tests and configuration files to the relevant
3441 346 jeremybenn
     "tool" test directory.  Use the existing tests as templates.  They
3442 104 jeremybenn
     make heavy use of the `expect'/TCL procedures in the `config'
3443
     directory to facilitate driving the tests.
3444
 
3445
 
3446

3447 19 jeremybenn
File: or1ksim.info,  Node: GNU Free Documentation License,  Next: Index,  Prev: Code Internals,  Up: Top
3448
 
3449
7 GNU Free Documentation License
3450
********************************
3451
 
3452
                      Version 1.2, November 2002
3453
 
3454
     Copyright (C) 2000,2001,2002 Free Software Foundation, Inc.
3455
     51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
3456
 
3457
     Everyone is permitted to copy and distribute verbatim copies
3458
     of this license document, but changing it is not allowed.
3459
 
3460
  0. PREAMBLE
3461
 
3462
     The purpose of this License is to make a manual, textbook, or other
3463
     functional and useful document "free" in the sense of freedom: to
3464
     assure everyone the effective freedom to copy and redistribute it,
3465
     with or without modifying it, either commercially or
3466
     noncommercially.  Secondarily, this License preserves for the
3467
     author and publisher a way to get credit for their work, while not
3468
     being considered responsible for modifications made by others.
3469
 
3470
     This License is a kind of "copyleft", which means that derivative
3471
     works of the document must themselves be free in the same sense.
3472
     It complements the GNU General Public License, which is a copyleft
3473
     license designed for free software.
3474
 
3475
     We have designed this License in order to use it for manuals for
3476
     free software, because free software needs free documentation: a
3477
     free program should come with manuals providing the same freedoms
3478
     that the software does.  But this License is not limited to
3479
     software manuals; it can be used for any textual work, regardless
3480
     of subject matter or whether it is published as a printed book.
3481
     We recommend this License principally for works whose purpose is
3482
     instruction or reference.
3483
 
3484
  1. APPLICABILITY AND DEFINITIONS
3485
 
3486
     This License applies to any manual or other work, in any medium,
3487
     that contains a notice placed by the copyright holder saying it
3488
     can be distributed under the terms of this License.  Such a notice
3489
     grants a world-wide, royalty-free license, unlimited in duration,
3490
     to use that work under the conditions stated herein.  The
3491
     "Document", below, refers to any such manual or work.  Any member
3492
     of the public is a licensee, and is addressed as "you".  You
3493
     accept the license if you copy, modify or distribute the work in a
3494
     way requiring permission under copyright law.
3495
 
3496
     A "Modified Version" of the Document means any work containing the
3497
     Document or a portion of it, either copied verbatim, or with
3498
     modifications and/or translated into another language.
3499
 
3500
     A "Secondary Section" is a named appendix or a front-matter section
3501
     of the Document that deals exclusively with the relationship of the
3502
     publishers or authors of the Document to the Document's overall
3503
     subject (or to related matters) and contains nothing that could
3504
     fall directly within that overall subject.  (Thus, if the Document
3505
     is in part a textbook of mathematics, a Secondary Section may not
3506
     explain any mathematics.)  The relationship could be a matter of
3507
     historical connection with the subject or with related matters, or
3508
     of legal, commercial, philosophical, ethical or political position
3509
     regarding them.
3510
 
3511
     The "Invariant Sections" are certain Secondary Sections whose
3512
     titles are designated, as being those of Invariant Sections, in
3513
     the notice that says that the Document is released under this
3514
     License.  If a section does not fit the above definition of
3515
     Secondary then it is not allowed to be designated as Invariant.
3516
     The Document may contain zero Invariant Sections.  If the Document
3517
     does not identify any Invariant Sections then there are none.
3518
 
3519
     The "Cover Texts" are certain short passages of text that are
3520
     listed, as Front-Cover Texts or Back-Cover Texts, in the notice
3521
     that says that the Document is released under this License.  A
3522
     Front-Cover Text may be at most 5 words, and a Back-Cover Text may
3523
     be at most 25 words.
3524
 
3525
     A "Transparent" copy of the Document means a machine-readable copy,
3526
     represented in a format whose specification is available to the
3527
     general public, that is suitable for revising the document
3528
     straightforwardly with generic text editors or (for images
3529
     composed of pixels) generic paint programs or (for drawings) some
3530
     widely available drawing editor, and that is suitable for input to
3531
     text formatters or for automatic translation to a variety of
3532
     formats suitable for input to text formatters.  A copy made in an
3533
     otherwise Transparent file format whose markup, or absence of
3534
     markup, has been arranged to thwart or discourage subsequent
3535
     modification by readers is not Transparent.  An image format is
3536
     not Transparent if used for any substantial amount of text.  A
3537
     copy that is not "Transparent" is called "Opaque".
3538
 
3539
     Examples of suitable formats for Transparent copies include plain
3540
     ASCII without markup, Texinfo input format, LaTeX input format,
3541
     SGML or XML using a publicly available DTD, and
3542
     standard-conforming simple HTML, PostScript or PDF designed for
3543
     human modification.  Examples of transparent image formats include
3544
     PNG, XCF and JPG.  Opaque formats include proprietary formats that
3545
     can be read and edited only by proprietary word processors, SGML or
3546
     XML for which the DTD and/or processing tools are not generally
3547
     available, and the machine-generated HTML, PostScript or PDF
3548
     produced by some word processors for output purposes only.
3549
 
3550
     The "Title Page" means, for a printed book, the title page itself,
3551
     plus such following pages as are needed to hold, legibly, the
3552
     material this License requires to appear in the title page.  For
3553
     works in formats which do not have any title page as such, "Title
3554
     Page" means the text near the most prominent appearance of the
3555
     work's title, preceding the beginning of the body of the text.
3556
 
3557
     A section "Entitled XYZ" means a named subunit of the Document
3558
     whose title either is precisely XYZ or contains XYZ in parentheses
3559
     following text that translates XYZ in another language.  (Here XYZ
3560
     stands for a specific section name mentioned below, such as
3561
     "Acknowledgements", "Dedications", "Endorsements", or "History".)
3562
     To "Preserve the Title" of such a section when you modify the
3563
     Document means that it remains a section "Entitled XYZ" according
3564
     to this definition.
3565
 
3566
     The Document may include Warranty Disclaimers next to the notice
3567
     which states that this License applies to the Document.  These
3568
     Warranty Disclaimers are considered to be included by reference in
3569
     this License, but only as regards disclaiming warranties: any other
3570
     implication that these Warranty Disclaimers may have is void and
3571
     has no effect on the meaning of this License.
3572
 
3573
  2. VERBATIM COPYING
3574
 
3575
     You may copy and distribute the Document in any medium, either
3576
     commercially or noncommercially, provided that this License, the
3577
     copyright notices, and the license notice saying this License
3578
     applies to the Document are reproduced in all copies, and that you
3579
     add no other conditions whatsoever to those of this License.  You
3580
     may not use technical measures to obstruct or control the reading
3581
     or further copying of the copies you make or distribute.  However,
3582
     you may accept compensation in exchange for copies.  If you
3583
     distribute a large enough number of copies you must also follow
3584
     the conditions in section 3.
3585
 
3586
     You may also lend copies, under the same conditions stated above,
3587
     and you may publicly display copies.
3588
 
3589
  3. COPYING IN QUANTITY
3590
 
3591
     If you publish printed copies (or copies in media that commonly
3592
     have printed covers) of the Document, numbering more than 100, and
3593
     the Document's license notice requires Cover Texts, you must
3594
     enclose the copies in covers that carry, clearly and legibly, all
3595
     these Cover Texts: Front-Cover Texts on the front cover, and
3596
     Back-Cover Texts on the back cover.  Both covers must also clearly
3597
     and legibly identify you as the publisher of these copies.  The
3598
     front cover must present the full title with all words of the
3599
     title equally prominent and visible.  You may add other material
3600
     on the covers in addition.  Copying with changes limited to the
3601
     covers, as long as they preserve the title of the Document and
3602
     satisfy these conditions, can be treated as verbatim copying in
3603
     other respects.
3604
 
3605
     If the required texts for either cover are too voluminous to fit
3606
     legibly, you should put the first ones listed (as many as fit
3607
     reasonably) on the actual cover, and continue the rest onto
3608
     adjacent pages.
3609
 
3610
     If you publish or distribute Opaque copies of the Document
3611
     numbering more than 100, you must either include a
3612
     machine-readable Transparent copy along with each Opaque copy, or
3613
     state in or with each Opaque copy a computer-network location from
3614
     which the general network-using public has access to download
3615
     using public-standard network protocols a complete Transparent
3616
     copy of the Document, free of added material.  If you use the
3617
     latter option, you must take reasonably prudent steps, when you
3618
     begin distribution of Opaque copies in quantity, to ensure that
3619
     this Transparent copy will remain thus accessible at the stated
3620
     location until at least one year after the last time you
3621
     distribute an Opaque copy (directly or through your agents or
3622
     retailers) of that edition to the public.
3623
 
3624
     It is requested, but not required, that you contact the authors of
3625
     the Document well before redistributing any large number of
3626
     copies, to give them a chance to provide you with an updated
3627
     version of the Document.
3628
 
3629
  4. MODIFICATIONS
3630
 
3631
     You may copy and distribute a Modified Version of the Document
3632
     under the conditions of sections 2 and 3 above, provided that you
3633
     release the Modified Version under precisely this License, with
3634
     the Modified Version filling the role of the Document, thus
3635
     licensing distribution and modification of the Modified Version to
3636
     whoever possesses a copy of it.  In addition, you must do these
3637
     things in the Modified Version:
3638
 
3639
       A. Use in the Title Page (and on the covers, if any) a title
3640
          distinct from that of the Document, and from those of
3641
          previous versions (which should, if there were any, be listed
3642
          in the History section of the Document).  You may use the
3643
          same title as a previous version if the original publisher of
3644
          that version gives permission.
3645
 
3646
       B. List on the Title Page, as authors, one or more persons or
3647
          entities responsible for authorship of the modifications in
3648
          the Modified Version, together with at least five of the
3649
          principal authors of the Document (all of its principal
3650
          authors, if it has fewer than five), unless they release you
3651
          from this requirement.
3652
 
3653
       C. State on the Title page the name of the publisher of the
3654
          Modified Version, as the publisher.
3655
 
3656
       D. Preserve all the copyright notices of the Document.
3657
 
3658
       E. Add an appropriate copyright notice for your modifications
3659
          adjacent to the other copyright notices.
3660
 
3661
       F. Include, immediately after the copyright notices, a license
3662
          notice giving the public permission to use the Modified
3663
          Version under the terms of this License, in the form shown in
3664
          the Addendum below.
3665
 
3666
       G. Preserve in that license notice the full lists of Invariant
3667
          Sections and required Cover Texts given in the Document's
3668
          license notice.
3669
 
3670
       H. Include an unaltered copy of this License.
3671
 
3672
       I. Preserve the section Entitled "History", Preserve its Title,
3673
          and add to it an item stating at least the title, year, new
3674
          authors, and publisher of the Modified Version as given on
3675
          the Title Page.  If there is no section Entitled "History" in
3676
          the Document, create one stating the title, year, authors,
3677
          and publisher of the Document as given on its Title Page,
3678
          then add an item describing the Modified Version as stated in
3679
          the previous sentence.
3680
 
3681
       J. Preserve the network location, if any, given in the Document
3682
          for public access to a Transparent copy of the Document, and
3683
          likewise the network locations given in the Document for
3684
          previous versions it was based on.  These may be placed in
3685
          the "History" section.  You may omit a network location for a
3686
          work that was published at least four years before the
3687
          Document itself, or if the original publisher of the version
3688
          it refers to gives permission.
3689
 
3690
       K. For any section Entitled "Acknowledgements" or "Dedications",
3691
          Preserve the Title of the section, and preserve in the
3692
          section all the substance and tone of each of the contributor
3693
          acknowledgements and/or dedications given therein.
3694
 
3695
       L. Preserve all the Invariant Sections of the Document,
3696
          unaltered in their text and in their titles.  Section numbers
3697
          or the equivalent are not considered part of the section
3698
          titles.
3699
 
3700
       M. Delete any section Entitled "Endorsements".  Such a section
3701
          may not be included in the Modified Version.
3702
 
3703
       N. Do not retitle any existing section to be Entitled
3704
          "Endorsements" or to conflict in title with any Invariant
3705
          Section.
3706
 
3707
       O. Preserve any Warranty Disclaimers.
3708
 
3709
     If the Modified Version includes new front-matter sections or
3710
     appendices that qualify as Secondary Sections and contain no
3711
     material copied from the Document, you may at your option
3712
     designate some or all of these sections as invariant.  To do this,
3713
     add their titles to the list of Invariant Sections in the Modified
3714
     Version's license notice.  These titles must be distinct from any
3715
     other section titles.
3716
 
3717
     You may add a section Entitled "Endorsements", provided it contains
3718
     nothing but endorsements of your Modified Version by various
3719
     parties--for example, statements of peer review or that the text
3720
     has been approved by an organization as the authoritative
3721
     definition of a standard.
3722
 
3723
     You may add a passage of up to five words as a Front-Cover Text,
3724
     and a passage of up to 25 words as a Back-Cover Text, to the end
3725
     of the list of Cover Texts in the Modified Version.  Only one
3726
     passage of Front-Cover Text and one of Back-Cover Text may be
3727
     added by (or through arrangements made by) any one entity.  If the
3728
     Document already includes a cover text for the same cover,
3729
     previously added by you or by arrangement made by the same entity
3730
     you are acting on behalf of, you may not add another; but you may
3731
     replace the old one, on explicit permission from the previous
3732
     publisher that added the old one.
3733
 
3734
     The author(s) and publisher(s) of the Document do not by this
3735
     License give permission to use their names for publicity for or to
3736
     assert or imply endorsement of any Modified Version.
3737
 
3738
  5. COMBINING DOCUMENTS
3739
 
3740
     You may combine the Document with other documents released under
3741
     this License, under the terms defined in section 4 above for
3742
     modified versions, provided that you include in the combination
3743
     all of the Invariant Sections of all of the original documents,
3744
     unmodified, and list them all as Invariant Sections of your
3745
     combined work in its license notice, and that you preserve all
3746
     their Warranty Disclaimers.
3747
 
3748
     The combined work need only contain one copy of this License, and
3749
     multiple identical Invariant Sections may be replaced with a single
3750
     copy.  If there are multiple Invariant Sections with the same name
3751
     but different contents, make the title of each such section unique
3752
     by adding at the end of it, in parentheses, the name of the
3753
     original author or publisher of that section if known, or else a
3754
     unique number.  Make the same adjustment to the section titles in
3755
     the list of Invariant Sections in the license notice of the
3756
     combined work.
3757
 
3758
     In the combination, you must combine any sections Entitled
3759
     "History" in the various original documents, forming one section
3760
     Entitled "History"; likewise combine any sections Entitled
3761
     "Acknowledgements", and any sections Entitled "Dedications".  You
3762
     must delete all sections Entitled "Endorsements."
3763
 
3764
  6. COLLECTIONS OF DOCUMENTS
3765
 
3766
     You may make a collection consisting of the Document and other
3767
     documents released under this License, and replace the individual
3768
     copies of this License in the various documents with a single copy
3769
     that is included in the collection, provided that you follow the
3770
     rules of this License for verbatim copying of each of the
3771
     documents in all other respects.
3772
 
3773
     You may extract a single document from such a collection, and
3774
     distribute it individually under this License, provided you insert
3775
     a copy of this License into the extracted document, and follow
3776
     this License in all other respects regarding verbatim copying of
3777
     that document.
3778
 
3779
  7. AGGREGATION WITH INDEPENDENT WORKS
3780
 
3781
     A compilation of the Document or its derivatives with other
3782
     separate and independent documents or works, in or on a volume of
3783
     a storage or distribution medium, is called an "aggregate" if the
3784
     copyright resulting from the compilation is not used to limit the
3785
     legal rights of the compilation's users beyond what the individual
3786
     works permit.  When the Document is included in an aggregate, this
3787
     License does not apply to the other works in the aggregate which
3788
     are not themselves derivative works of the Document.
3789
 
3790
     If the Cover Text requirement of section 3 is applicable to these
3791
     copies of the Document, then if the Document is less than one half
3792
     of the entire aggregate, the Document's Cover Texts may be placed
3793
     on covers that bracket the Document within the aggregate, or the
3794
     electronic equivalent of covers if the Document is in electronic
3795
     form.  Otherwise they must appear on printed covers that bracket
3796
     the whole aggregate.
3797
 
3798
  8. TRANSLATION
3799
 
3800
     Translation is considered a kind of modification, so you may
3801
     distribute translations of the Document under the terms of section
3802
     4.  Replacing Invariant Sections with translations requires special
3803
     permission from their copyright holders, but you may include
3804
     translations of some or all Invariant Sections in addition to the
3805
     original versions of these Invariant Sections.  You may include a
3806
     translation of this License, and all the license notices in the
3807
     Document, and any Warranty Disclaimers, provided that you also
3808
     include the original English version of this License and the
3809
     original versions of those notices and disclaimers.  In case of a
3810
     disagreement between the translation and the original version of
3811
     this License or a notice or disclaimer, the original version will
3812
     prevail.
3813
 
3814
     If a section in the Document is Entitled "Acknowledgements",
3815
     "Dedications", or "History", the requirement (section 4) to
3816
     Preserve its Title (section 1) will typically require changing the
3817
     actual title.
3818
 
3819
  9. TERMINATION
3820
 
3821
     You may not copy, modify, sublicense, or distribute the Document
3822
     except as expressly provided for under this License.  Any other
3823
     attempt to copy, modify, sublicense or distribute the Document is
3824
     void, and will automatically terminate your rights under this
3825
     License.  However, parties who have received copies, or rights,
3826
     from you under this License will not have their licenses
3827
     terminated so long as such parties remain in full compliance.
3828
 
3829
 10. FUTURE REVISIONS OF THIS LICENSE
3830
 
3831
     The Free Software Foundation may publish new, revised versions of
3832
     the GNU Free Documentation License from time to time.  Such new
3833
     versions will be similar in spirit to the present version, but may
3834
     differ in detail to address new problems or concerns.  See
3835
     `http://www.gnu.org/copyleft/'.
3836
 
3837
     Each version of the License is given a distinguishing version
3838
     number.  If the Document specifies that a particular numbered
3839
     version of this License "or any later version" applies to it, you
3840
     have the option of following the terms and conditions either of
3841
     that specified version or of any later version that has been
3842
     published (not as a draft) by the Free Software Foundation.  If
3843
     the Document does not specify a version number of this License,
3844
     you may choose any version ever published (not as a draft) by the
3845
     Free Software Foundation.
3846
 
3847
ADDENDUM: How to use this License for your documents
3848
====================================================
3849
 
3850
To use this License in a document you have written, include a copy of
3851
the License in the document and put the following copyright and license
3852
notices just after the title page:
3853
 
3854
       Copyright (C)  YEAR  YOUR NAME.
3855
       Permission is granted to copy, distribute and/or modify this document
3856
       under the terms of the GNU Free Documentation License, Version 1.2
3857
       or any later version published by the Free Software Foundation;
3858
       with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
3859
       Texts.  A copy of the license is included in the section entitled ``GNU
3860
       Free Documentation License''.
3861
 
3862
If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,
3863
replace the "with...Texts." line with this:
3864
 
3865
         with the Invariant Sections being LIST THEIR TITLES, with
3866
         the Front-Cover Texts being LIST, and with the Back-Cover Texts
3867
         being LIST.
3868
 
3869
If you have Invariant Sections without Cover Texts, or some other
3870
combination of the three, merge those two alternatives to suit the
3871
situation.
3872
 
3873
If your document contains nontrivial examples of program code, we
3874
recommend releasing these examples in parallel under your choice of
3875
free software license, such as the GNU General Public License, to
3876
permit their use in free software.
3877
 
3878

3879
File: or1ksim.info,  Node: Index,  Prev: GNU Free Documentation License,  Up: Top
3880
 
3881
Index
3882
*****
3883
 
3884
 
3885
* Menu:
3886
3887
* --cumulative:                          Profiling Utility.   (line  26)
3888
* --debug-config:                        Standalone Simulator.
3889 472 jeremybenn
                                                              (line  99)
3890 82 jeremybenn
* --disable-all-tests:                   Configuring the Build.
3891 552 julius
                                                              (line  98)
3892 19 jeremybenn
* --disable-arith-flag:                  Configuring the Build.
3893 552 julius
                                                              (line 111)
3894 124 jeremybenn
* --disable-debug:                       Configuring the Build.
3895 552 julius
                                                              (line  91)
3896 19 jeremybenn
* --disable-ethphy:                      Configuring the Build.
3897 552 julius
                                                              (line  52)
3898 19 jeremybenn
* --disable-ov-flag:                     Configuring the Build.
3899 552 julius
                                                              (line 126)
3900 19 jeremybenn
* --disable-profiling:                   Configuring the Build.
3901 104 jeremybenn
                                                              (line  30)
3902 19 jeremybenn
* --disable-range-stats:                 Configuring the Build.
3903 552 julius
                                                              (line  85)
3904 127 jeremybenn
* --disable-unsigned-xori:               Configuring the Build.
3905 552 julius
                                                              (line  62)
3906 82 jeremybenn
* --enable-all-tests:                    Configuring the Build.
3907 552 julius
                                                              (line  97)
3908 19 jeremybenn
* --enable-arith-flag:                   Configuring the Build.
3909 552 julius
                                                              (line 110)
3910 124 jeremybenn
* --enable-debug:                        Configuring the Build.
3911 552 julius
                                                              (line  90)
3912 19 jeremybenn
* --enable-ethphy:                       Configuring the Build.
3913 552 julius
                                                              (line  51)
3914 19 jeremybenn
* --enable-execution:                    Configuring the Build.
3915 552 julius
                                                              (line  36)
3916 19 jeremybenn
* --enable-mprofile:                     Standalone Simulator.
3917 472 jeremybenn
                                                              (line 133)
3918 19 jeremybenn
* --enable-ov-flag:                      Configuring the Build.
3919 552 julius
                                                              (line 125)
3920 19 jeremybenn
* --enable-profile:                      Standalone Simulator.
3921 472 jeremybenn
                                                              (line 130)
3922 19 jeremybenn
* --enable-profiling:                    Configuring the Build.
3923 104 jeremybenn
                                                              (line  29)
3924 19 jeremybenn
* --enable-range-stats:                  Configuring the Build.
3925 552 julius
                                                              (line  84)
3926 127 jeremybenn
* --enable-unsigned-xori:                Configuring the Build.
3927 552 julius
                                                              (line  61)
3928 19 jeremybenn
* --file:                                Standalone Simulator.
3929 472 jeremybenn
                                                              (line  57)
3930 19 jeremybenn
* --filename:                            Memory Profiling Utility.
3931
                                                              (line  51)
3932
* --generate:                            Profiling Utility.   (line  34)
3933
* --group:                               Memory Profiling Utility.
3934
                                                              (line  47)
3935
* --help:                                Standalone Simulator.
3936 346 jeremybenn
                                                              (line  21)
3937 19 jeremybenn
* --help (memory profiling utility):     Memory Profiling Utility.
3938
                                                              (line  22)
3939
* --help (profiling utility):            Profiling Utility.   (line  22)
3940
* --interactive:                         Standalone Simulator.
3941 346 jeremybenn
                                                              (line  25)
3942
* --memory:                              Standalone Simulator.
3943 472 jeremybenn
                                                              (line  83)
3944 19 jeremybenn
* --mode:                                Memory Profiling Utility.
3945
                                                              (line  26)
3946
* --nosrv:                               Standalone Simulator.
3947 472 jeremybenn
                                                              (line  65)
3948 346 jeremybenn
* --quiet <1>:                           Profiling Utility.   (line  30)
3949
* --quiet:                               Standalone Simulator.
3950
                                                              (line  29)
3951
* --report-memory-errors:                Standalone Simulator.
3952 472 jeremybenn
                                                              (line 104)
3953 19 jeremybenn
* --srv:                                 Standalone Simulator.
3954 472 jeremybenn
                                                              (line  73)
3955 19 jeremybenn
* --strict-npc:                          Standalone Simulator.
3956 472 jeremybenn
                                                              (line 113)
3957
* --trace <1>:                           Trace Generation.    (line  14)
3958 420 jeremybenn
* --trace:                               Standalone Simulator.
3959
                                                              (line  39)
3960 472 jeremybenn
* --trace-physical <1>:                  Trace Generation.    (line  44)
3961
* --trace-physical:                      Standalone Simulator.
3962
                                                              (line  44)
3963
* --trace-virtual <1>:                   Trace Generation.    (line  44)
3964
* --trace-virtual:                       Standalone Simulator.
3965
                                                              (line  44)
3966 346 jeremybenn
* --verbose:                             Standalone Simulator.
3967
                                                              (line  33)
3968 19 jeremybenn
* --version:                             Standalone Simulator.
3969 346 jeremybenn
                                                              (line  17)
3970 19 jeremybenn
* --version (memory profiling utility):  Memory Profiling Utility.
3971
                                                              (line  17)
3972
* --version (profiling utility):         Profiling Utility.   (line  17)
3973
* -c:                                    Profiling Utility.   (line  26)
3974
* -d:                                    Standalone Simulator.
3975 472 jeremybenn
                                                              (line  99)
3976 19 jeremybenn
* -f <1>:                                Memory Profiling Utility.
3977
                                                              (line  51)
3978
* -f:                                    Standalone Simulator.
3979 472 jeremybenn
                                                              (line  57)
3980 346 jeremybenn
* -g <1>:                                Memory Profiling Utility.
3981 19 jeremybenn
                                                              (line  47)
3982 346 jeremybenn
* -g:                                    Profiling Utility.   (line  34)
3983 19 jeremybenn
* -h:                                    Standalone Simulator.
3984 346 jeremybenn
                                                              (line  21)
3985 19 jeremybenn
* -h (memory profiling utility):         Memory Profiling Utility.
3986
                                                              (line  22)
3987
* -h (profiling utility):                Profiling Utility.   (line  22)
3988
* -i:                                    Standalone Simulator.
3989 346 jeremybenn
                                                              (line  25)
3990
* -m <1>:                                Memory Profiling Utility.
3991 19 jeremybenn
                                                              (line  26)
3992 346 jeremybenn
* -m:                                    Standalone Simulator.
3993 472 jeremybenn
                                                              (line  83)
3994 346 jeremybenn
* -q <1>:                                Profiling Utility.   (line  30)
3995
* -q:                                    Standalone Simulator.
3996
                                                              (line  29)
3997 472 jeremybenn
* -t <1>:                                Trace Generation.    (line  14)
3998 420 jeremybenn
* -t:                                    Standalone Simulator.
3999
                                                              (line  39)
4000 346 jeremybenn
* -V:                                    Standalone Simulator.
4001
                                                              (line  33)
4002 19 jeremybenn
* -v:                                    Standalone Simulator.
4003 346 jeremybenn
                                                              (line  17)
4004 19 jeremybenn
* -v (memory profiling utility):         Memory Profiling Utility.
4005
                                                              (line  17)
4006
* -v (profiling utility):                Profiling Utility.   (line  17)
4007
* 0x00 UART VAPI sub-command (UART verification): Verification API.
4008
                                                              (line  49)
4009
* 0x01 UART VAPI sub-command (UART verification): Verification API.
4010
                                                              (line  55)
4011
* 0x02 UART VAPI sub-command (UART verification): Verification API.
4012
                                                              (line  59)
4013
* 0x03 UART VAPI sub-command (UART verification): Verification API.
4014
                                                              (line  62)
4015
* 0x04 UART VAPI sub-command (UART verification): Verification API.
4016
                                                              (line  66)
4017
* 16550 (UART configuration):            UART Configuration.  (line  73)
4018 82 jeremybenn
* all tests enabled:                     Configuring the Build.
4019 552 julius
                                                              (line  98)
4020 19 jeremybenn
* Argtable2 debugging:                   Configuring the Build.
4021 552 julius
                                                              (line  91)
4022 19 jeremybenn
* ATA/ATAPI configuration:               Disc Interface Configuration.
4023
                                                              (line   6)
4024
* ATA/ATAPI device configuration:        Disc Interface Configuration.
4025 385 jeremybenn
                                                              (line  92)
4026 19 jeremybenn
* base_vapi_id (GPIO configuration - deprecated): GPIO Configuration.
4027
                                                              (line  32)
4028
* baseaddr (ATA/ATAPI configuration):    Disc Interface Configuration.
4029 385 jeremybenn
                                                              (line  26)
4030 19 jeremybenn
* baseaddr (DMA configuration):          DMA Configuration.   (line  24)
4031
* baseaddr (Ethernet configuration):     Ethernet Configuration.
4032 440 jeremybenn
                                                              (line  23)
4033 19 jeremybenn
* baseaddr (frame buffer configuration): Frame Buffer Configuration.
4034
                                                              (line  20)
4035
* baseaddr (generic peripheral configuration): Generic Peripheral Configuration.
4036
                                                              (line  22)
4037
* baseaddr (GPIO configuration):         GPIO Configuration.  (line  21)
4038
* baseaddr (keyboard configuration):     Keyboard Configuration.
4039
                                                              (line  36)
4040
* baseaddr (memory configuration):       Memory Configuration.
4041 418 julius
                                                              (line  94)
4042 19 jeremybenn
* baseaddr (memory controller configuration): Memory Controller Configuration.
4043 385 jeremybenn
                                                              (line  55)
4044 19 jeremybenn
* baseaddr (UART configuration):         UART Configuration.  (line  22)
4045
* baseaddr (VGA configuration):          Display Interface Configuration.
4046
                                                              (line  26)
4047
* blocksize (cache configuration):       Cache Configuration. (line  29)
4048
* BPB configuration:                     Branch Prediction Configuration.
4049
                                                              (line   6)
4050
* branch prediction configuration:       Branch Prediction Configuration.
4051
                                                              (line   6)
4052
* break (Interactive CLI):               Interactive Command Line.
4053
                                                              (line  57)
4054
* breakpoint list (Interactive CLI):     Interactive Command Line.
4055
                                                              (line  60)
4056
* breakpoint set/clear (Interactive CLI): Interactive Command Line.
4057
                                                              (line  57)
4058
* breaks (Interactive CLI):              Interactive Command Line.
4059
                                                              (line  60)
4060 440 jeremybenn
* bridge setup:                          Establishing a Bridge.
4061
                                                              (line   6)
4062 19 jeremybenn
* btic (branch prediction configuration): Branch Prediction Configuration.
4063
                                                              (line  19)
4064 440 jeremybenn
* BusyBox and Ethernet:                  Networking from OpenRISC Linux and BusyBox.
4065
                                                              (line   6)
4066 19 jeremybenn
* byte_enabled (generic peripheral configuration): Generic Peripheral Configuration.
4067
                                                              (line  48)
4068
* cache configuration:                   Cache Configuration. (line   6)
4069 346 jeremybenn
* calling_convention (CUC configuration): CUC Configuration.  (line  37)
4070 19 jeremybenn
* ce (memory configuration):             Memory Configuration.
4071 418 julius
                                                              (line 124)
4072 19 jeremybenn
* cfgr (CPU configuration):              CPU Configuration.   (line  47)
4073
* channel (UART configuration):          UART Configuration.  (line  29)
4074
* clear breakpoint (Interactive CLI):    Interactive Command Line.
4075
                                                              (line  57)
4076 432 jeremybenn
* clear_interrupt:                       Concepts.            (line  20)
4077 202 julius
* clkcycle (simulator configuration):    Simulator Behavior.  (line 115)
4078 19 jeremybenn
* cm (Interactive CLI):                  Interactive Command Line.
4079
                                                              (line  54)
4080
* command line for Or1ksim standalone use: Standalone Simulator.
4081
                                                              (line   6)
4082
* complex model:                         Configuring the Build.
4083 552 julius
                                                              (line  36)
4084 19 jeremybenn
* config:                                Global Data Structures.
4085
                                                              (line   7)
4086
* config.bpb:                            Global Data Structures.
4087
                                                              (line  37)
4088
* config.cpu:                            Global Data Structures.
4089
                                                              (line  22)
4090
* config.cuc:                            Global Data Structures.
4091
                                                              (line  18)
4092
* config.dc:                             Global Data Structures.
4093
                                                              (line  25)
4094
* config.debug:                          Global Data Structures.
4095
                                                              (line  40)
4096
* config.pic:                            Global Data Structures.
4097
                                                              (line  33)
4098
* config.pm:                             Global Data Structures.
4099
                                                              (line  29)
4100
* config.sim:                            Global Data Structures.
4101
                                                              (line  11)
4102
* config.vapi:                           Global Data Structures.
4103
                                                              (line  14)
4104
* configuration dynamic structure:       Global Data Structures.
4105
                                                              (line  49)
4106
* configuration file structure:          Configuration File Format.
4107
                                                              (line   6)
4108
* configuration global structure:        Global Data Structures.
4109
                                                              (line   7)
4110
* configuration info (Interactive CLI):  Interactive Command Line.
4111
                                                              (line 119)
4112
* configuration of generic peripherals:  Generic Peripheral Configuration.
4113
                                                              (line   6)
4114
* configuration parameter setting (Interactive CLI): Interactive Command Line.
4115
                                                              (line 146)
4116
* configuring branch prediction:         Branch Prediction Configuration.
4117
                                                              (line   6)
4118
* configuring data & instruction caches: Cache Configuration. (line   6)
4119
* configuring data & instruction MMUs:   Memory Management Configuration.
4120
                                                              (line   6)
4121
* configuring DMA:                       DMA Configuration.   (line   6)
4122
* configuring memory:                    Memory Configuration.
4123
                                                              (line   6)
4124
* configuring Or1ksim:                   Configuration.       (line   6)
4125
* configuring power management:          Power Management Configuration.
4126
                                                              (line   6)
4127
* configuring the ATA/ATAPI interfaces:  Disc Interface Configuration.
4128
                                                              (line   6)
4129
* configuring the behavior of Or1ksim:   Simulator Behavior.  (line   6)
4130
* configuring the CPU:                   CPU Configuration.   (line   6)
4131
* configuring the Custom Unit Compiler (CUC): CUC Configuration.
4132
                                                              (line   6)
4133
* configuring the debug unit and interface to external debuggers: Debug Interface Configuration.
4134
                                                              (line   6)
4135
* configuring the Ethernet interface:    Ethernet Configuration.
4136
                                                              (line   6)
4137 440 jeremybenn
* configuring the Ethernet TUN/TAP interface: Ethernet TUN/TAP Interface.
4138
                                                              (line   6)
4139 19 jeremybenn
* configuring the frame buffer:          Frame Buffer Configuration.
4140
                                                              (line   6)
4141
* configuring the GPIO:                  GPIO Configuration.  (line   6)
4142
* configuring the interrupt controller:  Interrupt Configuration.
4143
                                                              (line   6)
4144
* configuring the keyboard interface:    Keyboard Configuration.
4145
                                                              (line   6)
4146
* configuring the memory controller:     Memory Controller Configuration.
4147
                                                              (line   6)
4148
* configuring the processor:             CPU Configuration.   (line   6)
4149
* configuring the PS2 interface:         Keyboard Configuration.
4150
                                                              (line   6)
4151
* configuring the UART:                  UART Configuration.  (line   6)
4152
* configuring the Verification API (VAPI): Verification API Configuration.
4153
                                                              (line   6)
4154
* configuring the VGA interface:         Display Interface Configuration.
4155
                                                              (line   6)
4156
* copying memory (Interactive CLI):      Interactive Command Line.
4157
                                                              (line  54)
4158
* CPU configuration:                     CPU Configuration.   (line   6)
4159
* CUC configuration:                     CUC Configuration.   (line   6)
4160
* Custom Unit Compiler (Interactive CLI): Interactive Command Line.
4161
                                                              (line 162)
4162
* Custom Unit Compiler Configuration:    CUC Configuration.   (line   6)
4163
* data cache configuration:              Cache Configuration. (line   6)
4164
* data MMU configuration:                Memory Management Configuration.
4165
                                                              (line   6)
4166
* DCGE (power management register):      Power Management Configuration.
4167
                                                              (line  21)
4168
* debug (Interactive CLI):               Interactive Command Line.
4169 346 jeremybenn
                                                              (line 151)
4170 19 jeremybenn
* debug (simulator configuration):       Simulator Behavior.  (line  13)
4171
* debug channel toggle (Interactive CLI): Interactive Command Line.
4172
                                                              (line 141)
4173
* debug interface configuration:         Debug Interface Configuration.
4174
                                                              (line   6)
4175
* debug mode toggle (Interactive CLI):   Interactive Command Line.
4176
                                                              (line 151)
4177
* debug unit configuration:              Debug Interface Configuration.
4178
                                                              (line   6)
4179
* Debug Unit verification (VAPI):        Verification API.    (line  34)
4180
* debugging enabled (Argtable2):         Configuring the Build.
4181 552 julius
                                                              (line  91)
4182 104 jeremybenn
* DejaGnu board configurations:          Regression Testing.  (line  35)
4183
* DejaGnu configuration:                 Regression Testing.  (line  21)
4184
* DejaGNU tests directories:             Regression Testing.  (line  50)
4185
* DejaGnu tool specific configuration:   Regression Testing.  (line  39)
4186 19 jeremybenn
* delayr (memory configuration):         Memory Configuration.
4187 418 julius
                                                              (line 144)
4188 19 jeremybenn
* delayw (memory configuration):         Memory Configuration.
4189 418 julius
                                                              (line 150)
4190 98 jeremybenn
* dependstats (CPU configuration):       CPU Configuration.   (line  89)
4191 19 jeremybenn
* dev_id (ATA/ATAPI configuration):      Disc Interface Configuration.
4192 385 jeremybenn
                                                              (line  40)
4193 19 jeremybenn
* disassemble (Interactive CLI):         Interactive Command Line.
4194
                                                              (line  41)
4195
* disc interface configuration:          Disc Interface Configuration.
4196
                                                              (line   6)
4197
* disc interface device configuration:   Disc Interface Configuration.
4198 385 jeremybenn
                                                              (line  92)
4199 19 jeremybenn
* display interface configuration:       Display Interface Configuration.
4200
                                                              (line   6)
4201
* displaying memory (Interactive CLI):   Interactive Command Line.
4202
                                                              (line  31)
4203
* displaying registers (Interactive CLI): Interactive Command Line.
4204
                                                              (line  14)
4205
* dm (Interactive CLI):                  Interactive Command Line.
4206
                                                              (line  31)
4207
* dma (Ethernet configuration):          Ethernet Configuration.
4208 440 jeremybenn
                                                              (line  34)
4209 19 jeremybenn
* DMA configuration:                     DMA Configuration.   (line   6)
4210
* DMA verification (VAPI):               Verification API.    (line  73)
4211
* dma_mode0_td (ATA/ATAPI configuration): Disc Interface Configuration.
4212 385 jeremybenn
                                                              (line  74)
4213 19 jeremybenn
* dma_mode0_teoc (ATA/ATAPI configuration): Disc Interface Configuration.
4214 385 jeremybenn
                                                              (line  75)
4215 19 jeremybenn
* dma_mode0_tm (ATA/ATAPI configuration): Disc Interface Configuration.
4216 385 jeremybenn
                                                              (line  73)
4217 19 jeremybenn
* DME (power management register):       Power Management Configuration.
4218
                                                              (line  15)
4219
* DMMU configuration:                    Memory Management Configuration.
4220
                                                              (line   6)
4221
* doze mode (power management register): Power Management Configuration.
4222
                                                              (line  15)
4223 451 jeremybenn
* dummy_crc (Ethernet configuration):    Ethernet Configuration.
4224
                                                              (line 104)
4225 19 jeremybenn
* dv (Interactive CLI):                  Interactive Command Line.
4226
                                                              (line 124)
4227
* dynamic clock gating (power management register): Power Management Configuration.
4228
                                                              (line  21)
4229
* dynamic ports, use of:                 Verification API Configuration.
4230
                                                              (line  23)
4231
* edge_trigger (interrupt controller):   Interrupt Configuration.
4232
                                                              (line  16)
4233 346 jeremybenn
* enable_bursts (CUC configuration):     CUC Configuration.   (line  41)
4234 19 jeremybenn
* enabled (ATA/ATAPI configuration):     Disc Interface Configuration.
4235 385 jeremybenn
                                                              (line  22)
4236 19 jeremybenn
* enabled (branch prediction configuration): Branch Prediction Configuration.
4237
                                                              (line  15)
4238
* enabled (cache configuration):         Cache Configuration. (line  11)
4239
* enabled (debug interface configuration): Debug Interface Configuration.
4240
                                                              (line  11)
4241
* enabled (DMA configuration):           DMA Configuration.   (line  20)
4242
* enabled (Ethernet configuration):      Ethernet Configuration.
4243 440 jeremybenn
                                                              (line  19)
4244 19 jeremybenn
* enabled (frame buffer configuration):  Frame Buffer Configuration.
4245
                                                              (line  16)
4246
* enabled (generic peripheral configuration): Generic Peripheral Configuration.
4247
                                                              (line  18)
4248
* enabled (GPIO configuration):          GPIO Configuration.  (line  17)
4249
* enabled (interrupt controller):        Interrupt Configuration.
4250
                                                              (line  12)
4251
* enabled (keyboard configuration):      Keyboard Configuration.
4252
                                                              (line  32)
4253
* enabled (memory controller configuration): Memory Controller Configuration.
4254 385 jeremybenn
                                                              (line  44)
4255 19 jeremybenn
* enabled (MMU configuration):           Memory Management Configuration.
4256
                                                              (line  12)
4257
* enabled (power management configuration): Power Management Configuration.
4258
                                                              (line  35)
4259
* enabled (UART configuration):          UART Configuration.  (line  18)
4260
* enabled (verification API configuration): Verification API Configuration.
4261
                                                              (line  15)
4262
* enabled (VGA configuration):           Display Interface Configuration.
4263
                                                              (line  22)
4264
* enabling Ethernet via socket:          Configuring the Build.
4265 552 julius
                                                              (line  52)
4266 19 jeremybenn
* entrysize (MMU configuration):         Memory Management Configuration.
4267
                                                              (line  32)
4268
* ETH_VAPI_CTRL (Ethernet verification): Verification API.    (line  86)
4269
* ETH_VAPI_DATA (Ethernet verification): Verification API.    (line  84)
4270 440 jeremybenn
* Ethernet bridge setup:                 Establishing a Bridge.
4271
                                                              (line   6)
4272 19 jeremybenn
* Ethernet configuration:                Ethernet Configuration.
4273
                                                              (line   6)
4274
* Ethernet verification (VAPI):          Verification API.    (line  78)
4275
* Ethernet via socket, enabling:         Configuring the Build.
4276 552 julius
                                                              (line  52)
4277 127 jeremybenn
* exclusive-OR immediate operand:        Configuring the Build.
4278 552 julius
                                                              (line  62)
4279 202 julius
* exe_bin_insn_log (simulator configuration): Simulator Behavior.
4280
                                                              (line 103)
4281
* exe_bin_insn_log_file (simulator configuration): Simulator Behavior.
4282
                                                              (line 111)
4283 82 jeremybenn
* exe_log (simulator configuration):     Simulator Behavior.  (line  49)
4284
* exe_log_end (simulator configuration): Simulator Behavior.  (line  89)
4285
* exe_log_file (simulator configuration): Simulator Behavior. (line  97)
4286 19 jeremybenn
* exe_log_fn (simulator configuration - deprecated): Simulator Behavior.
4287 82 jeremybenn
                                                              (line  97)
4288 19 jeremybenn
* exe_log_marker (simulator configuration): Simulator Behavior.
4289 82 jeremybenn
                                                              (line  93)
4290 19 jeremybenn
* exe_log_start (simulator configuration): Simulator Behavior.
4291 82 jeremybenn
                                                              (line  86)
4292
* exe_log_type (simulator configuration): Simulator Behavior. (line  55)
4293 19 jeremybenn
* exe_log_type=default (simulator configuration): Simulator Behavior.
4294 82 jeremybenn
                                                              (line  58)
4295 19 jeremybenn
* exe_log_type=hardware (simulator configuration): Simulator Behavior.
4296 82 jeremybenn
                                                              (line  62)
4297 19 jeremybenn
* exe_log_type=simple (simulator configuration): Simulator Behavior.
4298 82 jeremybenn
                                                              (line  69)
4299 19 jeremybenn
* exe_log_type=software (simulator configuration): Simulator Behavior.
4300 82 jeremybenn
                                                              (line  74)
4301 19 jeremybenn
* executing code (Interactive CLI):      Interactive Command Line.
4302
                                                              (line  23)
4303
* execution history (Interactive CLI):   Interactive Command Line.
4304
                                                              (line  67)
4305
* file (ATA/ATAPI device configuration): Disc Interface Configuration.
4306 385 jeremybenn
                                                              (line 108)
4307 19 jeremybenn
* file (keyboard configuration):         Keyboard Configuration.
4308
                                                              (line  51)
4309
* filename (frame buffer configuration - deprecated): Frame Buffer Configuration.
4310 82 jeremybenn
                                                              (line  36)
4311 19 jeremybenn
* filename (VGA configuration - deprecated): Display Interface Configuration.
4312
                                                              (line  47)
4313 440 jeremybenn
* firewall with Ethernet bridge and TAP/TUN: Opening the Firewall.
4314
                                                              (line   6)
4315 19 jeremybenn
* firmware (ATA/ATAPI device configuration): Disc Interface Configuration.
4316 385 jeremybenn
                                                              (line 121)
4317 19 jeremybenn
* flag setting by instructions:          Configuring the Build.
4318 552 julius
                                                              (line 111)
4319 19 jeremybenn
* frame buffer configuration:            Frame Buffer Configuration.
4320
                                                              (line   6)
4321
* generic peripheral configuration:      Generic Peripheral Configuration.
4322
                                                              (line   6)
4323
* GPIO configuration:                    GPIO Configuration.  (line   6)
4324
* GPIO verification (VAPI):              Verification API.    (line  88)
4325
* GPIO_VAPI_AUX (GPIO verification):     Verification API.    (line 100)
4326
* GPIO_VAPI_CLOCK (GPIO verification):   Verification API.    (line 103)
4327
* GPIO_VAPI_CTRL (GPIO verification):    Verification API.    (line 119)
4328
* GPIO_VAPI_DATA (GPIO verification):    Verification API.    (line  97)
4329
* GPIO_VAPI_INTE (GPIO verification):    Verification API.    (line 110)
4330
* GPIO_VAPI_PTRIG (GPIO verification):   Verification API.    (line 113)
4331
* GPIO_VAPI_RGPIO (GPIO verification):   Verification API.    (line 107)
4332 100 julius
* hardfloat (CPU configuration):         CPU Configuration.   (line 110)
4333 98 jeremybenn
* hazards (CPU configuration):           CPU Configuration.   (line  74)
4334 19 jeremybenn
* heads (ATA/ATAPI device configuration): Disc Interface Configuration.
4335 385 jeremybenn
                                                              (line 125)
4336 19 jeremybenn
* help (Interactive CLI):                Interactive Command Line.
4337
                                                              (line 170)
4338
* hexadecimal memory dump (Interactive CLI): Interactive Command Line.
4339
                                                              (line 133)
4340
* hide_device_id (verification API configuration): Verification API Configuration.
4341
                                                              (line  36)
4342
* hist (Interactive CLI):                Interactive Command Line.
4343
                                                              (line  67)
4344 82 jeremybenn
* history (simulator configuration):     Simulator Behavior.  (line  40)
4345 19 jeremybenn
* history of execution (Interactive CLI): Interactive Command Line.
4346
                                                              (line  67)
4347
* hitdelay (branch prediction configuration): Branch Prediction Configuration.
4348
                                                              (line  33)
4349
* hitdelay (instruction cache configuration): Cache Configuration.
4350
                                                              (line  38)
4351
* hitdelay (MMU configuration):          Memory Management Configuration.
4352
                                                              (line  51)
4353 104 jeremybenn
* host test code:                        Regression Testing.  (line  57)
4354 19 jeremybenn
* hw_enabled (generic peripheral configuration): Generic Peripheral Configuration.
4355
                                                              (line  49)
4356
* IMMU configuration:                    Memory Management Configuration.
4357
                                                              (line   6)
4358
* index (memory controller configuration): Memory Controller Configuration.
4359 385 jeremybenn
                                                              (line  77)
4360 19 jeremybenn
* info (Interactive CLI):                Interactive Command Line.
4361
                                                              (line 119)
4362
* installing Or1ksim:                    Installation.        (line   6)
4363
* instruction cache configuration:       Cache Configuration. (line   6)
4364
* instruction MMU configuration:         Memory Management Configuration.
4365
                                                              (line   6)
4366
* instruction profiling for Or1ksim:     Profiling Utility.   (line   6)
4367
* instruction profiling utility (Interactive CLI): Interactive Command Line.
4368
                                                              (line 178)
4369
* internal debugging:                    Internal Debugging.  (line   6)
4370
* interrupt controller configuration:    Interrupt Configuration.
4371
                                                              (line   6)
4372 432 jeremybenn
* interrupts:                            Concepts.            (line  20)
4373 19 jeremybenn
* irq (ATA/ATAPI configuration):         Disc Interface Configuration.
4374 385 jeremybenn
                                                              (line  36)
4375 19 jeremybenn
* irq (DMA configuration):               DMA Configuration.   (line  34)
4376
* irq (GPIO configuration):              GPIO Configuration.  (line  29)
4377
* irq (keyboard configuration):          Keyboard Configuration.
4378
                                                              (line  47)
4379
* irq (UART configuration):              UART Configuration.  (line  70)
4380
* irq (VGA configuration):               Display Interface Configuration.
4381
                                                              (line  37)
4382
* jitter (UART configuration):           UART Configuration.  (line  78)
4383
* keyboard configuration:                Keyboard Configuration.
4384
                                                              (line   6)
4385 460 jeremybenn
* l.nop 0:                               l.nop Support.       (line  12)
4386
* l.nop 1 (end simulation):              l.nop Support.       (line  15)
4387 483 jeremybenn
* l.nop 10 (return a random number):     l.nop Support.       (line  51)
4388
* l.nop 11 (return a non-zero value):    l.nop Support.       (line  62)
4389 460 jeremybenn
* l.nop 2 (report):                      l.nop Support.       (line  19)
4390
* l.nop 3 (printf, now obsolete):        l.nop Support.       (line  22)
4391
* l.nop 4 (putc):                        l.nop Support.       (line  29)
4392
* l.nop 5 (reset statistics counters):   l.nop Support.       (line  34)
4393
* l.nop 6 (get clock ticks):             l.nop Support.       (line  37)
4394
* l.nop 7 (get picoseconds per cycle):   l.nop Support.       (line  41)
4395 472 jeremybenn
* l.nop 8 (turn off tracing):            Trace Generation.    (line  40)
4396
* l.nop 8 (turn on tracing) <1>:         l.nop Support.       (line  45)
4397
* l.nop 8 (turn on tracing):             Trace Generation.    (line  40)
4398 460 jeremybenn
* l.nop 9 (turn off tracing):            l.nop Support.       (line  48)
4399
* l.nop opcode effects:                  l.nop Support.       (line   6)
4400 19 jeremybenn
* library version of Or1ksim:            Simulator Library.   (line   6)
4401
* license for Or1ksim:                   GNU Free Documentation License.
4402
                                                              (line   6)
4403 440 jeremybenn
* Linux (OpenRISC) and Ethernet:         Networking from OpenRISC Linux and BusyBox.
4404
                                                              (line   6)
4405 19 jeremybenn
* list breakpoints (Interactive CLI):    Interactive Command Line.
4406
                                                              (line  60)
4407
* load_hitdelay (data cache configuration): Cache Configuration.
4408
                                                              (line  46)
4409
* load_missdelay (data cache configuration): Cache Configuration.
4410
                                                              (line  50)
4411
* log (memory configuration):            Memory Configuration.
4412 418 julius
                                                              (line 156)
4413 19 jeremybenn
* log_enabled (verification API configuration): Verification API Configuration.
4414
                                                              (line  28)
4415 432 jeremybenn
* long:                                  Simulator Library.   (line  94)
4416 104 jeremybenn
* make file for tests:                   Regression Testing.  (line  27)
4417 19 jeremybenn
* mc (memory configuration):             Memory Configuration.
4418 418 julius
                                                              (line 133)
4419 19 jeremybenn
* memory configuration:                  Memory Configuration.
4420
                                                              (line   6)
4421
* memory controller configuration:       Memory Controller Configuration.
4422
                                                              (line   6)
4423
* memory copying (Interactive CLI):      Interactive Command Line.
4424
                                                              (line  54)
4425
* memory display (Interactive CLI):      Interactive Command Line.
4426
                                                              (line  31)
4427
* memory dump, hexadecimal (Interactive CLI): Interactive Command Line.
4428
                                                              (line 133)
4429
* memory dump, Verilog (Interactive CLI): Interactive Command Line.
4430
                                                              (line 124)
4431
* memory patching (Interactive CLI):     Interactive Command Line.
4432
                                                              (line  48)
4433
* memory profiling end address:          Memory Profiling Utility.
4434
                                                              (line  56)
4435
* memory profiling start address:        Memory Profiling Utility.
4436
                                                              (line  56)
4437
* memory profiling utility (Interactive CLI): Interactive Command Line.
4438
                                                              (line 173)
4439
* memory profiling version of Or1ksim:   Memory Profiling Utility.
4440
                                                              (line   6)
4441
* memory_order (CUC configuration):      CUC Configuration.   (line  15)
4442 346 jeremybenn
* memory_order=exact (CUC configuration): CUC Configuration.  (line  30)
4443 19 jeremybenn
* memory_order=none (CUC configuration): CUC Configuration.   (line  18)
4444 346 jeremybenn
* memory_order=strong (CUC configuration): CUC Configuration. (line  27)
4445
* memory_order=weak (CUC configuration): CUC Configuration.   (line  22)
4446 19 jeremybenn
* missdelay (branch prediction configuration): Branch Prediction Configuration.
4447
                                                              (line  37)
4448
* missdelay (instruction cache configuration): Cache Configuration.
4449
                                                              (line  42)
4450
* missdelay (MMU configuration):         Memory Management Configuration.
4451
                                                              (line  55)
4452
* MMU configuration:                     Memory Management Configuration.
4453
                                                              (line   6)
4454 82 jeremybenn
* mprof_file (simulator configuration):  Simulator Behavior.  (line  34)
4455 19 jeremybenn
* mprof_fn (simulator configuration - deprecated): Simulator Behavior.
4456 82 jeremybenn
                                                              (line  34)
4457 19 jeremybenn
* mprofile (Interactive CLI):            Interactive Command Line.
4458 346 jeremybenn
                                                              (line 173)
4459 82 jeremybenn
* mprofile (simulator configuration):    Simulator Behavior.  (line  29)
4460 432 jeremybenn
* mtspr:                                 Concepts.            (line  20)
4461 19 jeremybenn
* mwdma (ATA/ATAPI device configuration): Disc Interface Configuration.
4462 385 jeremybenn
                                                              (line 132)
4463 19 jeremybenn
* name (generic peripheral configuration): Generic Peripheral Configuration.
4464
                                                              (line  42)
4465
* name (memory configuration):           Memory Configuration.
4466 418 julius
                                                              (line 115)
4467 346 jeremybenn
* no_multicycle (CUC configuration):     CUC Configuration.   (line  45)
4468 19 jeremybenn
* nsets (cache configuration):           Cache Configuration. (line  15)
4469
* nsets (MMU configuration):             Memory Management Configuration.
4470
                                                              (line  16)
4471
* nways (cache configuration):           Cache Configuration. (line  22)
4472
* nways (MMU configuration):             Memory Management Configuration.
4473
                                                              (line  22)
4474 432 jeremybenn
* or1ksim_get_time_period:               Simulator Library.   (line  84)
4475
* or1ksim_init:                          Simulator Library.   (line  19)
4476
* or1ksim_interrupt:                     Simulator Library.   (line  99)
4477
* or1ksim_interrupt_clear:               Simulator Library.   (line 121)
4478
* or1ksim_interrupt_set:                 Simulator Library.   (line 110)
4479
* or1ksim_is_le:                         Simulator Library.   (line  89)
4480
* or1ksim_jtag_reset:                    Simulator Library.   (line 130)
4481
* or1ksim_jtag_shift_dr:                 Simulator Library.   (line 152)
4482
* or1ksim_jtag_shift_ir:                 Simulator Library.   (line 139)
4483
* or1ksim_read_mem:                      Simulator Library.   (line 165)
4484
* or1ksim_read_reg:                      Simulator Library.   (line 197)
4485 346 jeremybenn
* or1ksim_read_spr:                      Simulator Library.   (line 181)
4486 432 jeremybenn
* or1ksim_reset_duration:                Simulator Library.   (line  69)
4487
* or1ksim_run:                           Simulator Library.   (line  58)
4488
* or1ksim_set_stall_state:               Simulator Library.   (line 212)
4489
* or1ksim_set_time_point:                Simulator Library.   (line  80)
4490
* or1ksim_write_mem:                     Simulator Library.   (line 173)
4491
* or1ksim_write_reg:                     Simulator Library.   (line 205)
4492
* or1ksim_write_spr:                     Simulator Library.   (line 189)
4493 19 jeremybenn
* output rediretion:                     Concepts.            (line   7)
4494
* overflow flag setting by instructions: Configuring the Build.
4495 552 julius
                                                              (line 126)
4496 19 jeremybenn
* packet (ATA/ATAPI device configuration): Disc Interface Configuration.
4497 385 jeremybenn
                                                              (line 117)
4498 19 jeremybenn
* pagesize (MMU configuration):          Memory Management Configuration.
4499
                                                              (line  27)
4500
* patching memory (Interactive CLI):     Interactive Command Line.
4501
                                                              (line  48)
4502
* patching registers (Interactive CLI):  Interactive Command Line.
4503
                                                              (line  28)
4504
* patching the program counter (Interactive CLI): Interactive Command Line.
4505
                                                              (line  51)
4506
* pattern (memory configuration):        Memory Configuration.
4507 418 julius
                                                              (line  82)
4508 19 jeremybenn
* pc (Interactive CLI):                  Interactive Command Line.
4509
                                                              (line  51)
4510 440 jeremybenn
* persistent TAP device creation:        Setting Up a Persistent TAP device.
4511
                                                              (line   6)
4512 429 julius
* phy_addr:                              Ethernet Configuration.
4513 451 jeremybenn
                                                              (line  99)
4514 19 jeremybenn
* PIC configuration:                     Interrupt Configuration.
4515
                                                              (line   6)
4516
* pio (ATA/ATAPI device configuration):  Disc Interface Configuration.
4517 385 jeremybenn
                                                              (line 136)
4518 19 jeremybenn
* pio_mode0_t1 (ATA/ATAPI configuration): Disc Interface Configuration.
4519 385 jeremybenn
                                                              (line  55)
4520 19 jeremybenn
* pio_mode0_t2 (ATA/ATAPI configuration): Disc Interface Configuration.
4521 385 jeremybenn
                                                              (line  56)
4522 19 jeremybenn
* pio_mode0_t4 (ATA/ATAPI configuration): Disc Interface Configuration.
4523 385 jeremybenn
                                                              (line  57)
4524 19 jeremybenn
* pio_mode0_teoc (ATA/ATAPI configuration): Disc Interface Configuration.
4525 385 jeremybenn
                                                              (line  58)
4526 19 jeremybenn
* pm (Interactive CLI):                  Interactive Command Line.
4527
                                                              (line  48)
4528
* PMR - DGCE:                            Power Management Configuration.
4529
                                                              (line  21)
4530
* PMR - DME:                             Power Management Configuration.
4531
                                                              (line  15)
4532
* PMR - SDF:                             Power Management Configuration.
4533
                                                              (line  12)
4534
* PMR - SME:                             Power Management Configuration.
4535
                                                              (line  16)
4536
* PMR - SUME:                            Power Management Configuration.
4537
                                                              (line  24)
4538
* PMU configuration:                     Power Management Configuration.
4539
                                                              (line   6)
4540
* poc (memory controller configuration): Memory Controller Configuration.
4541 385 jeremybenn
                                                              (line  64)
4542 19 jeremybenn
* port range for TCP/IP:                 Verification API Configuration.
4543
                                                              (line  23)
4544
* power management configuration:        Power Management Configuration.
4545
                                                              (line   6)
4546
* power management register, DGCE:       Power Management Configuration.
4547
                                                              (line  21)
4548
* power management register, DME:        Power Management Configuration.
4549
                                                              (line  15)
4550
* power management register, SDF:        Power Management Configuration.
4551
                                                              (line  12)
4552
* power management register, SME:        Power Management Configuration.
4553
                                                              (line  16)
4554
* power management register, SUME:       Power Management Configuration.
4555
                                                              (line  24)
4556
* pr (Interactive CLI):                  Interactive Command Line.
4557
                                                              (line  28)
4558
* private ports, use of:                 Verification API Configuration.
4559
                                                              (line  23)
4560
* processor configuration:               CPU Configuration.   (line   6)
4561
* processor stall (Interactive CLI):     Interactive Command Line.
4562
                                                              (line  72)
4563
* processor unstall (Interactive CLI):   Interactive Command Line.
4564
                                                              (line  78)
4565
* prof_file (simulator configuration):   Simulator Behavior.  (line  23)
4566
* prof_fn (simulator configuration - deprecated): Simulator Behavior.
4567
                                                              (line  23)
4568
* profile (simulator configuration):     Simulator Behavior.  (line  19)
4569
* profiling for Or1ksim:                 Profiling Utility.   (line   6)
4570
* profiling utility (Interactive CLI):   Interactive Command Line.
4571
                                                              (line 178)
4572
* program counter patching (Interactive CLI): Interactive Command Line.
4573
                                                              (line  51)
4574
* programmable interrupt controller configuration: Interrupt Configuration.
4575
                                                              (line   6)
4576
* PS2 configuration:                     Keyboard Configuration.
4577
                                                              (line   6)
4578
* q (Interactive CLI):                   Interactive Command Line.
4579
                                                              (line  11)
4580
* quitting (Interactive CLI):            Interactive Command Line.
4581
                                                              (line  11)
4582
* r (Interactive CLI):                   Interactive Command Line.
4583
                                                              (line  14)
4584
* random_seed (memory configuration):    Memory Configuration.
4585 418 julius
                                                              (line  72)
4586 19 jeremybenn
* refresh_rate (frame buffer configuration): Frame Buffer Configuration.
4587 82 jeremybenn
                                                              (line  30)
4588 19 jeremybenn
* refresh_rate (VGA configuration):      Display Interface Configuration.
4589
                                                              (line  41)
4590
* reg_sim_reset:                         Concepts.            (line  13)
4591
* register display (Interactive CLI):    Interactive Command Line.
4592
                                                              (line  14)
4593
* register over time statistics:         Configuring the Build.
4594 552 julius
                                                              (line  85)
4595 19 jeremybenn
* register patching (Interactive CLI):   Interactive Command Line.
4596
                                                              (line  28)
4597 104 jeremybenn
* regression testing:                    Regression Testing.  (line   6)
4598 19 jeremybenn
* Remote Serial Protocol:                Debug Interface Configuration.
4599
                                                              (line  20)
4600 235 jeremybenn
* Remote Serial Protocol, --nosrv:       Standalone Simulator.
4601 472 jeremybenn
                                                              (line  65)
4602 235 jeremybenn
* Remote Serial Protocol, --srv:         Standalone Simulator.
4603 472 jeremybenn
                                                              (line  73)
4604 432 jeremybenn
* report_interrupt:                      Concepts.            (line  20)
4605 19 jeremybenn
* reset (Interactive CLI):               Interactive Command Line.
4606
                                                              (line  63)
4607
* reset hooks:                           Concepts.            (line  13)
4608
* reset the simulator (Interactive CLI): Interactive Command Line.
4609
                                                              (line  63)
4610
* rev (ATA/ATAPI configuration):         Disc Interface Configuration.
4611 385 jeremybenn
                                                              (line  48)
4612 19 jeremybenn
* rev (CPU configuration):               CPU Configuration.   (line  15)
4613
* rsp_enabled (debug interface configuration): Debug Interface Configuration.
4614
                                                              (line  20)
4615
* rsp_port (debug interface configuration): Debug Interface Configuration.
4616 235 jeremybenn
                                                              (line  32)
4617 19 jeremybenn
* rtx_type (Ethernet configuration):     Ethernet Configuration.
4618 440 jeremybenn
                                                              (line  47)
4619 19 jeremybenn
* run (Interactive CLI):                 Interactive Command Line.
4620
                                                              (line  23)
4621
* running code (Interactive CLI):        Interactive Command Line.
4622
                                                              (line  23)
4623
* running Or1ksim:                       Usage.               (line   6)
4624
* runtime:                               Global Data Structures.
4625
                                                              (line  58)
4626
* runtime global structure:              Global Data Structures.
4627
                                                              (line  58)
4628
* runtime.cpu:                           Global Data Structures.
4629
                                                              (line  62)
4630
* runtime.cpu.fout:                      Concepts.            (line   7)
4631
* runtime.cuc:                           Global Data Structures.
4632
                                                              (line  62)
4633
* runtime.vapi:                          Global Data Structures.
4634
                                                              (line  62)
4635
* rx_channel (Ethernet configuration):   Ethernet Configuration.
4636 440 jeremybenn
                                                              (line  67)
4637 19 jeremybenn
* rxfile (Ethernet configuration):       Ethernet Configuration.
4638 440 jeremybenn
                                                              (line  76)
4639 19 jeremybenn
* sbp_bf_fwd (branch prediction configuration): Branch Prediction Configuration.
4640
                                                              (line  23)
4641
* sbp_bnf_fwd (branch prediction configuration): Branch Prediction Configuration.
4642
                                                              (line  28)
4643 98 jeremybenn
* sbuf_len (CPU configuration):          CPU Configuration.   (line 101)
4644 19 jeremybenn
* SDF (power management register):       Power Management Configuration.
4645
                                                              (line  12)
4646
* section ata:                           Disc Interface Configuration.
4647
                                                              (line   6)
4648
* section bpb:                           Branch Prediction Configuration.
4649
                                                              (line   6)
4650
* section cpio:                          GPIO Configuration.  (line   6)
4651
* section cpu:                           CPU Configuration.   (line   6)
4652
* section cuc:                           CUC Configuration.   (line   6)
4653
* section dc:                            Cache Configuration. (line   6)
4654
* section debug:                         Debug Interface Configuration.
4655
                                                              (line   6)
4656
* section dma:                           DMA Configuration.   (line   6)
4657
* section dmmu:                          Memory Management Configuration.
4658
                                                              (line   6)
4659
* section ethernet:                      Ethernet Configuration.
4660
                                                              (line   6)
4661
* section fb:                            Frame Buffer Configuration.
4662
                                                              (line   6)
4663
* section generic:                       Generic Peripheral Configuration.
4664
                                                              (line   6)
4665
* section ic:                            Cache Configuration. (line   6)
4666
* section immu:                          Memory Management Configuration.
4667
                                                              (line   6)
4668
* section kb:                            Keyboard Configuration.
4669
                                                              (line   6)
4670
* section mc:                            Memory Controller Configuration.
4671
                                                              (line   6)
4672
* section memory:                        Memory Configuration.
4673
                                                              (line   6)
4674
* section pic:                           Interrupt Configuration.
4675
                                                              (line   6)
4676
* section pmu:                           Power Management Configuration.
4677
                                                              (line   6)
4678
* section sim:                           Simulator Behavior.  (line   6)
4679
* section uart:                          UART Configuration.  (line   6)
4680
* section vapi:                          Verification API Configuration.
4681
                                                              (line   6)
4682
* section vga:                           Display Interface Configuration.
4683
                                                              (line   6)
4684
* sections:                              Global Data Structures.
4685
                                                              (line  49)
4686
* sectors (ATA/ATAPI device configuration): Disc Interface Configuration.
4687 385 jeremybenn
                                                              (line 129)
4688 19 jeremybenn
* server_port (verification API configuration): Verification API Configuration.
4689
                                                              (line  19)
4690
* set (Interactive CLI):                 Interactive Command Line.
4691
                                                              (line 146)
4692
* set breakpoint (Interactive CLI):      Interactive Command Line.
4693
                                                              (line  57)
4694
* setdbch (Interactive CLI):             Interactive Command Line.
4695
                                                              (line 141)
4696
* simple model:                          Configuring the Build.
4697 552 julius
                                                              (line  36)
4698 19 jeremybenn
* simulator configuration:               Simulator Behavior.  (line   6)
4699
* simulator configuration info (Interactive CLI): Interactive Command Line.
4700
                                                              (line 119)
4701
* simulator reset (Interactive CLI):     Interactive Command Line.
4702
                                                              (line  63)
4703
* simulator statistics (Interactive CLI): Interactive Command Line.
4704
                                                              (line  83)
4705
* size (ATA/ATAPI device configuration): Disc Interface Configuration.
4706 385 jeremybenn
                                                              (line 113)
4707 19 jeremybenn
* size (generic peripheral configuration): Generic Peripheral Configuration.
4708
                                                              (line  30)
4709
* size (memory configuration):           Memory Configuration.
4710 418 julius
                                                              (line  99)
4711 19 jeremybenn
* sleep mode (power management register): Power Management Configuration.
4712
                                                              (line  16)
4713
* slow down factor (power management register): Power Management Configuration.
4714
                                                              (line  12)
4715
* SME (power management register):       Power Management Configuration.
4716
                                                              (line  16)
4717
* sr (CPU configuration):                CPU Configuration.   (line  53)
4718
* stall (Interactive CLI):               Interactive Command Line.
4719
                                                              (line  72)
4720
* stall the processor (Interactive CLI): Interactive Command Line.
4721
                                                              (line  72)
4722
* statistics, register over time:        Configuring the Build.
4723 552 julius
                                                              (line  85)
4724 19 jeremybenn
* statistics, simulation (Interactive CLI): Interactive Command Line.
4725
                                                              (line  83)
4726
* stats (Interactive CLI):               Interactive Command Line.
4727
                                                              (line  83)
4728
* stepping code (Interactive CLI):       Interactive Command Line.
4729
                                                              (line  19)
4730
* store_hitdelay (data cache configuration): Cache Configuration.
4731
                                                              (line  54)
4732
* store_missdelay (data cache configuration): Cache Configuration.
4733
                                                              (line  58)
4734
* SUME (power management register):      Power Management Configuration.
4735
                                                              (line  24)
4736 98 jeremybenn
* superscalar (CPU configuration):       CPU Configuration.   (line  63)
4737 19 jeremybenn
* suspend mode (power management register): Power Management Configuration.
4738
                                                              (line  24)
4739
* t (Interactive CLI):                   Interactive Command Line.
4740
                                                              (line  19)
4741 440 jeremybenn
* TAP device creation:                   Setting Up a Persistent TAP device.
4742
                                                              (line   6)
4743
* tap_dev (Ethernet configuration):      Ethernet Configuration.
4744
                                                              (line  93)
4745 104 jeremybenn
* target test code:                      Regression Testing.  (line  63)
4746 19 jeremybenn
* TCP/IP port range:                     Verification API Configuration.
4747
                                                              (line  23)
4748
* TCP/IP port range for or1ksim-rsp service: Debug Interface Configuration.
4749 235 jeremybenn
                                                              (line  37)
4750 104 jeremybenn
* test code for host:                    Regression Testing.  (line  57)
4751
* test code for target:                  Regression Testing.  (line  63)
4752
* test make file:                        Regression Testing.  (line  27)
4753
* test README:                           Regression Testing.  (line  32)
4754
* testing:                               Regression Testing.  (line   6)
4755 82 jeremybenn
* tests, all enabled.:                   Configuring the Build.
4756 552 julius
                                                              (line  98)
4757 346 jeremybenn
* timings_file (CUC configuration):      CUC Configuration.   (line  49)
4758 19 jeremybenn
* timings_fn (CUC configuration - deprecated): CUC Configuration.
4759 346 jeremybenn
                                                              (line  49)
4760 19 jeremybenn
* toggle breakpoint (Interactive CLI):   Interactive Command Line.
4761
                                                              (line  57)
4762
* toggle debug channels (Interactive CLI): Interactive Command Line.
4763
                                                              (line 141)
4764
* toggle debug mode (Interactive CLI):   Interactive Command Line.
4765
                                                              (line 151)
4766 442 julius
* trace generation of Or1ksim:           Trace Generation.    (line   6)
4767 19 jeremybenn
* tx_channel (Ethernet configuration):   Ethernet Configuration.
4768 440 jeremybenn
                                                              (line  68)
4769 19 jeremybenn
* txfile (Ethernet configuration):       Ethernet Configuration.
4770 440 jeremybenn
                                                              (line  77)
4771 19 jeremybenn
* txfile (frame buffer configuration):   Frame Buffer Configuration.
4772 82 jeremybenn
                                                              (line  36)
4773 19 jeremybenn
* txfile (VGA configuration):            Display Interface Configuration.
4774
                                                              (line  47)
4775
* type (ATA/ATAPI device configuration): Disc Interface Configuration.
4776 385 jeremybenn
                                                              (line 103)
4777 19 jeremybenn
* type (memory configuration):           Memory Configuration.
4778 385 jeremybenn
                                                              (line  37)
4779 418 julius
* type=exitnops (memory configuration):  Memory Configuration.
4780 420 jeremybenn
                                                              (line  66)
4781 19 jeremybenn
* type=pattern (memory configuration):   Memory Configuration.
4782 385 jeremybenn
                                                              (line  47)
4783 19 jeremybenn
* type=random (memory configuration):    Memory Configuration.
4784 385 jeremybenn
                                                              (line  41)
4785 19 jeremybenn
* type=unknown (memory configuration):   Memory Configuration.
4786 385 jeremybenn
                                                              (line  51)
4787 19 jeremybenn
* type=zero (memory configuration):      Memory Configuration.
4788 385 jeremybenn
                                                              (line  56)
4789 19 jeremybenn
* UART configuration:                    UART Configuration.  (line   6)
4790
* UART I/O from/to a physical serial port: UART Configuration.
4791
                                                              (line  62)
4792
* UART I/O from/to an xterm:             UART Configuration.  (line  38)
4793
* UART I/O from/to files:                UART Configuration.  (line  33)
4794
* UART I/O from/to open file descriptors: UART Configuration. (line  58)
4795
* UART I/O from/to TCP/IP:               UART Configuration.  (line  45)
4796
* UART verification (VAPI):              Verification API.    (line  41)
4797
* unstall (Interactive CLI):             Interactive Command Line.
4798
                                                              (line  78)
4799
* unstall the processor (Interactive CLI): Interactive Command Line.
4800
                                                              (line  78)
4801
* upr (CPU configuration):               CPU Configuration.   (line  21)
4802 432 jeremybenn
* use_nmi (interrupt controller):        Interrupt Configuration.
4803
                                                              (line  30)
4804 19 jeremybenn
* ustates (cache configuration):         Cache Configuration. (line  33)
4805
* ustates (MMU configuration):           Memory Management Configuration.
4806
                                                              (line  41)
4807
* VAPI configuration:                    Verification API Configuration.
4808
                                                              (line   6)
4809
* VAPI for Debug Unit:                   Verification API.    (line  34)
4810
* VAPI for DMA:                          Verification API.    (line  73)
4811
* VAPI for Ethernet:                     Verification API.    (line  78)
4812
* VAPI for GPIO:                         Verification API.    (line  88)
4813
* VAPI for UART:                         Verification API.    (line  41)
4814
* vapi_id (debug interface configuration): Debug Interface Configuration.
4815 235 jeremybenn
                                                              (line  43)
4816 346 jeremybenn
* vapi_id (DMA configuration) <1>:       Ethernet Configuration.
4817 451 jeremybenn
                                                              (line 119)
4818 346 jeremybenn
* vapi_id (DMA configuration):           DMA Configuration.   (line  38)
4819 19 jeremybenn
* vapi_id (GPIO configuration):          GPIO Configuration.  (line  32)
4820
* vapi_id (UART configuration):          UART Configuration.  (line  85)
4821
* vapi_log_file (verification API configuration): Verification API Configuration.
4822
                                                              (line  41)
4823
* vapi_log_fn (verification API configuration - deprecated): Verification API Configuration.
4824
                                                              (line  41)
4825
* ver (CPU configuration):               CPU Configuration.   (line  15)
4826
* verbose (simulator configuration):     Simulator Behavior.  (line  10)
4827
* Verification API configuration:        Verification API Configuration.
4828
                                                              (line   6)
4829
* Verilog memory dump (Interactive CLI): Interactive Command Line.
4830
                                                              (line 124)
4831
* VGA configuration:                     Display Interface Configuration.
4832
 
4833
 
4834
                                                              (line  50)
4835
4836
4837

4838
Tag Table:
4839 538 julius
Node: Top826
4840
Node: Installation1236
4841
Node: Preparation1483
4842
Node: Configuring the Build1778
4843 552 julius
Node: Build and Install7614
4844
Node: Known Issues8380
4845
Node: Usage9435
4846
Node: Standalone Simulator9719
4847
Node: Profiling Utility14863
4848
Node: Memory Profiling Utility15769
4849
Node: Trace Generation17129
4850
Node: Simulator Library19314
4851
Node: Ethernet TUN/TAP Interface29746
4852
Node: Setting Up a Persistent TAP device30851
4853
Node: Establishing a Bridge31526
4854
Node: Opening the Firewall33209
4855
Node: Disabling Ethernet Filtering33700
4856
Node: Networking from OpenRISC Linux and BusyBox34325
4857
Node: Tearing Down a Bridge35987
4858
Node: l.nop Support36730
4859
Node: Configuration38892
4860
Node: Configuration File Format39504
4861
Node: Configuration File Preprocessing39889
4862
Node: Configuration File Syntax40186
4863
Node: Simulator Configuration42971
4864
Node: Simulator Behavior43262
4865
Node: Verification API Configuration47843
4866
Node: CUC Configuration49783
4867
Node: Core OpenRISC Configuration51775
4868
Node: CPU Configuration52277
4869
Node: Memory Configuration56396
4870
Node: Memory Management Configuration63118
4871
Node: Cache Configuration65495
4872
Node: Interrupt Configuration67881
4873
Node: Power Management Configuration69714
4874
Node: Branch Prediction Configuration70991
4875
Node: Debug Interface Configuration72351
4876
Node: Peripheral Configuration74694
4877
Node: Memory Controller Configuration75320
4878
Node: UART Configuration79100
4879
Node: DMA Configuration82619
4880
Node: Ethernet Configuration84486
4881
Node: GPIO Configuration89765
4882
Node: Display Interface Configuration91398
4883
Node: Frame Buffer Configuration93707
4884
Node: Keyboard Configuration95571
4885
Node: Disc Interface Configuration97809
4886
Node: Generic Peripheral Configuration102913
4887
Node: Interactive Command Line105208
4888
Node: Verification API112182
4889
Node: Code Internals116612
4890
Node: Coding Conventions117195
4891
Node: Global Data Structures121622
4892
Node: Concepts124279
4893
Ref: Output Redirection124424
4894
Ref: Interrupts Internal124962
4895
Node: Internal Debugging126115
4896
Node: Regression Testing126639
4897
Node: GNU Free Documentation License130428

powered by: WebSVN 2.1.0

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