summaryrefslogtreecommitdiff
path: root/sys/dev/pci
AgeCommit message (Collapse)Author
2002-06-03detect stereo reception; from jumbo@Michael Shalayeff
2002-06-03wrong cutnpaster; problem reported by Tim Tickel <twt@globodom.com> via pr2711Michael Shalayeff
2002-06-03regenMichael Shalayeff
2002-06-03Guillemot/maxiradio was a rebadged gemtek/pr103.Michael Shalayeff
the mr(4) was not really tested and therefore is now replaced w/ a tested gtp(4), renamed pci ids too. from jumbo@
2002-06-02withough -> withoutTheo de Raadt
2002-06-02Skeleton driver for the NetOctave NSP2000 (only supports RNG at the moment)Jason Wright
2002-06-02syncTheo de Raadt
2002-06-02missing first port on titan 800L; noted via seb@script.jussieu.frTheo de Raadt
2002-06-02duplicate vendorTheo de Raadt
2002-06-02knf, spaces, no \n in panicMichael Shalayeff
2002-05-31put the right thing into the audio name; pt out by Sebastian Stark ↵Michael Shalayeff
<seb@todesplanet.de>
2002-05-31Support for "Intel PRO/100 VM" w/ id 0x1038.Mike Pechkin
art@ ok
2002-05-30proper support for vt8233; from freebsd; tested by Jolan Luff ↵Michael Shalayeff
<jolan@encryptedemail.net>
2002-05-29there is no need to store ioaddr/iosize into the softcMichael Shalayeff
2002-05-29oopsMichael Shalayeff
2002-05-29oopsMichael Shalayeff
2002-05-29regenMichael Shalayeff
2002-05-29i830 and 80312 chps; from form@Michael Shalayeff
2002-05-28fix the fms attachment printfs and move out the radio parts to the ↵Michael Shalayeff
fmsradio.c; from jumbo@ and some fixes from mickey@
2002-05-27sunix is 8x speed serialTheo de Raadt
2002-05-23syncTheo de Raadt
2002-05-23correct pci id for the sunix 8 port pucTheo de Raadt
2002-05-22regenMichael Shalayeff
2002-05-22another 4800 weirdo from cisco; from condor@vcable.netMichael Shalayeff
2002-05-17Handle the removal of 'const' from structure definition.mjacob
Do not attach to AMI Raid Units (known via Sub Vendor ID) because they really *aren't* quite a QLogic ISP device, now are they? Split 2300 from 2312 types. Turn off pci parity for 2300s (per QLogic errata). Add missing ISPR2HST_RIO_16 case. At isp_pci_reset1 time, turn on interrupts if we say it's okay to do so.
2002-05-17simplify dmesg printout (all models have all crypto)Theo de Raadt
2002-05-16DARPA blurbJason Wright
2002-05-16Normalize the exponent too. This allows exponents with bit lengths differentJason Wright
from base/modulus to work on 5805.
2002-05-16more register defnsJason Wright
2002-05-16Re-enable RNG on the 5601 (it needs to be disabled on some 5805 variants,Jason Wright
but I'm not sure which revisions yet).
2002-05-15Driver for the Hifn 7814/7851/7854 HIPP1 processors; currently only supportsJason Wright
the public key engine (very much like the 6500, surprise) and the rng.
2002-05-15Rework MODEXP:Jason Wright
5805 (and 5601) require the modulus and base to be normalized to the right of one of several different register lengths. The result is also normalized to the same length. Provide functions for shifting the bits back and forth as appropriate. Note: for consistencies sake the exponent is NOT normalized.
2002-05-14sync.Jason Wright
2002-05-14vendors go in numeric orderJason Wright
2002-05-14syncJason Wright
2002-05-14Remove duplicate MOT block and duplicate MPC106 defnJason Wright
2002-05-14syncJason Wright
2002-05-14several more hifn devicesJason Wright
2002-05-14Fixed ALTQ support.Todd C. Miller
Patch from ftp://ftp.csl.sony.co.jp/pub/kjc/altq-3.1.errata.txt (kjc)
2002-05-13add and use three more flags:Jason Wright
RNG: chip has usable rng (5805/5820/5821) HWNORM: chip will automagically normalize bignums (5820/5821) BIGKEY: chip supports "large keys" (5820/5821)
2002-05-10syncJason Wright
2002-05-10Netoctave NSP2KJason Wright
2002-05-10Normalize base and exponent to the same length as the modulus and failJason Wright
if either base length or exponent length is greater than modulus.
2002-05-10- Add a set length insn for the result (length gets zotted by the shift right)Jason Wright
- Use length to determine how much to copy out, and bzero the rest
2002-05-09Set length tag of the correct registersJason Wright
2002-05-09Set correct bit in IERJason Wright
2002-05-09Rework to process requests from a queue/interrupt handler instead of busyJason Wright
waiting.
2002-05-09add support for SoundForte Theatre X-treme 5.1 SF256-PCS; from jumbo@Michael Shalayeff
2002-05-08- Go ahead and register to handle CRK_MOD_EXP_CRT opsJason Wright
- completely (almost) revamp kprocess_rsapriv to match what the chip expects - add and use a function to compute the significant bits of a given number (this will be necessary for normalization) [Still doesn't reproduce the broadcom or provos test data, but it's closer...]
2002-05-08register as having support for MODEXP operations and add associatedJason Wright
goop as appropriate. Several problems still remain: - alot of incorrect results (probably something stupid) - the driver busy waits instead of being interrupt driven (pending question to hifn about how interrupt ack is supposed to work).