scw
693ffb8185
Catch the case where a synchronous exception occurs during the critical
...
section of another exception. This is likely to happen if the kernel
stack is misaligned, has dropped off the bottom of the PCB, or has
otherwise gone into orbit.
In this case, switch to a safe stack, save as much of the machine
state as possible and dump it to the console.
2002-09-02 14:00:25 +00:00
scw
f9fe8e4707
Go to splhigh() before enterring ddb(9).
2002-09-02 13:55:03 +00:00
aymeric
4bbf4d2f6f
remove one comment; warp some lines.
2002-09-02 12:54:40 +00:00
leo
449ee49a3d
Decrease the vertical frequency.
2002-09-02 12:14:34 +00:00
leo
45501e0df2
Regen.
2002-09-02 12:13:35 +00:00
leo
89532d8b32
Introduce NO_PHYS_NETWORK as a define in the FALCON kernel. This define is
...
used to turn off the vlan, bridge and pppoe pseudo devices and the NETATALK
protocol.
2002-09-02 12:10:46 +00:00
aymeric
84ccd9ee4b
call grfcc_probe() and viewprobe(), even when we are not the console.
...
This fixes a panic when using a serial console and wsconscfg.
(The monitors list wouldn't be initialized in grfabs.c)
2002-09-02 11:09:48 +00:00
scw
2a7a3cc2f8
In the _EXCEPTION_EXIT macro, don't use r24 until we've finished
...
accessing the kernel stack, since a TLB miss on the kernel stack
will result in r24 being trashed.
Also clear the ES_CRITICAL flag just before returning to the
previous context.
2002-09-02 08:41:56 +00:00
jdolecek
ed2badbd21
make vers.c depend on ${SOURCES} and remove .PHONY tag for it, so that it
...
would only be regenerated if any of the input files changed
2002-09-02 07:33:11 +00:00
manu
9d459610ba
When the serial port was not checked in hpcboot on hpcarm, writing to
...
/dev/ttyS0 crashed the kernel. This is because sacom_filltx uses some
uninitialized static variables. Pulling the salues from softc instead
fixes the problem (this is what was done before the drver was moved
from /sys/arch/hpcarm to /sys/arch/arm, anyway).
2002-09-02 05:27:39 +00:00
scw
b02c328efd
Track adjacent movi/shori instructions with the same destination register
...
so we can print the accumulated value.
Print symbols, if possible, when decoding "pta" branch targets, and
"movi"/"shori" accumulated values.
2002-09-01 22:39:56 +00:00
scw
f387921c31
Move registers r10-r13 over to the Caller-saved set, at least as far
...
as intrframe and trapframe are concerned.
According to the ABI, only the low 32-bits of these registers are
guaranteed to be preserved by the callee. Therefore, we need to
preserve all 64-bits of them in the interrupt trampoline.
2002-09-01 11:40:54 +00:00
takemura
e00064b3e0
Fixed again. Rev 1.7 was incomplete and this device did't work for long time.
2002-09-01 10:45:38 +00:00
scw
75c81c5275
Blah, some of the larger operands could overflow the "opstr" buffer.
...
Bump the size of all of them to be on the safe side.
2002-09-01 10:07:25 +00:00
scw
d73a178b6b
Output a new-line character after disassembling the opcode.
2002-09-01 09:18:52 +00:00
scw
5938c04bbe
Yay, single-step now works.
...
Also do a wee bit tidying up.
2002-09-01 09:01:33 +00:00
scw
1398cd2898
Verify that the lowest 4 bits of the opcode are zero before disassembling.
...
According to the docs, opcode 0x6ff4fff0 is gauranteed to generate
a RESINST exception on all implementations, so disassemble it as "illegal".
2002-09-01 09:00:35 +00:00
scw
4c7d945594
A full SHmedia disassembler for ddb(9).
...
ToDo:
- Symbol support (can't test as yet, due to lack of symbols),
- Take notice of adjacent "movi/shori" instructions in order to display
the resulting 32/64-bit value, with symbol lookup if possible.
2002-08-31 22:21:39 +00:00
scw
63fee282ed
Always panic in the default/dopanic case, even if kdb_trap() returns.
2002-08-31 09:41:05 +00:00
scw
9c10dc5c22
If DEBUG is defined, enable Cayman's NMI button.
2002-08-31 09:30:02 +00:00
scw
da6c509ffa
Pick a better T_NMI code. The previous one clashed with T_AST|T_USER.
2002-08-31 09:25:53 +00:00
scw
c2aa4b74c8
Don't use "Branch Likely" for the NMI case.
2002-08-31 09:25:24 +00:00
scw
9a6575c7df
Add T_NMI.
2002-08-31 09:12:59 +00:00
scw
d7dbb0862d
Deal with NMIs by jumping through the normal trap() code path.
...
At the very least, this will dump the machine state. At best,
we get into ddb().
This provides a useful way to regain control using an NMI button
if the cpu decides to spin at a high ipl.
2002-08-31 09:11:56 +00:00
scw
17746914f0
Small simplification to the splx() code path when dealing with soft
...
interrupts, and fix a couple of nits in the generic soft interrupt code.
Soft interrupts now work.
2002-08-31 08:42:00 +00:00
thorpej
212cb9f78d
Add machine-dependent bits of RAS for arm32.
2002-08-31 03:07:32 +00:00
tsutsui
cda9af7bb6
Adapt arc to recent cpu_sysctl() changes on mips ports:
...
> Merge cpu_sysctl() for all mips ports, based on powerpc and m68k precedent.
>
> For now, only pmax implements CPU_BOOTED_KERNEL. Need to revisit.
2002-08-30 23:49:27 +00:00
thorpej
d1523404bb
Fix missing error check in sparc_bus_map(). Pointed out by uwe.
2002-08-30 20:38:31 +00:00
scw
60bff6ed9c
Make sure to sign-extend PTEH/PTEL values before writing to the TLBs.
...
Make sure to zero-extend PTEH/PTEL values before comparing with TLB entries.
Don't use the two LSBs of CTC when choosing a "random" TLB entry to replace;
seems like these bits are always zero on this CPU.
2002-08-30 13:54:16 +00:00
scw
7da5ef1b84
Delete the CPU_CTB1 option; it was never used.
...
Add the SH5_INTC_IRL_MODE_INDEP option, to correctly configure
the interrupt controller for Cayman.
2002-08-30 11:25:09 +00:00
scw
877f6b7143
Add some options:
...
- SH5_SIM, as we're targetting the simulator.
- KERNEL_IPT_SIZE, as we want to reduce startup time.
- DDB. Yes, DDB inside a debugger/simulator. :)
2002-08-30 11:23:12 +00:00
scw
aaa2f7e5ca
When running on the simulator, assume there is 16MB of "RAM". This
...
greatly reduces startup time.
2002-08-30 11:06:03 +00:00
scw
1fd693d5b5
In the IRL1 interrupt handler, you need to read the Interrupt
...
Source Register#0, Steve. Not the Board Operating Mode register. Duh.
2002-08-30 11:03:25 +00:00
scw
de63e7f1e4
Swap the IRL numbers for FEMI and SUPERIO, after reading the Cayman
...
docs a bit more closely...
2002-08-30 10:59:39 +00:00
scw
5cc4fe3194
Slight tweak to how the sm(4) driver attaches to superio. Also, just
...
use the regular bus tag for sm(4) instead of superio's "special" ISA
bus tag.
2002-08-30 10:57:05 +00:00
scw
ec32f137a2
Add byte_swap.h
2002-08-30 10:50:55 +00:00
scw
5bb390ef0d
Re-arrange the endian/byteswap headers a bit by splitting off the
...
byte swap code into a separate file and renaming them.
Fix a typo which prevented ntohX and htonX macros DTRT for
little-endian mode.
2002-08-30 10:50:06 +00:00
scw
7958409b89
If running on the simulator, use a much lower buzz-loop count when
...
waiting for ACKs from the DTF host, otherwise the simulator waits
way too long for the initial open-ACK (which never seems to arrive,
even though things work fine afterwards).
2002-08-30 10:45:31 +00:00
scw
986af15320
Setup the IRL[0-3] mode according to what the kernel config file specifies.
2002-08-30 10:41:24 +00:00
scw
14b4efaf64
If running on the simulator, skip the pbridge probe.
2002-08-30 10:39:26 +00:00
scw
f8f7664ef6
Defflag/param some options for:
...
- selecting Simulator/ST50 Debugger targets,
- hard-coding the cpu speed instead of using the speed detection code,
- changing the default kernel IPT size,
- selecting the IRL[0-3] mode to configure in the interrupt controller.
2002-08-30 10:29:35 +00:00
scw
873939f14a
Fix a typo which resulted in a bus_space_write_stream_4() where it
...
should have been bus_space_write_stream_2().
The sm(4) driver gets a bit further now.
While I'm here, g/c a debug printf accidentally commited last time around.
2002-08-29 18:11:07 +00:00
briggs
37019d791a
Use generic_bs_sr_4 for bus_space_set_region_4.
2002-08-29 17:29:34 +00:00
briggs
043080912d
Add generic_bs_sr_4
2002-08-29 17:27:48 +00:00
scw
1256340461
Add the frame pointer (r14) to the list of registers to save in
...
the pcb during a context switch.
2002-08-29 16:04:10 +00:00
hannken
ffd7a8c585
Convert to new device buffer queue interface.
...
Tested with help from Hauke Fath <hauke@Espresso.Rhein-Neckar.DE>
on Performa 600 and Quadra 700.
2002-08-29 14:15:37 +00:00
hannken
6243846e46
Get rid of error -66 (sector not found).
...
From Hauke Fath <hauke@Espresso.Rhein-Neckar.DE>
2002-08-29 09:26:23 +00:00
leo
eeb4fd145c
defopt SERCONSOLE
2002-08-29 08:28:58 +00:00
simonb
284c3f4875
It's the gt64120, not the gt62140.
2002-08-29 08:02:35 +00:00
chs
d6988a7eb6
Add `audio* at uaudio?' so that uaudio is actually useful. PR 15610.
2002-08-29 04:54:47 +00:00