Up to [cvs.netbsd.org] / src / sys / dev / pci
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.42.2.1 / (download) - annotate - [select for diffs], Mon Jun 6 09:08:25 2011 UTC (11 months, 2 weeks ago) by jruoho
Branch: jruoho-x86intr
Changes since 1.42: +12 -11
lines
Diff to previous 1.42 (colored) next main 1.43 (colored)
Sync with HEAD.
Revision 1.40.4.2 / (download) - annotate - [select for diffs], Thu Apr 21 01:42:00 2011 UTC (13 months ago) by rmind
Branch: rmind-uvmplock
Changes since 1.40.4.1: +11 -10
lines
Diff to previous 1.40.4.1 (colored) to branchpoint 1.40 (colored) next main 1.41 (colored)
sync with head
Revision 1.43 / (download) - annotate - [select for diffs], Mon Apr 4 20:37:56 2011 UTC (13 months, 3 weeks ago) by dyoung
Branch: MAIN
CVS Tags: yamt-pagecache-base5,
yamt-pagecache-base4,
yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
yamt-pagecache,
rmind-uvmplock-nbase,
rmind-uvmplock-base,
netbsd-6-base,
netbsd-6,
jmcneill-usbmp-pre-base2,
jmcneill-usbmp-base9,
jmcneill-usbmp-base8,
jmcneill-usbmp-base7,
jmcneill-usbmp-base6,
jmcneill-usbmp-base5,
jmcneill-usbmp-base4,
jmcneill-usbmp-base3,
jmcneill-usbmp-base2,
jmcneill-usbmp-base,
jmcneill-usbmp,
jmcneill-audiomp3-base,
jmcneill-audiomp3,
cherry-xenmp-base,
cherry-xenmp,
HEAD
Changes since 1.42: +12 -11
lines
Diff to previous 1.42 (colored)
Neither pci_dma64_available(), pci_probe_device(), pci_mapreg_map(9),
pci_find_rom(), pci_intr_map(9), pci_enumerate_bus(), nor the match
predicate passed to pciide_compat_intr_establish() should ever modify
their pci_attach_args argument, so make their pci_attach_args arguments
const and deal with the fallout throughout the kernel.
For the most part, these changes add a 'const' where there was no
'const' before, however, some drivers and MD code used to modify
pci_attach_args. Now those drivers either copy their pci_attach_args
and modify the copy, or refrain from modifying pci_attach_args:
Xen: according to Manuel Bouyer, writing to pci_attach_args in
pci_intr_map() was a leftover from Xen 2. Probably a bug. I
stopped writing it. I have not tested this change.
siside(4): sis_hostbr_match() needlessly wrote to pci_attach_args.
Probably a bug. I use a temporary variable. I have not tested this
change.
slide(4): sl82c105_chip_map() overwrote the caller's pci_attach_args.
Probably a bug. Use a local pci_attach_args. I have not tested
this change.
viaide(4): via_sata_chip_map() and via_sata_chip_map_new() overwrote the
caller's pci_attach_args. Probably a bug. Make a local copy of the
caller's pci_attach_args and modify the copy. I have not tested
this change.
While I'm here, make pci_mapreg_submap() static.
With these changes in place, I have tested the compilation of these
kernels:
alpha GENERIC
amd64 GENERIC XEN3_DOM0
arc GENERIC
atari HADES MILAN-PCIIDE
bebox GENERIC
cats GENERIC
cobalt GENERIC
evbarm-eb NSLU2
evbarm-el ADI_BRH ARMADILLO9 CP3100 GEMINI GEMINI_MASTER GEMINI_SLAVE GUMSTIX
HDL_G IMX31LITE INTEGRATOR IQ31244 IQ80310 IQ80321 IXDP425 IXM1200
KUROBOX_PRO LUBBOCK MARVELL_NAS NAPPI SHEEVAPLUG SMDK2800 TEAMASA_NPWR
TEAMASA_NPWR_FC TS7200 TWINTAIL ZAO425
evbmips-el AP30 DBAU1500 DBAU1550 MALTA MERAKI MTX-1 OMSAL400 RB153 WGT624V3
evbmips64-el XLSATX
evbppc EV64260 MPC8536DS MPC8548CDS OPENBLOCKS200 OPENBLOCKS266
OPENBLOCKS266_OPT P2020RDB PMPPC RB800 WALNUT
hp700 GENERIC
i386 ALL XEN3_DOM0 XEN3_DOMU
ibmnws GENERIC
macppc GENERIC
mvmeppc GENERIC
netwinder GENERIC
ofppc GENERIC
prep GENERIC
sandpoint GENERIC
sgimips GENERIC32_IP2x
sparc GENERIC_SUN4U KRUPS
sparc64 GENERIC
As of Sun Apr 3 15:26:26 CDT 2011, I could not compile these kernels
with or without my patches in place:
### evbmips-el GDIUM
nbmake: nbmake: don't know how to make /home/dyoung/pristine-nbsd/src/sys/arch/mips/mips/softintr.c. Stop
### evbarm-el MPCSA_GENERIC
src/sys/arch/evbarm/conf/MPCSA_GENERIC:318: ds1672rtc*: unknown device `ds1672rtc'
### ia64 GENERIC
/tmp/genassym.28085/assym.c: In function 'f111':
/tmp/genassym.28085/assym.c:67: error: invalid application of 'sizeof' to incomplete type 'struct pcb'
/tmp/genassym.28085/assym.c:76: error: dereferencing pointer to incomplete type
### sgimips GENERIC32_IP3x
crmfb.o: In function `crmfb_attach':
crmfb.c:(.text+0x2304): undefined reference to `ddc_read_edid'
crmfb.c:(.text+0x2304): relocation truncated to fit: R_MIPS_26 against `ddc_read_edid'
crmfb.c:(.text+0x234c): undefined reference to `edid_parse'
crmfb.c:(.text+0x234c): relocation truncated to fit: R_MIPS_26 against `edid_parse'
crmfb.c:(.text+0x2354): undefined reference to `edid_print'
crmfb.c:(.text+0x2354): relocation truncated to fit: R_MIPS_26 against `edid_print'
Revision 1.40.4.1 / (download) - annotate - [select for diffs], Sat Mar 5 20:53:56 2011 UTC (14 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.40: +20 -10
lines
Diff to previous 1.40 (colored)
sync with head
Revision 1.40.2.1 / (download) - annotate - [select for diffs], Sat Nov 6 08:08:31 2010 UTC (18 months, 2 weeks ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.40: +13 -10
lines
Diff to previous 1.40 (colored) next main 1.41 (colored)
Sync with HEAD.
Revision 1.42 / (download) - annotate - [select for diffs], Sat Nov 6 00:29:09 2010 UTC (18 months, 2 weeks ago) by jakllsch
Branch: MAIN
CVS Tags: matt-mips64-premerge-20101231,
jruoho-x86intr-base,
bouyer-quota2-nbase,
bouyer-quota2-base,
bouyer-quota2
Branch point for: jruoho-x86intr
Changes since 1.41: +8 -1
lines
Diff to previous 1.41 (colored)
Rework pciide(4) detachment to take the legacy interrupt mapping into consideration and avoid future code duplication. Ports wanting to enable detachment of controllers with compatibility-mapped channels will need to supply a pciide_machdep_compat_intr_disestablish() function.
Revision 1.41 / (download) - annotate - [select for diffs], Fri Nov 5 18:07:24 2010 UTC (18 months, 2 weeks ago) by jakllsch
Branch: MAIN
CVS Tags: uebayasi-xip-base4
Changes since 1.40: +13 -10
lines
Diff to previous 1.40 (colored)
Pave the way for detachment of pciide(4)-family ATA controllers.
Revision 1.36.10.3 / (download) - annotate - [select for diffs], Thu Mar 11 15:03:58 2010 UTC (2 years, 2 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.36.10.2: +5 -3
lines
Diff to previous 1.36.10.2 (colored) to branchpoint 1.36 (colored) next main 1.37 (colored)
sync with head
Revision 1.40 / (download) - annotate - [select for diffs], Sat Nov 14 09:42:50 2009 UTC (2 years, 6 months ago) by cegger
Branch: MAIN
CVS Tags: yamt-nfs-mp-base9,
yamt-nfs-mp-base11,
yamt-nfs-mp-base10,
uebayasi-xip-base3,
uebayasi-xip-base2,
uebayasi-xip-base1,
uebayasi-xip-base,
matt-premerge-20091211
Branch point for: uebayasi-xip,
rmind-uvmplock
Changes since 1.39: +2 -3
lines
Diff to previous 1.39 (colored)
include <sys/device_if.h> for device_t. There is no use of struct device.
Revision 1.39 / (download) - annotate - [select for diffs], Mon Oct 5 20:03:47 2009 UTC (2 years, 7 months ago) by dyoung
Branch: MAIN
CVS Tags: jym-xensuspend-nbase
Changes since 1.38: +4 -1
lines
Diff to previous 1.38 (colored)
It's a big job to write detachment hooks for pciide(4) and all of its derivatives, and I haven't the time myself. In struct pciide_product_desc, provide a tiny bit of commented-out code to guide an enterprising developer who takes on the immense task.
Revision 1.36.10.2 / (download) - annotate - [select for diffs], Sat May 16 10:41:40 2009 UTC (3 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.36.10.1: +2 -2
lines
Diff to previous 1.36.10.1 (colored) to branchpoint 1.36 (colored)
sync with head
Revision 1.36.24.1 / (download) - annotate - [select for diffs], Wed May 13 17:20:29 2009 UTC (3 years ago) by jym
Branch: jym-xensuspend
Changes since 1.36: +4 -11
lines
Diff to previous 1.36 (colored) next main 1.37 (colored)
Sync with HEAD. Commit is split, to avoid a "too many arguments" protocol error.
Revision 1.38 / (download) - annotate - [select for diffs], Wed May 6 10:34:33 2009 UTC (3 years ago) by cegger
Branch: MAIN
CVS Tags: yamt-nfs-mp-base8,
yamt-nfs-mp-base7,
yamt-nfs-mp-base6,
yamt-nfs-mp-base5,
yamt-nfs-mp-base4,
jymxensuspend-base,
jym-xensuspend-base
Changes since 1.37: +2 -2
lines
Diff to previous 1.37 (colored)
struct device * -> device_t, no functional changes intended.
Revision 1.36.10.1 / (download) - annotate - [select for diffs], Mon May 4 08:13:01 2009 UTC (3 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.36: +3 -10
lines
Diff to previous 1.36 (colored)
sync with head.
Revision 1.36.18.1 / (download) - annotate - [select for diffs], Tue Apr 28 07:35:59 2009 UTC (3 years ago) by skrll
Branch: nick-hppapmap
Changes since 1.36: +3 -10
lines
Diff to previous 1.36 (colored) next main 1.37 (colored)
Sync with HEAD.
Revision 1.37 / (download) - annotate - [select for diffs], Sun Mar 15 15:48:14 2009 UTC (3 years, 2 months ago) by cegger
Branch: MAIN
CVS Tags: yamt-nfs-mp-base3,
nick-hppapmap-base4,
nick-hppapmap-base3,
nick-hppapmap-base
Changes since 1.36: +3 -10
lines
Diff to previous 1.36 (colored)
ansify function definitions
Revision 1.35.30.1 / (download) - annotate - [select for diffs], Mon Feb 18 21:05:58 2008 UTC (4 years, 3 months ago) by mjf
Branch: mjf-devfs
Changes since 1.35: +2 -7
lines
Diff to previous 1.35 (colored) next main 1.36 (colored)
Sync with HEAD.
Revision 1.30.4.3 / (download) - annotate - [select for diffs], Mon Jan 21 09:44:13 2008 UTC (4 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.30.4.2: +2 -7
lines
Diff to previous 1.30.4.2 (colored) to branchpoint 1.30 (colored) next main 1.31 (colored)
sync with head
Revision 1.35.24.1 / (download) - annotate - [select for diffs], Wed Jan 9 01:53:59 2008 UTC (4 years, 4 months ago) by matt
Branch: matt-armv6
Changes since 1.35: +2 -7
lines
Diff to previous 1.35 (colored) next main 1.36 (colored)
sync with HEAD
Revision 1.35.38.1 / (download) - annotate - [select for diffs], Tue Jan 8 22:11:17 2008 UTC (4 years, 4 months ago) by bouyer
Branch: bouyer-xeni386
CVS Tags: bouyer-xeni386-merge1
Changes since 1.35: +2 -7
lines
Diff to previous 1.35 (colored) next main 1.36 (colored)
Sync with HEAD
Revision 1.36 / (download) - annotate - [select for diffs], Fri Jan 4 00:27:27 2008 UTC (4 years, 4 months ago) by joerg
Branch: MAIN
CVS Tags: yamt-pf42-baseX,
yamt-pf42-base4,
yamt-pf42-base3,
yamt-pf42-base2,
yamt-pf42-base,
yamt-pf42,
yamt-nfs-mp-base2,
yamt-nfs-mp-base,
yamt-lazymbuf-base15,
yamt-lazymbuf-base14,
wrstuden-revivesa-base-4,
wrstuden-revivesa-base-3,
wrstuden-revivesa-base-2,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base,
wrstuden-revivesa,
simonb-wapbl-nbase,
simonb-wapbl-base,
simonb-wapbl,
nick-net80211-sync-base,
nick-net80211-sync,
nick-hppapmap-base2,
netbsd-5-base,
netbsd-5-1-RELEASE,
netbsd-5-1-RC4,
netbsd-5-1-RC3,
netbsd-5-1-RC2,
netbsd-5-1-RC1,
netbsd-5-1-2-RELEASE,
netbsd-5-1-1-RELEASE,
netbsd-5-1,
netbsd-5-0-RELEASE,
netbsd-5-0-RC4,
netbsd-5-0-RC3,
netbsd-5-0-RC2,
netbsd-5-0-RC1,
netbsd-5-0-2-RELEASE,
netbsd-5-0-1-RELEASE,
netbsd-5-0,
netbsd-5,
mjf-devfs2-base,
mjf-devfs2,
mjf-devfs-base,
matt-nb5-pq3-base,
matt-nb5-pq3,
matt-nb5-mips64-u2-k2-k4-k7-k8-k9,
matt-nb5-mips64-u1-k1-k5,
matt-nb5-mips64-premerge-20101231,
matt-nb5-mips64-premerge-20091211,
matt-nb5-mips64-k15,
matt-nb5-mips64,
matt-nb4-mips64-k7-u2a-k9b,
matt-mips64-base2,
matt-armv6-nbase,
matt-armv6-base,
keiichi-mipv6-nbase,
keiichi-mipv6-base,
keiichi-mipv6,
hpcarm-cleanup-nbase,
hpcarm-cleanup-base,
haad-nbase2,
haad-dm-base2,
haad-dm-base1,
haad-dm-base,
haad-dm,
bouyer-xeni386-nbase,
bouyer-xeni386-base,
ad-socklock-base1,
ad-audiomp2-base,
ad-audiomp2
Branch point for: yamt-nfs-mp,
nick-hppapmap,
jym-xensuspend
Changes since 1.35: +2 -7
lines
Diff to previous 1.35 (colored)
Allow saving of up to 4 PCI registers in the IDE code.
Revision 1.30.4.2 / (download) - annotate - [select for diffs], Sat Dec 30 20:48:48 2006 UTC (5 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.30.4.1: +5 -1
lines
Diff to previous 1.30.4.1 (colored) to branchpoint 1.30 (colored)
sync with head.
Revision 1.34.4.1 / (download) - annotate - [select for diffs], Sat Nov 18 21:34:33 2006 UTC (5 years, 6 months ago) by ad
Branch: newlock2
Changes since 1.34: +5 -1
lines
Diff to previous 1.34 (colored) next main 1.35 (colored)
Sync with head.
Revision 1.34.6.1 / (download) - annotate - [select for diffs], Sun Oct 22 06:06:19 2006 UTC (5 years, 7 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.34: +5 -1
lines
Diff to previous 1.34 (colored) next main 1.35 (colored)
sync with head
Revision 1.35 / (download) - annotate - [select for diffs], Tue Oct 17 13:45:05 2006 UTC (5 years, 7 months ago) by itohy
Branch: MAIN
CVS Tags: yamt-x86pmap-base4,
yamt-x86pmap-base3,
yamt-x86pmap-base2,
yamt-x86pmap-base,
yamt-x86pmap,
yamt-splraiseipl-base5,
yamt-splraiseipl-base4,
yamt-splraiseipl-base3,
yamt-splraiseipl-base2,
yamt-kmem-base3,
yamt-kmem-base2,
yamt-kmem-base,
yamt-kmem,
yamt-idlelwp-base8,
yamt-idlelwp,
wrstuden-fixsa-newbase,
wrstuden-fixsa-base-1,
wrstuden-fixsa-base,
wrstuden-fixsa,
vmlocking2-base3,
vmlocking2-base2,
vmlocking2-base1,
vmlocking2,
vmlocking-nbase,
vmlocking-base,
vmlocking,
thorpej-atomic-base,
thorpej-atomic,
reinoud-bufcleanup-nbase,
reinoud-bufcleanup-base,
reinoud-bufcleanup,
post-newlock2-merge,
nick-csl-alignment-base5,
nick-csl-alignment-base,
nick-csl-alignment,
newlock2-nbase,
newlock2-base,
netbsd-4-base,
netbsd-4-0-RELEASE,
netbsd-4-0-RC5,
netbsd-4-0-RC4,
netbsd-4-0-RC3,
netbsd-4-0-RC2,
netbsd-4-0-RC1,
netbsd-4-0-1-RELEASE,
netbsd-4-0,
netbsd-4,
mjf-ufs-trans-base,
mjf-ufs-trans,
matt-nb4-arm-base,
matt-nb4-arm,
matt-mips64-base,
matt-mips64,
matt-armv6-prevmlocking,
jmcneill-pm-base,
jmcneill-pm,
jmcneill-base,
hpcarm-cleanup,
cube-autoconf-base,
cube-autoconf,
bouyer-xenamd64-base2,
bouyer-xenamd64-base,
bouyer-xenamd64,
ad-audiomp-base,
ad-audiomp
Branch point for: mjf-devfs,
matt-armv6,
bouyer-xeni386
Changes since 1.34: +5 -1
lines
Diff to previous 1.34 (colored)
Make pciide(4)-only configurations (without other DMA-capable driver) compile.
Revision 1.32.4.1 / (download) - annotate - [select for diffs], Sat Sep 9 02:52:19 2006 UTC (5 years, 8 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.32: +8 -2
lines
Diff to previous 1.32 (colored) next main 1.33 (colored)
sync with head
Revision 1.33.8.1 / (download) - annotate - [select for diffs], Thu Jul 13 17:49:29 2006 UTC (5 years, 10 months ago) by gdamore
Branch: gdamore-uart
Changes since 1.33: +4 -1
lines
Diff to previous 1.33 (colored) next main 1.34 (colored)
Merge from HEAD.
Revision 1.32.8.2 / (download) - annotate - [select for diffs], Mon Jun 26 12:51:23 2006 UTC (5 years, 11 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.32.8.1: +4 -1
lines
Diff to previous 1.32.8.1 (colored) to branchpoint 1.32 (colored) next main 1.33 (colored)
sync with head.
Revision 1.30.4.1 / (download) - annotate - [select for diffs], Wed Jun 21 15:05:06 2006 UTC (5 years, 11 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.30: +12 -6
lines
Diff to previous 1.30 (colored)
sync with head.
Revision 1.33.6.1 / (download) - annotate - [select for diffs], Mon Jun 19 04:01:37 2006 UTC (5 years, 11 months ago) by chap
Branch: chap-midi
Changes since 1.33: +4 -1
lines
Diff to previous 1.33 (colored) next main 1.34 (colored)
Sync with head.
Revision 1.34 / (download) - annotate - [select for diffs], Sat Jun 17 17:05:20 2006 UTC (5 years, 11 months ago) by jmcneill
Branch: MAIN
CVS Tags: yamt-splraiseipl-base,
yamt-pdpolicy-base9,
yamt-pdpolicy-base8,
yamt-pdpolicy-base7,
yamt-pdpolicy-base6,
rpaulo-netinet-merge-pcb-base,
chap-midi-nbase,
chap-midi-base,
abandoned-netbsd-4-base,
abandoned-netbsd-4
Branch point for: yamt-splraiseipl,
newlock2
Changes since 1.33: +4 -1
lines
Diff to previous 1.33 (colored)
Restore IDE and UDMA timings on resume for the PIIX4.
Revision 1.30.2.1 / (download) - annotate - [select for diffs], Thu May 4 12:12:08 2006 UTC (6 years ago) by tron
Branch: netbsd-3
CVS Tags: netbsd-3-1-RELEASE,
netbsd-3-1-RC4,
netbsd-3-1-RC3,
netbsd-3-1-RC2,
netbsd-3-1-RC1,
netbsd-3-1-1-RELEASE,
netbsd-3-1
Changes since 1.30: +5 -2
lines
Diff to previous 1.30 (colored) next main 1.31 (colored)
Pull up following revision(s) (requested by jonathan in ticket #1298): share/man/man4/pciide.4: revision 1.60 share/man/man4/Makefile: revision 1.376 via patch sys/dev/pci/svwsata.c: revision 1.1 sys/dev/pci/files.pci: revision 1.243 sys/arch/i386/conf/INSTALL: revision 1.281 sys/dev/pci/pcidevs: revision 1.771 via patch sys/dev/pci/pciidevar.h: revision 1.33 sys/arch/i386/conf/XEN0: revision 1.34 sys/arch/i386/conf/GENERIC: revision 1.732 sys/dev/pci/pciide_svwsata_reg.h: revision 1.1 Add svwsata(4), a driver for Serverworks K2 SATA controllers. From OpenBSD via Joerg Sonnenberger.
Revision 1.32.6.1 / (download) - annotate - [select for diffs], Sat Apr 22 11:39:15 2006 UTC (6 years, 1 month ago) by simonb
Branch: simonb-timecounters
CVS Tags: simonb-timcounters-final
Changes since 1.32: +5 -2
lines
Diff to previous 1.32 (colored) next main 1.33 (colored)
Sync with head.
Revision 1.32.8.1 / (download) - annotate - [select for diffs], Mon Mar 13 09:07:27 2006 UTC (6 years, 2 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.32: +5 -2
lines
Diff to previous 1.32 (colored)
sync with head.
Revision 1.33 / (download) - annotate - [select for diffs], Mon Mar 6 18:35:24 2006 UTC (6 years, 2 months ago) by bouyer
Branch: MAIN
CVS Tags: yamt-pdpolicy-base5,
yamt-pdpolicy-base4,
yamt-pdpolicy-base3,
yamt-pdpolicy-base2,
simonb-timecounters-base,
peter-altq-base,
peter-altq,
gdamore-uart-base,
elad-kernelauth-base,
elad-kernelauth
Branch point for: gdamore-uart,
chap-midi
Changes since 1.32: +5 -2
lines
Diff to previous 1.32 (colored)
Add svwsata(4), a driver for Serverworks K2 SATA controllers. From OpenBSD via Joerg Sonnenberger.
Revision 1.32 / (download) - annotate - [select for diffs], Sat Dec 24 20:27:42 2005 UTC (6 years, 5 months ago) by perry
Branch: MAIN
CVS Tags: yamt-uio_vmspace-base5,
yamt-uio_vmspace,
yamt-pdpolicy-base
Branch point for: yamt-pdpolicy,
simonb-timecounters,
rpaulo-netinet-merge-pcb
Changes since 1.31: +5 -5
lines
Diff to previous 1.31 (colored)
Remove leading __ from __(const|inline|signed|volatile) -- it is obsolete.
Revision 1.31 / (download) - annotate - [select for diffs], Sun Dec 11 12:22:50 2005 UTC (6 years, 5 months ago) by christos
Branch: MAIN
Changes since 1.30: +1 -1
lines
Diff to previous 1.30 (colored)
merge ktrace-lwp.
Revision 1.26.4.1 / (download) - annotate - [select for diffs], Fri Apr 29 11:29:12 2005 UTC (7 years ago) by kent
Branch: kent-audio2
Changes since 1.26: +40 -38
lines
Diff to previous 1.26 (colored) next main 1.27 (colored)
sync with -current
Revision 1.26.6.2 / (download) - annotate - [select for diffs], Sat Mar 19 08:35:12 2005 UTC (7 years, 2 months ago) by yamt
Branch: yamt-km
Changes since 1.26.6.1: +2 -2
lines
Diff to previous 1.26.6.1 (colored) to branchpoint 1.26 (colored) next main 1.27 (colored)
sync with head. xen and whitespace. xen part is not finished.
Revision 1.20.4.1 / (download) - annotate - [select for diffs], Wed Mar 16 13:04:35 2005 UTC (7 years, 2 months ago) by tron
Branch: netbsd-2
CVS Tags: netbsd-2-1-RELEASE,
netbsd-2-1-RC6,
netbsd-2-1-RC5,
netbsd-2-1-RC4,
netbsd-2-1-RC3,
netbsd-2-1-RC2,
netbsd-2-1-RC1,
netbsd-2-1
Changes since 1.20: +4 -2
lines
Diff to previous 1.20 (colored) next main 1.21 (colored)
Pull up revision 1.26 (requested by bouyer in ticket #1016): Move bus_dma setup out of pciide_dma_init() in a new function, pciide_dma_dmamap_setup(), for the benefit of drivers that needs special registers setup in dmainit().
Revision 1.10.2.8 / (download) - annotate - [select for diffs], Fri Mar 4 16:45:25 2005 UTC (7 years, 2 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.10.2.7: +2 -2
lines
Diff to previous 1.10.2.7 (colored) next main 1.11 (colored)
Sync with HEAD. Hi Perry!
Revision 1.30 / (download) - annotate - [select for diffs], Sun Feb 27 00:27:33 2005 UTC (7 years, 2 months ago) by perry
Branch: MAIN
CVS Tags: yamt-vop-base3,
yamt-vop-base2,
yamt-vop-base,
yamt-vop,
yamt-readahead-pervnode,
yamt-readahead-perfile,
yamt-readahead-base3,
yamt-readahead-base2,
yamt-readahead-base,
yamt-readahead,
yamt-km-base4,
yamt-km-base3,
thorpej-vnode-attr-base,
thorpej-vnode-attr,
netbsd-3-base,
netbsd-3-0-RELEASE,
netbsd-3-0-RC6,
netbsd-3-0-RC5,
netbsd-3-0-RC4,
netbsd-3-0-RC3,
netbsd-3-0-RC2,
netbsd-3-0-RC1,
netbsd-3-0-3-RELEASE,
netbsd-3-0-2-RELEASE,
netbsd-3-0-1-RELEASE,
netbsd-3-0,
ktrace-lwp-base,
kent-audio2-base
Branch point for: yamt-lazymbuf,
netbsd-3
Changes since 1.29: +2 -2
lines
Diff to previous 1.29 (colored)
nuke trailing whitespace
Revision 1.10.2.7 / (download) - annotate - [select for diffs], Tue Feb 15 21:33:13 2005 UTC (7 years, 3 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.10.2.6: +2 -2
lines
Diff to previous 1.10.2.6 (colored)
Sync with HEAD.
Revision 1.26.6.1 / (download) - annotate - [select for diffs], Sat Feb 12 18:17:48 2005 UTC (7 years, 3 months ago) by yamt
Branch: yamt-km
Changes since 1.26: +40 -38
lines
Diff to previous 1.26 (colored)
sync with head.
Revision 1.29 / (download) - annotate - [select for diffs], Fri Feb 11 21:12:32 2005 UTC (7 years, 3 months ago) by rearnsha
Branch: MAIN
CVS Tags: yamt-km-base2,
matt-timespec
Changes since 1.28: +2 -2
lines
Diff to previous 1.28 (colored)
Add support for the Artisea device operating in DPA mode. Approved by briggs.
Revision 1.10.2.6 / (download) - annotate - [select for diffs], Fri Feb 4 11:46:40 2005 UTC (7 years, 3 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.10.2.5: +39 -37
lines
Diff to previous 1.10.2.5 (colored)
Sync with HEAD.
Revision 1.28 / (download) - annotate - [select for diffs], Fri Feb 4 02:10:45 2005 UTC (7 years, 3 months ago) by perry
Branch: MAIN
Changes since 1.27: +35 -37
lines
Diff to previous 1.27 (colored)
de-__P
Revision 1.27 / (download) - annotate - [select for diffs], Wed Jan 26 21:50:31 2005 UTC (7 years, 3 months ago) by jmcneill
Branch: MAIN
Changes since 1.26: +5 -1
lines
Diff to previous 1.26 (colored)
Add powerhooks for PIIX IDE driver.
Revision 1.10.2.5 / (download) - annotate - [select for diffs], Mon Nov 29 07:24:17 2004 UTC (7 years, 5 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.10.2.4: +4 -2
lines
Diff to previous 1.10.2.4 (colored)
Sync with HEAD.
Revision 1.26 / (download) - annotate - [select for diffs], Wed Nov 24 19:52:50 2004 UTC (7 years, 6 months ago) by bouyer
Branch: MAIN
CVS Tags: yamt-km-base,
kent-audio1-beforemerge,
kent-audio1-base,
kent-audio1
Branch point for: yamt-km,
kent-audio2
Changes since 1.25: +4 -2
lines
Diff to previous 1.25 (colored)
Move bus_dma setup out of pciide_dma_init() in a new function, pciide_dma_dmamap_setup(), for the benefit of drivers that needs special registers setup in dmainit().
Revision 1.10.2.4 / (download) - annotate - [select for diffs], Tue Sep 21 13:31:07 2004 UTC (7 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.10.2.3: +1 -1
lines
Diff to previous 1.10.2.3 (colored)
Fix the sync with head I botched.
Revision 1.10.2.3 / (download) - annotate - [select for diffs], Sat Sep 18 14:49:06 2004 UTC (7 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.10.2.2: +1 -1
lines
Diff to previous 1.10.2.2 (colored)
Sync with HEAD.
Revision 1.10.2.2 / (download) - annotate - [select for diffs], Wed Aug 25 06:58:06 2004 UTC (7 years, 9 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.10.2.1: +23 -12
lines
Diff to previous 1.10.2.1 (colored)
Sync with HEAD.
Revision 1.25 / (download) - annotate - [select for diffs], Fri Aug 20 06:39:39 2004 UTC (7 years, 9 months ago) by thorpej
Branch: MAIN
Changes since 1.24: +2 -2
lines
Diff to previous 1.24 (colored)
Move most of wdc_softc into a new atac_softc structure that contains info common to all types of ATA controllers.
Revision 1.24 / (download) - annotate - [select for diffs], Thu Aug 19 23:25:35 2004 UTC (7 years, 9 months ago) by thorpej
Branch: MAIN
Changes since 1.23: +7 -1
lines
Diff to previous 1.23 (colored)
- Add and use a CHAN_TO_WDC() macro to get the wdc_softc from an ata_channel. - Add and use a CHAN_TO_WDC_REGS() macro to get the wdc_regs from an ata_channel. - Add and use a CHAN_TO_PCIIDE() macro to get the pciide_softc from an ata_channel. - Add and use a CHAN_TO_PCHAN() macro to get the pciide_channel from an ata_channel. (This one just hides a cast, and is really just for consistency with the others.)
Revision 1.23 / (download) - annotate - [select for diffs], Thu Aug 19 17:56:57 2004 UTC (7 years, 9 months ago) by thorpej
Branch: MAIN
Changes since 1.22: +6 -1
lines
Diff to previous 1.22 (colored)
Protect against multiple inclusion.
Revision 1.22 / (download) - annotate - [select for diffs], Sat Aug 14 15:08:06 2004 UTC (7 years, 9 months ago) by thorpej
Branch: MAIN
Changes since 1.21: +5 -5
lines
Diff to previous 1.21 (colored)
- Split the register handles out of struct wdc_channel into a separate wdc_regs structure, and array of which (indexed per channel) is pointed to by struct wdc_softc. - Move the resulting wdc_channel structure to atavar.h and rename it to ata_channel. Rename the corresponding flags. - Add a "ch_ndrive" member to struct ata_channel, which indicates the maximum number of drives that can be present on the channel. For now, this is always 2. Add an ATA_MAXDRIVES constant that places an upper limit on this value, also currently 2.
Revision 1.21 / (download) - annotate - [select for diffs], Fri Aug 13 04:10:49 2004 UTC (7 years, 9 months ago) by thorpej
Branch: MAIN
Changes since 1.20: +8 -8
lines
Diff to previous 1.20 (colored)
WDCDEBUG -> ATADEBUG.
Revision 1.10.2.1 / (download) - annotate - [select for diffs], Tue Aug 3 10:49:11 2004 UTC (7 years, 9 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.10: +134 -9
lines
Diff to previous 1.10 (colored)
Sync with HEAD
Revision 1.7.16.2 / (download) - annotate - [select for diffs], Mon Jul 12 21:24:32 2004 UTC (7 years, 10 months ago) by he
Branch: netbsd-1-6
Changes since 1.7.16.1: +8 -1
lines
Diff to previous 1.7.16.1 (colored) to branchpoint 1.7 (colored) next main 1.8 (colored)
Pull up revision 1.10 (via patch, requested by grant in ticket #1720): Add support for SATALink 3112.
Revision 1.20 / (download) - annotate - [select for diffs], Sat Jan 3 01:50:53 2004 UTC (8 years, 4 months ago) by thorpej
Branch: MAIN
CVS Tags: netbsd-2-base,
netbsd-2-0-base,
netbsd-2-0-RELEASE,
netbsd-2-0-RC5,
netbsd-2-0-RC4,
netbsd-2-0-RC3,
netbsd-2-0-RC2,
netbsd-2-0-RC1,
netbsd-2-0-3-RELEASE,
netbsd-2-0-2-RELEASE,
netbsd-2-0-1-RELEASE,
netbsd-2-0
Branch point for: netbsd-2
Changes since 1.19: +5 -5
lines
Diff to previous 1.19 (colored)
Rename "struct channel_softc" to "struct wdc_channel".
Revision 1.19 / (download) - annotate - [select for diffs], Fri Dec 19 19:29:10 2003 UTC (8 years, 5 months ago) by thorpej
Branch: MAIN
Changes since 1.18: +11 -3
lines
Diff to previous 1.18 (colored)
While legacy PCI IDE controllers have only 2 channels, it is quite common for modern PCI SATA controllers to have more. Define a new PCIIDE_MAX_CHANNELS which to specify the maximum number of channels we support, and use it to allocate channel resources.
Revision 1.18 / (download) - annotate - [select for diffs], Fri Dec 19 19:09:20 2003 UTC (8 years, 5 months ago) by thorpej
Branch: MAIN
Changes since 1.17: +8 -1
lines
Diff to previous 1.17 (colored)
Some controllers must have certain bits always be set in the IDEDMA_CMD register for proper operation. Add a prototype field in the pciide_channel for this register and use it as necessary when writing the IDEDMA_CMD register.
Revision 1.17 / (download) - annotate - [select for diffs], Fri Dec 19 05:55:12 2003 UTC (8 years, 5 months ago) by thorpej
Branch: MAIN
Changes since 1.16: +2 -2
lines
Diff to previous 1.16 (colored)
Const poison the channel name.
Revision 1.16 / (download) - annotate - [select for diffs], Fri Dec 19 05:16:57 2003 UTC (8 years, 5 months ago) by thorpej
Branch: MAIN
Changes since 1.15: +5 -1
lines
Diff to previous 1.15 (colored)
Move the PCIIDE_OPTIONS_* constants into pciidevar.h
Revision 1.15 / (download) - annotate - [select for diffs], Wed Dec 17 21:08:29 2003 UTC (8 years, 5 months ago) by thorpej
Branch: MAIN
Changes since 1.14: +6 -1
lines
Diff to previous 1.14 (colored)
Add BA5 space tag/handles for Silicon Image SATALink.
Revision 1.14 / (download) - annotate - [select for diffs], Thu Nov 27 23:02:40 2003 UTC (8 years, 5 months ago) by fvdl
Branch: MAIN
Changes since 1.13: +9 -1
lines
Diff to previous 1.13 (colored)
There are some cards that map the ATA control and IDE DMA registers in a different fashion. Individually, they have the same functionality, but their layout is different. An example of such a chipset is the Promise 203xx. To be able to deal with this, transform the cmd and dma bus_space handles into an array of handles, each seperately created with bus_space_subregion. The code generated by using the extra indirection shouldn't change much, since the extra indirection is negated by having the offset calculation already done in bus_space_subregion. E.g. bus_space_write_4(tag, handle, offset, value) becomes bus_space_write_4(tag, handles[offset], 0, value) Reviewed by Manuel Bouyer. Tested on wdc_isa, wdc_pcmcia, viaide, piixide (i386) and on cmdide (sparc64).
Revision 1.13 / (download) - annotate - [select for diffs], Fri Oct 24 00:24:15 2003 UTC (8 years, 7 months ago) by mycroft
Branch: MAIN
Changes since 1.12: +1 -2
lines
Diff to previous 1.12 (colored)
Remove IDE_PCI_CLASS_OVERRIDE -- it wasn't actually used anywhere. In lieu of it, add a class/subclass check to drivers that do not (appear) to have a unique ID for the IDE controller. This includes aceride, cypide and optiide.
Revision 1.12 / (download) - annotate - [select for diffs], Wed Oct 8 11:51:59 2003 UTC (8 years, 7 months ago) by bouyer
Branch: MAIN
Changes since 1.11: +99 -4
lines
Diff to previous 1.11 (colored)
Split pciide in per-chip family driver, as proposed in http://mail-index.netbsd.org/tech-kern/2003/09/25/0007.html We now have: acardide* at pci? dev ? function ? # Acard IDE controllers aceride* at pci? dev ? function ? # Acer Lab IDE controllers cmdide* at pci? dev ? function ? # CMD tech IDE controllers cypide* at pci? dev ? function ? # Cypress IDE controllers hptide* at pci? dev ? function ? # Triones/HighPoint IDE controllers optiide* at pci? dev ? function ? # Opti IDE controllers piixide* at pci? dev ? function ? # Intel IDE controllers pdcide* at pci? dev ? function ? # Promise IDE controllers siside* at pci? dev ? function ? # SiS IDE controllers slide* at pci? dev ? function ? # Symphony Labs IDE controllers viaide* at pci? dev ? function ? # VIA/AMD/Nvidia IDE controllers pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver serverworks driver not commited yet; there are still copyright issues about it.
Revision 1.11 / (download) - annotate - [select for diffs], Tue Sep 23 09:11:43 2003 UTC (8 years, 8 months ago) by mycroft
Branch: MAIN
Changes since 1.10: +1 -2
lines
Diff to previous 1.10 (colored)
GC a structure element.
Revision 1.7.16.1 / (download) - annotate - [select for diffs], Mon Jun 16 21:14:47 2003 UTC (8 years, 11 months ago) by grant
Branch: netbsd-1-6
CVS Tags: netbsd-1-6-PATCH002-RELEASE,
netbsd-1-6-PATCH002-RC4,
netbsd-1-6-PATCH002-RC3,
netbsd-1-6-PATCH002-RC2,
netbsd-1-6-PATCH002-RC1,
netbsd-1-6-PATCH002
Changes since 1.7: +4 -1
lines
Diff to previous 1.7 (colored)
Apply patch (requested by bouyer in ticket #1234): Rework SiS support: more controller supported (up to Ultra/133) and better support for the older ones. Information for this work extracted from Soeren Schmidt's FreeBSD driver.
Revision 1.10 / (download) - annotate - [select for diffs], Thu Mar 20 04:22:50 2003 UTC (9 years, 2 months ago) by thorpej
Branch: MAIN
Branch point for: ktrace-lwp
Changes since 1.9: +8 -1
lines
Diff to previous 1.9 (colored)
Add support for the Silicon Image SATALink 3112 Serial ATA controller.
Revision 1.9 / (download) - annotate - [select for diffs], Fri Mar 14 22:46:06 2003 UTC (9 years, 2 months ago) by bouyer
Branch: MAIN
Changes since 1.8: +4 -1
lines
Diff to previous 1.8 (colored)
Rework SiS support: more controller supported (up to Ultra/133) and better support for the older ones. Information for this work extracted from Soeren Schmidt's FreeBSD driver.
Revision 1.8 / (download) - annotate - [select for diffs], Fri Jan 24 04:53:14 2003 UTC (9 years, 4 months ago) by thorpej
Branch: MAIN
Changes since 1.7: +6 -1
lines
Diff to previous 1.7 (colored)
Add support for the NVIDIA nForce ATA100 and nForce2 ATA133 IDE controllers, which are more-or-less compatible with the AMD controllers. XXX Need to determine the correct timing value for the nForce2 XXX at Ultra133, so we cap it at Ultra100, for now.
Revision 1.6.2.1 / (download) - annotate - [select for diffs], Thu Jun 21 20:05:11 2001 UTC (10 years, 11 months ago) by nathanw
Branch: nathanw_sa
CVS Tags: nathanw_sa_end
Changes since 1.6: +3 -1
lines
Diff to previous 1.6 (colored) next main 1.7 (colored)
Catch up to -current.
Revision 1.7 / (download) - annotate - [select for diffs], Fri Jun 8 04:48:58 2001 UTC (10 years, 11 months ago) by simonb
Branch: MAIN
CVS Tags: thorpej-mips-cache-base,
thorpej-mips-cache,
thorpej-devvp-base3,
thorpej-devvp-base2,
thorpej-devvp-base,
thorpej-devvp,
pre-chs-ubcperf,
post-chs-ubcperf,
newlock-base,
newlock,
netbsd-1-6-base,
netbsd-1-6-RELEASE,
netbsd-1-6-RC3,
netbsd-1-6-RC2,
netbsd-1-6-RC1,
netbsd-1-6-PATCH001-RELEASE,
netbsd-1-6-PATCH001-RC3,
netbsd-1-6-PATCH001-RC2,
netbsd-1-6-PATCH001-RC1,
netbsd-1-6-PATCH001,
nathanw_sa_before_merge,
nathanw_sa_base,
kqueue-beforemerge,
kqueue-base,
kqueue-aftermerge,
kqueue,
ifpoll-base,
ifpoll,
gmcgarry_ucred_base,
gmcgarry_ucred,
gmcgarry_ctxsw_base,
gmcgarry_ctxsw,
gehenna-devsw-base,
gehenna-devsw,
fvdl_fs64_base,
eeh-devprop-base,
eeh-devprop
Branch point for: netbsd-1-6
Changes since 1.6: +3 -1
lines
Diff to previous 1.6 (colored)
For ports that wire up pciide in compatibility mode, have them define __HAVE_PCIIDE_MACHDEP_COMPAT_INTR_ESTABLISH in pci_machdep.h and pciide_map_compat_intr() only calls pciide_machdep_compat_intr_establish() if that preprocessor define exists. Ports that don't need to do this no longer need to supply a dummy function.
Revision 1.5.2.1 / (download) - annotate - [select for diffs], Sun Feb 4 18:54:48 2001 UTC (11 years, 3 months ago) by he
Branch: netbsd-1-5
CVS Tags: netbsd-1-5-PATCH003,
netbsd-1-5-PATCH002,
netbsd-1-5-PATCH001
Changes since 1.5: +5 -4
lines
Diff to previous 1.5 (colored) next main 1.6 (colored)
Pull up revision 1.6 (requested by bouyer): Fix bug which affects pciide controllers in native mode. Main effect was a non-functionnal IDE controller on some sparc64 and macppc when booted from IDE disk.
Revision 1.2.12.2 / (download) - annotate - [select for diffs], Mon Jan 15 09:27:44 2001 UTC (11 years, 4 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.2.12.1: +5 -4
lines
Diff to previous 1.2.12.1 (colored) to branchpoint 1.2 (colored) next main 1.3 (colored)
req_sense_length is dead.
Revision 1.6 / (download) - annotate - [select for diffs], Fri Jan 12 16:04:00 2001 UTC (11 years, 4 months ago) by bouyer
Branch: MAIN
CVS Tags: thorpej_scsipi_nbase,
thorpej_scsipi_beforemerge,
thorpej_scsipi_base
Branch point for: nathanw_sa
Changes since 1.5: +5 -4
lines
Diff to previous 1.5 (colored)
Fix bug which affects pciide controllers in native mode (found by Paul Kranenburg, many thanks !): the control register I/O is 4 byte long although only one is used, but the control register is at offset 2, and not 0 as expected by IC code. Use bus_space_subregion() to get a handle which points to the control register, and is one byte long.
Revision 1.2.12.1 / (download) - annotate - [select for diffs], Mon Nov 20 11:42:35 2000 UTC (11 years, 6 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.2: +40 -1
lines
Diff to previous 1.2 (colored)
Update thorpej_scsipi to -current as of a month ago A i386 GENERIC kernel compiles without the siop, ahc and bha drivers (will be updated later). i386 IDE/ATAPI and ncr work, as well as sparc/esp_sbus. alpha should work as well (untested yet). siop, ahc and bha will be updated once I've updated the branch to current -current, as well as machine-dependant code.
Revision 1.2.6.1 / (download) - annotate - [select for diffs], Fri Jul 7 17:33:50 2000 UTC (11 years, 10 months ago) by he
Branch: netbsd-1-4
CVS Tags: netbsd-1-4-PATCH003
Changes since 1.2: +40 -1
lines
Diff to previous 1.2 (colored) next main 1.3 (colored)
Apply patch (requested by bouyer): Add support for the following PCIIDE controllers: o AMD 756 o CMD PCI0648 and PCI0649 o Hightpoint HPT366 o OPTi 82c621 (and a few of its derivatives) o Promise Ultra/33 and Ultra/66 o Intel 82801 (ICH/ICH0) Also fix PR#10437 (detect more ATAPI devices).
Revision 1.4.2.1 / (download) - annotate - [select for diffs], Thu Jun 22 17:07:36 2000 UTC (11 years, 11 months ago) by minoura
Branch: minoura-xpg4dl
Changes since 1.4: +6 -1
lines
Diff to previous 1.4 (colored) next main 1.5 (colored)
Sync w/ netbsd-1-5-base.
Revision 1.5 / (download) - annotate - [select for diffs], Tue Jun 6 17:34:23 2000 UTC (11 years, 11 months ago) by thorpej
Branch: MAIN
CVS Tags: netbsd-1-5-base,
netbsd-1-5-RELEASE,
netbsd-1-5-BETA2,
netbsd-1-5-BETA,
netbsd-1-5-ALPHA2
Branch point for: netbsd-1-5
Changes since 1.4: +6 -1
lines
Diff to previous 1.4 (colored)
Actually program the DMA mode of the drives into the Cypress controller. Fixes a long-standing problem where IDE DMA wasn't working on the AlphaPC 164SX.
Revision 1.4 / (download) - annotate - [select for diffs], Sat Apr 1 14:32:24 2000 UTC (12 years, 1 month ago) by bouyer
Branch: MAIN
CVS Tags: minoura-xpg4dl-base
Branch point for: minoura-xpg4dl
Changes since 1.3: +2 -1
lines
Diff to previous 1.3 (colored)
- DMA code cleanup: pciide_dma_finish() doesn't stop/unload the current DMA op if an IRQ was not detected, unless the force flag was given. Use this to detect if the IRQ was for us (closer to shared IRQ for controllers which don't have their own IRQ handler in pciide.c) and to poll for DMA xfer. Also makes the timeout recovery code simpler. - ATAPI cleanup: don't call controller-specific functions from atapiconf.c (wdc_*), so that it's possible to attach an atapibus to something else than a wdc/pciide (Hi Lennart :). Overload struct scsi_adapter with struct atapi_adapter, defined as struct scsi_adapter + atapi-specific callbacks. scsipi_link still points to an scsi_adapter, atapi code casts it to atapi_adapter if needed. Move atapi_softc to atapiconf.h so that it can be used by the underlying controller code (e.g. atapi_wdc.c). Add an atapi-specific callback *atapi_probedev(), which probe a drive in a controller-specific way, allocate the sc_link and fills in the ataparams if needed. It then calls atapi_probedev() (from atapiconf.c) to do the generic initialisations and attach the device. - While I'm there merge and centralise the state definitions in atavar.h. It should now be possible to use a common ata/atapi routine to set the drive's modes (will do later).
Revision 1.2.18.1 / (download) - annotate - [select for diffs], Mon Dec 27 18:35:24 1999 UTC (12 years, 5 months ago) by wrstuden
Branch: wrstuden-devbsize
Changes since 1.2: +34 -1
lines
Diff to previous 1.2 (colored) next main 1.3 (colored)
Pull up to last week's -current.
Revision 1.2.14.1 / (download) - annotate - [select for diffs], Mon Nov 15 00:41:10 1999 UTC (12 years, 6 months ago) by fvdl
Branch: fvdl-softdep
Changes since 1.2: +34 -1
lines
Diff to previous 1.2 (colored) next main 1.3 (colored)
Sync with -current
Revision 1.3 / (download) - annotate - [select for diffs], Sat Nov 13 13:40:29 1999 UTC (12 years, 6 months ago) by soren
Branch: MAIN
CVS Tags: wrstuden-devbsize-base,
wrstuden-devbsize-19991221,
fvdl-softdep-base,
chs-ubc2-newbase
Changes since 1.2: +34 -1
lines
Diff to previous 1.2 (colored)
Export softc.
Revision 1.2 / (download) - annotate - [select for diffs], Mon Oct 12 16:09:22 1998 UTC (13 years, 7 months ago) by bouyer
Branch: MAIN
CVS Tags: netbsd-1-4-base,
netbsd-1-4-RELEASE,
netbsd-1-4-PATCH002,
netbsd-1-4-PATCH001,
kenh-if-detach-base,
kenh-if-detach,
kame_14_19990705,
kame_14_19990628,
kame_141_19991130,
kame,
comdex-fall-1999-base,
comdex-fall-1999,
chs-ubc2-base,
chs-ubc2,
chs-ubc-base,
chs-ubc,
bouyer-ide-last-dist
Branch point for: wrstuden-devbsize,
thorpej_scsipi,
netbsd-1-4,
fvdl-softdep
Changes since 1.1: +1 -13
lines
Diff to previous 1.1 (colored)
Merge bouyer-ide
Revision 1.1.2.1 / (download) - annotate - [select for diffs], Thu Jun 4 16:53:18 1998 UTC (13 years, 11 months ago) by bouyer
Branch: bouyer-ide
CVS Tags: bouyer-ide-merge
Changes since 1.1: +1 -13
lines
Diff to previous 1.1 (colored) next main 1.2 (colored)
Commit changes to the IDE system in a branch. This allows a better separation between higth-level and low-level (i.e. registers read/write) and generalize the queue for all commands. This also add supports for IDE DMA.
Revision 1.1 / (download) - annotate - [select for diffs], Wed Mar 4 06:35:11 1998 UTC (14 years, 2 months ago) by cgd
Branch: MAIN
CVS Tags: eeh-paddr_t-base,
eeh-paddr_t,
bouyer-ide-base
Branch point for: bouyer-ide
PCI IDE glue. Right now, just glues 'wdc's to PCI IDE controller channels. Eventually should do things like support PCI IDE DMA (it _DOES NOT_ do that now).