
October 13 1995, Draft 1
348
Addendum to –– Evaluating and Programming the 29K RISC Family
ters
gr64–gr95
are not shadowed if memory location
dbg_shadow_os
contains a 0
(normally set to –1). This can be done in the
cfg_core_enter()
procedure.
When
dbg_shadow_os
is cleared, physical registers
gr64–gr95
are always ac-
cessed with MiniMON29K READ and WRITE messages. However, messages such
as FIND and COPY operate on the shadow copies only, and this creates some minor
restrictions in DebugCore operation.
If
cfg_core_enter()
is modified to enable the on–chip timer to continue inter-
rupting during DebugCore operation, then memory location
dbg_shadow_timer
should also be set to 0 (normally –1). This prevents the TMR and TMC timer special
registers from being restored from their corresponding shadow memory locations
when the DebugCore context is exited.
Interrupts must be enabled during DebugCore operation if, say, an interrupt
driven UART is being used for MiniMON29K message communication. It is some-
times possible to use the message system in a poll–mode (described in the following
section), in this case interrupts can be disabled. Additionally, it may be possible to
selectively enable device interrupts in
cfg_core_enter()
. However, care should be
taken if any of the interrupts require C level context for interrupt processing. The De-
bugCore continues to use the register stack in place at the time the DebugCore was
entered. The DebugCore will not need to lower the stack support registers, but any C
level interrupt handler may make temporary use of the stack (this is very much oper-
ating system dependent). Further, it is important that no attempt is made to reenter
the DebugCore, via, say, a memory access error during an interrupt service routine
which interrupted the DebugCore operation.
Breakpoints located at both physical and virtual addresses are supported if the
processors has on–chip breakpoint control registers. Without breakpoint registers,
breakpoints are always located at physical addresses. However, per–process break-
points are supported even if the processor has no on–chip MMU support; or if the
MMU is not in use because separate processes are each running is Supervisor mode.
Breakpoint capabilities are presented in detail in section D.3.
7.3.6 The Message System
After the message system has been initialized with a call to
msg_init()
, the De-
bugCore responds to MonTIP host messages appropriately and sends acknowledge
messages to the host containing any requested data. The operating system can also
make use of the message system to support application services such as access to the
file system on the TIP host machine. The
msg_send()
function is used to request a
single message be sent. A similar function is made available by the message system
module on the TIP host processor.
int msg_send(struct message *msg_pointer);