The NetBSD Project

CVS log for src/sys/dev/pci/if_ex_pci.c

[BACK] Up to [cvs.netbsd.org] / src / sys / dev / pci

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.54 / (download) - annotate - [select for diffs], Tue Jul 26 20:51:24 2011 UTC (10 months ago) by dyoung
Branch: MAIN
CVS Tags: yamt-pagecache-base5, yamt-pagecache-base4, yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, yamt-pagecache, 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, HEAD
Changes since 1.53: +4 -4 lines
Diff to previous 1.53 (colored)

Replace anonymous constants, 0x10, 0x14, ..., with PCI_BAR(0),
PCI_BAR(1), .... There was no change in the generated assembly.  I used
this semantic patch:

@ mapsit @
identifier bar;
expression pact;
@@

(
pci_mapreg_map
|
Cardbus_mapreg_map
)(pact, bar, ...)

@ depends on mapsit @
identifier mapsit.bar;
@@
(
- #define bar 0x10
+ #define bar PCI_BAR(0)
|
- #define bar 0x14
+ #define bar PCI_BAR(1)
|
- #define bar 0x18
+ #define bar PCI_BAR(2)
|
- #define bar 0x1C
+ #define bar PCI_BAR(3)
|
- #define bar 0x20
+ #define bar PCI_BAR(4)
)

Revision 1.48.4.4 / (download) - annotate - [select for diffs], Wed Aug 11 22:53:46 2010 UTC (21 months, 2 weeks ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.48.4.3: +3 -25 lines
Diff to previous 1.48.4.3 (colored) to branchpoint 1.48 (colored) next main 1.49 (colored)

sync with head.

Revision 1.51.2.1 / (download) - annotate - [select for diffs], Sun May 30 05:17:33 2010 UTC (23 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.51: +3 -25 lines
Diff to previous 1.51 (colored) next main 1.52 (colored)

sync with head

Revision 1.50.2.1 / (download) - annotate - [select for diffs], Fri Apr 30 14:43:34 2010 UTC (2 years ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.50: +3 -31 lines
Diff to previous 1.50 (colored) next main 1.51 (colored)

Sync with HEAD.

Revision 1.53 / (download) - annotate - [select for diffs], Mon Mar 22 23:03:30 2010 UTC (2 years, 2 months ago) by dyoung
Branch: MAIN
CVS Tags: yamt-nfs-mp-base11, yamt-nfs-mp-base10, uebayasi-xip-base4, uebayasi-xip-base3, uebayasi-xip-base2, uebayasi-xip-base1, rmind-uvmplock-nbase, rmind-uvmplock-base, matt-mips64-premerge-20101231, jruoho-x86intr-base, jruoho-x86intr, cherry-xenmp-base, cherry-xenmp, bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2
Changes since 1.52: +2 -3 lines
Diff to previous 1.52 (colored)

ex_softc.ex_bustype is written but never read.  Just get rid of it.

Revision 1.52 / (download) - annotate - [select for diffs], Mon Mar 22 17:20:42 2010 UTC (2 years, 2 months ago) by dyoung
Branch: MAIN
Changes since 1.51: +3 -24 lines
Diff to previous 1.51 (colored)

psc_pwrmgmt_csr_reg was never initialized to the actual offset of the
PCI PMCSR!  Just delete psc_pwrmgmt_csr_reg and all uses of it.  In this
way, ex_pci_disable() becomes a no-op, so delete it, too.

Revision 1.48.4.3 / (download) - annotate - [select for diffs], Thu Mar 11 15:03:46 2010 UTC (2 years, 2 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.48.4.2: +2 -8 lines
Diff to previous 1.48.4.2 (colored) to branchpoint 1.48 (colored)

sync with head

Revision 1.51 / (download) - annotate - [select for diffs], Fri Feb 26 00:38:14 2010 UTC (2 years, 2 months ago) by dyoung
Branch: MAIN
CVS Tags: yamt-nfs-mp-base9
Branch point for: rmind-uvmplock
Changes since 1.50: +2 -8 lines
Diff to previous 1.50 (colored)

Move the definitions for PCI_BAR0, PCI_BAR1, PCI_BAR2, PCI_BAR3,
PCI_BAR4, and PCI_BAR5 to pcireg.h for re-use.

Revision 1.48.4.2 / (download) - annotate - [select for diffs], Sat May 16 10:41:34 2009 UTC (3 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.48.4.1: +4 -4 lines
Diff to previous 1.48.4.1 (colored) to branchpoint 1.48 (colored)

sync with head

Revision 1.49.14.1 / (download) - annotate - [select for diffs], Wed May 13 17:20:25 2009 UTC (3 years ago) by jym
Branch: jym-xensuspend
Changes since 1.49: +4 -4 lines
Diff to previous 1.49 (colored) next main 1.50 (colored)

Sync with HEAD.

Commit is split, to avoid a "too many arguments" protocol error.

Revision 1.50 / (download) - annotate - [select for diffs], Tue May 5 10:02:52 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, uebayasi-xip-base, matt-premerge-20091211, jymxensuspend-base, jym-xensuspend-nbase, jym-xensuspend-base
Branch point for: uebayasi-xip
Changes since 1.49: +4 -4 lines
Diff to previous 1.49 (colored)

print autoconf error message with aprint_error

Revision 1.44.16.2 / (download) - annotate - [select for diffs], Mon Jun 2 13:23:39 2008 UTC (3 years, 11 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.44.16.1: +24 -39 lines
Diff to previous 1.44.16.1 (colored) to branchpoint 1.44 (colored) next main 1.45 (colored)

Sync with HEAD.

Revision 1.48.2.1 / (download) - annotate - [select for diffs], Sun May 18 12:34:19 2008 UTC (4 years ago) by yamt
Branch: yamt-pf42
Changes since 1.48: +2 -9 lines
Diff to previous 1.48 (colored) next main 1.49 (colored)

sync with head.

Revision 1.48.4.1 / (download) - annotate - [select for diffs], Fri May 16 02:24:43 2008 UTC (4 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.48: +2 -9 lines
Diff to previous 1.48 (colored)

sync with head.

Revision 1.49 / (download) - annotate - [select for diffs], Mon Apr 28 20:23:55 2008 UTC (4 years ago) by martin
Branch: MAIN
CVS Tags: yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, yamt-nfs-mp-base3, yamt-nfs-mp-base2, 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, hpcarm-cleanup-nbase, haad-nbase2, haad-dm-base2, haad-dm-base1, haad-dm-base, haad-dm, ad-audiomp2-base, ad-audiomp2
Branch point for: jym-xensuspend
Changes since 1.48: +2 -9 lines
Diff to previous 1.48 (colored)

Remove clause 3 and 4 from TNF licenses

Revision 1.48 / (download) - annotate - [select for diffs], Mon Apr 14 21:20:41 2008 UTC (4 years, 1 month ago) by cegger
Branch: MAIN
CVS Tags: yamt-pf42-baseX, yamt-pf42-base, yamt-nfs-mp-base
Branch point for: yamt-pf42, yamt-nfs-mp
Changes since 1.47: +9 -9 lines
Diff to previous 1.47 (colored)

- ansify
- use POSIX integers

Revision 1.47 / (download) - annotate - [select for diffs], Mon Apr 14 20:03:13 2008 UTC (4 years, 1 month ago) by spz
Branch: MAIN
Changes since 1.46: +17 -21 lines
Diff to previous 1.46 (colored)

pretty up if_ex: pmf'ify, device split, and improve printing a bit too.

Reviewed and function-tested on if_ex_cardbus by cube (thanks).
Function-tested on if_ex_pci by myself.

Revision 1.46 / (download) - annotate - [select for diffs], Thu Apr 10 19:13:36 2008 UTC (4 years, 1 month ago) by cegger
Branch: MAIN
Changes since 1.45: +13 -17 lines
Diff to previous 1.45 (colored)

use aprint_*_dev and device_xname

Revision 1.44.16.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.44: +10 -10 lines
Diff to previous 1.44 (colored)

Sync with HEAD.

Revision 1.39.4.4 / (download) - annotate - [select for diffs], Mon Mar 24 09:38:51 2008 UTC (4 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.39.4.3: +10 -10 lines
Diff to previous 1.39.4.3 (colored) to branchpoint 1.39 (colored) next main 1.40 (colored)

sync with head.

Revision 1.44.12.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.44: +10 -10 lines
Diff to previous 1.44 (colored) next main 1.45 (colored)

sync with head.

Revision 1.43.24.2 / (download) - annotate - [select for diffs], Sun Mar 23 02:04:47 2008 UTC (4 years, 2 months ago) by matt
Branch: matt-armv6
Changes since 1.43.24.1: +10 -10 lines
Diff to previous 1.43.24.1 (colored) to branchpoint 1.43 (colored) next main 1.44 (colored)

sync with HEAD

Revision 1.45 / (download) - annotate - [select for diffs], Fri Mar 21 07:47:43 2008 UTC (4 years, 2 months ago) by dyoung
Branch: MAIN
CVS Tags: yamt-lazymbuf-base15, yamt-lazymbuf-base14, matt-armv6-nbase, keiichi-mipv6-nbase, keiichi-mipv6-base, ad-socklock-base1
Changes since 1.44: +10 -10 lines
Diff to previous 1.44 (colored)

pci_activate() expects for its void * argument to be a device_t,
so change the type of the argument to device_t.  Update each use
of pci_activate().

Use device_t and accessors.  Use aprint_*_dev().

Revision 1.43.24.1 / (download) - annotate - [select for diffs], Tue Nov 6 23:28:58 2007 UTC (4 years, 6 months ago) by matt
Branch: matt-armv6
CVS Tags: matt-armv6-prevmlocking
Changes since 1.43: +5 -5 lines
Diff to previous 1.43 (colored)

sync with HEAD

Revision 1.39.4.3 / (download) - annotate - [select for diffs], Sat Oct 27 11:32:52 2007 UTC (4 years, 6 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.39.4.2: +5 -5 lines
Diff to previous 1.39.4.2 (colored) to branchpoint 1.39 (colored)

sync with head.

Revision 1.43.22.1 / (download) - annotate - [select for diffs], Fri Oct 26 15:46:03 2007 UTC (4 years, 7 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.43: +5 -5 lines
Diff to previous 1.43 (colored) next main 1.44 (colored)

Sync with HEAD.

Follow the merge of pmap.c on i386 and amd64 and move
pmap_init_tmp_pgtbl into arch/x86/x86/pmap.c. Modify the ACPI wakeup
code to restore CR4 before jumping back into kernel space as the large
page option might cover that.

Revision 1.43.28.1 / (download) - annotate - [select for diffs], Thu Oct 25 22:38:59 2007 UTC (4 years, 7 months ago) by bouyer
Branch: bouyer-xenamd64
Changes since 1.43: +5 -5 lines
Diff to previous 1.43 (colored) next main 1.44 (colored)

Sync with HEAD.

Revision 1.43.8.1 / (download) - annotate - [select for diffs], Tue Oct 23 20:08:57 2007 UTC (4 years, 7 months ago) by ad
Branch: vmlocking
Changes since 1.43: +5 -5 lines
Diff to previous 1.43 (colored) next main 1.44 (colored)

Sync with head.

Revision 1.44 / (download) - annotate - [select for diffs], Fri Oct 19 12:00:45 2007 UTC (4 years, 7 months ago) by ad
Branch: MAIN
CVS Tags: yamt-kmem-base3, yamt-kmem-base2, yamt-kmem-base, yamt-kmem, vmlocking2-base3, vmlocking2-base2, vmlocking2-base1, vmlocking2, vmlocking-nbase, reinoud-bufcleanup-nbase, reinoud-bufcleanup-base, nick-net80211-sync-base, nick-net80211-sync, mjf-devfs-base, mjf-devfs, matt-armv6-base, jmcneill-pm-base, jmcneill-base, hpcarm-cleanup-base, cube-autoconf-base, cube-autoconf, bouyer-xeni386-nbase, bouyer-xeni386-merge1, bouyer-xeni386-base, bouyer-xeni386, bouyer-xenamd64-base2, bouyer-xenamd64-base
Branch point for: mjf-devfs2, keiichi-mipv6
Changes since 1.43: +5 -5 lines
Diff to previous 1.43 (colored)

machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h

Revision 1.39.4.2 / (download) - annotate - [select for diffs], Sat Dec 30 20:48:44 2006 UTC (5 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.39.4.1: +4 -3 lines
Diff to previous 1.39.4.1 (colored) to branchpoint 1.39 (colored)

sync with head.

Revision 1.41.6.2 / (download) - annotate - [select for diffs], Sun Dec 10 07:17:43 2006 UTC (5 years, 5 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.41.6.1: +4 -4 lines
Diff to previous 1.41.6.1 (colored) to branchpoint 1.41 (colored) next main 1.42 (colored)

sync with head.

Revision 1.41.4.1 / (download) - annotate - [select for diffs], Sat Nov 18 21:34:30 2006 UTC (5 years, 6 months ago) by ad
Branch: newlock2
Changes since 1.41: +4 -3 lines
Diff to previous 1.41 (colored) next main 1.42 (colored)

Sync with head.

Revision 1.43 / (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-x86pmap-base4, yamt-x86pmap-base3, yamt-x86pmap-base2, yamt-x86pmap-base, yamt-x86pmap, yamt-splraiseipl-base5, yamt-splraiseipl-base4, yamt-splraiseipl-base3, yamt-idlelwp-base8, yamt-idlelwp, wrstuden-fixsa-newbase, wrstuden-fixsa-base-1, wrstuden-fixsa-base, wrstuden-fixsa, vmlocking-base, thorpej-atomic-base, thorpej-atomic, 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, hpcarm-cleanup, ad-audiomp-base, ad-audiomp
Branch point for: vmlocking, matt-armv6, jmcneill-pm, bouyer-xenamd64
Changes since 1.42: +4 -4 lines
Diff to previous 1.42 (colored)

__unused removal on arguments; approved by core.

Revision 1.41.6.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.41: +5 -4 lines
Diff to previous 1.41 (colored)

sync with head

Revision 1.42 / (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.41: +5 -4 lines
Diff to previous 1.41 (colored)

- sprinkle __unused on function decls.
- fix a couple of unused bugs
- no more -Wno-unused for i386

Revision 1.40.4.1 / (download) - annotate - [select for diffs], Sat Sep 9 02:52:17 2006 UTC (5 years, 8 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.40: +40 -49 lines
Diff to previous 1.40 (colored) next main 1.41 (colored)

sync with head

Revision 1.40.16.1 / (download) - annotate - [select for diffs], Thu Jul 13 17:49:27 2006 UTC (5 years, 10 months ago) by gdamore
Branch: gdamore-uart
Changes since 1.40: +40 -49 lines
Diff to previous 1.40 (colored) next main 1.41 (colored)

Merge from HEAD.

Revision 1.40.8.1 / (download) - annotate - [select for diffs], Mon Jun 26 12:51:21 2006 UTC (5 years, 11 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.40: +40 -49 lines
Diff to previous 1.40 (colored) next main 1.41 (colored)

sync with head.

Revision 1.39.4.1 / (download) - annotate - [select for diffs], Wed Jun 21 15:05:04 2006 UTC (5 years, 11 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.39: +40 -49 lines
Diff to previous 1.39 (colored)

sync with head.

Revision 1.40.14.1 / (download) - annotate - [select for diffs], Mon Jun 19 04:01:35 2006 UTC (5 years, 11 months ago) by chap
Branch: chap-midi
Changes since 1.40: +40 -49 lines
Diff to previous 1.40 (colored) next main 1.41 (colored)

Sync with head.

Revision 1.41 / (download) - annotate - [select for diffs], Sat Jun 17 23:34:26 2006 UTC (5 years, 11 months ago) by christos
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.40: +40 -49 lines
Diff to previous 1.40 (colored)

re-factor the pci powestate api. reviewed by gimpy

Revision 1.40 / (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-pdpolicy-base5, yamt-pdpolicy-base4, yamt-pdpolicy-base3, yamt-pdpolicy-base2, yamt-pdpolicy-base, simonb-timecounters-base, simonb-timecounters, simonb-timcounters-final, peter-altq-base, peter-altq, gdamore-uart-base, elad-kernelauth-base, elad-kernelauth
Branch point for: yamt-pdpolicy, rpaulo-netinet-merge-pcb, gdamore-uart, chap-midi
Changes since 1.39: +2 -2 lines
Diff to previous 1.39 (colored)

merge ktrace-lwp.

Revision 1.37.4.1 / (download) - annotate - [select for diffs], Fri Apr 29 11:29:06 2005 UTC (7 years ago) by kent
Branch: kent-audio2
Changes since 1.37: +11 -11 lines
Diff to previous 1.37 (colored) next main 1.38 (colored)

sync with -current

Revision 1.37.6.1 / (download) - annotate - [select for diffs], Sat Mar 19 08:35:11 2005 UTC (7 years, 2 months ago) by yamt
Branch: yamt-km
Changes since 1.37: +11 -11 lines
Diff to previous 1.37 (colored) next main 1.38 (colored)

sync with head.  xen and whitespace.  xen part is not finished.

Revision 1.35.2.5 / (download) - annotate - [select for diffs], Fri Mar 4 16:45:18 2005 UTC (7 years, 2 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.35.2.4: +11 -11 lines
Diff to previous 1.35.2.4 (colored) to branchpoint 1.35 (colored) next main 1.36 (colored)

Sync with HEAD.

Hi Perry!

Revision 1.39 / (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-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-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, netbsd-3, ktrace-lwp-base, kent-audio2-base
Branch point for: yamt-lazymbuf
Changes since 1.38: +10 -10 lines
Diff to previous 1.38 (colored)

nuke trailing whitespace

Revision 1.38 / (download) - annotate - [select for diffs], Thu Feb 24 08:04:02 2005 UTC (7 years, 3 months ago) by martin
Branch: MAIN
Changes since 1.37: +3 -3 lines
Diff to previous 1.37 (colored)

Fix the size of psc_regs (0x3c >> 2 is the biggest index used to access
it now, so pick 0x40 >> 2). Fixes "Bug 6", reported by Ted Unangst on
tech-kern.

Revision 1.35.2.4 / (download) - annotate - [select for diffs], Tue Sep 21 13:31:03 2004 UTC (7 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.35.2.3: +2 -2 lines
Diff to previous 1.35.2.3 (colored) to branchpoint 1.35 (colored)

Fix the sync with head I botched.

Revision 1.35.2.3 / (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.35.2.2: +2 -2 lines
Diff to previous 1.35.2.2 (colored) to branchpoint 1.35 (colored)

Sync with HEAD.

Revision 1.35.2.2 / (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.35.2.1: +26 -41 lines
Diff to previous 1.35.2.1 (colored) to branchpoint 1.35 (colored)

Sync with HEAD.

Revision 1.35.4.1 / (download) - annotate - [select for diffs], Sun Aug 22 14:22:20 2004 UTC (7 years, 9 months ago) by tron
Branch: netbsd-2-0
CVS Tags: netbsd-2-base, 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, 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
Changes since 1.35: +5 -2 lines
Diff to previous 1.35 (colored) next main 1.36 (colored)

Pull up revision 1.36 (requested by junyoung in ticket #781):
Add support for 3Com 3c920B-EMB-WNM Integrated Fast Ethernet,
as found on Asus P4R800-VM motherboards.
From BL on Korea BSD User Forum (sorry but I don't know his real name).

Revision 1.37 / (download) - annotate - [select for diffs], Sat Aug 21 23:48:33 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.36: +26 -41 lines
Diff to previous 1.36 (colored)

Use ANSI function decls and make use of static.

Revision 1.35.2.1 / (download) - annotate - [select for diffs], Tue Aug 3 10:49:08 2004 UTC (7 years, 9 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.35: +5 -2 lines
Diff to previous 1.35 (colored)

Sync with HEAD

Revision 1.36 / (download) - annotate - [select for diffs], Thu Jul 15 13:18:08 2004 UTC (7 years, 10 months ago) by junyoung
Branch: MAIN
Changes since 1.35: +5 -2 lines
Diff to previous 1.35 (colored)

Add support for 3Com 3c920B-EMB-WNM Integrated Fast Ethernet,
as found on Asus P4R800-VM motherboards.

From BL on Korea BSD User Forum (sorry but I don't know his real name).

Revision 1.35 / (download) - annotate - [select for diffs], Thu Jun 5 22:11:22 2003 UTC (8 years, 11 months ago) by dogcow
Branch: MAIN
CVS Tags: netbsd-2-0-base
Branch point for: netbsd-2-0, ktrace-lwp
Changes since 1.34: +3 -3 lines
Diff to previous 1.34 (colored)

Some models of the 556B don't turn on the transmitter without magic
values getting written. Fix from FreeBSD; cf sys/pci/if_xl.c, rev 1.110

Revision 1.34 / (download) - annotate - [select for diffs], Sat Apr 19 15:47:45 2003 UTC (9 years, 1 month ago) by christos
Branch: MAIN
Changes since 1.33: +7 -9 lines
Diff to previous 1.33 (colored)

Put back bits of pr 9286 that got lost. Thanks to Onno van der Linden for
pointing this.

Revision 1.33 / (download) - annotate - [select for diffs], Sat Apr 12 09:03:25 2003 UTC (9 years, 1 month ago) by christos
Branch: MAIN
Changes since 1.32: +45 -2 lines
Diff to previous 1.32 (colored)

PR/9286: Steven Grunza: Win98 warm boot puts 3c905B in state D3 and causes
ex driver failure

Revision 1.32 / (download) - annotate - [select for diffs], Fri Jan 31 00:07:42 2003 UTC (9 years, 3 months ago) by thorpej
Branch: MAIN
Changes since 1.31: +15 -10 lines
Diff to previous 1.31 (colored)

Use aprint_*().

Revision 1.15.2.8 / (download) - annotate - [select for diffs], Fri Jan 17 16:31:41 2003 UTC (9 years, 4 months ago) by thorpej
Branch: nathanw_sa
CVS Tags: nathanw_sa_end
Changes since 1.15.2.7: +5 -2 lines
Diff to previous 1.15.2.7 (colored) to branchpoint 1.15 (colored) next main 1.16 (colored)

Sync with HEAD.

Revision 1.31 / (download) - annotate - [select for diffs], Thu Jan 16 01:02:06 2003 UTC (9 years, 4 months ago) by gendalia
Branch: MAIN
CVS Tags: nathanw_sa_before_merge, nathanw_sa_base
Changes since 1.30: +5 -2 lines
Diff to previous 1.30 (colored)

Add support for 3com 3c905CX-TX found on nForce2 MCP-T.

Revision 1.15.2.7 / (download) - annotate - [select for diffs], Sun Dec 29 20:49:22 2002 UTC (9 years, 4 months ago) by thorpej
Branch: nathanw_sa
Changes since 1.15.2.6: +11 -9 lines
Diff to previous 1.15.2.6 (colored) to branchpoint 1.15 (colored)

Sync with HEAD.

Revision 1.30 / (download) - annotate - [select for diffs], Mon Dec 23 03:23:00 2002 UTC (9 years, 5 months ago) by tsutsui
Branch: MAIN
CVS Tags: fvdl_fs64_base
Changes since 1.29: +9 -7 lines
Diff to previous 1.29 (colored)

Set PCI_PMCSR more properly.

Revision 1.29 / (download) - annotate - [select for diffs], Mon Dec 23 03:06:39 2002 UTC (9 years, 5 months ago) by tsutsui
Branch: MAIN
Changes since 1.28: +4 -4 lines
Diff to previous 1.28 (colored)

Save PCI_PMCSR value correctly.

Revision 1.28 / (download) - annotate - [select for diffs], Mon Dec 23 02:58:37 2002 UTC (9 years, 5 months ago) by tsutsui
Branch: MAIN
Changes since 1.27: +4 -4 lines
Diff to previous 1.27 (colored)

Replace magic numbers for power management control with PCI_PMCSR* macros.

XXX Should we use pci_get_powerstate() and pci_set_powerstate() in pci.c?

Revision 1.15.2.6 / (download) - annotate - [select for diffs], Fri Oct 18 02:43:04 2002 UTC (9 years, 7 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.15.2.5: +2 -3 lines
Diff to previous 1.15.2.5 (colored) to branchpoint 1.15 (colored)

Catch up to -current.

Revision 1.17.2.5 / (download) - annotate - [select for diffs], Thu Oct 10 18:40:41 2002 UTC (9 years, 7 months ago) by jdolecek
Branch: kqueue
Changes since 1.17.2.4: +4 -5 lines
Diff to previous 1.17.2.4 (colored) next main 1.18 (colored)

sync kqueue with -current; this includes merge of gehenna-devsw branch,
merge of i386 MP branch, and part of autoconf rototil work

Revision 1.27 / (download) - annotate - [select for diffs], Wed Oct 2 16:51:23 2002 UTC (9 years, 7 months ago) by thorpej
Branch: MAIN
CVS Tags: kqueue-beforemerge, kqueue-base, kqueue-aftermerge, gmcgarry_ucred_base, gmcgarry_ucred, gmcgarry_ctxsw_base, gmcgarry_ctxsw
Changes since 1.26: +3 -3 lines
Diff to previous 1.26 (colored)

Add trailing ; to CFATTACH_DECL.

Revision 1.26 / (download) - annotate - [select for diffs], Mon Sep 30 20:37:31 2002 UTC (9 years, 7 months ago) by thorpej
Branch: MAIN
Changes since 1.25: +4 -5 lines
Diff to previous 1.25 (colored)

Use CFATTACH_DECL().

Revision 1.25 / (download) - annotate - [select for diffs], Fri Sep 27 20:40:08 2002 UTC (9 years, 8 months ago) by thorpej
Branch: MAIN
Changes since 1.24: +3 -3 lines
Diff to previous 1.24 (colored)

Declare all cfattach structures const.

Revision 1.17.2.4 / (download) - annotate - [select for diffs], Fri Sep 6 08:45:15 2002 UTC (9 years, 8 months ago) by jdolecek
Branch: kqueue
Changes since 1.17.2.3: +106 -10 lines
Diff to previous 1.17.2.3 (colored)

sync kqueue branch with HEAD

Revision 1.15.2.5 / (download) - annotate - [select for diffs], Thu Aug 1 02:45:15 2002 UTC (9 years, 9 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.15.2.4: +106 -10 lines
Diff to previous 1.15.2.4 (colored) to branchpoint 1.15 (colored)

Catch up to -current.

Revision 1.20.8.1 / (download) - annotate - [select for diffs], Mon Jul 15 10:35:37 2002 UTC (9 years, 10 months ago) by gehenna
Branch: gehenna-devsw
Changes since 1.20: +106 -10 lines
Diff to previous 1.20 (colored) next main 1.21 (colored)

catch up with -current.

Revision 1.24 / (download) - annotate - [select for diffs], Mon Jul 1 16:15:35 2002 UTC (9 years, 10 months ago) by thorpej
Branch: MAIN
CVS Tags: gehenna-devsw-base
Changes since 1.23: +8 -3 lines
Diff to previous 1.23 (colored)

Also save/restore the PCI_INTERRUPT_REG.

Revision 1.23 / (download) - annotate - [select for diffs], Thu Jun 20 23:47:26 2002 UTC (9 years, 11 months ago) by itojun
Branch: MAIN
Changes since 1.22: +3 -3 lines
Diff to previous 1.22 (colored)

more proper fix to ex_disable.

Revision 1.22 / (download) - annotate - [select for diffs], Thu Jun 20 23:38:47 2002 UTC (9 years, 11 months ago) by itojun
Branch: MAIN
Changes since 1.21: +3 -3 lines
Diff to previous 1.21 (colored)

make it compile (ex_disable).
not sure if it is 100% right.

Revision 1.21 / (download) - annotate - [select for diffs], Thu Jun 20 20:17:04 2002 UTC (9 years, 11 months ago) by thorpej
Branch: MAIN
Changes since 1.20: +100 -9 lines
Diff to previous 1.20 (colored)

If the chip supports ACPI power management:
* Go to D3 if IFF_UP == 0.
* Go to D0 if IFF_UP == 1.

Saves battery life on my T21, mmm.

Revision 1.17.2.3 / (download) - annotate - [select for diffs], Sat Mar 16 16:01:13 2002 UTC (10 years, 2 months ago) by jdolecek
Branch: kqueue
Changes since 1.17.2.2: +3 -3 lines
Diff to previous 1.17.2.2 (colored)

Catch up with -current.

Revision 1.15.2.4 / (download) - annotate - [select for diffs], Thu Feb 28 04:13:59 2002 UTC (10 years, 2 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.15.2.3: +3 -3 lines
Diff to previous 1.15.2.3 (colored) to branchpoint 1.15 (colored)

Catch up to -current.

Revision 1.20 / (download) - annotate - [select for diffs], Thu Feb 7 01:32:19 2002 UTC (10 years, 3 months ago) by christos
Branch: MAIN
CVS Tags: 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-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, netbsd-1-6-PATCH001-RELEASE, netbsd-1-6-PATCH001-RC3, netbsd-1-6-PATCH001-RC2, netbsd-1-6-PATCH001-RC1, netbsd-1-6-PATCH001, netbsd-1-6, ifpoll-base, ifpoll, eeh-devprop-base, eeh-devprop
Branch point for: gehenna-devsw
Changes since 1.19: +3 -3 lines
Diff to previous 1.19 (colored)

Turn on mii on 3C980CTXM

Revision 1.17.2.2 / (download) - annotate - [select for diffs], Thu Jan 10 19:56:39 2002 UTC (10 years, 4 months ago) by thorpej
Branch: kqueue
Changes since 1.17.2.1: +4 -1 lines
Diff to previous 1.17.2.1 (colored)

Sync kqueue branch with -current.

Revision 1.12.4.3 / (download) - annotate - [select for diffs], Tue Jan 1 12:21:38 2002 UTC (10 years, 4 months ago) by he
Branch: netbsd-1-5
CVS Tags: netbsd-1-5-PATCH003
Changes since 1.12.4.2: +23 -10 lines
Diff to previous 1.12.4.2 (colored) to branchpoint 1.12 (colored) next main 1.13 (colored)

Pull up revision 1.18 (requested by kanaoka):
  Improve intr_ack code to support 3c556 and 3c556B.

Revision 1.15.2.3 / (download) - annotate - [select for diffs], Wed Nov 14 19:15:15 2001 UTC (10 years, 6 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.15.2.2: +4 -1 lines
Diff to previous 1.15.2.2 (colored) to branchpoint 1.15 (colored)

Catch up to -current.

Revision 1.19 / (download) - annotate - [select for diffs], Tue Nov 13 07:48:43 2001 UTC (10 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.18: +4 -1 lines
Diff to previous 1.18 (colored)

add RCSID

Revision 1.17.2.1 / (download) - annotate - [select for diffs], Sat Aug 25 06:16:22 2001 UTC (10 years, 9 months ago) by thorpej
Branch: kqueue
Changes since 1.17: +23 -10 lines
Diff to previous 1.17 (colored)

Merge Aug 24 -current into the kqueue branch.

Revision 1.15.2.2 / (download) - annotate - [select for diffs], Fri Aug 24 00:10:03 2001 UTC (10 years, 9 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.15.2.1: +23 -17 lines
Diff to previous 1.15.2.1 (colored) to branchpoint 1.15 (colored)

Catch up with -current.

Revision 1.18 / (download) - annotate - [select for diffs], Sat Aug 18 05:49:28 2001 UTC (10 years, 9 months ago) by kanaoka
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
Changes since 1.17: +23 -10 lines
Diff to previous 1.17 (colored)

Improve intr_ack code to support for 3c556,3c556B.
   Some cards don't have an interrupt acknowledge
  register in PCI config space, so we map and write
  it, such as CardBus driver does.

Revision 1.17 / (download) - annotate - [select for diffs], Sun Jul 8 18:02:28 2001 UTC (10 years, 10 months ago) by thorpej
Branch: MAIN
Branch point for: kqueue
Changes since 1.16: +1 -8 lines
Diff to previous 1.16 (colored)

Remove unnecessary include files.  From Onno van der Linden.

Revision 1.15.2.1 / (download) - annotate - [select for diffs], Thu Jun 21 20:04:42 2001 UTC (10 years, 11 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.15: +1 -16 lines
Diff to previous 1.15 (colored)

Catch up to -current.

Revision 1.16 / (download) - annotate - [select for diffs], Tue Jun 12 22:28:15 2001 UTC (10 years, 11 months ago) by thorpej
Branch: MAIN
Changes since 1.15: +1 -16 lines
Diff to previous 1.15 (colored)

Don't need INET or NS includes here.

Revision 1.12.4.2 / (download) - annotate - [select for diffs], Tue Mar 20 17:25:33 2001 UTC (11 years, 2 months ago) by he
Branch: netbsd-1-5
CVS Tags: netbsd-1-5-PATCH002, netbsd-1-5-PATCH001
Changes since 1.12.4.1: +47 -2 lines
Diff to previous 1.12.4.1 (colored) to branchpoint 1.12 (colored)

Pull up revision 1.14 (requested by chuck):
  Add support for the 3Com 3c555, 3c556 and 3c556B MiniPCI Ethernet
  cards.

Revision 1.8.2.2 / (download) - annotate - [select for diffs], Fri Jan 5 17:36:06 2001 UTC (11 years, 4 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.8.2.1: +2 -3 lines
Diff to previous 1.8.2.1 (colored) to branchpoint 1.8 (colored) next main 1.9 (colored)

Sync with HEAD

Revision 1.15 / (download) - annotate - [select for diffs], Thu Dec 28 22:59:13 2000 UTC (11 years, 4 months ago) by sommerfeld
Branch: MAIN
CVS Tags: thorpej_scsipi_nbase, thorpej_scsipi_beforemerge, thorpej_scsipi_base
Branch point for: nathanw_sa
Changes since 1.14: +2 -3 lines
Diff to previous 1.14 (colored)

Change pci_intr_map to get interrupt source information from a "struct
pci_attach_args *" instead of from four separate parameters which in
all cases were extracted from the same "struct pci_attach_args".

This both simplifies the driver api, and allows for alternate PCI
interrupt mapping schemes, such as one using the tables described in
the Intel Multiprocessor Spec which describe interrupt wirings for
devices behind pci-pci bridges based on the device's location rather
the bridge's location.

Tested on alpha and i386; welcome to 1.5Q

Revision 1.8.2.1 / (download) - annotate - [select for diffs], Mon Nov 20 11:42:21 2000 UTC (11 years, 6 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.8: +69 -11 lines
Diff to previous 1.8 (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.12.4.1 / (download) - annotate - [select for diffs], Thu Oct 19 13:54:28 2000 UTC (11 years, 7 months ago) by he
Branch: netbsd-1-5
CVS Tags: netbsd-1-5-RELEASE, netbsd-1-5-BETA2, netbsd-1-5-BETA
Changes since 1.12: +7 -1 lines
Diff to previous 1.12 (colored)

Pull up revision 1.13 (requested by billc):
  Add PCI IDs for 3Com Home Connect (3c450) and Office Connect
  (3cSOHO100), register compatible with later versions of 3c905.

Revision 1.14 / (download) - annotate - [select for diffs], Tue Sep 19 01:15:06 2000 UTC (11 years, 8 months ago) by fvdl
Branch: MAIN
Changes since 1.13: +47 -2 lines
Diff to previous 1.13 (colored)

Add support for the 3c555, 556 and 556B MiniPCI cards. Based on the
cardbus code and the FreeBSD xl driver.

Revision 1.5.2.4 / (download) - annotate - [select for diffs], Mon Sep 11 20:08:24 2000 UTC (11 years, 8 months ago) by he
Branch: netbsd-1-4
CVS Tags: netbsd-1-4-PATCH003
Changes since 1.5.2.3: +7 -1 lines
Diff to previous 1.5.2.3 (colored) to branchpoint 1.5 (colored) next main 1.6 (colored)

Pull up revision 1.13 (requested by billc):
  Recognize 3Com's Home Connect (3c450) and Office Connect (3cSOHO100)
  Ethernet cards.

Revision 1.13 / (download) - annotate - [select for diffs], Mon Aug 7 04:08:35 2000 UTC (11 years, 9 months ago) by billc
Branch: MAIN
Changes since 1.12: +7 -1 lines
Diff to previous 1.12 (colored)

Added PCI IDs for 3Com's Home Connect (3c450) and Office Connect (3cSOHO100).
They both are register compat with later versions of the 3c905 (tornado/
vortex) series.

Revision 1.12 / (download) - annotate - [select for diffs], Fri May 12 17:48:47 2000 UTC (12 years ago) by thorpej
Branch: MAIN
CVS Tags: netbsd-1-5-base, netbsd-1-5-ALPHA2, minoura-xpg4dl-base, minoura-xpg4dl
Branch point for: netbsd-1-5
Changes since 1.11: +4 -1 lines
Diff to previous 1.11 (colored)

Treat the 3c980C-TXM like the 3c980 Server Adapter.  From Paul J. Lavoie,
kern/10037.

Revision 1.11 / (download) - annotate - [select for diffs], Thu Mar 23 22:23:03 2000 UTC (12 years, 2 months ago) by mycroft
Branch: MAIN
Changes since 1.10: +9 -8 lines
Diff to previous 1.10 (colored)

Rather than guessing at the location of the PMCSR, use the pointer returned by
pci_get_capability().  (This is, after all, a standardized interface...)

Revision 1.5.2.3 / (download) - annotate - [select for diffs], Sat Jan 15 17:30:11 2000 UTC (12 years, 4 months ago) by he
Branch: netbsd-1-4
CVS Tags: netbsd-1-4-PATCH002
Changes since 1.5.2.2: +2 -2 lines
Diff to previous 1.5.2.2 (colored) to branchpoint 1.5 (colored)

Pull up revision 1.10 (requested by mycroft):
  Make the 3c980 actually work.

Revision 1.10 / (download) - annotate - [select for diffs], Thu Jan 13 23:26:35 2000 UTC (12 years, 4 months ago) by mycroft
Branch: MAIN
CVS Tags: chs-ubc2-newbase
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (colored)

Remove EX_CONF_MII for the 3c980.  At least 2 people need this for the card
to work.

Revision 1.8.8.1 / (download) - annotate - [select for diffs], Mon Dec 27 18:35:17 1999 UTC (12 years, 5 months ago) by wrstuden
Branch: wrstuden-devbsize
Changes since 1.8: +6 -3 lines
Diff to previous 1.8 (colored) next main 1.9 (colored)

Pull up to last week's -current.

Revision 1.9 / (download) - annotate - [select for diffs], Tue Nov 30 19:16:51 1999 UTC (12 years, 5 months ago) by drochner
Branch: MAIN
CVS Tags: wrstuden-devbsize-base, wrstuden-devbsize-19991221
Changes since 1.8: +6 -3 lines
Diff to previous 1.8 (colored)

-support 3c905B-COMBO - somewhat preliminary: the chip has both an internal
 MII PHY capable of NWAY (according to the Linux driver) and plain BNC/
 transceiver connectors. The shared code can't handle this yet, so leave
 out MII/NWAY for now.
-print out revision number from PCI config header, this has been useful to
 identify buggy chips

Revision 1.5.6.1 / (download) - annotate - [select for diffs], Tue Nov 30 13:34:01 1999 UTC (12 years, 5 months ago) by itojun
Branch: kame
CVS Tags: kame_141_19991130
Changes since 1.5: +3 -1 lines
Diff to previous 1.5 (colored) next main 1.6 (colored)

bring in latest KAME (as of 19991130, KAME/NetBSD141) into kame branch
just for reference purposes.
This commit includes 1.4 -> 1.4.1 sync for kame branch.

The branch does not compile at all (due to the lack of ALTQ and some other
source code).  Please do not try to modify the branch, this is just for
referenre purposes.

synchronization to latest KAME will take place on HEAD branch soon.

Revision 1.8 / (download) - annotate - [select for diffs], Wed Sep 1 20:26:43 1999 UTC (12 years, 8 months ago) by fvdl
Branch: MAIN
CVS Tags: fvdl-softdep-base, fvdl-softdep, comdex-fall-1999-base, comdex-fall-1999
Branch point for: wrstuden-devbsize, thorpej_scsipi
Changes since 1.7: +2 -2 lines
Diff to previous 1.7 (colored)

Don't assume that an -FX card has MII (because it doesn't).

Revision 1.5.2.2 / (download) - annotate - [select for diffs], Sun Aug 29 20:59:05 1999 UTC (12 years, 8 months ago) by he
Branch: netbsd-1-4
Changes since 1.5.2.1: +3 -1 lines
Diff to previous 1.5.2.1 (colored) to branchpoint 1.5 (colored)

Pull up revision 1.7:
  Recognize 3c905C-TX card.  (bouyer)

Revision 1.5.4.2 / (download) - annotate - [select for diffs], Mon Aug 2 22:03:58 1999 UTC (12 years, 9 months ago) by thorpej
Branch: chs-ubc2
Changes since 1.5.4.1: +3 -1 lines
Diff to previous 1.5.4.1 (colored) to branchpoint 1.5 (colored) next main 1.6 (colored)

Update from trunk.

Revision 1.7 / (download) - annotate - [select for diffs], Thu Jul 15 18:10:29 1999 UTC (12 years, 10 months ago) by ross
Branch: MAIN
CVS Tags: chs-ubc2-base
Changes since 1.6: +3 -1 lines
Diff to previous 1.6 (colored)

Recognize 3c905C.

Revision 1.5.2.1 / (download) - annotate - [select for diffs], Tue Jun 22 17:14:52 1999 UTC (12 years, 11 months ago) by perry
Branch: netbsd-1-4
CVS Tags: netbsd-1-4-PATCH001
Changes since 1.5: +3 -1 lines
Diff to previous 1.5 (colored)

pullup 1.5->1.6 (fvdl): recognize another 390xB card

Revision 1.5.4.1 / (download) - annotate - [select for diffs], Mon Jun 21 01:18:31 1999 UTC (12 years, 11 months ago) by thorpej
Branch: chs-ubc2
Changes since 1.5: +3 -1 lines
Diff to previous 1.5 (colored)

Sync w/ -current.

Revision 1.6 / (download) - annotate - [select for diffs], Sat May 29 01:31:17 1999 UTC (13 years ago) by fvdl
Branch: MAIN
Changes since 1.5: +3 -1 lines
Diff to previous 1.5 (colored)

Recognize 900B-TPC. From Robert Elz.

Revision 1.5 / (download) - annotate - [select for diffs], Sat Feb 20 07:07:07 1999 UTC (13 years, 3 months ago) by ross
Branch: MAIN
CVS Tags: netbsd-1-4-base, netbsd-1-4-RELEASE, kame_14_19990705, kame_14_19990628
Branch point for: netbsd-1-4, kame, chs-ubc2
Changes since 1.4: +2 -2 lines
Diff to previous 1.4 (colored)

Fix typo.

Revision 1.4 / (download) - annotate - [select for diffs], Fri Feb 19 06:58:42 1999 UTC (13 years, 3 months ago) by thorpej
Branch: MAIN
Changes since 1.3: +16 -10 lines
Diff to previous 1.3 (colored)

Improve product descriptions, and add 3c905-FX and 3c980 Server Adapter
products.

Revision 1.3 / (download) - annotate - [select for diffs], Mon Nov 9 23:12:18 1998 UTC (13 years, 6 months ago) by thorpej
Branch: MAIN
CVS Tags: kenh-if-detach-base, kenh-if-detach
Changes since 1.2: +64 -52 lines
Diff to previous 1.2 (colored)

Make the device lookup table-driven, like if_ep_pci.c.

Revision 1.2 / (download) - annotate - [select for diffs], Sat Nov 7 16:53:19 1998 UTC (13 years, 6 months ago) by drochner
Branch: MAIN
CVS Tags: chs-ubc-base, chs-ubc
Changes since 1.1: +3 -7 lines
Diff to previous 1.1 (colored)

use common code for extended capability (power management)
let "match" return 2 (> ep_pci)

Revision 1.1 / (download) - annotate - [select for diffs], Wed Nov 4 00:31:05 1998 UTC (13 years, 6 months ago) by fvdl
Branch: MAIN

Add the 'ex' driver, a DMA driver for 3Com 90x and 90xB cards. Rename
constants from EP_ to ELINK_ since they're now used in the ex driver as well.

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>