summaryrefslogtreecommitdiff
path: root/sys/dev/pci/pciide.c
AgeCommit message (Collapse)Author
2005-10-26revert 82801FBM SATA controller back to being configured as an IDE controllerBrad Smith
until someone can figure out why it works on some systems and not on others.
2005-10-22check for 82801FBM SATA in one more spot.Brad Smith
2005-10-2282801FBM_IDE -> 82801FBM_SATABrad Smith
2005-10-20fix a typo in a Via PCI product id.Brad Smith
2005-10-20Don't try to match VIA ide chips as ISA bridges.Alexander Yurchenko
2005-10-18Add some missing IDE/SATA interfaces..Brad Smith
- Via VT6421 SATA - ServerWorks HT-1000 IDE - ServerWorks Frodo4/Frodo8 and HT-1000 SATA - NVidia NForce3 250 2nd channel, MCP04 and MCP51 ok grange@
2005-10-17Simplify case statement in apollo_chip_map().Jonathan Gray
2005-10-17Recognise VT8251. From Blake Willis <blake at 2112.net>.Jonathan Gray
ok grange@
2005-10-17Don't clear dma_in_progress flag too early, noticed by jason@.Alexander Yurchenko
2005-10-17Fixup cacheline on sii3114 like we do for sii3112;Alexander Yurchenko
from ragge@netbsd via jason@.
2005-10-16ServerWorks SATAMark Kettenis
ok deraadt@, grange@
2005-10-15update Via and 3Com ids.Brad Smith
2005-10-15Tweak names and add entries to the RCC (ServerWorks/Broadcom) PCI ids.Brad Smith
Based on Linux's pci.ids and sata_svw.c
2005-09-15Revert rev 1.202 for now as it breaks at least one machine.Jonathan Gray
2005-09-14Support for ATI IXP 200/300/400 IDE mostly based on changesJonathan Gray
made by Quentin Garnier to NetBSD. tested by tdeval@ and ian@, ok grange@
2005-09-05If we have a match for the PCI ID we don't care what the PCI class is.Jonathan Gray
It is often not mass storage anyway. Remove IDE_PCI_CLASS_OVERRIDE which forced matching when class was not mass storage, just use PCI ID. ok grange@
2005-08-18Match nforce 2/3/4 SATA using generic sata_chip_map().Jonathan Gray
Tested by dlg@ on nforce 3, and several people on nforce 4. ok deraadt@
2005-08-18Several boards incorporating SIS SATA chips have dellusions of granduerJonathan Gray
so we have to override the PCI class they claim to be. ok deraadt@
2005-08-09do not set PCI_COMMAND_MASTER_ENABLE explicitly as it's already set in ↵Michael Shalayeff
pcisubmatch(); kettenis@ testing; brad@ ok
2005-07-21ICH7 IDE/SATA support based diff from Marcello Balduccini inJonathan Gray
NetBSD PR 30795. ok grange@
2005-07-09Missing pciide_print_modes() in pdc203xx_setup_channel(). fgsch@ ok.Hakan Olsson
2005-06-15promise pdc203xx support; from bouyer@netbsd.org via grange@ with a fewFederico G. Schwindt
tweaks by me. grange@ ok who cannot commit atm.
2005-06-08use SMALL_KERNEL for all arch's, not just alpha and also apply the defsFederico G. Schwindt
for sii3112 funcs; grange@ mickey@ deraadt@ ok.
2005-06-01De-inline if option SMALL_KERNEL on alpha; saves 4KB off RAMDISK{,B}, otherMiod Vallat
kernels and platforms unaffected. ok deraadt@
2005-05-26nForce4 PATA support from Olivier Crouzet <ol at epita.fr>. ok grange@Jonathan Gray
2005-04-29Support ATI IXP 400 SATA, which is a Silicon Image 3112 in sheep's clothing.Jonathan Gray
Tested by Pedro la Peu <pedro at am-gen.org>. ok grange@
2005-04-20SiS 180/181/182 SATA support using generic sata_chip_map().Jonathan Gray
Hints from NetBSD and FreeBSD. ok grange@
2005-04-20Replace VIA SATA chip map routine with generic sata_chip_map().Jonathan Gray
ok grange@
2005-04-20SiS 760 support from a tech@ mail from peter.galbavy at knowtion.netJonathan Gray
ok grange@
2005-04-20SiS 661 support tested on a Gigabyte 8S661FXMP-RZ board.Jonathan Gray
ok grange@
2005-04-10Support for ICH6M IDE. Tested on a Dell Latitude D810 byJonathan Gray
Raymond Lillard <rlillard at sonic.net>. ok grange@
2005-02-21Support another Intel 6300ESB SATA.Alexander Yurchenko
Tested by Marc Wirth <MarcWirth@mac.com>.
2005-02-01Correctly setup Intel 82801FB and 82801FR SATA; from aurelien6545@free.fr.Alexander Yurchenko
2005-01-31The SiS 5513 is really a own design, partially revert my previous commit here.Martin Reindl
pointed out by Chris Cappucio <chris at nmedia.net>; ok brad@
2005-01-22PCI_PRODUCT_SIS_5513 -> PCI_PRODUCT_SIS_5597_IDEMartin Reindl
ok brad@
2005-01-15nForce2 Ultra 400 IDE support. ok grange@Jonathan Gray
2004-12-11nForce3-250, From: Brent Graveland <brent@graveland.net>, grange okHenning Brauer
2004-11-27KNF, ANSI, cleanup. No binary change.Alexander Yurchenko
2004-11-21Intel ICH6/ICH6R IDE and SATA support.Alexander Yurchenko
2004-10-19serverworks csb5 revision after 0x92 seems not to have 80-wireAlexander Yurchenko
cable check. Should fix PR 3958.
2004-10-17Improve support for SiI3112 and add new controllers: SiI3512, SiI3114Alexander Yurchenko
and Adaptec AAR-1210SA (SiI3112 based). Mostly from NetBSD (work by thorpej@). Tested by me, Alexey E. Suslikov <cruel@texnika.com.ua>, tedu@, krw@, marc@, markus@.
2004-10-17Allow chip-map function to specify which bits must permanently presentAlexander Yurchenko
in the dma command register. It's a no-op for now but sii3114 will need it. From NetBSD.
2004-10-17Don't touch dma registers directly, instead use callbacks thatAlexander Yurchenko
can be overridden by chip-map function. It's a no-op for now but will be needed to support sata controllers which have a non-lenear dma registers space.
2004-10-17Stop bloating pciide_softc with chip-specific variables. Add one pointerAlexander Yurchenko
to chip private data and use it.
2004-10-17Move pciide_softc definition to pciidevar.h.Alexander Yurchenko
2004-10-17Fix space.Alexander Yurchenko
2004-10-17Small includes cleanup: explicit bus.h inclusion, add satareg.h andAlexander Yurchenko
reorder a bit.
2004-09-15Add support for Intel 6300ESB IDE and SATA.Alexander Yurchenko
There's a little botch to be fixed later in our Intel SATA support that's why the first variants of the diff didn't work. Thanks to Markus Foerster <markus@1ster.de> for access to the testing machine.
2004-08-21in case of failure use the same logic for unmapping as it was used for ↵Michael Shalayeff
mapping; found and testing by Jack Culpepper <jack@cloudconnector.com>; deraadt@ ok
2004-06-02Add quirks field to the wdc softc and implement the first one:Alexander Yurchenko
WDC_QUIRK_NOSHORTDMA which disables DMA for the one-sector transfers. Use this quirk for the Geode SC1100 IDE to fix hanging during fdisk reported in PR 3729. Thanks to Alexandre Belloni <abelloni@nerim.net> for testing. ok costa@