summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2007-10-25sc->sc_pr.usedlow must be multiple of the block size, fixAlexandre Ratchov
audio_calcwater() to do so ok jakemsr@
2007-10-25return POLLOUT as long as (lowat + 1) isn't reached. without this audio(4)Alexandre Ratchov
is unusable with lowat = 1 ok jakemsr@
2007-10-25Be sure to enable interrupts on return from ddb if they were enabled beforeMiod Vallat
the break.
2007-10-25Factor out common code to update the timedelta sensor intoMarc Balmer
mbg_update_sensor().
2007-10-25another case of product encoding is "Sun (TM) modelname", on the E250Theo de Raadt
2007-10-25expand range where we search for sensorsTheo de Raadt
2007-10-24Rely on 16 byte pcb alignment, and use double loads and stores duringMiod Vallat
context switches. Should have been commited ages ago (when pcb alignment was fixed). No functional change.
2007-10-24Remove sir_lock, superseded by the atomic bit operations.Miod Vallat
2007-10-24Turn curcpu() into an inline function instead of a macro relying on a GCCMiod Vallat
extension.
2007-10-24remove the unused i2cbus_attach_args param from the probe functions; ok deraadtConstantine A. Murenin
2007-10-24Enable power supply temperature sensors on the E450.Mark Kettenis
2007-10-24Add support for power supply temperature sensors on the E450.Mark Kettenis
2007-10-24make older gcc happierTheo de Raadt
2007-10-24pipleine -> pipelineMiod Vallat
2007-10-24In cpu_switchto(), load pmap->pm_tlbpid manually, instead of expectingMiod Vallat
pmap_update() to return with this value in v0. A void function. Bwahahaha.
2007-10-24fix r1.101 (2007-10-07) regression of not calling the iic_dump() for aConstantine A. Murenin
successfully identified sensor chip that was not claimed by any driver; whilst at it, get rid of the 'if defined' madness ok deraadt
2007-10-24Uncomment PECI mode diagnosting bits.Mike Belopuhov
ok deraadt
2007-10-24skip the ignored addresses completely (now covers the eeprom range, too); ↵Constantine A. Murenin
ok deraadt
2007-10-24Remove idle loop counter.Mike Belopuhov
ok art deraadt
2007-10-24Define a bitmaks of status bits we're interested in, output/log allMarc Balmer
relevant status bits, not only the first one.
2007-10-24Unconditionally initialize all channels, regardless of locale.Bret Lambert
Shaves 258 bytes from i386 kernel. Feedback, guidance, testing, and ok jsg@
2007-10-24Don't spam the dmesg.Mike Belopuhov
ok deraadt
2007-10-23- use endian-specific conversions, instead of relying onJacob Meuser
machine-dependent #defines - use the correct conversions for slinear_le:16 -> ulinear_be:16 - fix mono recording by using various stereo -> mono conversions
2007-10-23- add a couple more mono-to-stereo conversionsJacob Meuser
- add stereo-to-mono conversions for mono recording on stereo only devices
2007-10-23add a new audio_set_blksize() function that sets (and adjusts) the blockAlexandre Ratchov
size to the given number of frames per second, all changes pass through it. If parameters are changed or the user requested a new block size (or both), the block size is recalculated. ok jakemsr
2007-10-23syncMarc Balmer
2007-10-23Add Meinberg Funkuhren and the USB 5131 DCF77 - Radio Clock.Marc Balmer
2007-10-23Don't spam the console when there is no antenna connected.Marc Balmer
2007-10-23Sort the PCI id table and remove a comment which is no longer true.Brad Smith
ok dlg@
2007-10-23shrink dmesg output to one line that shows irq and the ethernet address.David Gwynne
the vmxnet id never changes. ok reyk@
2007-10-23regenBrad Smith
2007-10-23correct a typo, BCM4238 -> BCM4328.Brad Smith
ok dlg@
2007-10-23regenBrad Smith
2007-10-23add the Broadcom BCM5723 PCI id.Brad Smith
From the Linux tg3 driver. ok dlg@
2007-10-22alipm0 can now be enabled because of the crash workaroundTheo de Raadt
2007-10-22let alipm0 still be used for spdmem probes, but skip sensors. alipm (orTheo de Raadt
more likely psycho) still has a bug where the pci bus croaks on the intermittent i2c accesses. the spdmem accesses are safe, though. if you wish to help us find out when this bug gets fixed, please run your machine WITHOUT this diff, though. ok kettenis jsg
2007-10-22only output on situations where power state is D3. unify the message inFederico G. Schwindt
such cases. ok brad@ kettenis@
2007-10-22Add support for SUNW,envctrl as found on the E450.Mark Kettenis
2007-10-22CPU temperature sensors on the E450 have a conversion factor of 1/1 instead ofMark Kettenis
0/0 like the E250. Handle both.
2007-10-22the codec is not readable. If we try to read it the ac-link enters a kind ofAlexandre Ratchov
"busy state" in which it's not writeable. This fix tags the host as unable to read the codec, so the ac97 driver doesn't try to read it, instead it keeps in memory copy of all codec registers. Fixes pr 2451 ok jakemsr
2007-10-22the invalid flag is never set in these two drivers, so don't test if it is; ↵Constantine A. Murenin
ok djm@ kettenis@
2007-10-22HTC smartphoneTheo de Raadt
2007-10-22syncTheo de Raadt
2007-10-22HTC smartphoneTheo de Raadt
2007-10-22remove flagsa/dobusy/doidle stuff introduced 3 years ago as a debugging aid..Theo de Raadt
2007-10-22RegenMiod Vallat
2007-10-22More Microsoft mice, from FreeBSDMiod Vallat
2007-10-22use the input mbuf for the first active port instead of copying it inReyk Floeter
the broadcast start routing. ok pyr@
2007-10-22Recognize kernel options specified on the "boot" command line (e.g. boot --c),Miod Vallat
in addition to the OSLoadOptions variable; and do not default to -a -s if it is missing or empty. ok deraadt@ jsing@
2007-10-22Add a broadcast mode to trunk(4). This mode sends frames on allPierre-Yves Ritschard
ports and receives frame on any port. This allows interaction with some L2 configurations. with input and ok reyk@