summaryrefslogtreecommitdiff
path: root/sys/arch
AgeCommit message (Collapse)Author
2005-12-20Add a Apple touchpad driver for newer PowerBook's and iBook's.Brad Smith
From Johan Wallén on NetBSD's macppc list. ok deraadt@
2005-12-19Use MACE ISA constants instead of magic values.Miod Vallat
2005-12-19Constify.Miod Vallat
2005-12-19Fix hppa ldcw alignment issue.Marco Peereboom
Help deraadt, tedu, kettenis Ok tedu, kettenis
2005-12-19New Intel ICH SMBus driver to be used with the iic(4) framework.Alexander Yurchenko
ok deraadt@
2005-12-18Don't include cdefs.h if _LOCORE is defined and hide some more definesTodd C. Miller
unless __BSD_VISIBLE or _LOCORE are set. OK deraadt@
2005-12-17Remove duplicate definition of machFPCurProcPtr.Mark Kettenis
ok pefo@, miod@
2005-12-17Let the xtlb refill handler fault if the userland va is out of the supportedMiod Vallat
address space instead of using the tlb of the va modulo the address space size. ok pefo@
2005-12-17Rename ``dofault'' label to ``fault_common'', it just looks too close toMiod Vallat
``default'' and thus can make your code reading experience more difficult...
2005-12-17Fix PT_{GET|SET}FPREGS. Make sure we flush the fpu before reading/modifyingMark Kettenis
the state in the pcb. Make sure we don't thrash the initial fpu state for (currently unsupported) 32-bit processes. ok miod@
2005-12-17Fix handling of floating-point registers in PT_{GET|SET}REGS.Mark Kettenis
ok miod@
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-17Don't include cdefs.h when we are included from locore.sTodd C. Miller
Problem noticed by deraadt@
2005-12-17unfortunately with PROCFS, that is not true yetTheo de Raadt
2005-12-17Make sure we match the correct driver for newer macppc systems.Mark Kettenis
tested by xsa@, ok joris@, brad@
2005-12-16Sync with i386 acpi stuff. Remains disabled of course.Marco Peereboom
2005-12-16Make amd64 powerdown logic identical to i386.Marco Peereboom
ok jordan@ deraadt@
2005-12-16Add delay before powering down on acpi. Give the sync some extra time.Marco Peereboom
2005-12-16Missing splx in setfault() error path.Miod Vallat
2005-12-16Compile out process_sstep() as we don't define PT_STEP, thus nothing usesMiod Vallat
these functions. ok kettenis@
2005-12-16Return EINVAL in process_sstep() as this is not implemented on arm yet;Miod Vallat
ok kettenis@
2005-12-16KNFMarco Peereboom
2005-12-16Forgot to check a flag to powerdown via acpi.Marco Peereboom
ok deraadt@ jordan@
2005-12-16Power down machine from acpi.Marco Peereboom
Help deraadt, ok jordan@
2005-12-16Flush fpu state before reading/modifying the state in the pcb.Mark Kettenis
ok miod@
2005-12-16move the section on updating bootblocks into the man bodyJason McIntyre
of the page;
2005-12-16re-enable ipmiTheo de Raadt
2005-12-16do not use a label_t in the pcb. label_t may not exist in all contexts,Theo de Raadt
and causes a real pain with _KERNEL that we wish to avoid for sys/user.h so clone a label_t thingy here
2005-12-16Lose dsdt since it was moved inside acpi.cMarco Peereboom
2005-12-15tweaks;Jason McIntyre
2005-12-15Protect va_copy with __ISO_C_VISIBLE as intended.Todd C. Miller
2005-12-15shrink a littleDavid Gwynne
2005-12-15dont use the esm sensor tables to store format strings.David Gwynne
2005-12-15split esms psu sensor into 6 kernel sensors. you can easily see if theDavid Gwynne
psu is powered, switched on, overtemp, failed and so on now. ok marco@
2005-12-15__BSD_VISIBLE is not compared against a dateTheo de Raadt
2005-12-15document horrific bootblock upgrade "procedure"Theo de Raadt
2005-12-14make va_arg() map to nothing; ok millertTheo de Raadt
2005-12-14Add commented entries for nfe.Jonathan Gray
2005-12-14convert _FOO_SOURCE -> __FOO_VISIBLE in machine. OK deraadt@Todd C. Miller
2005-12-14Prevent access to PCI config space for function >0 on bus 0.Mark Kettenis
Fixes Xorg PCI scan. ok drahn@
2005-12-14Add a __statement macro to use with gcc statement expressions insteadTodd C. Miller
of using __extension__ directly. This lets us define away the whole thing when lint is in use.
2005-12-14Make clock_t consistent across platforms as a 32 bit int. OK deraadt@Todd C. Miller
2005-12-14Don't hard-code card present and number of socket bits in the PCMCIA busUwe Stuehler
configuration register, but control these bits from PCMCIA code. ok drahn@
2005-12-14Remove useless crap that was there from the beginning. One particularUwe Stuehler
tweak only prevented access to the flash controller.
2005-12-14Add AC device.Marco Peereboom
2005-12-13print lapic clock in mhz (instead of hz)Michael Shalayeff
2005-12-13remove ad clause that got copied from older versions of the files; pto by jsg@Michael Shalayeff
2005-12-13Deal with ki2c(4) controllers with multiple i2c busses.Mark Kettenis
tested by xsa@
2005-12-13Prevent recursive interrupts. Solves kernel stack overflow on i386 underAaron Campbell
heavy network interrupt load (I can reproduce with an ARP flood) with an MP kernel. Patch from NetBSD PR20180. Has been in snapshots for a bit. Testing by pedro@, jolan@. deraadt@ ok
2005-12-13Whoops, need to #undef _BIG_ENDIAN not _BYTE_ORDERTodd C. Miller