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

Subversion Repositories or1k

[/] [or1k/] [tags/] [nog_patch_38] - Rev 1144

Rev

Go to most recent revision | Details | Compare with Previous | Blame

Filtering Options

Clear current filter

Rev Log message Author Age Path
1144 Speed up gdb when running with serial targets:

When generating backtraces, the prologue of each function is scanned
at least three times by architecture-independent code, e.g. to
determine offsets of saved registers, identify frameless functions,
etc. This new code adds straightforward caching of the information
gleaned by or1k_scan_prologue() on a per-frame basis rather than
storing it in global static variables. (This benefits both JTAG and
serial gdb targets, though the JTAG target runs fast enough that it is
not particularly needed.)

When the register set is dumped by the serial target, e.g. at any
breakpoint or interrupt, the 32 vector/FP registers were included in
the dump (each 8 bytes long), though they aren't implemented. The new
code tells gdb that unimplemented registers have zero length in the
dump.
sfurman 7767d 02h /or1k/tags/nog_patch_38
1143 Make UART transmitter-empty interrupts match both 16450 and 16550 behavior. sfurman 7767d 16h /or1k/tags/nog_patch_38
1142 Speed up gdb when running with serial targets:

When generating backtraces, the prologue of each function is scanned
at least three times by architecture-independent code, e.g. to
determine offsets of saved registers, identify frameless functions,
etc. This new code adds straightforward caching of the information
gleaned by or1k_scan_prologue() on a per-frame basis rather than
storing it in global static variables. (This benefits both JTAG and
serial gdb targets, though the JTAG target runs fast enough that it is
not particularly needed.)

When the register set is dumped by the serial target, e.g. at any
breakpoint or interrupt, the 32 vector/FP registers were included in
the dump (each 8 bytes long), though they aren't implemented. The new
code tells gdb that unimplemented registers have zero length in the
dump.
sfurman 7767d 17h /or1k/tags/nog_patch_38
1141 WB = 1/2 RISC clock test code enabled. lampret 7769d 02h /or1k/tags/nog_patch_38
1140 Fixed OR1200_CLKDIV_x_SUPPORTED defines. Fixed order of ifdefs. lampret 7769d 02h /or1k/tags/nog_patch_38
1139 Fixed OR1200_CLKDIV_x_SUPPORTED defines. Better description. lampret 7769d 02h /or1k/tags/nog_patch_38
1138 Added some information how to run simulations. lampret 7769d 21h /or1k/tags/nog_patch_38
1137 Added RFRAM generic and Altera lpm library. lampret 7769d 21h /or1k/tags/nog_patch_38
1136 Add altera lpm library. lampret 7769d 21h /or1k/tags/nog_patch_38
1135 Added get_gpr support for OR1200_RFRAM_GENERIC lampret 7769d 21h /or1k/tags/nog_patch_38
1134 Changed location of debug test code to 0. lampret 7769d 21h /or1k/tags/nog_patch_38
1133 Adding OR1200_CLMODE_1TO2 test code. lampret 7769d 21h /or1k/tags/nog_patch_38
1132 RFRAM defines comments updated. Altera LPM option added. lampret 7769d 21h /or1k/tags/nog_patch_38
1131 Added another pipe stage to match gmult. One day second pipe in amult and gmult might be removed to get better performance. lampret 7769d 21h /or1k/tags/nog_patch_38
1130 RFRAM type always need to be defined. lampret 7769d 21h /or1k/tags/nog_patch_38
1129 Added Altera LPM RAMs. Changed generic RAM output when OE inactive. lampret 7769d 21h /or1k/tags/nog_patch_38
1128 Fixed my bustage: Add missing 2nd argument to open(). Otherwise,
opening a serial port channel can sporadically fail.
sfurman 7774d 20h /or1k/tags/nog_patch_38
1127 Added ability to map I/O from simulated UARTs to physical serial ports
on the host running the simulator.
sfurman 7777d 21h /or1k/tags/nog_patch_38
1126 Added lengthy comment explaining all possible choices for UART
channels, e.g. xterm, tcp, file, etc.
sfurman 7779d 23h /or1k/tags/nog_patch_38
1125 This test case passes. lampret 7791d 03h /or1k/tags/nog_patch_38
1124 Initialize or1k_implementation with reasonable defaults for the number
of implementation registers. This doesn't affect the jtag or sim
targets at all because those values are always overwritten when
or1k_implementation is initialized. However, it is necessary when
connecting to remote gdb stubs through a serial port or socket, since
or1k_implementation is not yet initialized for those targets.
sfurman 7800d 19h /or1k/tags/nog_patch_38
1123 Renumber/rename SPRs to match latest architecture doc sfurman 7802d 01h /or1k/tags/nog_patch_38
1122 Get rid of C++ style declarations (which can appear in the middle of a block) in C program. Some older compilers complain. sfurman 7807d 03h /or1k/tags/nog_patch_38
1121 Ignore generated files sfurman 7807d 03h /or1k/tags/nog_patch_38
1120 Fix my dumb automake bustage sfurman 7807d 03h /or1k/tags/nog_patch_38
1119 1) Fix the "channels:xterm" feature so that it functions on linux.
The existing implementation relies on SysV STREAMS behavior that
Linux does not possess.

2) Allow arguments to be passed to the xterm from the sim.cfg file,
e.g. to set the window dimensions or fonts.

3) Add the ability for a program to interact with the simulator UART
through a TCP socket.
sfurman 7807d 23h /or1k/tags/nog_patch_38
1118 1) Fix the "channels:xterm" feature so that it functions on linux.
The existing implementation relies on SysV STREAMS behavior that
Linux does not possess.

2) Allow arguments to be passed to the xterm from the sim.cfg file,
e.g. to set the window dimensions or fonts.

3) Add the ability for a program to interact with the simulator UART
through a TCP socket.
sfurman 7807d 23h /or1k/tags/nog_patch_38
1117 Ignore generated files for CVS purposes sfurman 7808d 00h /or1k/tags/nog_patch_38
1116 There was a bug in the simulator's UART implementation that caused the
UART's LSR register to become corrupted. This was due to an
assumption that 'char' is an unsigned type, but that is not true on
all platforms.

When the char type is signed and a character is read in the range
0x80-0xff, the high bit is sign-extended into the upper bits of an
entry in the receive FIFO. When the character reaches the head of the
FIFO, the upper bits of the FIFO entry are OR'ed into the LSR, causing
the LSR to be set to 0xFF.

A simple cast fixes the problem.
sfurman 7808d 00h /or1k/tags/nog_patch_38
1115 Fix stack-walking code in or1k_frame_chain() and or1k_skip_prologue()
to expect the function prologue that or32 gcc currently emits, rather
than a previous incarnation of the or1k ABI.
sfurman 7823d 23h /or1k/tags/nog_patch_38

powered by: WebSVN 2.1.0

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