Commit Graph

112481 Commits

Author SHA1 Message Date
martin 57482255bc When overwriting the cache line size configuration, do not use the magic
value 0x10, but instead calculate a line size that is properly aligned
to the IOMMU strbuf cache and our external cache line size.
From FreeBSD.
2003-05-05 07:51:26 +00:00
igy f97f3c0df9 code cleanup 2003-05-05 04:34:48 +00:00
igy a1b8c84497 using high vector page 2003-05-05 04:23:26 +00:00
dbj 3359b0ac58 force nm addresses in hex and add 0x prefix before handing numerical
expression to the shell.
2003-05-05 02:47:42 +00:00
fvdl a4777405c5 unifdef bus/segv/ill logging. 2003-05-04 23:51:56 +00:00
fvdl 9756b6a911 Follow i386, and mask deferred level-triggered interrupts at the ioapic. 2003-05-04 23:46:41 +00:00
kristerw 204dc598d9 Change the type of the 'code' parameter of ahc_send_async() from u_int
to ac_code to agree with the function definition.
2003-05-04 23:37:27 +00:00
fvdl 2cd70f0da1 Block level-triggered interrupts at the ioapic if they are deferred.
Avoids interrupt storms seen on some systems. Many thanks to
Stoned Elipot for testing.
2003-05-04 22:01:56 +00:00
martin d22ec31292 Move the bus speed query code into it's own function and make it default
to 33 MHz. Cosmetics, no functional change.
2003-05-04 21:36:26 +00:00
ad bd17d709ab Xref amr. 2003-05-04 16:18:32 +00:00
ad 225c45d817 Enable the amr driver. 2003-05-04 16:16:18 +00:00
ad a079c0eb98 - Fix the mailbox protocol. Not tested with newer 'Quartz' controllers.
- Handle failure during initalisation more gracefully.
- Create a watchdog thread to poke the board and check for status changes.
- Make ready for > 64kB transfers.
2003-05-04 16:15:35 +00:00
atatat 535d709586 Build main.c with LOCKDEBUG defined so that it gets the larger kbit
definition.  Since we're now passing it into pmap.c which is already
compiled that way, it would be nice if it was the right size.

Also, fix a memset bug that caused a segmentation fault when printing
the kernel's vm_map.
2003-05-04 15:09:45 +00:00
christos a617975d48 print how big the mtu needs to be for ipv6 ppp. 2003-05-04 13:43:09 +00:00
fvdl cfb43ff372 Default to -O2 for x86_64. 2003-05-04 12:05:50 +00:00
fvdl 041046e740 Default to -O2. 2003-05-04 12:03:41 +00:00
fvdl 7a214454f6 Correct save FP state for signals. 2003-05-04 12:00:14 +00:00
jmmv 6c34824459 Explicitly close open file descriptor before exiting. 2003-05-04 11:54:59 +00:00
yamt 777190167d fix handling of the case that readsize == 0. 2003-05-04 11:40:22 +00:00
tsutsui 2fb7363e5d Check arc_displayc_id before calling vga_isa_cnattach(). 2003-05-04 10:37:48 +00:00
tsutsui ff776a0f93 Remove (deprecated) DMA functions in jazz/dma.c which are no longer used.
jazz/dma.h now only contains DMAC register definitions.
2003-05-04 10:07:50 +00:00
tsutsui 0bcf529e7f Rewrite jazzio asc SCSI driver to use MI ncr53c9x and bus_dma(9) with
BUS_DMA_ALLOCNOW flag for jazzio bus DMAC.

Tested on Soda's NEC Image RISCstation (which is an OEM of Acer PICA),
and should fix port-arc/13388.
2003-05-04 10:01:19 +00:00
gmcgarry 5e5ffccb2b ANSIify. 2003-05-04 06:36:50 +00:00
lukem cd93af5dd7 use "rm -f $@ ; ln -s ... $@" instead of "ln -sf ... $@" 2003-05-04 06:36:37 +00:00
lukem 83fa31ab4c be consistent with other Makefiles here and invoke "rm -f" separately to ln -s 2003-05-04 06:32:39 +00:00
lukem 1d22d3e3ca replace "ln -sf .... $@" with "rm -f $@ && ln -s .... $@"
since the latter works correctly ...
2003-05-04 06:25:10 +00:00
simonb 8bfe136eca Remove a duplicate load of "a1" in page_zero (a PAGE_SIZE vs NBPG botch). 2003-05-04 04:56:33 +00:00
gmcgarry dda0ea0697 Filename typo 2003-05-04 04:42:47 +00:00
simonb f426b1ecfe Use 64-bit "sd" in mips_pagezero() if we're compiled for MIPS{3,4,64}
(the actual check is !MIPS1 && !MIPS32).

Do the ".set push", ".set mips3", ".set pop" dance if we use 64-bit
instructions.
2003-05-04 02:53:53 +00:00
gmcgarry 9687966318 Fix from Steve Peurifoy in PR#18849:
"Occasionally a blocking open of dcm port 0 will hang in ttyopen()
waiting for carrier detect to be asserted when it's already
present.

The problem is that dcmmint() will return before updating the
value of sc->sc_mcndlast if the device is not open.  If carrier
detect drops after the device is closed, sc->sc_mcndlast will
no longer correctly represent the "previous" state of the
signals when the next transition of carrier detect occurs.
A subsequent blocking open will wait forever for an event
which has in fact taken place."
2003-05-04 02:10:07 +00:00
thorpej a6b1913724 Make the ARM_VECTORS_* unsigned. 2003-05-04 02:00:10 +00:00
gmcgarry b01d08c7d6 Add description for NBUF. From Greg A. Woods in PR#17397. 2003-05-04 01:56:52 +00:00
thorpej 46ffc57a80 VM_{MIN,MAX}* are now the same for ARM32_PMAP_NEW with both new and
old VM layout, so merge the two cases.
2003-05-04 01:54:32 +00:00
gmcgarry 9b44363ff5 Don't use overloaded term "comm". From Greg A. Woods in PR#17394. 2003-05-04 01:54:26 +00:00
gmcgarry 835240b191 Print pid on error. From Greg A. Woods in PR#17393. 2003-05-04 01:52:18 +00:00
gmcgarry 1cdac66ee5 Add commented-out wsfont (same as wsdisplay). Addresses PR#18388. 2003-05-04 01:36:53 +00:00
gmcgarry 9c89a57de0 Add wsfont. Addresses PR#18388. 2003-05-04 01:27:53 +00:00
gmcgarry cd3c6906c0 Add wsfont support. Addresses PR#18388. 2003-05-04 01:18:56 +00:00
gmcgarry f8d2e9e189 Add new builtin 'inputrc' which allows keybindings to be redefined
for the current shell.  From Arne H Juul in PR#10097.
2003-05-04 01:05:24 +00:00
gmcgarry e6614dc3ab More wscons fonts. 2003-05-04 00:54:41 +00:00
gmcgarry 662e57683f Document how to change the console font to one of crazier fonts
available.
2003-05-04 00:52:39 +00:00
gmcgarry 4270c007ac Add some more IBM-encoded fonts.
These fonts were taken from the FONTMAN (fpman220.zip) distribution by
Horst Schaeffer.

They are not intended for serious use.  They were chosen to look
significanly different to vt200 fonts currently available.  Good
for demonstrating wscons capability.
2003-05-04 00:50:27 +00:00
gmcgarry 00d263ccca Mention correct VGA resolution. Now the example isn't so convincing. 2003-05-04 00:27:17 +00:00
gmcgarry 6d272528dc Expand on fonts and font sizes. Shuffle discussion a little. 2003-05-04 00:11:54 +00:00
wiz 12d121bd69 Sort SEE ALSO. 2003-05-03 23:24:13 +00:00
gmcgarry 62c18e05f7 Xr wsfont(4) 2003-05-03 23:20:15 +00:00
gmcgarry 32a72df015 Add details. 2003-05-03 23:20:01 +00:00
wiz e6367d8a4b Use more mdoc, some mdoc improvements, unxref crash(8).
XXX: Needs more work, e.g., at least a SYNOPSIS section.
2003-05-03 23:15:31 +00:00
perry 0515e94bb5 add the various evb* maintainers 2003-05-03 21:01:54 +00:00
perry 3c0c88a61b fredette does hp700 2003-05-03 20:50:27 +00:00