Up to [cvs.netbsd.org] / src / sys / dev / pci
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.18.2.1 / (download) - annotate - [select for diffs], Mon Jun 6 09:08:10 2011 UTC (11 months, 2 weeks ago) by jruoho
Branch: jruoho-x86intr
Changes since 1.18: +4 -4
lines
Diff to previous 1.18 (colored) next main 1.19 (colored)
Sync with HEAD.
Revision 1.16.4.2 / (download) - annotate - [select for diffs], Thu Apr 21 01:41:49 2011 UTC (13 months ago) by rmind
Branch: rmind-uvmplock
Changes since 1.16.4.1: +2 -2
lines
Diff to previous 1.16.4.1 (colored) to branchpoint 1.16 (colored) next main 1.17 (colored)
sync with head
Revision 1.19 / (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.18: +4 -4
lines
Diff to previous 1.18 (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.16.4.1 / (download) - annotate - [select for diffs], Sat Mar 5 20:53:37 2011 UTC (14 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.16: +3 -6
lines
Diff to previous 1.16 (colored)
sync with head
Revision 1.18 / (download) - annotate - [select for diffs], Sat Nov 13 13:52:05 2010 UTC (18 months, 1 week ago) by uebayasi
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.17: +2 -4
lines
Diff to previous 1.17 (colored)
Don't pull in the whole uvm(9) API to access only PAGE_SIZE and some other constants. These are provided by sys/param.h now.
Revision 1.16.2.1 / (download) - annotate - [select for diffs], Sat Nov 6 08:08:30 2010 UTC (18 months, 2 weeks ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.16: +3 -4
lines
Diff to previous 1.16 (colored) next main 1.17 (colored)
Sync with HEAD.
Revision 1.17 / (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.16: +3 -4
lines
Diff to previous 1.16 (colored)
Pave the way for detachment of pciide(4)-family ATA controllers.
Revision 1.15.4.1 / (download) - annotate - [select for diffs], Thu Mar 11 15:03:44 2010 UTC (2 years, 2 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.15: +2 -7
lines
Diff to previous 1.15 (colored) next main 1.16 (colored)
sync with head
Revision 1.16 / (download) - annotate - [select for diffs], Mon Oct 19 18:41:15 2009 UTC (2 years, 7 months ago) by bouyer
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,
jym-xensuspend-nbase
Branch point for: uebayasi-xip,
rmind-uvmplock
Changes since 1.15: +2 -7
lines
Diff to previous 1.15 (colored)
Remove closes 3 & 4 from my licence. Lots of thanks to Soren Jacobsen for the booring work !
Revision 1.14.40.1 / (download) - annotate - [select for diffs], Thu Apr 3 12:42:50 2008 UTC (4 years, 1 month ago) by mjf
Branch: mjf-devfs2
Changes since 1.14: +12 -11
lines
Diff to previous 1.14 (colored) next main 1.15 (colored)
Sync with HEAD.
Revision 1.10.2.3 / (download) - annotate - [select for diffs], Mon Mar 24 09:38:50 2008 UTC (4 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.10.2.2: +12 -11
lines
Diff to previous 1.10.2.2 (colored) to branchpoint 1.10 (colored) next main 1.11 (colored)
sync with head.
Revision 1.14.36.1 / (download) - annotate - [select for diffs], Mon Mar 24 07:15:47 2008 UTC (4 years, 2 months ago) by keiichi
Branch: keiichi-mipv6
Changes since 1.14: +12 -11
lines
Diff to previous 1.14 (colored) next main 1.15 (colored)
sync with head.
Revision 1.14.20.1 / (download) - annotate - [select for diffs], Sun Mar 23 02:04:46 2008 UTC (4 years, 2 months ago) by matt
Branch: matt-armv6
Changes since 1.14: +12 -11
lines
Diff to previous 1.14 (colored) next main 1.15 (colored)
sync with HEAD
Revision 1.15 / (download) - annotate - [select for diffs], Tue Mar 18 20:46:36 2008 UTC (4 years, 2 months ago) by cube
Branch: MAIN
CVS Tags: yamt-pf42-baseX,
yamt-pf42-base4,
yamt-pf42-base3,
yamt-pf42-base2,
yamt-pf42-base,
yamt-pf42,
yamt-nfs-mp-base8,
yamt-nfs-mp-base7,
yamt-nfs-mp-base6,
yamt-nfs-mp-base5,
yamt-nfs-mp-base4,
yamt-nfs-mp-base3,
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-hppapmap-base4,
nick-hppapmap-base3,
nick-hppapmap-base2,
nick-hppapmap-base,
nick-hppapmap,
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,
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,
keiichi-mipv6-nbase,
keiichi-mipv6-base,
jymxensuspend-base,
jym-xensuspend-base,
jym-xensuspend,
hpcarm-cleanup-nbase,
haad-nbase2,
haad-dm-base2,
haad-dm-base1,
haad-dm-base,
haad-dm,
ad-socklock-base1,
ad-audiomp2-base,
ad-audiomp2
Branch point for: yamt-nfs-mp
Changes since 1.14: +12 -11
lines
Diff to previous 1.14 (colored)
Split device_t and softc for ATA devices, as well as wd(4). Other cosmetic changes where appropriate.
Revision 1.10.2.2 / (download) - annotate - [select for diffs], Mon Feb 26 09:10:24 2007 UTC (5 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.10.2.1: +4 -4
lines
Diff to previous 1.10.2.1 (colored) to branchpoint 1.10 (colored)
sync with head.
Revision 1.14 / (download) - annotate - [select for diffs], Fri Feb 9 21:55:27 2007 UTC (5 years, 3 months ago) by ad
Branch: MAIN
CVS Tags: yamt-x86pmap-base4,
yamt-x86pmap-base3,
yamt-x86pmap-base2,
yamt-x86pmap-base,
yamt-x86pmap,
yamt-kmem-base3,
yamt-kmem-base2,
yamt-kmem-base,
yamt-kmem,
yamt-idlelwp-base8,
yamt-idlelwp,
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-net80211-sync-base,
nick-net80211-sync,
nick-csl-alignment-base5,
nick-csl-alignment-base,
nick-csl-alignment,
mjf-ufs-trans-base,
mjf-ufs-trans,
mjf-devfs-base,
mjf-devfs,
matt-mips64-base,
matt-mips64,
matt-armv6-prevmlocking,
matt-armv6-base,
jmcneill-pm-base,
jmcneill-pm,
jmcneill-base,
hpcarm-cleanup-base,
hpcarm-cleanup,
cube-autoconf-base,
cube-autoconf,
bouyer-xeni386-nbase,
bouyer-xeni386-merge1,
bouyer-xeni386-base,
bouyer-xeni386,
bouyer-xenamd64-base2,
bouyer-xenamd64-base,
bouyer-xenamd64,
ad-audiomp-base,
ad-audiomp
Branch point for: mjf-devfs2,
matt-armv6,
keiichi-mipv6
Changes since 1.13: +4 -4
lines
Diff to previous 1.13 (colored)
Merge newlock2 to head.
Revision 1.11.20.2 / (download) - annotate - [select for diffs], Tue Feb 6 13:32:31 2007 UTC (5 years, 3 months ago) by ad
Branch: newlock2
Changes since 1.11.20.1: +4 -4
lines
Diff to previous 1.11.20.1 (colored) to branchpoint 1.11 (colored) next main 1.12 (colored)
Quiten noisy boot messages.
Revision 1.10.2.1 / (download) - annotate - [select for diffs], Sat Dec 30 20:48:43 2006 UTC (5 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.10: +4 -3
lines
Diff to previous 1.10 (colored)
sync with head.
Revision 1.11.22.2 / (download) - annotate - [select for diffs], Sun Dec 10 07:17:42 2006 UTC (5 years, 5 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.11.22.1: +4 -4
lines
Diff to previous 1.11.22.1 (colored) to branchpoint 1.11 (colored) next main 1.12 (colored)
sync with head.
Revision 1.11.20.1 / (download) - annotate - [select for diffs], Sat Nov 18 21:34:29 2006 UTC (5 years, 6 months ago) by ad
Branch: newlock2
Changes since 1.11: +4 -3
lines
Diff to previous 1.11 (colored)
Sync with head.
Revision 1.13 / (download) - annotate - [select for diffs], Thu Nov 16 01:33:08 2006 UTC (5 years, 6 months ago) by christos
Branch: MAIN
CVS Tags: yamt-splraiseipl-base5,
yamt-splraiseipl-base4,
yamt-splraiseipl-base3,
wrstuden-fixsa-newbase,
wrstuden-fixsa-base-1,
wrstuden-fixsa-base,
wrstuden-fixsa,
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,
matt-nb4-arm-base,
matt-nb4-arm
Changes since 1.12: +4 -4
lines
Diff to previous 1.12 (colored)
__unused removal on arguments; approved by core.
Revision 1.11.22.1 / (download) - annotate - [select for diffs], Sun Oct 22 06:06:16 2006 UTC (5 years, 7 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.11: +5 -4
lines
Diff to previous 1.11 (colored)
sync with head
Revision 1.12 / (download) - annotate - [select for diffs], Thu Oct 12 01:31:29 2006 UTC (5 years, 7 months ago) by christos
Branch: MAIN
CVS Tags: yamt-splraiseipl-base2
Changes since 1.11: +5 -4
lines
Diff to previous 1.11 (colored)
- sprinkle __unused on function decls. - fix a couple of unused bugs - no more -Wno-unused for i386
Revision 1.11 / (download) - annotate - [select for diffs], Sun Dec 11 12:22:49 2005 UTC (6 years, 5 months ago) by christos
Branch: MAIN
CVS Tags: yamt-uio_vmspace-base5,
yamt-uio_vmspace,
yamt-splraiseipl-base,
yamt-pdpolicy-base9,
yamt-pdpolicy-base8,
yamt-pdpolicy-base7,
yamt-pdpolicy-base6,
yamt-pdpolicy-base5,
yamt-pdpolicy-base4,
yamt-pdpolicy-base3,
yamt-pdpolicy-base2,
yamt-pdpolicy-base,
yamt-pdpolicy,
simonb-timecounters-base,
simonb-timecounters,
simonb-timcounters-final,
rpaulo-netinet-merge-pcb-base,
rpaulo-netinet-merge-pcb,
peter-altq-base,
peter-altq,
gdamore-uart-base,
gdamore-uart,
elad-kernelauth-base,
elad-kernelauth,
chap-midi-nbase,
chap-midi-base,
chap-midi,
abandoned-netbsd-4-base,
abandoned-netbsd-4
Branch point for: yamt-splraiseipl,
newlock2
Changes since 1.10: +2 -2
lines
Diff to previous 1.10 (colored)
merge ktrace-lwp.
Revision 1.2.2.8 / (download) - annotate - [select for diffs], Thu Nov 10 14:06:01 2005 UTC (6 years, 6 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.2.2.7: +31 -2
lines
Diff to previous 1.2.2.7 (colored) next main 1.3 (colored)
Sync with HEAD. Here we go again...
Revision 1.1.2.3.2.1 / (download) - annotate - [select for diffs], Mon Jul 18 03:57:33 2005 UTC (6 years, 10 months ago) by riz
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.1.2.3: +23 -2
lines
Diff to previous 1.1.2.3 (colored) next main 1.2 (colored)
Pull up revision 1.10 (requested by thorpej in ticket #2072): - When starting an ATA or ATAPI transfer, handle the case where (*dma_init)() returns EINVAL, indicating that DMA cannot be done for this transfer. Fall back to PIO in this case. - Add a geodeide_dma_init() routine that checks to make sure that transfers start on a 16 byte boundary, returning EINVAL if not. Works around a chip bug that causes a hard system hang. Problem reported and patch tested by Erik Fair.
Revision 1.8.2.2 / (download) - annotate - [select for diffs], Tue Jul 12 11:39:44 2005 UTC (6 years, 10 months 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,
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
Changes since 1.8.2.1: +8 -0
lines
Diff to previous 1.8.2.1 (colored) to branchpoint 1.8 (colored) next main 1.9 (colored)
Pull up revision 1.9 (requested by fair in ticket #555): According to FreeBSD and other references, the cs5530 IDE controller, while capable of UDMA mode 2, is swamped if you actually go that fast, which is not good for the other functions on this multifunction southbridge chip, so limit UDMA to mode 1.
Revision 1.8.2.1 / (download) - annotate - [select for diffs], Wed Jul 6 22:02:48 2005 UTC (6 years, 10 months ago) by tron
Branch: netbsd-3
Changes since 1.8: +23 -2
lines
Diff to previous 1.8 (colored)
Pull up revision 1.10 (requested by thorpej in ticket #553): - When starting an ATA or ATAPI transfer, handle the case where (*dma_init)() returns EINVAL, indicating that DMA cannot be done for this transfer. Fall back to PIO in this case. - Add a geodeide_dma_init() routine that checks to make sure that transfers start on a 16 byte boundary, returning EINVAL if not. Works around a chip bug that causes a hard system hang. Problem reported and patch tested by Erik Fair.
Revision 1.10 / (download) - annotate - [select for diffs], Wed Jul 6 01:46:52 2005 UTC (6 years, 10 months ago) by thorpej
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,
thorpej-vnode-attr-base,
thorpej-vnode-attr,
ktrace-lwp-base
Branch point for: yamt-lazymbuf
Changes since 1.9: +23 -2
lines
Diff to previous 1.9 (colored)
- When starting an ATA or ATAPI transfer, handle the case where (*dma_init)() returns EINVAL, indicating that DMA cannot be done for this transfer. Fall back to PIO in this case. - Add a geodeide_dma_init() routine that checks to make sure that transfers start on a 16 byte boundary, returning EINVAL if not. Works around a chip bug that causes a hard system hang. Problem reported and patch tested by Erik Fair.
Revision 1.9 / (download) - annotate - [select for diffs], Sat Jun 25 05:04:01 2005 UTC (6 years, 11 months ago) by fair
Branch: MAIN
Changes since 1.8: +10 -2
lines
Diff to previous 1.8 (colored)
According to FreeBSD and other references, the cs5530 IDE controller, while capable of UDMA mode 2, is swamped if you actually go that fast, which is not good for the other functions on this multifunction southbridge chip, so limit UDMA to mode 1.
Revision 1.7.4.1 / (download) - annotate - [select for diffs], Fri Apr 29 11:29:05 2005 UTC (7 years ago) by kent
Branch: kent-audio2
Changes since 1.7: +3 -3
lines
Diff to previous 1.7 (colored) next main 1.8 (colored)
sync with -current
Revision 1.7.6.1 / (download) - annotate - [select for diffs], Sat Mar 19 08:35:10 2005 UTC (7 years, 2 months ago) by yamt
Branch: yamt-km
Changes since 1.7: +3 -3
lines
Diff to previous 1.7 (colored) next main 1.8 (colored)
sync with head. xen and whitespace. xen part is not finished.
Revision 1.2.2.7 / (download) - annotate - [select for diffs], Fri Mar 4 16:45:17 2005 UTC (7 years, 2 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.2.2.6: +3 -3
lines
Diff to previous 1.2.2.6 (colored)
Sync with HEAD. Hi Perry!
Revision 1.8 / (download) - annotate - [select for diffs], Sun Feb 27 00:27:32 2005 UTC (7 years, 2 months ago) by perry
Branch: MAIN
CVS Tags: yamt-km-base4,
yamt-km-base3,
netbsd-3-base,
kent-audio2-base
Branch point for: netbsd-3
Changes since 1.7: +3 -3
lines
Diff to previous 1.7 (colored)
nuke trailing whitespace
Revision 1.2.2.6 / (download) - annotate - [select for diffs], Tue Sep 21 13:31:02 2004 UTC (7 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.2.2.5: +2 -2
lines
Diff to previous 1.2.2.5 (colored)
Fix the sync with head I botched.
Revision 1.2.2.5 / (download) - annotate - [select for diffs], Sat Sep 18 14:49:03 2004 UTC (7 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.2.2.4: +2 -2
lines
Diff to previous 1.2.2.4 (colored)
Sync with HEAD.
Revision 1.2.2.4 / (download) - annotate - [select for diffs], Wed Aug 25 06:58:05 2004 UTC (7 years, 9 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.2.2.3: +22 -19
lines
Diff to previous 1.2.2.3 (colored)
Sync with HEAD.
Revision 1.7 / (download) - annotate - [select for diffs], Sat Aug 21 00:28:34 2004 UTC (7 years, 9 months ago) by thorpej
Branch: MAIN
CVS Tags: yamt-km-base2,
yamt-km-base,
matt-timespec,
kent-audio1-beforemerge,
kent-audio1-base,
kent-audio1
Branch point for: yamt-km,
kent-audio2
Changes since 1.6: +5 -3
lines
Diff to previous 1.6 (colored)
atastart() (called only at splbio(), and from interrupts) can change drive_flags, to make sure all drive_flags manipulations are done at splbio().
Revision 1.6 / (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.5: +13 -12
lines
Diff to previous 1.5 (colored)
Move most of wdc_softc into a new atac_softc structure that contains info common to all types of ATA controllers.
Revision 1.5 / (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.4: +4 -4
lines
Diff to previous 1.4 (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.4 / (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.3: +7 -5
lines
Diff to previous 1.3 (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.3 / (download) - annotate - [select for diffs], Fri Aug 13 03:12:59 2004 UTC (7 years, 9 months ago) by thorpej
Branch: MAIN
Changes since 1.2: +4 -6
lines
Diff to previous 1.2 (colored)
Don't bother with bits that tell of the presence of optional callbacks; just check the function pointers for NULL.
Revision 1.2.2.3 / (download) - annotate - [select for diffs], Thu Aug 12 11:41:44 2004 UTC (7 years, 9 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.2.2.2: +82 -12
lines
Diff to previous 1.2.2.2 (colored)
Sync with HEAD.
Revision 1.2.2.2 / (download) - annotate - [select for diffs], Tue Aug 3 10:49:07 2004 UTC (7 years, 9 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.2.2.1: +181 -0
lines
Diff to previous 1.2.2.1 (colored)
Sync with HEAD
Revision 1.1.2.3 / (download) - annotate - [select for diffs], Wed Jul 28 10:56:06 2004 UTC (7 years, 9 months ago) by tron
Branch: netbsd-2-0
CVS Tags: netbsd-2-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
Branch point for: netbsd-2
Changes since 1.1.2.2: +82 -12
lines
Diff to previous 1.1.2.2 (colored) next main 1.2 (colored)
Pull up revision 1.2 (requested by rumble in ticket #718): Add support for the controller found on the AMD (previously NatSemi) Geode SC1100 controller (as found on the Soekris NET4801). The chip has two bugs: the first requires dword alignment, and the second cannot handle exact 64K transfers. Also, fix a few typos while we're here. Timings from FreeBSD. Reviewed by Manuel Bouyer.
Revision 1.2.2.1, Tue Jul 27 00:19:27 2004 UTC (7 years, 10 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.2: +0 -251
lines
FILE REMOVED
file geodeide.c was added on branch ktrace-lwp on 2004-08-03 10:49:07 +0000
Revision 1.2 / (download) - annotate - [select for diffs], Tue Jul 27 00:19:27 2004 UTC (7 years, 10 months ago) by rumble
Branch: MAIN
Branch point for: ktrace-lwp
Changes since 1.1: +82 -12
lines
Diff to previous 1.1 (colored)
Add support for the controller found on the AMD (previously NatSemi) Geode SC1100 controller (as found on the Soekris NET4801). The chip has two bugs: the first requires dword alignment, and the second cannot handle exact 64K transfers. Also, fix a few typos while we're here. Timings from FreeBSD. Reviewed by Manuel Bouyer.
Revision 1.1.2.2 / (download) - annotate - [select for diffs], Wed Jul 14 09:08:28 2004 UTC (7 years, 10 months ago) by tron
Branch: netbsd-2-0
Changes since 1.1.2.1: +181 -0
lines
Diff to previous 1.1.2.1 (colored)
Pull up revision 1.1 (requested by bouyer in ticket #644): Add geodeide(4), a driver for the AMD Geode CS5530A IDE controller. Tested by Ian Zagorskih (ianzag at megasignal.com).
Revision 1.1.2.1, Fri Jul 9 18:38:37 2004 UTC (7 years, 10 months ago) by tron
Branch: netbsd-2-0
Changes since 1.1: +0 -181
lines
FILE REMOVED
file geodeide.c was added on branch netbsd-2-0 on 2004-07-14 09:08:28 +0000
Revision 1.1 / (download) - annotate - [select for diffs], Fri Jul 9 18:38:37 2004 UTC (7 years, 10 months ago) by bouyer
Branch: MAIN
Branch point for: netbsd-2-0
Add geodeide(4), a driver for the AMD Geode CS5530A IDE controller. Tested by Ian Zagorskih (ianzag at megasignal.com).