Up to [cvs.netbsd.org] / src / sys / dev / pci
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.37.2.1 / (download) - annotate - [select for diffs], Tue Apr 17 00:07:57 2012 UTC (5 weeks, 4 days ago) by yamt
Branch: yamt-pagecache
Changes since 1.37: +11 -19
lines
Diff to previous 1.37 (colored) next main 1.38 (colored)
sync with head
Revision 1.37.6.1 / (download) - annotate - [select for diffs], Sat Feb 18 07:34:50 2012 UTC (3 months ago) by mrg
Branch: jmcneill-usbmp
Changes since 1.37: +11 -19
lines
Diff to previous 1.37 (colored) next main 1.38 (colored)
merge to -current.
Revision 1.40 / (download) - annotate - [select for diffs], Tue Feb 14 15:08:07 2012 UTC (3 months, 1 week ago) by pgoyette
Branch: MAIN
CVS Tags: yamt-pagecache-base5,
yamt-pagecache-base4,
netbsd-6-base,
netbsd-6,
jmcneill-usbmp-base9,
jmcneill-usbmp-base8,
jmcneill-usbmp-base7,
jmcneill-usbmp-base6,
jmcneill-usbmp-base5,
jmcneill-usbmp-base4,
jmcneill-usbmp-base3,
jmcneill-usbmp-base2,
HEAD
Changes since 1.39: +10 -12
lines
Diff to previous 1.39 (colored)
Replace the xxx_acquire()/xxx_release() rwlocks with mutexes. There are only RW_WRITERs for these, and no RW_READERs, so no need to incur the extra overhead of allowing for both. As discussed on tech-kern. For piixpm and ichsmb, the acquire/release protocol needs to be used, even if the request is I2C_F_POLL'd (or if the device supports only polled mode). Otherwise multiple requests can be running at the same time, and they stomp on each other and create anomolous results. Part 2 addresses my PR kern/45889 3 ACKs from releng
Revision 1.39 / (download) - annotate - [select for diffs], Mon Jan 30 19:41:22 2012 UTC (3 months, 3 weeks ago) by drochner
Branch: MAIN
Changes since 1.38: +3 -8
lines
Diff to previous 1.38 (colored)
Use pci_aprint_devinfo(9) instead of pci_devinfo+aprint_{normal,naive}
where it looks straightforward, and pci_aprint_devinfo_fancy in a few
others where drivers want to supply their own device names instead
of the pcidevs generated one. More complicated cases, where names
are composed at runtime, are left alone for now. It certainly makes
sense to simplify the drivers here rather than inventing a catch-all API.
This should serve as as example for new drivers, and also ensure
consistent output in the AB_QUIET ("boot -q") case. Also, it avoids
excessive stack usage where drivers attach child devices because the
buffer for the device name is not kept on the local stack anymore.
Revision 1.38 / (download) - annotate - [select for diffs], Sat Jan 7 15:59:46 2012 UTC (4 months, 2 weeks ago) by pgoyette
Branch: MAIN
Changes since 1.37: +3 -4
lines
Diff to previous 1.37 (colored)
Modify the attach message for consistency with most other pci devices.
Revision 1.37 / (download) - annotate - [select for diffs], Mon Oct 3 22:33:02 2011 UTC (7 months, 3 weeks ago) by jmcneill
Branch: MAIN
CVS Tags: yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
jmcneill-usbmp-pre-base2,
jmcneill-usbmp-base,
jmcneill-audiomp3-base,
jmcneill-audiomp3
Branch point for: yamt-pagecache,
jmcneill-usbmp
Changes since 1.36: +3 -3
lines
Diff to previous 1.36 (colored)
avoid printing an empty line in the sb800 case
Revision 1.36 / (download) - annotate - [select for diffs], Sun Oct 2 23:25:20 2011 UTC (7 months, 3 weeks ago) by jmcneill
Branch: MAIN
Changes since 1.35: +72 -2
lines
Diff to previous 1.35 (colored)
Newer ATI SB800 SMBus controllers don't report the base address in PCI config space. According to the SB800-Series Southbridges Register Reference Guide, we can still read this value from PM config space using indirect I/O.
Revision 1.33.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.33: +46 -7
lines
Diff to previous 1.33 (colored) next main 1.34 (colored)
Sync with HEAD.
Revision 1.32.2.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.32: +47 -8
lines
Diff to previous 1.32 (colored) next main 1.33 (colored)
sync with head
Revision 1.33.4.1 / (download) - annotate - [select for diffs], Thu Feb 17 12:00:14 2011 UTC (15 months, 1 week ago) by bouyer
Branch: bouyer-quota2
Changes since 1.33: +46 -7
lines
Diff to previous 1.33 (colored) next main 1.34 (colored)
Sync with HEAD
Revision 1.35 / (download) - annotate - [select for diffs], Sun Feb 13 11:20:12 2011 UTC (15 months, 1 week ago) by hannken
Branch: MAIN
CVS Tags: rmind-uvmplock-nbase,
rmind-uvmplock-base,
cherry-xenmp-base,
cherry-xenmp,
bouyer-quota2-nbase,
bouyer-quota2-base
Changes since 1.34: +38 -3
lines
Diff to previous 1.34 (colored)
The ServerWorks CSB5 smbus controller often times out and hangs until reboot. Increase the delay between setting the command register and reading the status register. Reset the smbus controller if it has timed out. Tested on an IBM eServer x335.
Revision 1.34 / (download) - annotate - [select for diffs], Thu Feb 10 13:52:36 2011 UTC (15 months, 2 weeks ago) by hannken
Branch: MAIN
Changes since 1.33: +10 -6
lines
Diff to previous 1.33 (colored)
Make the SMbus Send/Receive functions work. If cmdlen = 0 and len = 1 use the XXX_HC_CMD_BYTE protocol, send data through XXX_SMB_HCMD or receive data from XXX_SMB_HD0. Ok: Paul Goyette
Revision 1.26.4.1 / (download) - annotate - [select for diffs], Sat Nov 20 18:23:20 2010 UTC (18 months ago) by riz
Branch: netbsd-5
CVS Tags: matt-nb5-pq3-base,
matt-nb5-pq3
Changes since 1.26: +6 -6
lines
Diff to previous 1.26 (colored) next main 1.27 (colored)
Pull up following revision(s) (requested by martin in ticket #1391): sys/dev/pci/piixpm.c: revision 1.28 Fix dmesg output: Old: piixpm0 at pci0 dev 20 function 0 piixpm0: ATI Technologies SB600/SB700/SB800 SMBus Controller (rev. 0x13) piixpm0: interrupting at SMIpiixpm0: polling New: piixpm0 at pci0 dev 20 function 0 piixpm0: ATI Technologies SB600/SB700/SB800 SMBus Controller (rev. 0x13) piixpm0: interrupting at SMI, polling Cosmetic change only, no functional changes intended.
Revision 1.31.2.2 / (download) - annotate - [select for diffs], Tue Aug 17 06:46:34 2010 UTC (21 months, 1 week ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.31.2.1: +1 -1
lines
Diff to previous 1.31.2.1 (colored) to branchpoint 1.31 (colored) next main 1.32 (colored)
Sync with HEAD.
Revision 1.24.4.3 / (download) - annotate - [select for diffs], Wed Aug 11 22:54:04 2010 UTC (21 months, 2 weeks ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.24.4.2: +3 -3
lines
Diff to previous 1.24.4.2 (colored) to branchpoint 1.24 (colored) next main 1.25 (colored)
sync with head.
Revision 1.33 / (download) - annotate - [select for diffs], Tue Jul 27 05:29:05 2010 UTC (21 months, 4 weeks ago) by jakllsch
Branch: MAIN
CVS Tags: yamt-nfs-mp-base11,
yamt-nfs-mp-base10,
uebayasi-xip-base4,
uebayasi-xip-base3,
uebayasi-xip-base2,
matt-mips64-premerge-20101231,
jruoho-x86intr-base
Branch point for: jruoho-x86intr,
bouyer-quota2
Changes since 1.32: +3 -3
lines
Diff to previous 1.32 (colored)
Make PIIXPM_DEBUG work with 64-bit size_t.
Revision 1.31.2.1 / (download) - annotate - [select for diffs], Fri Apr 30 14:43:43 2010 UTC (2 years ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.31: +6 -6
lines
Diff to previous 1.31 (colored)
Sync with HEAD.
Revision 1.24.4.2 / (download) - annotate - [select for diffs], Thu Mar 11 15:03:59 2010 UTC (2 years, 2 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.24.4.1: +7 -6
lines
Diff to previous 1.24.4.1 (colored) to branchpoint 1.24 (colored)
sync with head
Revision 1.32 / (download) - annotate - [select for diffs], Wed Feb 24 22:38:01 2010 UTC (2 years, 3 months ago) by dyoung
Branch: MAIN
CVS Tags: yamt-nfs-mp-base9,
uebayasi-xip-base1
Branch point for: rmind-uvmplock
Changes since 1.31: +6 -6
lines
Diff to previous 1.31 (colored)
A pointer typedef entails trading too much flexibility to declare const and non-const types, and the kernel uses both const and non-const PMF qualifiers and device suspensors, so change the pmf_qual_t and device_suspensor_t typedefs from "pointers to const" to non-pointer, non-const types.
Revision 1.31 / (download) - annotate - [select for diffs], Fri Jan 8 19:56:52 2010 UTC (2 years, 4 months ago) by dyoung
Branch: MAIN
CVS Tags: uebayasi-xip-base
Branch point for: uebayasi-xip
Changes since 1.30: +6 -6
lines
Diff to previous 1.30 (colored)
Expand PMF_FN_* macros.
Revision 1.30 / (download) - annotate - [select for diffs], Tue Nov 3 12:51:56 2009 UTC (2 years, 6 months ago) by pgoyette
Branch: MAIN
CVS Tags: matt-premerge-20091211
Changes since 1.29: +3 -2
lines
Diff to previous 1.29 (colored)
Set iba_type properly. The only thing that ever looks at this is the 'options I2C_SCAN' code in dev/i2c/i2c.c which is disabled by default.
Revision 1.27.2.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.27: +7 -7
lines
Diff to previous 1.27 (colored) next main 1.28 (colored)
Sync with HEAD. Commit is split, to avoid a "too many arguments" protocol error.
Revision 1.24.4.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.24: +46 -42
lines
Diff to previous 1.24 (colored)
sync with head.
Revision 1.26.2.2 / (download) - annotate - [select for diffs], Tue Apr 28 07:35:59 2009 UTC (3 years ago) by skrll
Branch: nick-hppapmap
Changes since 1.26.2.1: +3 -3
lines
Diff to previous 1.26.2.1 (colored) to branchpoint 1.26 (colored) next main 1.27 (colored)
Sync with HEAD.
Revision 1.29 / (download) - annotate - [select for diffs], Wed Mar 18 16:00:19 2009 UTC (3 years, 2 months 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,
yamt-nfs-mp-base3,
nick-hppapmap-base4,
nick-hppapmap-base3,
nick-hppapmap-base,
jymxensuspend-base,
jym-xensuspend-nbase,
jym-xensuspend-base
Changes since 1.28: +3 -3
lines
Diff to previous 1.28 (colored)
bzero -> memset
Revision 1.26.2.1 / (download) - annotate - [select for diffs], Tue Mar 3 18:31:09 2009 UTC (3 years, 2 months ago) by skrll
Branch: nick-hppapmap
Changes since 1.26: +12 -9
lines
Diff to previous 1.26 (colored)
Sync with HEAD.
Revision 1.28 / (download) - annotate - [select for diffs], Fri Feb 13 19:19:52 2009 UTC (3 years, 3 months ago) by pgoyette
Branch: MAIN
CVS Tags: nick-hppapmap-base2
Changes since 1.27: +6 -6
lines
Diff to previous 1.27 (colored)
Fix dmesg output: Old: piixpm0 at pci0 dev 20 function 0 piixpm0: ATI Technologies SB600/SB700/SB800 SMBus Controller (rev. 0x13) piixpm0: interrupting at SMIpiixpm0: polling New: piixpm0 at pci0 dev 20 function 0 piixpm0: ATI Technologies SB600/SB700/SB800 SMBus Controller (rev. 0x13) piixpm0: interrupting at SMI, polling Cosmetic change only, no functional changes intended.
Revision 1.27 / (download) - annotate - [select for diffs], Tue Feb 3 16:27:13 2009 UTC (3 years, 3 months ago) by pgoyette
Branch: MAIN
Branch point for: jym-xensuspend
Changes since 1.26: +8 -5
lines
Diff to previous 1.26 (colored)
Update the i2c_exec() functions to handle quick_read/quick_write protocol. Although interface routines i2c_smbus_*() exist, nothing in NetBSD actually uses them yet.
Revision 1.20.6.4 / (download) - annotate - [select for diffs], Sat Jan 17 13:29:01 2009 UTC (3 years, 4 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.20.6.3: +2 -2
lines
Diff to previous 1.20.6.3 (colored) to branchpoint 1.20 (colored) next main 1.21 (colored)
Sync with HEAD.
Revision 1.24.10.1 / (download) - annotate - [select for diffs], Sun Oct 19 22:16:40 2008 UTC (3 years, 7 months ago) by haad
Branch: haad-dm
Changes since 1.24: +38 -37
lines
Diff to previous 1.24 (colored) next main 1.25 (colored)
Sync with HEAD.
Revision 1.26 / (download) - annotate - [select for diffs], Sun Oct 12 19:01:01 2008 UTC (3 years, 7 months ago) by martin
Branch: MAIN
CVS Tags: 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,
mjf-devfs2-base,
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,
haad-nbase2,
haad-dm-base2,
haad-dm-base1,
haad-dm-base,
ad-audiomp2-base,
ad-audiomp2
Branch point for: nick-hppapmap,
netbsd-5
Changes since 1.25: +4 -4
lines
Diff to previous 1.25 (colored)
Move printing of the "polling" message at attach time out of the wrong if scope, so that it is actually printed even in non-error cases. Suggested by jmcneill.
Revision 1.20.6.3 / (download) - annotate - [select for diffs], Sun Sep 28 10:40:28 2008 UTC (3 years, 7 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.20.6.2: +35 -34
lines
Diff to previous 1.20.6.2 (colored) to branchpoint 1.20 (colored)
Sync with HEAD.
Revision 1.24.6.1 / (download) - annotate - [select for diffs], Thu Sep 18 04:35:08 2008 UTC (3 years, 8 months ago) by wrstuden
Branch: wrstuden-revivesa
Changes since 1.24: +37 -36
lines
Diff to previous 1.24 (colored) next main 1.25 (colored)
Sync with wrstuden-revivesa-base-2.
Revision 1.24.8.1 / (download) - annotate - [select for diffs], Fri Jul 18 16:37:34 2008 UTC (3 years, 10 months ago) by simonb
Branch: simonb-wapbl
Changes since 1.24: +37 -36
lines
Diff to previous 1.24 (colored) next main 1.25 (colored)
Sync with head.
Revision 1.25 / (download) - annotate - [select for diffs], Wed Jul 9 14:39:44 2008 UTC (3 years, 10 months ago) by joerg
Branch: MAIN
CVS Tags: wrstuden-revivesa-base-4,
wrstuden-revivesa-base-3,
wrstuden-revivesa-base-2,
simonb-wapbl-nbase,
simonb-wapbl-base
Changes since 1.24: +37 -36
lines
Diff to previous 1.24 (colored)
- device/softc split - reduce namespace pollution
Revision 1.20.6.2 / (download) - annotate - [select for diffs], Mon Jun 2 13:23:43 2008 UTC (3 years, 11 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.20.6.1: +13 -16
lines
Diff to previous 1.20.6.1 (colored) to branchpoint 1.20 (colored)
Sync with HEAD.
Revision 1.24 / (download) - annotate - [select for diffs], Thu Apr 10 19:13:37 2008 UTC (4 years, 1 month ago) by cegger
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,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base,
hpcarm-cleanup-nbase
Branch point for: yamt-nfs-mp,
wrstuden-revivesa,
simonb-wapbl,
haad-dm
Changes since 1.23: +15 -18
lines
Diff to previous 1.23 (colored)
use aprint_*_dev and device_xname
Revision 1.20.6.1 / (download) - annotate - [select for diffs], Thu Apr 3 12:42:53 2008 UTC (4 years, 1 month ago) by mjf
Branch: mjf-devfs2
Changes since 1.20: +9 -8
lines
Diff to previous 1.20 (colored)
Sync with HEAD.
Revision 1.23 / (download) - annotate - [select for diffs], Wed Mar 26 11:14:33 2008 UTC (4 years, 2 months ago) by jmcneill
Branch: MAIN
CVS Tags: ad-socklock-base1
Changes since 1.22: +3 -2
lines
Diff to previous 1.22 (colored)
PR#38301: Add support for SMBus controllers for ATI SB600, SB700, SB800 chipsets, from Christoph Egger.
Revision 1.20.2.1 / (download) - annotate - [select for diffs], Mon Mar 24 07:15:49 2008 UTC (4 years, 2 months ago) by keiichi
Branch: keiichi-mipv6
Changes since 1.20: +8 -8
lines
Diff to previous 1.20 (colored) next main 1.21 (colored)
sync with head.
Revision 1.16.2.3 / (download) - annotate - [select for diffs], Sun Mar 23 02:04:50 2008 UTC (4 years, 2 months ago) by matt
Branch: matt-armv6
Changes since 1.16.2.2: +7 -7
lines
Diff to previous 1.16.2.2 (colored) to branchpoint 1.16 (colored) next main 1.17 (colored)
sync with HEAD
Revision 1.3.2.8 / (download) - annotate - [select for diffs], Mon Mar 17 09:15:12 2008 UTC (4 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3.2.7: +8 -8
lines
Diff to previous 1.3.2.7 (colored) to branchpoint 1.3 (colored) next main 1.4 (colored)
sync with head.
Revision 1.22 / (download) - annotate - [select for diffs], Mon Mar 10 21:18:08 2008 UTC (4 years, 2 months ago) by sketch
Branch: MAIN
CVS Tags: yamt-lazymbuf-base15,
yamt-lazymbuf-base14,
matt-armv6-nbase,
keiichi-mipv6-nbase,
keiichi-mipv6-base
Changes since 1.21: +4 -4
lines
Diff to previous 1.21 (colored)
Fix console output.
Revision 1.21 / (download) - annotate - [select for diffs], Fri Feb 29 06:13:39 2008 UTC (4 years, 2 months ago) by dyoung
Branch: MAIN
Changes since 1.20: +6 -6
lines
Diff to previous 1.20 (colored)
Use PMF_FN_ARGS, PMF_FN_PROTO.
Revision 1.17.2.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.17: +5 -2
lines
Diff to previous 1.17 (colored) next main 1.18 (colored)
Sync with HEAD.
Revision 1.3.2.7 / (download) - annotate - [select for diffs], Mon Feb 11 14:59:40 2008 UTC (4 years, 3 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3.2.6: +3 -3
lines
Diff to previous 1.3.2.6 (colored) to branchpoint 1.3 (colored)
sync with head.
Revision 1.20 / (download) - annotate - [select for diffs], Tue Feb 5 06:52:26 2008 UTC (4 years, 3 months ago) by simonb
Branch: MAIN
CVS Tags: nick-net80211-sync-base,
nick-net80211-sync,
mjf-devfs-base,
hpcarm-cleanup-base
Branch point for: mjf-devfs2,
keiichi-mipv6
Changes since 1.19: +3 -3
lines
Diff to previous 1.19 (colored)
Remove an extra \n from an attach message. Get's rid of a blank line during boot.
Revision 1.3.2.6 / (download) - annotate - [select for diffs], Mon Jan 21 09:44:14 2008 UTC (4 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3.2.5: +29 -27
lines
Diff to previous 1.3.2.5 (colored) to branchpoint 1.3 (colored)
sync with head
Revision 1.16.2.2 / (download) - annotate - [select for diffs], Wed Jan 9 01:54:00 2008 UTC (4 years, 4 months ago) by matt
Branch: matt-armv6
Changes since 1.16.2.1: +29 -27
lines
Diff to previous 1.16.2.1 (colored) to branchpoint 1.16 (colored)
sync with HEAD
Revision 1.17.4.1 / (download) - annotate - [select for diffs], Wed Dec 26 19:47:07 2007 UTC (4 years, 5 months ago) by ad
Branch: vmlocking2
Changes since 1.17: +29 -27
lines
Diff to previous 1.17 (colored) next main 1.18 (colored)
Sync with head.
Revision 1.18.2.1 / (download) - annotate - [select for diffs], Thu Dec 13 21:55:53 2007 UTC (4 years, 5 months ago) by bouyer
Branch: bouyer-xeni386
CVS Tags: bouyer-xeni386-merge1
Changes since 1.18: +4 -1
lines
Diff to previous 1.18 (colored) next main 1.19 (colored)
Sync with HEAD
Revision 1.17.6.1 / (download) - annotate - [select for diffs], Tue Dec 11 15:32:24 2007 UTC (4 years, 5 months ago) by yamt
Branch: yamt-kmem
Changes since 1.17: +29 -27
lines
Diff to previous 1.17 (colored) next main 1.18 (colored)
sync with head.
Revision 1.19 / (download) - annotate - [select for diffs], Tue Dec 11 11:25:53 2007 UTC (4 years, 5 months ago) by lukem
Branch: MAIN
CVS Tags: yamt-kmem-base3,
yamt-kmem-base2,
vmlocking2-base3,
matt-armv6-base,
cube-autoconf-base,
cube-autoconf,
bouyer-xeni386-nbase,
bouyer-xeni386-base
Changes since 1.18: +4 -1
lines
Diff to previous 1.18 (colored)
use __KERNEL_RCSID()
Revision 1.18 / (download) - annotate - [select for diffs], Sun Dec 9 20:28:13 2007 UTC (4 years, 5 months ago) by jmcneill
Branch: MAIN
Branch point for: bouyer-xeni386
Changes since 1.17: +26 -27
lines
Diff to previous 1.17 (colored)
Merge jmcneill-pm branch.
Revision 1.13.14.6 / (download) - annotate - [select for diffs], Sat Dec 8 16:21:32 2007 UTC (4 years, 5 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.13.14.5: +2 -2
lines
Diff to previous 1.13.14.5 (colored) to branchpoint 1.13 (colored) next main 1.14 (colored)
Rename pnp(9) -> pmf(9), as requested by many.
Revision 1.16.2.1 / (download) - annotate - [select for diffs], Tue Nov 6 23:29:29 2007 UTC (4 years, 6 months ago) by matt
Branch: matt-armv6
CVS Tags: matt-armv6-prevmlocking
Changes since 1.16: +2 -2
lines
Diff to previous 1.16 (colored)
sync with HEAD
Revision 1.13.14.5 / (download) - annotate - [select for diffs], Tue Nov 6 14:27:28 2007 UTC (4 years, 6 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.13.14.4: +11 -12
lines
Diff to previous 1.13.14.4 (colored) to branchpoint 1.13 (colored)
Refactor PNP API: - Make suspend/resume directly a device functionality. It consists of three layers (class logic, device logic, bus logic), all of them being optional. This replaces D0/D3 transitions. - device_is_active returns true if the device was not disabled and was not suspended (even partially), device_is_enabled returns true if the device was enabled. - Change pnp_global_transition into pnp_system_suspend and pnp_system_resume. Before running any suspend/resume handlers, check that all currently attached devices support power management and bail out otherwise. The latter is not done for the shutdown/panic case. - Make the former bus-specific generic network handlers a class handler. - Make PNP message like volume up/down/toogle PNP events. Each device can register what events they are interested in and whether the handler should be global or not. - Introduce device_active API for devices to mark themselve in use from either the system or the device. Use this to implement the idle handling for audio and input devices. This is intended to replace most ad-hoc watchdogs as well. - Fix somes situations in which audio resume would lose mixer settings. - Make USB host controllers better deal with suspend in the light of shared interrupts. - Flush filesystem cache on suspend. - Flush disk caches on suspend. Put ATA disks into standby on suspend as well. - Adopt drivers to use the new PNP API. - Fix a critical bug in the generic cardbus layer that made D0->D3 break. - Fix ral(4) to set if_stop. - Convert cbb(4) to the new PNP API. - Apply the PCI Express SCI fix on resume again.
Revision 1.3.2.5 / (download) - annotate - [select for diffs], Sat Oct 27 11:33:28 2007 UTC (4 years, 6 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3.2.4: +2 -2
lines
Diff to previous 1.3.2.4 (colored) to branchpoint 1.3 (colored)
sync with head.
Revision 1.13.14.4 / (download) - annotate - [select for diffs], Fri Oct 26 15:46:51 2007 UTC (4 years, 7 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.13.14.3: +2 -2
lines
Diff to previous 1.13.14.3 (colored) to branchpoint 1.13 (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.16.6.1 / (download) - annotate - [select for diffs], Thu Oct 25 22:39:18 2007 UTC (4 years, 7 months ago) by bouyer
Branch: bouyer-xenamd64
Changes since 1.16: +2 -2
lines
Diff to previous 1.16 (colored) next main 1.17 (colored)
Sync with HEAD.
Revision 1.13.2.3 / (download) - annotate - [select for diffs], Tue Oct 23 20:09:16 2007 UTC (4 years, 7 months ago) by ad
Branch: vmlocking
Changes since 1.13.2.2: +2 -2
lines
Diff to previous 1.13.2.2 (colored) to branchpoint 1.13 (colored) next main 1.14 (colored)
Sync with head.
Revision 1.17 / (download) - annotate - [select for diffs], Fri Oct 19 12:00:54 2007 UTC (4 years, 7 months ago) by ad
Branch: MAIN
CVS Tags: yamt-kmem-base,
vmlocking2-base2,
vmlocking2-base1,
vmlocking-nbase,
reinoud-bufcleanup-nbase,
reinoud-bufcleanup-base,
jmcneill-pm-base,
jmcneill-base,
bouyer-xenamd64-base2,
bouyer-xenamd64-base
Branch point for: yamt-kmem,
vmlocking2,
mjf-devfs
Changes since 1.16: +2 -2
lines
Diff to previous 1.16 (colored)
machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h
Revision 1.13.2.2 / (download) - annotate - [select for diffs], Tue Oct 9 13:41:51 2007 UTC (4 years, 7 months ago) by ad
Branch: vmlocking
Changes since 1.13.2.1: +7 -13
lines
Diff to previous 1.13.2.1 (colored) to branchpoint 1.13 (colored)
Sync with head.
Revision 1.13.14.3 / (download) - annotate - [select for diffs], Fri Oct 5 00:32:27 2007 UTC (4 years, 7 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.13.14.2: +27 -27
lines
Diff to previous 1.13.14.2 (colored) to branchpoint 1.13 (colored)
Convert piixpm(4) to PNP power management.
Revision 1.13.14.2 / (download) - annotate - [select for diffs], Mon Sep 3 16:48:23 2007 UTC (4 years, 8 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.13.14.1: +7 -13
lines
Diff to previous 1.13.14.1 (colored) to branchpoint 1.13 (colored)
Sync with HEAD.
Revision 1.3.2.4 / (download) - annotate - [select for diffs], Mon Sep 3 14:37:21 2007 UTC (4 years, 8 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3.2.3: +16 -14
lines
Diff to previous 1.3.2.3 (colored) to branchpoint 1.3 (colored)
sync with head.
Revision 1.13.10.2 / (download) - annotate - [select for diffs], Mon Sep 3 10:21:08 2007 UTC (4 years, 8 months ago) by skrll
Branch: nick-csl-alignment
Changes since 1.13.10.1: +7 -13
lines
Diff to previous 1.13.10.1 (colored) to branchpoint 1.13 (colored) next main 1.14 (colored)
Sync with HEAD.
Revision 1.16 / (download) - annotate - [select for diffs], Mon Aug 27 15:57:13 2007 UTC (4 years, 8 months ago) by xtraeme
Branch: MAIN
CVS Tags: yamt-x86pmap-base4,
yamt-x86pmap-base3,
yamt-x86pmap-base2,
yamt-x86pmap-base,
yamt-x86pmap,
vmlocking-base,
nick-csl-alignment-base5
Branch point for: matt-armv6,
bouyer-xenamd64
Changes since 1.15: +7 -6
lines
Diff to previous 1.15 (colored)
Use rwlock(9) rather than lockmgr(9).
Revision 1.15 / (download) - annotate - [select for diffs], Sun Aug 26 17:17:06 2007 UTC (4 years, 9 months ago) by xtraeme
Branch: MAIN
Changes since 1.14: +1 -8
lines
Diff to previous 1.14 (colored)
There's no need to add timecounter code inside of __HAVE_TIMECOUNTER ifdefs.
Revision 1.13.2.1 / (download) - annotate - [select for diffs], Mon Aug 20 18:37:27 2007 UTC (4 years, 9 months ago) by ad
Branch: vmlocking
Changes since 1.13: +9 -1
lines
Diff to previous 1.13 (colored)
Sync with HEAD.
Revision 1.13.10.1 / (download) - annotate - [select for diffs], Wed Aug 15 13:48:37 2007 UTC (4 years, 9 months ago) by skrll
Branch: nick-csl-alignment
Changes since 1.13: +9 -1
lines
Diff to previous 1.13 (colored)
Sync with HEAD.
Revision 1.13.14.1 / (download) - annotate - [select for diffs], Thu Aug 9 02:37:13 2007 UTC (4 years, 9 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.13: +9 -1
lines
Diff to previous 1.13 (colored)
Sync with HEAD.
Revision 1.14.2.2 / (download) - annotate - [select for diffs], Mon Aug 6 22:41:23 2007 UTC (4 years, 9 months ago) by martin
Branch: matt-mips64
Changes since 1.14.2.1: +456 -0
lines
Diff to previous 1.14.2.1 (colored) to branchpoint 1.14 (colored) next main 1.15 (colored)
Some serverworks mainboards use this power management too
Revision 1.14.2.1, Mon Aug 6 22:41:22 2007 UTC (4 years, 9 months ago) by martin
Branch: matt-mips64
Changes since 1.14: +0 -456
lines
FILE REMOVED
file piixpm.c was added on branch matt-mips64 on 2007-08-06 22:41:23 +0000
Revision 1.14 / (download) - annotate - [select for diffs], Mon Aug 6 22:41:22 2007 UTC (4 years, 9 months ago) by martin
Branch: MAIN
CVS Tags: matt-mips64-base
Branch point for: matt-mips64
Changes since 1.13: +9 -1
lines
Diff to previous 1.13 (colored)
Some serverworks mainboards use this power management too
Revision 1.12.2.1 / (download) - annotate - [select for diffs], Mon Mar 12 05:55:27 2007 UTC (5 years, 2 months ago) by rmind
Branch: yamt-idlelwp
Changes since 1.12: +2 -2
lines
Diff to previous 1.12 (colored) next main 1.13 (colored)
Sync with HEAD.
Revision 1.13 / (download) - annotate - [select for diffs], Sun Mar 4 06:02:25 2007 UTC (5 years, 2 months ago) by christos
Branch: MAIN
CVS Tags: yamt-idlelwp-base8,
thorpej-atomic-base,
thorpej-atomic,
reinoud-bufcleanup,
nick-csl-alignment-base,
mjf-ufs-trans-base,
mjf-ufs-trans,
hpcarm-cleanup
Branch point for: vmlocking,
nick-csl-alignment,
jmcneill-pm
Changes since 1.12: +2 -2
lines
Diff to previous 1.12 (colored)
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
Revision 1.7.2.2 / (download) - annotate - [select for diffs], Fri Jan 12 00:57:43 2007 UTC (5 years, 4 months ago) by ad
Branch: newlock2
Changes since 1.7.2.1: +6 -2
lines
Diff to previous 1.7.2.1 (colored) to branchpoint 1.7 (colored) next main 1.8 (colored)
Sync with head.
Revision 1.3.2.3 / (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.3.2.2: +82 -33
lines
Diff to previous 1.3.2.2 (colored) to branchpoint 1.3 (colored)
sync with head.
Revision 1.7.6.2 / (download) - annotate - [select for diffs], Sun Dec 10 07:17:47 2006 UTC (5 years, 5 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.7.6.1: +10 -4
lines
Diff to previous 1.7.6.1 (colored) to branchpoint 1.7 (colored) next main 1.8 (colored)
sync with head.
Revision 1.12 / (download) - annotate - [select for diffs], Sun Dec 10 00:34:52 2006 UTC (5 years, 5 months ago) by uwe
Branch: MAIN
CVS Tags: yamt-splraiseipl-base5,
yamt-splraiseipl-base4,
yamt-splraiseipl-base3,
post-newlock2-merge,
newlock2-nbase,
newlock2-base,
ad-audiomp-base,
ad-audiomp
Branch point for: yamt-idlelwp
Changes since 1.11: +6 -2
lines
Diff to previous 1.11 (colored)
Print pci device info instead of "Power Management Controller".
Revision 1.7.2.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.7: +7 -3
lines
Diff to previous 1.7 (colored)
Sync with head.
Revision 1.11 / (download) - annotate - [select for diffs], Thu Nov 16 01:33:10 2006 UTC (5 years, 6 months ago) by christos
Branch: MAIN
CVS Tags: wrstuden-fixsa-newbase,
wrstuden-fixsa-base-1,
wrstuden-fixsa-base,
wrstuden-fixsa,
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.10: +3 -3
lines
Diff to previous 1.10 (colored)
__unused removal on arguments; approved by core.
Revision 1.10 / (download) - annotate - [select for diffs], Tue Oct 31 14:03:07 2006 UTC (5 years, 6 months ago) by toshii
Branch: MAIN
Changes since 1.9: +3 -1
lines
Diff to previous 1.9 (colored)
Match ATI SB[34]00 smbus controllers.
Revision 1.7.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.7: +6 -4
lines
Diff to previous 1.7 (colored)
sync with head
Revision 1.9 / (download) - annotate - [select for diffs], Thu Oct 12 01:31:33 2006 UTC (5 years, 7 months ago) by christos
Branch: MAIN
CVS Tags: yamt-splraiseipl-base2
Changes since 1.8: +4 -3
lines
Diff to previous 1.8 (colored)
- sprinkle __unused on function decls. - fix a couple of unused bugs - no more -Wno-unused for i386
Revision 1.8 / (download) - annotate - [select for diffs], Sun Sep 24 03:53:09 2006 UTC (5 years, 8 months ago) by jmcneill
Branch: MAIN
Changes since 1.7: +3 -2
lines
Diff to previous 1.7 (colored)
Add "name" parameter to powerhook_establish, to aid debugging. No objections on tech-kern@
Revision 1.7.4.2 / (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.7.4.1: +440 -0
lines
Diff to previous 1.7.4.1 (colored) to branchpoint 1.7 (colored) next main 1.8 (colored)
sync with head
Revision 1.2.6.5 / (download) - annotate - [select for diffs], Sun Sep 3 15:24:23 2006 UTC (5 years, 8 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.2.6.4: +3 -5
lines
Diff to previous 1.2.6.4 (colored) to branchpoint 1.2 (colored) next main 1.3 (colored)
sync with head.
Revision 1.7.4.1, Thu Aug 17 17:11:28 2006 UTC (5 years, 9 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.7: +0 -440
lines
FILE REMOVED
file piixpm.c was added on branch rpaulo-netinet-merge-pcb on 2006-09-09 02:52:19 +0000
Revision 1.7 / (download) - annotate - [select for diffs], Thu Aug 17 17:11:28 2006 UTC (5 years, 9 months ago) by christos
Branch: MAIN
CVS Tags: yamt-splraiseipl-base,
yamt-pdpolicy-base9,
yamt-pdpolicy-base8,
rpaulo-netinet-merge-pcb-base
Branch point for: yamt-splraiseipl,
rpaulo-netinet-merge-pcb,
newlock2
Changes since 1.6: +3 -5
lines
Diff to previous 1.6 (colored)
Fix all the -D*DEBUG* code that it was rotting away and did not even compile. Mostly from Arnaud Lacombe, many thanks!
Revision 1.2.6.4 / (download) - annotate - [select for diffs], Fri Aug 11 15:44:26 2006 UTC (5 years, 9 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.2.6.3: +25 -41
lines
Diff to previous 1.2.6.3 (colored) to branchpoint 1.2 (colored)
sync with head
Revision 1.2.12.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.2: +121 -36
lines
Diff to previous 1.2 (colored) next main 1.3 (colored)
Merge from HEAD.
Revision 1.6 / (download) - annotate - [select for diffs], Mon Jun 26 18:21:39 2006 UTC (5 years, 11 months ago) by drochner
Branch: MAIN
CVS Tags: yamt-pdpolicy-base7,
abandoned-netbsd-4-base,
abandoned-netbsd-4
Changes since 1.5: +2 -3
lines
Diff to previous 1.5 (colored)
use the "i2cbus" interface attribute rather than putting a string name into the i2cbus attach args
Revision 1.5 / (download) - annotate - [select for diffs], Mon Jun 26 17:17:20 2006 UTC (5 years, 11 months ago) by drochner
Branch: MAIN
Changes since 1.4: +24 -39
lines
Diff to previous 1.4 (colored)
-make sure it is a PIIX4 before accessing counter stuff (there might be usable registers on 440mx and that ATI thing too, but that needs to be checked/tested) -make sure the I/O access to the power management stuff was enabled by the BIOS before trying to map/access stuff -most PIIX4s have a bug in the timer latch which causes jitter or worse if it is read naively - check the revision -use common code in dev/ic/acpipmtimer.c
Revision 1.2.6.3 / (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.2.6.2: +135 -34
lines
Diff to previous 1.2.6.2 (colored) to branchpoint 1.2 (colored)
sync with head.
Revision 1.4 / (download) - annotate - [select for diffs], Thu Jun 22 16:49:01 2006 UTC (5 years, 11 months ago) by jmcneill
Branch: MAIN
CVS Tags: yamt-pdpolicy-base6
Changes since 1.3: +83 -24
lines
Diff to previous 1.3 (colored)
Add timecounter support for Intel PIIX Power Management Controllers. Ok kardel@.
Revision 1.3.2.2 / (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.3.2.1: +399 -0
lines
Diff to previous 1.3.2.1 (colored) to branchpoint 1.3 (colored)
sync with head.
Revision 1.2.4.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.2: +54 -12
lines
Diff to previous 1.2 (colored) next main 1.3 (colored)
Sync with head.
Revision 1.3.2.1, Sat Jun 17 17:04:44 2006 UTC (5 years, 11 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3: +0 -399
lines
FILE REMOVED
file piixpm.c was added on branch yamt-lazymbuf on 2006-06-21 15:05:06 +0000
Revision 1.3 / (download) - annotate - [select for diffs], Sat Jun 17 17:04:44 2006 UTC (5 years, 11 months ago) by jmcneill
Branch: MAIN
CVS Tags: chap-midi-nbase,
chap-midi-base
Branch point for: yamt-lazymbuf
Changes since 1.2: +54 -12
lines
Diff to previous 1.2 (colored)
Restore the device activity PCI configuration registers on resume.
Revision 1.2.10.2 / (download) - annotate - [select for diffs], Thu Jun 1 22:36:49 2006 UTC (5 years, 11 months ago) by kardel
Branch: simonb-timecounters
CVS Tags: simonb-timcounters-final
Changes since 1.2.10.1: +357 -0
lines
Diff to previous 1.2.10.1 (colored) to branchpoint 1.2 (colored) next main 1.3 (colored)
Sync with head.
Revision 1.2.8.2 / (download) - annotate - [select for diffs], Wed May 24 15:50:28 2006 UTC (6 years ago) by tron
Branch: peter-altq
Changes since 1.2.8.1: +357 -0
lines
Diff to previous 1.2.8.1 (colored) to branchpoint 1.2 (colored) next main 1.3 (colored)
Merge 2006-05-24 NetBSD-current into the "peter-altq" branch.
Revision 1.2.6.2 / (download) - annotate - [select for diffs], Wed May 24 10:58:01 2006 UTC (6 years ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.2.6.1: +357 -0
lines
Diff to previous 1.2.6.1 (colored) to branchpoint 1.2 (colored)
sync with head.
Revision 1.2.2.2 / (download) - annotate - [select for diffs], Thu May 11 23:28:48 2006 UTC (6 years ago) by elad
Branch: elad-kernelauth
Changes since 1.2.2.1: +357 -0
lines
Diff to previous 1.2.2.1 (colored) to branchpoint 1.2 (colored) next main 1.3 (colored)
sync with head
Revision 1.2.10.1, Sun May 7 01:54:39 2006 UTC (6 years ago) by kardel
Branch: simonb-timecounters
Changes since 1.2: +0 -357
lines
FILE REMOVED
file piixpm.c was added on branch simonb-timecounters on 2006-06-01 22:36:49 +0000
Revision 1.2.8.1, Sun May 7 01:54:39 2006 UTC (6 years ago) by tron
Branch: peter-altq
Changes since 1.2: +0 -357
lines
FILE REMOVED
file piixpm.c was added on branch peter-altq on 2006-05-24 15:50:28 +0000
Revision 1.2.6.1, Sun May 7 01:54:39 2006 UTC (6 years ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.2: +0 -357
lines
FILE REMOVED
file piixpm.c was added on branch yamt-pdpolicy on 2006-05-24 10:58:01 +0000
Revision 1.2.2.1, Sun May 7 01:54:39 2006 UTC (6 years ago) by elad
Branch: elad-kernelauth
Changes since 1.2: +0 -357
lines
FILE REMOVED
file piixpm.c was added on branch elad-kernelauth on 2006-05-11 23:28:48 +0000
Revision 1.2 / (download) - annotate - [select for diffs], Sun May 7 01:54:39 2006 UTC (6 years ago) by jmcneill
Branch: MAIN
CVS Tags: yamt-pdpolicy-base5,
simonb-timecounters-base,
gdamore-uart-base,
elad-kernelauth-base
Branch point for: yamt-pdpolicy,
simonb-timecounters,
peter-altq,
gdamore-uart,
elad-kernelauth,
chap-midi
Changes since 1.1: +4 -1
lines
Diff to previous 1.1 (colored)
Add __KERNEL_RCSID.
Revision 1.1 / (download) - annotate - [select for diffs], Sun May 7 01:32:42 2006 UTC (6 years ago) by jmcneill
Branch: MAIN
Add support for the Intel PIIX4 power management controller, from OpenBSD.