Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-10-01 | sparc64 doesn't need splaudio()/IPL_AUDIO provided here, either | Jason Wright | |
2001-10-01 | simplification: | Jason Wright | |
don't need to mute the monitor when changing modes (cs4231 mutes it automatically when entering MODE_CHANGE_ENABLE is set). Remember the last format/xtal/speed selection and avoid resetting it if we're using the same one again. Also, simplify the volume/mute setup. | |||
2001-10-01 | get rid of local copy of cs4231reg.h (and get defns from dev/ic/ad1848reg.h | Jason Wright | |
and dev/ic/cs4231reg.h). Move APC DMA goop into its own file in dev/ic. | |||
2001-10-01 | add mono output mute bit | Jason Wright | |
2001-10-01 | first step at getting rid of local cs4231reg copy: get register numbers | Jason Wright | |
from sys/dev/ic/ad1848reg and sys/dev/ic/cs4231reg | |||
2001-09-30 | pretty | Jason Wright | |
2001-09-30 | oops, get rid of debugging printf | Jason Wright | |
2001-09-30 | big clean up of commit operation (and register defns) | Jason Wright | |
2001-09-30 | Enable break interrupt earlier. | Artur Grabowski | |
2001-09-30 | Next round of cleanups. | Artur Grabowski | |
- some KNF. - disable interrupts earlier in attach. - give it some more time in attach to finish earlier output. - explicit bus_space_barrier in comcnputc. - dead code. | |||
2001-09-30 | add mode_lock for mode_shift as the caps_lock is to shift; from Igor Grabin ↵ | Michael Shalayeff | |
<violent@death.kiev.ua> | |||
2001-09-30 | Remove dead code. | Artur Grabowski | |
2001-09-30 | Remove the COM_HAYESP code. It doesn't appear to have been ever used and | Artur Grabowski | |
it's very intrusive and makes the code less readable. | |||
2001-09-30 | driver for SUNW,CS4231 (doesn't quite sound right yet =), but is mostly there. | Jason Wright | |
Mostly a port from sparc, but bits from NetBSD. | |||
2001-09-30 | Move out the com at commulti attachment into an ownfile. | Artur Grabowski | |
Same story as isapnp - not tested because i386 uses pccom. | |||
2001-09-30 | Make the kernel compile. | Artur Grabowski | |
2001-09-30 | Move out com at isapnp attachment into an own file. | Artur Grabowski | |
Not tested because the only system with isapnp is i386 and i386 uses pccom. GRRR, thank you cvs for not committing the files I ask you to commit. | |||
2001-09-30 | Move out com at isapnp attachment into an own file. | Artur Grabowski | |
Not tested because the only system with isapnp is i386 and i386 uses pccom. | |||
2001-09-29 | Next step in making the com driver improvable. | Artur Grabowski | |
Split out the com at isa attachment into its own file. | |||
2001-09-29 | if_media support, from freebsd | Michael Shalayeff | |
2001-09-29 | Some KNF. | Artur Grabowski | |
2001-09-29 | Pretty the printout (don't know if it's right, but it does the job). | Artur Grabowski | |
2001-09-29 | PC87415: Don't claim to support DATA32 or MODE | Jason Wright | |
(now correctly probes the DMA modes). | |||
2001-09-29 | for pc87415: | Jason Wright | |
- don't hardwire interrupt interrupts to pci mode - unmask the pci interrupt if at least one channel is in pci mode | |||
2001-09-29 | - compoll is now scheduled once for every sc instead of just one timeout for | Artur Grabowski | |
all ports and looping over them. - support for generic soft interrupts. | |||
2001-09-29 | add pciide driver for National Semiconductor PC87415. | Jason Wright | |
2001-09-29 | If we field an interrupt, return to the caller that we did so. Otherwise, | mjacob | |
on some platforms, after a while they'll think it's all spurious and disconnect the interrupt routing. Thereupon Bad Things Happen (tm). Approved by: Theo. | |||
2001-09-28 | Fix a DIAGNOSTIC check. | Artur Grabowski | |
2001-09-27 | Simplify comstart a bit. | Artur Grabowski | |
2001-09-27 | Enable #if 0'd code in comcnputc() so serial console works correctly; | Todd C. Miller | |
art@openbsd.org | |||
2001-09-27 | style fixes from Alexander Yurchenko <grange@grange.ru> | Grigoriy Orlov | |
2001-09-27 | Split out comattach that does isa and isapnp attachment and initialization, | Artur Grabowski | |
into comattach that does the isa stuff and com_attach_subr that does the init. | |||
2001-09-27 | Split out comattach that does isa and isapnp attachment and initialization, | Artur Grabowski | |
into comattach that does the isa stuff and com_attach_subr that does the init. | |||
2001-09-27 | Huge merge with NetBSD. For full details look at their revision history ↵ | Jason Wright | |
(1.26 -> 1.83)... Highlights: o tag queue support o fas366 support (doesn't work yet on sparc, but does on sparc64) o tons more (thanks to hugh, fgsch and beck for testing) | |||
2001-09-26 | sync | Jason Wright | |
2001-09-26 | NS PC87415 | Jason Wright | |
2001-09-26 | * add missing #include "vlan.h" | Peter Galbavy | |
* add IFCAP_VLAN_MTU capability * put test around hardware assited (de)tagging of VLAN packets This now means that vlan's built using the driver can pass full size packets. IFCAP_VLAN_HWTAGGING is not currently enabled as it does not work in the current sources. more study required. ok'ed by jason@, nate@ was watching mail back and forth | |||
2001-09-26 | Connect USB keyboards to the display after attaching, no longer requiring | joshua stein | |
'wsconscfg -k' to be run. Thanks to James Matthews for the extra keyboard. aaron@ ok | |||
2001-09-26 | bad me, don't break current builds with uncomitted dependent changes. | Jason Wright | |
2001-09-25 | pretty up attach messages (as best as possible) for fas. | Jason Wright | |
pull in reset fix for ESC revsions from NetBSD | |||
2001-09-25 | Change to umass to not attach immediately if the system is still 'cold'. | Dale Rahn | |
Accessing the device via polling would cause a crash in the usb subsystem. this change delays the media configuration using startuphooks, when the system is fully up and running. This allows it to configure properly and on macppc it is possible to use a umass device as root device. Has little effect on other system, because they do not force USB configuration during 'cold'. Tested by myself and brad@. | |||
2001-09-24 | Do not force polling while cold = 0; from NetBSD, hinted at by fgs@ | Miod Vallat | |
While there, bring a couple of bugfixes as well, and fix a typo. This solves the panic during mountroot experienced on some vax and some mac68k machines. | |||
2001-09-24 | Use splimp instead of splnet in some places. | Artur Grabowski | |
I don't understand why, but it helps stability a lot. | |||
2001-09-24 | get rid of kvtop, not that it matters that much | Michael Shalayeff | |
2001-09-24 | there was a possible overrun in prev folding length fix. | Michael Shalayeff | |
however i was lucky enough so it worked. anyway, this fixes the problem and seems to run very much alright on sparc at least. | |||
2001-09-23 | Read the MAC address correctly from 630EA1-based sis(4) devices. Should fix | Aaron Campbell | |
problems people have been reporting of this nature with the SiS network devices found on some motherboards; fixes pr#2085. Patch by peter@, jason@ ok Also, some space vs tab fixes while we're here. | |||
2001-09-23 | solve mtu problem a little more elegantly (ramdisk works on blade100 and | Jason Wright | |
u5 now). | |||
2001-09-23 | oops, fix the after folding sizes | Michael Shalayeff | |
2001-09-22 | supply some entropy from here | Michael Shalayeff | |
2001-09-22 | new type for video i/o entropy | Michael Shalayeff | |