tsubai
a2e8151f8e
Define symbolic name of PMU commands.
1999-06-16 07:43:58 +00:00
thorpej
602d8e81f7
Don't (ab)use uvm_map_pageable() to allocate PT pages. Instead, do
...
some internal reference counting on PT pages. We still allocate them
with the page fault routine (a wire-fault, now), but no longer free
PT pages from pmap_pageable().
1999-06-15 22:18:07 +00:00
kleink
857dfc7058
Slightly rearrange the SSIR inline assembly implementation in order to avoid
...
making assumptions on C symbol name prefixes.
1999-06-15 15:26:34 +00:00
kleink
51eb26bf7e
Slightly rearrange the inline assembly in ledcontrol() to avoid frobbing a
...
C symbol name prefix.
1999-06-15 15:18:55 +00:00
minoura
cd06c07723
Check file open mode at ioctl.
...
Add debug option SRAM_DEBUG_DONTDOIT.
1999-06-15 15:04:56 +00:00
cgd
e33c6c47a2
set bb_flags to zero; who knows what they were (on disk) previously,
...
and SRM is finicky about what values it will allow.
1999-06-14 23:55:29 +00:00
cgd
b6e1d0f85a
set bb_flags to 0. Though not strictly necessary (because of an earlier
...
memset()), this is nice for source-level consistency.
1999-06-14 23:52:25 +00:00
tsubai
4df925b8b0
* Don't use DMA interrupt.
...
* Stop DMA explicitly in finish routine.
1999-06-14 08:53:06 +00:00
tsubai
86d2f9253a
Consider "have /psuedo-hid and only ADB keyboard" case to make the
...
new PowerBook G3 happy.
1999-06-14 06:22:50 +00:00
briggs
3cce22665e
Clear interrupts on a Radius GS/C card. Thanks go to Yasufumi Suzuki
...
<yattin@sco.bekkoame.ne.jp> for doing the MacsBug "leg"work for me.
1999-06-14 03:11:34 +00:00
kim
c867e93fae
Pickup changes from ../biosboot/Makefile and add .PATH so that source
...
files are found. Now this compiles ok (have yet to run the blocks).
1999-06-13 17:21:18 +00:00
pk
f90f079222
Fix typo in previous.
1999-06-13 07:58:20 +00:00
pk
fee9cd9c12
Initialize the heap (for alloc()) explicitly, since the `end' symbol
...
is not necessarily double-word aligned.
1999-06-12 12:49:24 +00:00
ender
2b55a690f8
Change the annoying printf() of 2 backspaces to a space followed by a
...
backspace for aesthetics.
1999-06-12 00:21:13 +00:00
scottr
35f356e920
Eliminate more overhead in delay(); there's no point in doing the same
...
thing in both the calibrator function and the actual delay function. At
this point, _delay() does all of the work, so we can garbage collect
dummy_delay() and make _delay() an alternate entry point for delay().
This results in a small (but measurable) improvement on the IIci.
1999-06-11 06:51:39 +00:00
eeh
0693ec8379
Don't change protection on the clock for the moment.
1999-06-10 04:31:20 +00:00
briggs
a6b22a059a
Note that 0x146 is a Micron Exceed.
1999-06-10 03:25:18 +00:00
briggs
3ea7c860b9
Use information from Kensuke Ogawa <kenogawa@festa.or.jp> to disable
...
interrupts on a Micron Exceed color video card.
1999-06-10 03:24:38 +00:00
nisimura
9a3291290d
- Correct errorneous comments for kn*_wbflush() routines.
1999-06-10 01:37:10 +00:00
nisimura
0ebace83f4
- Remove local declaration of 'dev_name2blk[]'.
...
- Minor formatting correction and removal of defunct debug lines.
1999-06-10 01:06:40 +00:00
scottr
6adfba2698
Tweak previous: use shorter instructions to accomplish the same
...
#task (minimizes overhead).
1999-06-09 15:34:08 +00:00
scottr
3c26ad58a1
Someone forgot to tell ddb that SWAP is not PEA.
1999-06-09 07:53:22 +00:00
nisimura
981a3b4cb2
- Nuke declarations for now obsolete implementations of spl()s.
1999-06-09 07:33:29 +00:00
scottr
f2f8426e86
Write a new low-level assembly help for delay() and the calibrator. This
...
eliminates stalls during instruction prefetch and makes the delay
consistent regardless of kernel configuration.
1999-06-09 06:59:53 +00:00
briggs
f98c8a0394
Remove some register declarations.
...
Get Q9x0 dual SCSI at least basically working.
Be paranoid about some register reads.
1999-06-09 03:41:34 +00:00
christos
2cfd9ef718
Synchronize with GENERIC
1999-06-09 01:47:14 +00:00
simonb
6a949cddfb
Include <pmax/pmax/machdep.h> instead of declaring our own prom_*()
...
prototypes.
1999-06-08 23:42:36 +00:00
simonb
b7a2ec3f01
+ Call prom_scsiid() to found out what the host SCSI ID should
...
be instead of hardcoding values.
+ Print the host SCSI ID in siiattach().
XXX - probably should do the same to the ASC driver?? The manuals for
the 5000 series machines don't mention the scsiidN env variable, but it
is present on all the models I've looked at...
1999-06-08 23:41:59 +00:00
simonb
7eb995464d
+ Add prototypes from the prom_*() callback routines.
...
+ Remove leading "extern" from function declarations.
+ CG unused latched_cycle_cnt.
1999-06-08 23:40:42 +00:00
simonb
661c94c72c
+ Add prom_getenv(), and use it instead off calling callv->_getenv.
...
+ Add prom_scsiid() to read and decode the prom scsiidN environment
variable that says what the host SCSI id should be.
+ Include <pmax/pmax/machdep.h> instead of declaring our own
prom_*() prototypes.
1999-06-08 23:40:19 +00:00
mrg
30c351dc59
mmm, missing return types make gcc unhappy.
1999-06-08 10:35:36 +00:00
mhitch
d9be0d6e6b
When entering a read-only page for MIPS3, va does not need to be adjusted by PAGE_SIZE
...
when flushing the I-cache.
1999-06-08 03:44:18 +00:00
nisimura
540b02ab76
- Exterminate haunted evil soul of MIPS va_arg(). Verified OK with
...
either endian. Not a perfect solution which would be revealed on
a certain condition when va_arg() is applied to magical struct
arguments passed by value. format_bytes() is now saved. With the
help from Noriyuki Soda and Masanari Tsubai.
1999-06-08 00:46:38 +00:00
is
b7ee76f1c4
Check for an unterminated bus; if yes: complain and don't try to use this
...
bus. Without this, cbiiisc used to hang if nothing was connected.
Reported by Matthias Scheler. A similar method to avoid this was suggested
by Ralph Schmidt.
1999-06-07 21:30:57 +00:00
thorpej
2c35c7bd03
Only declare block major numbers for devices which can be the root device.
1999-06-07 20:31:27 +00:00
thorpej
d76e7b8c6d
Don't pass a nam2blk around at all; just have setroot() and friends reference
...
dev_name2blk[] directly. Addresses PR #7622 (ITOH Yasufumi), although
in a different way.
1999-06-07 20:16:08 +00:00
mrg
0525e9c7ef
add ebus attachment for cs4231. this does not work as it requires ebus DMA and will panic if enabled. but it should otherwise be mostly complete.
1999-06-07 14:59:14 +00:00
mrg
03c5c00056
remove "EXPERIMENTAL" comment from this file, as it does not exist elsewhere in this directory.
1999-06-07 14:43:34 +00:00
thorpej
a0faadd7d2
Make traces work with ELF kernels.
1999-06-07 07:00:07 +00:00
mrg
aa506f8098
copyright foo. in the future, we will all be binary-redistributable.
1999-06-07 05:40:08 +00:00
eeh
1884f05354
Another general cleanup:
...
Remove the entire idea of fasttrap interrupts since V9 traps are really cheap,
the CPUs are really fast, and the completely different trap frames would make
these handlers really difficult to implement.
pmap_changeprot() was only used by the clock and one other place; deprecate it.
probeget() and probeset() now take 64-bit addresses even in 32-bit mode so we
can probe IO locations by physical addresses.
Some pmap cleanup.
Some more copyright cleanup.
1999-06-07 05:28:03 +00:00
is
92568502cc
Don't dump all the registers at attach time. It works now.
1999-06-06 19:58:31 +00:00
ragge
3bb07459cd
Qbus moved in hierarchy.
1999-06-06 19:10:49 +00:00
ragge
4756cdb74e
Page tables must be pageable (where did this disappear?)
...
Fix a PGOFSET -> VAX_PGOFSET miss.
Stylistic cleanup.
1999-06-06 19:09:50 +00:00
ragge
f6d61fb6ad
Add an define for SGMAP.
1999-06-06 19:07:11 +00:00
ragge
d55d0ac4b5
Add some more IPRs for KA670.
1999-06-06 19:06:29 +00:00
ragge
db8c0c9c4c
Use gencons if VAX670.
1999-06-06 19:05:21 +00:00
ragge
02637941e5
Ops, forgot this file.
1999-06-06 19:03:40 +00:00
ragge
134b65fde3
Added support for Qbus DMA.
1999-06-06 19:00:53 +00:00
ragge
64572c459a
sgmap files, copied from the Alpha port and modified for vax.
1999-06-06 18:58:50 +00:00