summaryrefslogtreecommitdiff
path: root/sys/arch
AgeCommit message (Collapse)Author
2002-03-08have to set p_md as well, used to shoot clouds beforeMichael Shalayeff
2002-03-08last arg to the copystr could be 0, also correct onfault handlingMichael Shalayeff
2002-03-08Move the message buffer out of low memory, Openfirmware clears the areaDale Rahn
on reboot. perhaps OF uses it at other times? Since OF always use the same memory addresses, this should always allocate the same ram to the msgbuf, and allow it to be preserved across reboot.
2002-03-07Clean up BUS_DMA_* flags, and make sure all arch's define:Jason Wright
BUS_DMA_READ, BUS_DMA_WRITE, and BUS_DMA_STREAMING
2002-03-07Remove some debugging code accidentally committed in previousJason Wright
2002-03-07From NetBSD:Jason Wright
Fix calculation of dma segment length when the DVMA range is crossing the boundary.
2002-03-06- recognize serial speeds over 9600 bauds, and allow users to set such aMiod Vallat
speed (beware, old PDC will not support this!) - increase the arbitrary device limit for the lists; some machines (743 and 748 come to mind) can have lots of heads and serial ports... - be more clever when sorting the devices in our lists, so as to get the correct order on machines where the built-in serial ports are GIO but on different busses.
2002-03-06Support serial speed over 9600 bauds.Miod Vallat
2002-03-06no need to maskMichael Shalayeff
2002-03-06expand fpu name, makes line overflow a bit, maybe deal w/ it laterMichael Shalayeff
2002-03-06regenMichael Shalayeff
2002-03-06cleanup the fpu names a bitMichael Shalayeff
2002-03-05rearrange stuff, chat about cacheMichael Shalayeff
2002-03-05Kill prom stuff duplicates from bugio.[ch].Miod Vallat
2002-03-05Insert missing newline for autoconf prettiness.Jason Wright
2002-03-05Provide a few more constants to get on par with other arches and getMiod Vallat
raidframe tools to compile; ok mickey@
2002-03-04ok, so apparently wx doesn't work so wellNathan Binkert
2002-03-04dc is not listed twice. Put de back, and move dc out of the untested section.Nathan Binkert
While we're at it, move wx out of the untested section too.
2002-03-04since we can't fit both dc and de, we've got to have de so we can have supportNathan Binkert
for 2104x chips which dc does not support at all.
2002-03-04Move dc from the untested group since it is tested, though a commit willNathan Binkert
soon make de win over dc on alpha in all cases, so de would have to be disabled to use dc. (For 21140 and 21142/3 chips. Clones will use dc bydefault.)
2002-03-04dc not deTheo de Raadt
2002-03-04Typos; Matt <matt@vertrauen.org>Jason Wright
2002-03-02bump the version after recent additionMichael Shalayeff
2002-03-02cleanup.Dale Rahn
Code reorganization to support pci-pci bridges on the interrupt fixup code. Interrupts on devices behind pci-pci bridges should not be configured properly.
2002-03-02If two drivers register the same hardware irq, they should getDale Rahn
the same virtual irq as well.
2002-03-02Do not use -1 as an unused entry, 0 is already reserved for invalid/unused.Dale Rahn
2002-03-02If two drivers register the same hardware irq, they should getDale Rahn
the same virtual irq as well.
2002-03-02These two drivers were incorrectly sharing variables, sometimes expectingDale Rahn
them to be intialized by the other. also remove static variables and rename them so they are accessable via ddb.
2002-03-02more logical order of operations, caveatsMichael Shalayeff
2002-03-02Add machine specific commands to the bootblocks, to let the user displayMiod Vallat
and change the console and keyboard settings; and devise a manual page for it, with lots of loot borrowed from the i386 version. These commands have been extensively tested on 712, 715, and 720, although your mileage may vary and scary warnings may appear in the manual page in the future. ok mickey@
2002-03-01reassignMichael Shalayeff
2002-03-01fix a few irq assignmentsMichael Shalayeff
2002-03-01Change a config(8) reference to a more appropriate boot_config(8) reference.Miod Vallat
2002-02-28forgot viper_hpaMichael Shalayeff
2002-02-27Better values for invalid pte initialization.Miod Vallat
2002-02-25replace w/ utah-licensed sourceMichael Shalayeff
2002-02-25fix mapping bug in serial console support, not yet working.Dale Rahn
2002-02-24Don't generate noise before entering DDB from keyboard.Miod Vallat
2002-02-23switch vax to -O2, from hughTheo de Raadt
2002-02-23remove a commented-out debug printfMatthieu Herrb
2002-02-23add a comment for option APERTUREMatthieu Herrb
2002-02-23Add aperture driver support for macppc, and also place writing to /dev/pciMatthieu Herrb
under the control of machdep.allowaperture. This allows to run the X server on macppc with securelevel=1, given that machdep.allowaperture is != 0. OK deraadt@
2002-02-23Factorize most of the pmap_bootstrap() guts used by pmap_motorola users,Miod Vallat
with a few hooks to cope with each architecture's specifics. The new arch/m68k/m68k/pmap_bootstrap.c is not a standalone file, but will be #included by the existing pmap_bootstrap.c code. Tested on hp300 and mvme68k, mac68k coming soon. amiga will be left out for now because it is a bit too different.
2002-02-23make this compile w/out pckbd (thanks marco for pointing this out)Jason Wright
2002-02-23Bring back pmap_motorola in service for amiga, too.Miod Vallat
2002-02-23remove unused file.Dale Rahn
2002-02-22Unbreak 68060 support, sorryMiod Vallat
2002-02-22Switch mvme68k to pmap_motorola again.Miod Vallat
68060 operation tested by deraadt@
2002-02-22Be sure to wait the whole 0.5 seconds (half a second!) for the streamingJason Wright
cache to flush, not some fraction of it, before giving up.
2002-02-22Debugger() is #ifdef DDBTheo de Raadt