1 /* This file is part of the program GDB, the GNU debugger.
3 Copyright (C) 1998 Free Software Foundation, Inc.
4 Contributed by Cygnus Solutions.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 tx3904cpu - tx3904 cpu virtual device
35 Implements the external tx3904 functionality. This includes the
36 delivery of of interrupts generated from other devices and the
37 handling of device specific registers.
55 Deliver a non-maskable interrupt to the processor.
60 Deliver a maskable interrupt of given level, corresponding to
61 IP[5:0], to processor.
68 When delivering an interrupt, this code assumes that there is only
69 one processor (number 0).
71 This code does not attempt to be efficient at handling pending
72 interrupts. It simply schedules the interrupt delivery handler
73 every instruction cycle until all pending interrupts go away. An
74 alternative implementation might modify instructions that change
75 the PSW and have them check to see if the change makes an interrupt
83 /* Pending interrupts for delivery by event handler */
84 int pending_reset
, pending_nmi
, pending_level
;
85 struct hw_event
* event
;
99 static const struct hw_port_descriptor tx3904cpu_ports
[] = {
101 /* interrupt inputs */
102 { "reset", RESET_PORT
, 0, input_port
, },
103 { "nmi", NMI_PORT
, 0, input_port
, },
104 { "level", LEVEL_PORT
, 0, input_port
, },
110 /* Finish off the partially created hw device. Attach our local
111 callbacks. Wire up our port names etc */
113 static hw_port_event_method tx3904cpu_port_event
;
118 tx3904cpu_finish (struct hw
*me
)
120 struct tx3904cpu
*controller
;
122 controller
= HW_ZALLOC (me
, struct tx3904cpu
);
123 set_hw_data (me
, controller
);
124 set_hw_ports (me
, tx3904cpu_ports
);
125 set_hw_port_event (me
, tx3904cpu_port_event
);
127 /* Initialize the pending interrupt flags */
128 controller
->pending_level
= 0;
129 controller
->pending_reset
= 0;
130 controller
->pending_nmi
= 0;
131 controller
->event
= NULL
;
136 /* An event arrives on an interrupt port */
139 deliver_tx3904cpu_interrupt (struct hw
*me
,
142 struct tx3904cpu
*controller
= hw_data (me
);
143 SIM_DESC sd
= hw_system (me
);
144 sim_cpu
*cpu
= STATE_CPU (sd
, 0); /* NB: fix CPU 0. */
145 address_word cia
= CIA_GET (cpu
);
148 #define SD current_state
150 if (controller
->pending_reset
)
152 controller
->pending_reset
= 0;
153 HW_TRACE ((me
, "reset pc=0x%08lx", (long) CIA_GET (cpu
)));
154 SignalExceptionNMIReset();
156 else if (controller
->pending_nmi
)
158 controller
->pending_nmi
= 0;
159 HW_TRACE ((me
, "nmi pc=0x%08lx", (long) CIA_GET (cpu
)));
160 SignalExceptionNMIReset();
162 else if (controller
->pending_level
)
164 HW_TRACE ((me
, "interrupt level=%d pc=0x%08lx sr=0x%08lx",
165 controller
->pending_level
,
166 (long) CIA_GET (cpu
), (long) SR
));
168 /* Clear CAUSE register. It may stay this way if the interrupt
169 was cleared with a negative pending_level. */
170 CAUSE
&= ~ (cause_IP_mask
<< cause_IP_shift
);
172 if(controller
->pending_level
> 0) /* interrupt set */
174 /* set hardware-interrupt subfields of CAUSE register */
175 CAUSE
|= (controller
->pending_level
& cause_IP_mask
) << cause_IP_shift
;
177 /* check for enabled / unmasked interrupts */
178 if((SR
& status_IEc
) &&
179 (controller
->pending_level
& ((SR
>> status_IM_shift
) & status_IM_mask
)))
181 controller
->pending_level
= 0;
182 SignalExceptionInterrupt(0 /* dummy value */);
186 /* reschedule soon */
187 if(controller
->event
!= NULL
)
188 hw_event_queue_deschedule(me
, controller
->event
);
190 hw_event_queue_schedule (me
, 1, deliver_tx3904cpu_interrupt
, NULL
);
192 } /* interrupt set */
195 #undef SD current_state
200 tx3904cpu_port_event (struct hw
*me
,
206 struct tx3904cpu
*controller
= hw_data (me
);
211 controller
->pending_reset
= 1;
212 HW_TRACE ((me
, "port-in reset"));
216 controller
->pending_nmi
= 1;
217 HW_TRACE ((me
, "port-in nmi"));
221 /* level == 0 means that the interrupt was cleared */
223 controller
->pending_level
= -1; /* signal end of interrupt */
225 controller
->pending_level
= level
;
226 HW_TRACE ((me
, "port-in level=%d", level
));
230 hw_abort (me
, "bad switch");
234 /* Schedule an event to be delivered immediately after current
236 if(controller
->event
!= NULL
)
237 hw_event_queue_deschedule(me
, controller
->event
);
239 hw_event_queue_schedule (me
, 0, deliver_tx3904cpu_interrupt
, NULL
);
243 const struct hw_descriptor dv_tx3904cpu_descriptor
[] = {
244 { "tx3904cpu", tx3904cpu_finish
, },