summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2005-12-14We aren't likely to need to keep track of crypted/decrypted ringJonathan Gray
bits any time soon... pointed out by damien@
2005-12-14Initial bits for an nvidia nforce Ethernet driver.Jonathan Gray
bus_dma usage modelled after ral. Does not yet see rx interrupts when testing with ck804. Nvidia won't give out documentation for this, various "free" operating systems include a closed source driver, and the Linux people who reverse engineered it to create a specification won't give it out.
2005-12-14some codecs have an external amplifier, and in some hw the bit to poweringFederico G. Schwindt
it down seems to be inverted, so rather than guessing or workaround this, add a extamp var so it can be toggled in userland via mixerctl(1). audio works in hp nx6125 now; tested by todd@, mickey@ ok.
2005-12-14Add AC device glue.Marco Peereboom
2005-12-14Add AC device.Marco Peereboom
2005-12-14Adjust debug printing levels to something more sane.Marco Peereboom
2005-12-14KNFMarco Peereboom
2005-12-14Add the last bits and cleanup advice from dlg.Marco Peereboom
2005-12-13Use shiny new acpibat.hMarco Peereboom
2005-12-13First stab at battery constants and structures.Marco Peereboom
2005-12-13add novatel NRM6831; from Felix Kronlage <fkr@hazardous.org>Michael Shalayeff
2005-12-13add new device.Dale Rahn
2005-12-13syncDale Rahn
2005-12-13support cdce mode.Dale Rahn
2005-12-13- Add a whole bunch of new PCI ids.Brad Smith
- Remove the version ("valance") check as it is not necessary. From FreeBSD ok mickey@
2005-12-13use consistent naming for members of the softc structDavid Gwynne
2005-12-13the megaraid i4 and my dell perc 3/dc share the same vendor and productDavid Gwynne
ids, but the i4 is considered broken while my perc is definately working fine. so instead of marking all the devices with this vendor and product id as broken, we use the pci subsys ids to determine if the device needs a quirk. ok krw@ marco@
2005-12-13Correct typos in comments. From pedro la peu.Jonathan Gray
2005-12-13Add glue to attach devices to apci.Marco Peereboom
2005-12-13Need some stuff outside of dsdt.c so create a .hMarco Peereboom
2005-12-13Add battery device.Marco Peereboom
2005-12-13if_san_common.cCan Erkin Acar
2005-12-13Added new objtype values to amltypesJordan Hargrave
Added evaluation for match object, logical operations, conversions ok marco@
2005-12-13Add check for return value in recvcmd.Marco Peereboom
Unmap ipmi registers if attach fails. ok jordan@
2005-12-13no need for device name before failTheo de Raadt
2005-12-13Don't continue to poke ipmi registers if the ID command fails.Marco Peereboom
ok jordan@
2005-12-13Don't retry unsupported SCSI commands, causing large delays duringKenneth R Westerback
boot process. Same as done to gdt and ioprbs. ok nate@
2005-12-12ansi, no binary change.Federico G. Schwindt
2005-12-12fix a license i botched years agoMichael Shalayeff
2005-12-12make printf debug-only so some people would just shuddupMichael Shalayeff
2005-12-12knfDavid Gwynne
2005-12-12If a PCI-X card is detected then set bge_pcix.Brad Smith
2005-12-11syncBrad Smith
2005-12-11regenBrad Smith
2005-12-11a whole bunch of ciss(4) PCI ids.Brad Smith
From FreeBSD
2005-12-11Replace procfs_domem() with a similar interface, process_domem(), which livesMiod Vallat
out of procfs and gets a ptrace request PT_{READ,WRITE}_{I,D} as argument; also procfs_checkioperm() becomes process_checkioperm(). From art@ some time ago; ok kettenis@ pedro@
2005-12-11cleanup some knr to ansi i missed, and some extra whitespace i accidentallyDavid Gwynne
snuck in.
2005-12-11syncBrad Smith
2005-12-11regenBrad Smith
2005-12-11- change Intel PRO/100 VE (3) to 82801DB LANBrad Smith
- add Intel 82801DBL IDE controller PCI id
2005-12-11recognize BCM5750 C1 on Ted's Fujitsu Lifebook S7000Brad Smith
2005-12-10use the 5750 DSP code with the BCM5714 and BCM5780 too.Brad Smith
2005-12-10add a shutdown function and register it with shutdownhook_establish().Brad Smith
2005-12-10sk_shutdown -> skc_shutdown and register the shutdown function withBrad Smith
shutdownhook_establish().
2005-12-10shrink dmesg entry by one line by merging the chipset revision intoBrad Smith
the skc line and fix various error condition printf's in skc_attach(), sk_attach() and sk_alloc_jumbo_mem() so the messages will be displayed properly. ok krw@
2005-12-10add a shutdown function and register it with shutdownhook_establish().Brad Smith
2005-12-10re-add bge_shutdown() but also register the function withBrad Smith
shutdownhook_establish().
2005-12-10Check dm_nsegs > 0 rather than dm_segs > 0 when deciding if there areKenneth R Westerback
valid segments to unload. Spotted by lint. ok miod@
2005-12-10remove an unused mbuf struct from vr_encap(), leftover from Jason's bus_dma ↵Brad Smith
conversion. From Andrey Matveev <evol at online dot ptt dot ru>
2005-12-10Initialize flags before using it. Spotted by lint.Kenneth R Westerback
ok reyk@