Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-06-25 | Add support for airport cards on powerpc. | Dale Rahn | |
Only tested on Ti, but may/should work on other systems. | |||
2001-06-25 | Integrate a working airport driver interface. Mostly based on pci driver. | Dale Rahn | |
Hacked up code from netbsd should be rewritten to talk to the proper devices to enable/disable the device. | |||
2001-06-25 | implement bus_space_set_multi_*, based on netbsd code; drahn@ ok | Michael Shalayeff | |
2001-06-25 | Improved debug-ability printfs. now under ifdef PCI_DEBUG | Dale Rahn | |
2001-06-25 | add pf device on all architectures. | Kjell Wooding | |
fix my previously bogus MAKEDEVs. If you used pf on a non-i386. the major device number has changed, and you'll need to recreate /dev/pf ok theo | |||
2001-06-25 | cold is in systm now | Michael Shalayeff | |
2001-06-25 | config interfaces defines. | Dale Rahn | |
2001-06-24 | -Warn cleanups for powerpc, still not done. | Dale Rahn | |
2001-06-24 | Add prototypes for softnet, ofrootfound. | Dale Rahn | |
Code cleanup for pmap headers. | |||
2001-06-24 | add akbd_cnattach() prototype. | Dale Rahn | |
2001-06-24 | Allow mmap to map the vga memory/register at the physical address, | Dale Rahn | |
if the program has read the physical address out of the pci config space. | |||
2001-06-24 | Changes in ddb, mostly from NetBSD, to support ddb continue. | Dale Rahn | |
Other cleanups in debugger. | |||
2001-06-24 | Add gmac_setladrf functionality from netbsd, this was missed in a previous | Dale Rahn | |
merge. IP6 now works configures. | |||
2001-06-24 | Define splvm() for arches who don't already provide it, with the same | Miod Vallat | |
definition as splimp(). art@ ok | |||
2001-06-24 | Header file to specify to loadfile what types of exe files to support. | Dale Rahn | |
2001-06-24 | Smattering of symbol type cleanup. | Dale Rahn | |
2001-06-24 | Prototype functions used in macros in this header file. | Dale Rahn | |
2001-06-24 | Add prototype for ofwconprobe(). | Dale Rahn | |
2001-06-24 | comment out unused header file, add header files for proper prototypes, | Dale Rahn | |
extern trap symbols with decent prototypes, use proper ddb_init() function. | |||
2001-06-24 | include header files for proper defines. | Dale Rahn | |
2001-06-24 | fpu function prototypes; | Dale Rahn | |
2001-06-24 | register i; is not a valid variable declaration. | Dale Rahn | |
2001-06-24 | include header for prototype, declare correctly, cast for local variable use. | Dale Rahn | |
2001-06-24 | header file for prototypes, local variable for const input parameter. | Dale Rahn | |
2001-06-24 | prototype cleanup, use local variable for const input arg. | Dale Rahn | |
2001-06-24 | include header for prototypes, prototype functions, assignment in | Dale Rahn | |
conditional cleanup, -W warning cleanups. | |||
2001-06-24 | Add systm.h for prototypes. | Dale Rahn | |
2001-06-24 | include prototype for calc_delayconst() | Dale Rahn | |
2001-06-24 | Unused variable, poof. | Dale Rahn | |
2001-06-24 | properly prototype diskconf() | Dale Rahn | |
2001-06-24 | include systm.h for proper prototypes. | Dale Rahn | |
2001-06-24 | More inlined function cleanup for -W strictness. | Dale Rahn | |
2001-06-24 | More inline function clean for -W flags strictness. | Dale Rahn | |
2001-06-24 | More inline function cleanup for stricter -W flags. | Dale Rahn | |
2001-06-24 | inlined function definition clean, in preparation of more strict -W warning | Dale Rahn | |
flags. | |||
2001-06-23 | remove some debugging prints. | Dale Rahn | |
2001-06-23 | no more kernfs | Theo de Raadt | |
2001-06-23 | PCI bus configuration userland access from FreeBSD. | Matthieu Herrb | |
Will be used by XFree86 on powerpc (works on i386 too, but its not currently used). | |||
2001-06-23 | Header file changes to support symbol loading just added. | Dale Rahn | |
2001-06-23 | Perform symbol lookup on ddb trace command. | Dale Rahn | |
Slightly more useful this way, some say. | |||
2001-06-23 | Support ddb initialization on powerpc. | Dale Rahn | |
2001-06-23 | Support for powerpc to load symbols, uses new libsa loadfile. | Dale Rahn | |
2001-06-18 | Close PR 1864, Mhz should be written as MHz. | Dale Rahn | |
2001-06-17 | Interrupt storm problem on awacs fixed, not necessary to disable | Dale Rahn | |
awacs anymore. | |||
2001-06-17 | Significant improvement on awacs driver. | Dale Rahn | |
Interrupts dealt with better, edge/level information used (from netbsd) The device does not cause interrupt storm anymore. Port change interrupt handled correctly now, audio automatically switches from speaker to headphone and back when headphone is inserted. If headphone is present on boot, audio automatically configures to headphone output. Audio level now defaults to decent, low level by default. | |||
2001-06-17 | Allow for more than 5 interrupt attribute values. awacs has 6. | Dale Rahn | |
2001-06-10 | Do not print time in seconds since epoc on boot, | Dale Rahn | |
debugging was not removed before commit. | |||
2001-06-10 | Hack/workaround for gcc bug. GCC will generate a load/store double instruction | Dale Rahn | |
to do data copies, however it will not correctly identify that a load/store double will not correctly copy data where the address is misaligned. This emulates the load/store double operations in the kernel. Fixes gtk+ runtime problems. From NetBSD. | |||
2001-06-10 | Post pmap_extract() changes cleanup. | Dale Rahn | |
bus_addr_t vs vaddr_t/paddr_t Return correct value for poalloc(); | |||
2001-06-09 | Account for timer interrupts which occur while timer is "blocked". | Dale Rahn | |
Current change will cause the timer(s) missed to be noticed on the next timer interrupt and then it will be accounted for. This really should set a soft interrupt or an interrupt pending bit for the timer, to more accurately reflect when the timer should have occurred. System time should no longer be lost with this change. |