Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-06-20 | Do not print hostid while booting, there's a sysctl for this. | Miod Vallat | |
2006-06-20 | Fix tsbsize computation; from NetBSD | Miod Vallat | |
2006-06-20 | revert the interrupt vector diff, this fixes zaurus suspend; ok drahn@ | Todd T. Fries | |
2006-06-20 | fix memory reporting on alphas with 2GB or more; ok miod | Theo de Raadt | |
2006-06-20 | Define an empty pmap_collect(). | Miod Vallat | |
2006-06-19 | Be more strict in the probe routines and actually check ca_nintr and | Miod Vallat | |
ca_nreg are large enough for our greedy needs; tweaks and ok kettenis@ | |||
2006-06-19 | Remove redundant test in uni_n_config() as well as an unused softc member; | Miod Vallat | |
ok kettenis@ | |||
2006-06-19 | Since a part of the nvram may be write-protected on some machines, check | Miod Vallat | |
the nvram writes and return EROFS if one or more bytes were found to be immutable. | |||
2006-06-19 | Allocate bus_dma memory from kernel_map, not kmem_map. | Miod Vallat | |
2006-06-19 | Reset pcb_onfault around uvm_fault() calls. | Miod Vallat | |
2006-06-19 | move clock_subr.c to a better place, and now it is always in the kernel | Theo de Raadt | |
so that things can use it; tested on all architectures; ok kettenis | |||
2006-06-19 | Close a race in the interrupt handler code. | Dale Rahn | |
Inline functions when it makes sense. | |||
2006-06-19 | pcn no longer fits, sigh | Theo de Raadt | |
2006-06-19 | Zap Amiga bits of disklabel.h now that Amiga bits of readdisklabel() are | Kenneth R Westerback | |
gone. 'go ahead' deraadt@ | |||
2006-06-18 | enable udcf(4) on sparc64, works on my Blade 100; ok mbalmer@ | Christian Weisgerber | |
2006-06-17 | Fix error where soft irq mask was not initialized for IPL_HIGH, and cleanup. | Dale Rahn | |
2006-06-17 | Don't return low level errors to userspace in p4tcc_setperf(). | Dimitry Andric | |
requested by deraadt@, ok gwk@ | |||
2006-06-17 | In p4tcc, only check cpu stepping for the Pentium 4 family. Also kill | Dimitry Andric | |
some trailing whitespace. ok gklok@ | |||
2006-06-17 | Introduce pmap_kenter_cache(), similar to pmap_kenter_pa() but allowing | Miod Vallat | |
the pte cache bits to be specified. Will be used very soon. | |||
2006-06-17 | Recent Powerbook systems have their on-board keyboard and mouse devices | Miod Vallat | |
also showing up as usb devices, but both devices are tied. To make things less confusing, do not attach the usb phantoms at all. | |||
2006-06-17 | Dont disable siop, add pcalcd, commented for now (no gpioctl on ramdisk). | Dale Rahn | |
2006-06-17 | Add pcaled with it's gpio attachment. Make gpio at iopxs not be '0' but '*' | Dale Rahn | |
dont bother disabling siop while here. Warning some gpio pins may be connected to dangerous functions like poweroff. | |||
2006-06-16 | When checking if a page is managed or not, do not invoke IS_VM_PHYSADDR | Miod Vallat | |
and then pa_to_pvh, since they amount to the same work; instead let pa_to_pvh return NULL for unmanaged pages and test for this. | |||
2006-06-16 | - add rum(4). commented out for now. | Niall O'Higgins | |
2006-06-16 | documentation on the register | Jason Wright | |
2006-06-16 | skeleton driver for power button on u5.. does precisely nothing except attach. | Jason Wright | |
Will hook it into the right places this weekend (and put it into GENERIC and write a man page when it does something useful). | |||
2006-06-16 | If we are configured for glass console but no keyboard is plugged, we run | Miod Vallat | |
with the dummy wscons cngetc() which immediately returns zero. Since a cngetc() call is the only difference between halt and reboot, this caused the former to behave as the later. Fix this by spinning until cngetc() returns a non-zero value. | |||
2006-06-16 | Fix range check in sgc_slottopa(). | Miod Vallat | |
2006-06-16 | Line 0 is not wired, thus illegal for use in frodo_intr_establish(). | Miod Vallat | |
2006-06-16 | typo | Pedro Martelletto | |
2006-06-16 | On the road to certance support. | Dale Rahn | |
2006-06-16 | From k*_powernow_setperf() always return 0, i.e. | Gordon Willem Klok | |
Do not return low level errors to userspace where they will not/can not be coped with. : ---------------------------------------------------------------------- | |||
2006-06-16 | enable mpi. | Marco Peereboom | |
Who says we don't need U320 SCSI on hppa? Cookie for dlg! ok deraadt dlg | |||
2006-06-16 | If there is going to be a kludge to change the irq for com, do it early | Dale Rahn | |
enough so that the used irq is printed in dmesg. | |||
2006-06-15 | switch to using mpi instead of mpt; ok marco | Theo de Raadt | |
2006-06-15 | The process is not: build, ifdef, commit. argh. | Dale Rahn | |
2006-06-15 | rewritten, simplifed interrupt controller for 80321, half the lines | Dale Rahn | |
and much less complex. IPL_SERIAL goes at the same time. | |||
2006-06-15 | Hack to attach the iodata PLD device, it controls the front panel LEDs | Dale Rahn | |
and reset function on the board. | |||
2006-06-15 | All all 256MB on the thecus to configure, by raising the amount of | Dale Rahn | |
KVM available. | |||
2006-06-15 | sane irq numbers for pci interrupts, remove uncertanty on armish irq table. | Dale Rahn | |
2006-06-15 | Fan controller for Thecus N2100, still needs more work, currently sets the | Dale Rahn | |
fan so it is running. The nice auto fan speed isn't working currently. Also gives temperature sensors. | |||
2006-06-15 | Ricoh rtc support for armish, driver from netbsd. | Dale Rahn | |
2006-06-15 | whitespace cleanup | Dale Rahn | |
2006-06-15 | Rework the interrupt code, shaving some cycles off in the process. | Brad Smith | |
Rather than an "iointr" routine that decomposes a vector into an IRQ, we maintain a vector table directly, hooking up each "iointr" routine at the correct vector. This also allows us to hook device interrupts up to specific vectors. From thorpej NetBSD Tested by myself and a number of end-users. | |||
2006-06-15 | make the clock error calculation match dev/ic/com.c so that things with, | Jason Wright | |
say, a 10x clock work. | |||
2006-06-15 | Add proper masking of reserved bits, when we test if the thermal | Dimitry Andric | |
control MSR was written successfully. ok tedu@ | |||
2006-06-15 | In p3_get_bus_clock() don't fall through if we have in fact correctly | Gordon Willem Klok | |
matched a model. Found in a dmesg from Craig Barraclough craigba AT creative.com.au. ok deraadt@ | |||
2006-06-14 | Missed a part of the kvm86 commit, if option KVM86 is defined it would be | Gordon Willem Klok | |
a good idea to actually call the init function, this was lost it was part of the diff ok toby@, mickey@ | |||
2006-06-14 | support the iic busses on the ultrasparc III machines (something is still | Theo de Raadt | |
wrong, likely clocking); tested to not break older machines by dlg & djm | |||
2006-06-13 | Do not compare apple with oranges when checking if the thermal control | Miod Vallat | |
register write was successful. |