summaryrefslogtreecommitdiff
path: root/sys/arch/alpha
AgeCommit message (Collapse)Author
2005-12-30Now that errno.h and sys/errno.h are separate header files there is noTodd C. Miller
need to use the -Derrno=errno workaround added when __errno() was introduced. OK deraadt@
2005-12-27enable some i2c bus drivers (piixpm(4), alipm(4), ichiic(4)) as neededTheo de Raadt
by each arch enable adc(4), admtemp(4), admlc(4), admtm(4), admtmp(4), admtt(4), adt(4), lm(4), lmenv(4), lmtemp(4), maxds(4), and maxtmp(4) iic chip drivers too, which provide gobs of sensor info
2005-12-27Remove unused sw_nblks field of struct swdevt. Then, remove swapconf()Miod Vallat
which duplicates work done by uvm_swap_init().
2005-12-25Ensure child_return() leaves registers the same way a successfull systemMiod Vallat
call would.
2005-12-22'spoofonly' does not mean what I thought it meant. The whole point isKenneth R Westerback
to read non-OpenBSD label information like MBRs and populate ('spoof') the OpenBSD disk label appropriately. So avoiding an I/O when doing 'spoofonly' is to miss the whole point. Backout all Sept. 26 and subsequent changes to disksubr.c files. The original CD problem with I/O errors on blank media will be addressed another way. Should fix the ext3 vs amd64 problems discussed on misc@. Thanks to steven@ for finally putting it terms that I understood. ok deraadt@
2005-12-17Get rid of deprecated vm_{offset,size}_t types for good, use {p,v}{addr,size}_tMiod Vallat
instead; looked at millert@
2005-12-14make va_arg() map to nothing; ok millertTheo de Raadt
2005-12-14convert _FOO_SOURCE -> __FOO_VISIBLE in machine. OK deraadt@Todd C. Miller
2005-12-13nuke unused BTOPKERNBASE defineMartin Reindl
pointed out by miod@
2005-12-13Pchip0 PCI memory starts at 0x80000000000, correct and useMartin Reindl
P_PCI_MEM accordingly pointed out by KUDO Takashi in PR 4936 ok deraadt@ miod@
2005-12-13First step in include files overhaul. Use __FOO_VISIBLE (as definedTodd C. Miller
in sys/cdefs.h) instead of _FOO_SOURCE. Also fix several namespace pollution issues, including the byte order defines. OK deraadt@
2005-12-12One procfs.h leftover there, too.Miod Vallat
2005-12-11Replace procfs_domem() with a similar interface, process_domem(), which livesMiod Vallat
out of procfs and gets a ptrace request PT_{READ,WRITE}_{I,D} as argument; also procfs_checkioperm() becomes process_checkioperm(). From art@ some time ago; ok kettenis@ pedro@
2005-11-24add lint-specific hacks. at the same time, clean out a lot of ancientTheo de Raadt
cruft for old compilers and environments. there may be a 2nd round of polishing after this; ok miod and others
2005-11-23fix DEBUG buildMartin Reindl
2005-11-21Move contents of sys/select.h to sys/selinfo.h in preparation for aTodd C. Miller
userland-visible sys/select.h. Consistent with what Net and Free do. OK deraadt@, tested with full ports build by naddy@.
2005-11-15enable bktr(4) and radio(4) on alphaRobert Nagy
ok deraadt@ mickey@
2005-11-15add pcn on alpha and remove redundant pcn entry on i386 RAMDISK_CDBrad Smith
2005-11-15add ixgb(4) though commented out for now.Brad Smith
2005-11-12no longer require boot_osflags being set to 'a' in the SRM for going ↵Martin Reindl
multiuser; setting boot_osflags to 's' explicitly will get us to singleuser as usual; very old SRM versions can only set 'a' or 's', but are still fine because we ignore 'a' now and default to multiuser idea and ok deraadt@, jsg@, testing by many final ok miod@
2005-11-05add or enable lmc(4)Brad Smith
2005-11-03use splvm() here instead of splimp(). in currently unused MULTIPROCESSOR code.Brad Smith
ok martin@
2005-10-30Remove unused pcb field (this should have been part of the fetch(9)/store(9)Miod Vallat
removal ages ago).
2005-10-28no more Mach-macrosMartin Reindl
2005-10-21remove two unused and deprecated Mach macros, alpha_round_page() andMartin Reindl
alpha_trunc_page() looks ok to Miod
2005-10-17Rename ncpus to alpha_ncpus so that MI ncpus matches the number ofMiod Vallat
attached processors; deraadt@ ok
2005-10-02enable ath(4) on alpha.Reyk Floeter
ok martin@ deraadt@
2005-09-27Don't try to read the DOS label from the device if spoofonly is 1.Kenneth R Westerback
This changes the architectures which use code identical to the amd64 disksubr.c. macppc seems different so it will be separate. The remaining archs don't try to read a DOS label. ok deraadt@
2005-09-15In syscall(), do not recompute the struct proc * after the syscall hasMiod Vallat
succeeded. This used to be necessary for fork(), when returning in the child, but we return in the child in child_return() which does TRT. ok art@
2005-09-15Change child_return() to record a proper ktrace record for vfork childMiod Vallat
processes. ok art@ uwe@ (some time ago)
2005-09-10beef up and correct the example sectionMartin Reindl
2005-08-29setpu stack for primary boot at 0x30000 after the load address.Michael Shalayeff
this allows netbooting uncompressed kernels on newer alphas. this shall be addressed futher after the release. deraadt@ ok
2005-08-10suggested by art, go for it deraadt, ok miod@Todd T. Fries
remove ECOFF support
2005-08-06If a process has trashed its stack, use sigexit() instead of psignal() toMiod Vallat
terminate it with prejudice, as done in native sendsig(). Plus you get a memory leak in COMPAT_HPUX on m68k fixed for free. review art@ test martin@
2005-08-03enable safte and ses on all archs that appear to have real scsi bussesDavid Gwynne
ok deraadt@ beck@ marco@
2005-08-01knfTheo de Raadt
2005-07-31Get rid of unused SINCR and SSIZE constants.Miod Vallat
2005-07-31unfortunately de(4) no longer fitsTheo de Raadt
people who add to the kernel without thinking of the growth caused this
2005-07-24Be more permissive when checking the interrupt vector for devices tied toMiod Vallat
the ISA interrupts; from NetBSD.
2005-07-14More netccitt and netns removals; OK henning, brad, mickeyUwe Stuehler
2005-06-20add ral(4)Martin Reindl
ok deraadt@
2005-06-17uipaq/ucom support; written by isis@www.cs.umd.eduTheo de Raadt
2005-06-17Override cpu_switch() with a faster version if we can use BWX instructions.Miod Vallat
From RusticBSD, ok deraadt@
2005-06-17Allow ev56 opcodes in the .s files by default (gas on alpha does not yet haveMiod Vallat
.ev56, .ev4, etc, in-file modifiers).
2005-05-30even shorterTheo de Raadt
2005-05-30shrink alpha boot blocks another little bitTheo de Raadt
2005-05-27add atapiscsi@umass to RAMDISKS as appropriate, ok krw@ deraadt@Dale Rahn
2005-05-26Add atapiscsi in parallel with scsibus@usb, this only changes systemDale Rahn
that dont have atapiscsi@wdc, fixes zaurus, ok krw@ todd@
2005-05-25comment typoJason Wright
2005-05-24fix links targetUwe Stuehler