Up to [cvs.netbsd.org] / src / sys / dev / pci
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.69.2.1 / (download) - annotate - [select for diffs], Mon Jun 6 09:08:09 2011 UTC (11 months, 2 weeks ago) by jruoho
Branch: jruoho-x86intr
Changes since 1.69: +59 -23
lines
Diff to previous 1.69 (colored) next main 1.70 (colored)
Sync with HEAD.
Revision 1.66.2.4 / (download) - annotate - [select for diffs], Thu Apr 21 01:41:48 2011 UTC (13 months ago) by rmind
Branch: rmind-uvmplock
Changes since 1.66.2.3: +1 -1
lines
Diff to previous 1.66.2.3 (colored) to branchpoint 1.66 (colored) next main 1.67 (colored)
sync with head
Revision 1.73 / (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.72: +3 -3
lines
Diff to previous 1.72 (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.66.2.3 / (download) - annotate - [select for diffs], Sat Mar 5 20:53:34 2011 UTC (14 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.66.2.2: +58 -24
lines
Diff to previous 1.66.2.2 (colored) to branchpoint 1.66 (colored)
sync with head
Revision 1.69.4.2 / (download) - annotate - [select for diffs], Sat Mar 5 15:10:23 2011 UTC (14 months, 3 weeks ago) by bouyer
Branch: bouyer-quota2
Changes since 1.69.4.1: +6 -2
lines
Diff to previous 1.69.4.1 (colored) to branchpoint 1.69 (colored) next main 1.70 (colored)
Sync with HEAD
Revision 1.72 / (download) - annotate - [select for diffs], Thu Feb 24 20:01:53 2011 UTC (15 months ago) by matt
Branch: MAIN
CVS Tags: bouyer-quota2-nbase
Changes since 1.71: +6 -2
lines
Diff to previous 1.71 (colored)
Add Intel Pineview support
Revision 1.69.4.1 / (download) - annotate - [select for diffs], Tue Feb 8 16:19:49 2011 UTC (15 months, 2 weeks ago) by bouyer
Branch: bouyer-quota2
Changes since 1.69: +54 -22
lines
Diff to previous 1.69 (colored)
Sync with HEAD
Revision 1.71 / (download) - annotate - [select for diffs], Sun Jan 30 23:43:08 2011 UTC (15 months, 3 weeks ago) by gsutre
Branch: MAIN
CVS Tags: bouyer-quota2-base
Changes since 1.70: +39 -16
lines
Diff to previous 1.70 (colored)
Enable 36-bit addressing for chipsets that support it. While there, factorize offset computation. Inspired from OpenBSD and Intel docs. Note: agp_i810_bind/unbind_page will now fail with EINVAL if the physical address is too large for the chipset (instead of silently truncating it). ok jmcneill@
Revision 1.70 / (download) - annotate - [select for diffs], Tue Jan 25 10:52:11 2011 UTC (16 months ago) by gsutre
Branch: MAIN
Changes since 1.69: +17 -8
lines
Diff to previous 1.69 (colored)
Typos, fix memory binding for memory type 2, and add consistency checks. From OpenBSD. ok jmcneill@
Revision 1.56.4.2 / (download) - annotate - [select for diffs], Sat Nov 20 00:18:59 2010 UTC (18 months ago) by riz
Branch: netbsd-5
CVS Tags: matt-nb5-pq3-base,
matt-nb5-pq3
Changes since 1.56.4.1: +1 -0
lines
Diff to previous 1.56.4.1 (colored) to branchpoint 1.56 (colored) next main 1.57 (colored)
Pull up following revision(s) (requested by jakllsch in ticket #1362): sys/dev/pci/pcidevs: revision 1.1026 sys/dev/pci/agp_intel.c: revision 1.35 sys/dev/pci/agp_i810.c: revision 1.67 Add Intel 82855GM Host-AGP Bridge. regen Add (non-IGP) AGP port support for Intel 82855GM. agp_intel tested with radeondrm(4). agp_i810 tested with i915drm(4).
Revision 1.69 / (download) - annotate - [select for diffs], Sat Nov 13 13:52:04 2010 UTC (18 months, 1 week ago) by uebayasi
Branch: MAIN
CVS Tags: matt-mips64-premerge-20101231,
jruoho-x86intr-base
Branch point for: jruoho-x86intr,
bouyer-quota2
Changes since 1.68: +2 -4
lines
Diff to previous 1.68 (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.65.2.2 / (download) - annotate - [select for diffs], Tue Aug 17 06:46:22 2010 UTC (21 months, 1 week ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.65.2.1: +12 -0
lines
Diff to previous 1.65.2.1 (colored) to branchpoint 1.65 (colored) next main 1.66 (colored)
Sync with HEAD.
Revision 1.52.4.5 / (download) - annotate - [select for diffs], Wed Aug 11 22:53:41 2010 UTC (21 months, 2 weeks ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.52.4.4: +15 -2
lines
Diff to previous 1.52.4.4 (colored) to branchpoint 1.52 (colored) next main 1.53 (colored)
sync with head.
Revision 1.66.2.2 / (download) - annotate - [select for diffs], Sat Jul 3 01:19:36 2010 UTC (22 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.66.2.1: +14 -2
lines
Diff to previous 1.66.2.1 (colored) to branchpoint 1.66 (colored)
sync with head
Revision 1.68 / (download) - annotate - [select for diffs], Wed Jun 16 03:35:01 2010 UTC (23 months, 1 week ago) by riz
Branch: MAIN
CVS Tags: yamt-nfs-mp-base11,
yamt-nfs-mp-base10,
uebayasi-xip-base4,
uebayasi-xip-base3,
uebayasi-xip-base2
Changes since 1.67: +14 -2
lines
Diff to previous 1.67 (colored)
Add AGP support for a number of Intel onboard devices, including
82G41, 82B43, E7221, 82965GME, and "Iron Lake". Device
types (i915, i965, G33, and G4X variants) from the Linux Intel AGP
driver, and (for 82G41) from Henry Bent in PR#42906.
There are a few more varieties that should be relatively low-hanging
fruit ("Pineview" and "Sandy Bridge"), but will require a little bit
of rejiggering of the "chiptype".
OK mrg@
Revision 1.66.2.1 / (download) - annotate - [select for diffs], Sun May 30 05:17:31 2010 UTC (23 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.66: +3 -2
lines
Diff to previous 1.66 (colored)
sync with head
Revision 1.65.2.1 / (download) - annotate - [select for diffs], Fri Apr 30 14:43:29 2010 UTC (2 years ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.65: +5 -4
lines
Diff to previous 1.65 (colored)
Sync with HEAD.
Revision 1.56.8.1 / (download) - annotate - [select for diffs], Wed Apr 21 00:27:39 2010 UTC (2 years, 1 month ago) by matt
Branch: matt-nb5-mips64
CVS Tags: matt-nb5-mips64-premerge-20101231,
matt-nb5-mips64-k15
Changes since 1.56: +168 -56
lines
Diff to previous 1.56 (colored) next main 1.57 (colored)
sync to netbsd-5
Revision 1.67 / (download) - annotate - [select for diffs], Sun Apr 4 14:40:05 2010 UTC (2 years, 1 month ago) by jakllsch
Branch: MAIN
CVS Tags: uebayasi-xip-base1
Changes since 1.66: +3 -2
lines
Diff to previous 1.66 (colored)
Add (non-IGP) AGP port support for Intel 82855GM. agp_intel tested with radeondrm(4). agp_i810 tested with i915drm(4).
Revision 1.52.4.4 / (download) - annotate - [select for diffs], Thu Mar 11 15:03:42 2010 UTC (2 years, 2 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.52.4.3: +4 -4
lines
Diff to previous 1.52.4.3 (colored) to branchpoint 1.52 (colored)
sync with head
Revision 1.66 / (download) - annotate - [select for diffs], Wed Feb 24 22:37:59 2010 UTC (2 years, 3 months ago) by dyoung
Branch: MAIN
CVS Tags: yamt-nfs-mp-base9
Branch point for: rmind-uvmplock
Changes since 1.65: +4 -4
lines
Diff to previous 1.65 (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.65 / (download) - annotate - [select for diffs], Fri Jan 8 19:56:51 2010 UTC (2 years, 4 months ago) by dyoung
Branch: MAIN
CVS Tags: uebayasi-xip-base
Branch point for: uebayasi-xip
Changes since 1.64: +4 -4
lines
Diff to previous 1.64 (colored)
Expand PMF_FN_* macros.
Revision 1.52.4.3 / (download) - annotate - [select for diffs], Sat May 16 10:41:32 2009 UTC (3 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.52.4.2: +3 -12
lines
Diff to previous 1.52.4.2 (colored) to branchpoint 1.52 (colored)
sync with head
Revision 1.62.2.1 / (download) - annotate - [select for diffs], Wed May 13 17:20:23 2009 UTC (3 years ago) by jym
Branch: jym-xensuspend
Changes since 1.62: +4 -12
lines
Diff to previous 1.62 (colored) next main 1.63 (colored)
Sync with HEAD. Commit is split, to avoid a "too many arguments" protocol error.
Revision 1.56.4.1 / (download) - annotate - [select for diffs], Tue May 5 18:17:57 2009 UTC (3 years ago) by bouyer
Branch: netbsd-5
CVS Tags: 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
Changes since 1.56: +168 -56
lines
Diff to previous 1.56 (colored)
Pull up following revision(s) (requested by snj in ticket #737): sys/arch/x86/pci/pchb.c: revisions 1.15 - 1.17 sys/dev/pci/agp.c: revisions 1.63 - 1.65 sys/dev/pci/agp_i810.c: revisions 1.57 - 1.64 sys/dev/pci/pcidevs: revisions 1.965, 1.967 via patch sys/dev/pci/agpreg.h: revision 1.20 Add AGP support for Intel G35, G45, and Q45.
Revision 1.64 / (download) - annotate - [select for diffs], Mon May 4 11:05:45 2009 UTC (3 years ago) by markd
Branch: MAIN
CVS Tags: yamt-nfs-mp-base8,
yamt-nfs-mp-base7,
yamt-nfs-mp-base6,
yamt-nfs-mp-base5,
yamt-nfs-mp-base4,
matt-premerge-20091211,
jymxensuspend-base,
jym-xensuspend-nbase,
jym-xensuspend-base
Changes since 1.63: +3 -12
lines
Diff to previous 1.63 (colored)
Treat G4X like I915 and G33 for MSAC. Fixes aperture setting. Has been working successfully for me and snj for the last few months.
Revision 1.52.4.2 / (download) - annotate - [select for diffs], Mon May 4 08:12:54 2009 UTC (3 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.52.4.1: +194 -69
lines
Diff to previous 1.52.4.1 (colored) to branchpoint 1.52 (colored)
sync with head.
Revision 1.56.2.2 / (download) - annotate - [select for diffs], Tue Mar 3 18:31:07 2009 UTC (3 years, 2 months ago) by skrll
Branch: nick-hppapmap
Changes since 1.56.2.1: +10 -4
lines
Diff to previous 1.56.2.1 (colored) to branchpoint 1.56 (colored) next main 1.57 (colored)
Sync with HEAD.
Revision 1.63 / (download) - annotate - [select for diffs], Thu Feb 19 05:58:37 2009 UTC (3 years, 3 months ago) by markd
Branch: MAIN
CVS Tags: yamt-nfs-mp-base3,
nick-hppapmap-base4,
nick-hppapmap-base3,
nick-hppapmap-base2,
nick-hppapmap-base
Changes since 1.62: +3 -2
lines
Diff to previous 1.62 (colored)
Add missing break.
Revision 1.62 / (download) - annotate - [select for diffs], Tue Jan 27 08:39:34 2009 UTC (3 years, 3 months ago) by markd
Branch: MAIN
Branch point for: jym-xensuspend
Changes since 1.61: +9 -4
lines
Diff to previous 1.61 (colored)
Add some more Intel G4X class chipsets. Also fix gtt_size for G4X chipsets. Partially from FreeBSD. There is still an issue here as G4X chipsets report an aperture size of 0.
Revision 1.56.2.1 / (download) - annotate - [select for diffs], Mon Jan 19 13:18:24 2009 UTC (3 years, 4 months ago) by skrll
Branch: nick-hppapmap
Changes since 1.56: +171 -56
lines
Diff to previous 1.56 (colored)
Sync with HEAD.
Revision 1.48.6.5 / (download) - annotate - [select for diffs], Sat Jan 17 13:28:58 2009 UTC (3 years, 4 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.48.6.4: +169 -54
lines
Diff to previous 1.48.6.4 (colored) to branchpoint 1.48 (colored) next main 1.49 (colored)
Sync with HEAD.
Revision 1.61 / (download) - annotate - [select for diffs], Sat Dec 13 20:12:13 2008 UTC (3 years, 5 months ago) by sketch
Branch: MAIN
CVS Tags: mjf-devfs2-base
Changes since 1.60: +4 -4
lines
Diff to previous 1.60 (colored)
Fix PGTBL sizes.
Revision 1.54.4.2 / (download) - annotate - [select for diffs], Sat Dec 13 01:14:34 2008 UTC (3 years, 5 months ago) by haad
Branch: haad-dm
Changes since 1.54.4.1: +171 -56
lines
Diff to previous 1.54.4.1 (colored) to branchpoint 1.54 (colored) next main 1.55 (colored)
Update haad-dm branch to haad-dm-base2.
Revision 1.60 / (download) - annotate - [select for diffs], Wed Dec 10 15:48:49 2008 UTC (3 years, 5 months ago) by christos
Branch: MAIN
CVS Tags: haad-nbase2,
haad-dm-base2,
haad-dm-base
Changes since 1.59: +3 -3
lines
Diff to previous 1.59 (colored)
fix PGTBL size detection on the intel 965GM. From Anon Ymous.
Revision 1.59 / (download) - annotate - [select for diffs], Thu Dec 4 19:07:35 2008 UTC (3 years, 5 months ago) by alc
Branch: MAIN
CVS Tags: ad-audiomp2-base,
ad-audiomp2
Changes since 1.58: +5 -3
lines
Diff to previous 1.58 (colored)
Fix regression introducted by the previous commit. i915 and G33 Intel chipset family need special handling when writing an entry to the GTT. reported by: <tnn> [0] tested by: <tnn> [0]: http://mail-index.netbsd.org/tech-x11/2008/12/03/msg000276.html
Revision 1.58 / (download) - annotate - [select for diffs], Sat Nov 29 23:48:12 2008 UTC (3 years, 5 months ago) by christos
Branch: MAIN
Changes since 1.57: +165 -56
lines
Diff to previous 1.57 (colored)
Add support for the Intel G45 AGP. From Arnaud Lacombe
Revision 1.57 / (download) - annotate - [select for diffs], Sat Nov 8 17:26:28 2008 UTC (3 years, 6 months ago) by christos
Branch: MAIN
Changes since 1.56: +6 -2
lines
Diff to previous 1.56 (colored)
Support for Intel G35 as found on Asus P5E-VM HDMI motherboard from Milos Negovanovic
Revision 1.54.4.1 / (download) - annotate - [select for diffs], Sun Oct 19 22:16:37 2008 UTC (3 years, 7 months ago) by haad
Branch: haad-dm
Changes since 1.54: +8 -4
lines
Diff to previous 1.54 (colored)
Sync with HEAD.
Revision 1.48.6.4 / (download) - annotate - [select for diffs], Sun Sep 28 10:40:25 2008 UTC (3 years, 7 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.48.6.3: +6 -2
lines
Diff to previous 1.48.6.3 (colored) to branchpoint 1.48 (colored)
Sync with HEAD.
Revision 1.52.6.2 / (download) - annotate - [select for diffs], Thu Sep 18 04:35:05 2008 UTC (3 years, 8 months ago) by wrstuden
Branch: wrstuden-revivesa
Changes since 1.52.6.1: +8 -4
lines
Diff to previous 1.52.6.1 (colored) to branchpoint 1.52 (colored) next main 1.53 (colored)
Sync with wrstuden-revivesa-base-2.
Revision 1.56 / (download) - annotate - [select for diffs], Fri Aug 22 18:05:44 2008 UTC (3 years, 9 months ago) by tnn
Branch: MAIN
CVS Tags: wrstuden-revivesa-base-4,
wrstuden-revivesa-base-3,
wrstuden-revivesa-base-2,
netbsd-5-base,
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,
matt-nb5-mips64-u2-k2-k4-k7-k8-k9,
matt-nb5-mips64-u1-k1-k5,
matt-nb5-mips64-premerge-20091211,
matt-nb4-mips64-k7-u2a-k9b,
matt-mips64-base2,
haad-dm-base1
Branch point for: nick-hppapmap,
netbsd-5,
matt-nb5-mips64
Changes since 1.55: +5 -3
lines
Diff to previous 1.55 (colored)
AGP support for Intel 945GME chipset, found on Acer Aspire One.
Revision 1.55 / (download) - annotate - [select for diffs], Tue Aug 19 09:59:54 2008 UTC (3 years, 9 months ago) by matthias
Branch: MAIN
Changes since 1.54: +5 -3
lines
Diff to previous 1.54 (colored)
Add agp support for Intel 946gz.
Revision 1.48.6.3 / (download) - annotate - [select for diffs], Sun Jun 29 09:33:08 2008 UTC (3 years, 10 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.48.6.2: +11 -11
lines
Diff to previous 1.48.6.2 (colored) to branchpoint 1.48 (colored)
Sync with HEAD.
Revision 1.52.6.1 / (download) - annotate - [select for diffs], Mon Jun 23 04:31:10 2008 UTC (3 years, 11 months ago) by wrstuden
Branch: wrstuden-revivesa
Changes since 1.52: +15 -15
lines
Diff to previous 1.52 (colored)
Sync w/ -current. 34 merge conflicts to follow.
Revision 1.52.2.2 / (download) - annotate - [select for diffs], Tue Jun 17 09:14:40 2008 UTC (3 years, 11 months ago) by yamt
Branch: yamt-pf42
Changes since 1.52.2.1: +13 -13
lines
Diff to previous 1.52.2.1 (colored) to branchpoint 1.52 (colored) next main 1.53 (colored)
sync with head.
Revision 1.54 / (download) - annotate - [select for diffs], Mon Jun 9 06:49:54 2008 UTC (3 years, 11 months ago) by freza
Branch: MAIN
CVS Tags: yamt-pf42-base4,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base,
simonb-wapbl-nbase,
simonb-wapbl-base,
simonb-wapbl
Branch point for: haad-dm
Changes since 1.53: +13 -13
lines
Diff to previous 1.53 (colored)
o Split device_t/softc for agp(4). o agp_ali.c: remove unused 'agp' member from agp_ali_softc. o drm: agp_find_device() returns 'void *', not a device_t. o Use device_t, cfdata_t instead of struct pointers. o Don't cast void pointers in assignments.
Revision 1.48.6.2 / (download) - annotate - [select for diffs], Mon Jun 2 13:23:36 2008 UTC (3 years, 11 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.48.6.1: +15 -15
lines
Diff to previous 1.48.6.1 (colored) to branchpoint 1.48 (colored)
Sync with HEAD.
Revision 1.52.2.1 / (download) - annotate - [select for diffs], Sun May 18 12:34:18 2008 UTC (4 years ago) by yamt
Branch: yamt-pf42
Changes since 1.52: +4 -4
lines
Diff to previous 1.52 (colored)
sync with head.
Revision 1.52.4.1 / (download) - annotate - [select for diffs], Fri May 16 02:24:42 2008 UTC (4 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.52: +4 -4
lines
Diff to previous 1.52 (colored)
sync with head.
Revision 1.53 / (download) - annotate - [select for diffs], Sat May 10 14:08:15 2008 UTC (4 years ago) by jmcneill
Branch: MAIN
CVS Tags: yamt-pf42-base3,
yamt-pf42-base2,
yamt-nfs-mp-base2,
hpcarm-cleanup-nbase
Changes since 1.52: +4 -4
lines
Diff to previous 1.52 (colored)
Don't use aprint_error in the success path.
Revision 1.52 / (download) - annotate - [select for diffs], Thu Apr 10 19:13:36 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,
wrstuden-revivesa
Changes since 1.51: +15 -15
lines
Diff to previous 1.51 (colored)
use aprint_*_dev and device_xname
Revision 1.48.6.1 / (download) - annotate - [select for diffs], Thu Apr 3 12:42:48 2008 UTC (4 years, 1 month ago) by mjf
Branch: mjf-devfs2
Changes since 1.48: +33 -19
lines
Diff to previous 1.48 (colored)
Sync with HEAD.
Revision 1.48.2.1 / (download) - annotate - [select for diffs], Mon Mar 24 07:15:46 2008 UTC (4 years, 2 months ago) by keiichi
Branch: keiichi-mipv6
Changes since 1.48: +33 -19
lines
Diff to previous 1.48 (colored) next main 1.49 (colored)
sync with head.
Revision 1.42.2.3 / (download) - annotate - [select for diffs], Sun Mar 23 02:04:44 2008 UTC (4 years, 2 months ago) by matt
Branch: matt-armv6
Changes since 1.42.2.2: +33 -19
lines
Diff to previous 1.42.2.2 (colored) to branchpoint 1.42 (colored) next main 1.43 (colored)
sync with HEAD
Revision 1.26.2.9 / (download) - annotate - [select for diffs], Mon Mar 17 09:15:10 2008 UTC (4 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.26.2.8: +4 -4
lines
Diff to previous 1.26.2.8 (colored) to branchpoint 1.26 (colored) next main 1.27 (colored)
sync with head.
Revision 1.51 / (download) - annotate - [select for diffs], Fri Feb 29 06:13:39 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.50: +4 -4
lines
Diff to previous 1.50 (colored)
Use PMF_FN_ARGS, PMF_FN_PROTO.
Revision 1.26.2.8 / (download) - annotate - [select for diffs], Wed Feb 27 08:36:34 2008 UTC (4 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.26.2.7: +31 -17
lines
Diff to previous 1.26.2.7 (colored) to branchpoint 1.26 (colored)
sync with head.
Revision 1.50 / (download) - annotate - [select for diffs], Tue Feb 26 20:44:15 2008 UTC (4 years, 2 months ago) by drochner
Branch: MAIN
CVS Tags: hpcarm-cleanup-base
Changes since 1.49: +4 -8
lines
Diff to previous 1.49 (colored)
-Now that the address space conflict is solved, we can re-enable that old workaround for some VESA BIOS which overwrites PGTBL_CTL. Pointed out by Yorick Hardy. -make two variables introduced in the last commit static
Revision 1.49 / (download) - annotate - [select for diffs], Fri Feb 22 19:47:06 2008 UTC (4 years, 3 months ago) by drochner
Branch: MAIN
Changes since 1.48: +31 -13
lines
Diff to previous 1.48 (colored)
Add a horrible hack to allow the DRM driver to get at the bus_space_handle allocated by the AGP driver in the case of Intel chipset graphics. This is different from the patch by Yorick Hardy circulated a while ago in that it doesn't change the semantics of reference counting within the (3rd-party) DRM code -- it just bypasses it. Needless to say that it is uglier, but it eases future updates to the DRM code because the change there is just 2 LOC. Imo, a cleaner solution for all that would be to attach "agp" to "vga" in the intel chipset graphics case, which better reflects how the hardware is structured. This would still need a hack to the DRM code, but it would be confined to childs of the "vga" device, without need for global variables. Since there is a variety of intel chipsets with AGP and/or builtin graphics options, this would need a considerable testing effort.
Revision 1.44.2.4 / (download) - annotate - [select for diffs], Mon Feb 18 21:05:55 2008 UTC (4 years, 3 months ago) by mjf
Branch: mjf-devfs
Changes since 1.44.2.3: +2 -3
lines
Diff to previous 1.44.2.3 (colored) to branchpoint 1.44 (colored) next main 1.45 (colored)
Sync with HEAD.
Revision 1.26.2.7 / (download) - annotate - [select for diffs], Mon Jan 21 09:43:33 2008 UTC (4 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.26.2.6: +15 -21
lines
Diff to previous 1.26.2.6 (colored) to branchpoint 1.26 (colored)
sync with head
Revision 1.42.2.2 / (download) - annotate - [select for diffs], Wed Jan 9 01:53:31 2008 UTC (4 years, 4 months ago) by matt
Branch: matt-armv6
Changes since 1.42.2.1: +85 -29
lines
Diff to previous 1.42.2.1 (colored) to branchpoint 1.42 (colored)
sync with HEAD
Revision 1.47.2.1 / (download) - annotate - [select for diffs], Tue Jan 8 22:11:09 2008 UTC (4 years, 4 months ago) by bouyer
Branch: bouyer-xeni386
CVS Tags: bouyer-xeni386-merge1
Changes since 1.47: +2 -3
lines
Diff to previous 1.47 (colored) next main 1.48 (colored)
Sync with HEAD
Revision 1.48 / (download) - annotate - [select for diffs], Fri Jan 4 21:18:00 2008 UTC (4 years, 4 months ago) by ad
Branch: MAIN
CVS Tags: nick-net80211-sync-base,
nick-net80211-sync,
mjf-devfs-base,
matt-armv6-base,
bouyer-xeni386-nbase,
bouyer-xeni386-base
Branch point for: mjf-devfs2,
keiichi-mipv6
Changes since 1.47: +2 -3
lines
Diff to previous 1.47 (colored)
Start detangling lock.h from intr.h. This is likely to cause short term breakage, but the mess of dependencies has been regularly breaking the build recently anyhow.
Revision 1.44.2.3 / (download) - annotate - [select for diffs], Thu Dec 27 00:45:13 2007 UTC (4 years, 5 months ago) by mjf
Branch: mjf-devfs
Changes since 1.44.2.2: +15 -20
lines
Diff to previous 1.44.2.2 (colored) to branchpoint 1.44 (colored)
Sync with HEAD.
Revision 1.46.2.1 / (download) - annotate - [select for diffs], Wed Dec 26 19:46:39 2007 UTC (4 years, 5 months ago) by ad
Branch: vmlocking2
Changes since 1.46: +15 -20
lines
Diff to previous 1.46 (colored) next main 1.47 (colored)
Sync with head.
Revision 1.46.4.1 / (download) - annotate - [select for diffs], Tue Dec 11 15:31:43 2007 UTC (4 years, 5 months ago) by yamt
Branch: yamt-kmem
Changes since 1.46: +15 -20
lines
Diff to previous 1.46 (colored) next main 1.47 (colored)
sync with head.
Revision 1.47 / (download) - annotate - [select for diffs], Sun Dec 9 20:28:05 2007 UTC (4 years, 5 months ago) by jmcneill
Branch: MAIN
CVS Tags: yamt-kmem-base3,
yamt-kmem-base2,
vmlocking2-base3,
cube-autoconf-base,
cube-autoconf
Branch point for: bouyer-xeni386
Changes since 1.46: +15 -20
lines
Diff to previous 1.46 (colored)
Merge jmcneill-pm branch.
Revision 1.44.2.2 / (download) - annotate - [select for diffs], Sat Dec 8 18:19:40 2007 UTC (4 years, 5 months ago) by mjf
Branch: mjf-devfs
Changes since 1.44.2.1: +16 -2
lines
Diff to previous 1.44.2.1 (colored) to branchpoint 1.44 (colored)
Sync with HEAD.
Revision 1.41.6.13 / (download) - annotate - [select for diffs], Sat Dec 8 16:21:22 2007 UTC (4 years, 5 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.41.6.12: +3 -3
lines
Diff to previous 1.41.6.12 (colored) to branchpoint 1.41 (colored) next main 1.42 (colored)
Rename pnp(9) -> pmf(9), as requested by many.
Revision 1.26.2.6 / (download) - annotate - [select for diffs], Fri Dec 7 17:30:22 2007 UTC (4 years, 5 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.26.2.5: +16 -2
lines
Diff to previous 1.26.2.5 (colored) to branchpoint 1.26 (colored)
sync with head
Revision 1.41.6.12 / (download) - annotate - [select for diffs], Tue Nov 27 19:37:08 2007 UTC (4 years, 5 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.41.6.11: +16 -2
lines
Diff to previous 1.41.6.11 (colored) to branchpoint 1.41 (colored)
Sync with HEAD. amd64 Xen support needs testing.
Revision 1.46 / (download) - annotate - [select for diffs], Sat Nov 24 02:19:37 2007 UTC (4 years, 6 months ago) by markd
Branch: MAIN
CVS Tags: yamt-kmem-base,
vmlocking2-base2,
vmlocking2-base1,
vmlocking-nbase,
reinoud-bufcleanup-nbase,
reinoud-bufcleanup-base,
jmcneill-pm-base
Branch point for: yamt-kmem,
vmlocking2
Changes since 1.45: +16 -2
lines
Diff to previous 1.45 (colored)
Add agp support for Intel Q35/G33/Q33.
Revision 1.44.2.1 / (download) - annotate - [select for diffs], Mon Nov 19 00:48:05 2007 UTC (4 years, 6 months ago) by mjf
Branch: mjf-devfs
Changes since 1.44: +58 -10
lines
Diff to previous 1.44 (colored)
Sync with HEAD.
Revision 1.26.2.5 / (download) - annotate - [select for diffs], Thu Nov 15 11:44:18 2007 UTC (4 years, 6 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.26.2.4: +62 -10
lines
Diff to previous 1.26.2.4 (colored) to branchpoint 1.26 (colored)
sync with head.
Revision 1.41.6.11 / (download) - annotate - [select for diffs], Wed Nov 14 19:04:28 2007 UTC (4 years, 6 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.41.6.10: +4 -2
lines
Diff to previous 1.41.6.10 (colored) to branchpoint 1.41 (colored)
Sync with HEAD.
Revision 1.42.6.2 / (download) - annotate - [select for diffs], Tue Nov 13 16:01:12 2007 UTC (4 years, 6 months ago) by bouyer
Branch: bouyer-xenamd64
Changes since 1.42.6.1: +60 -8
lines
Diff to previous 1.42.6.1 (colored) to branchpoint 1.42 (colored) next main 1.43 (colored)
Sync with HEAD
Revision 1.45 / (download) - annotate - [select for diffs], Mon Nov 12 20:00:17 2007 UTC (4 years, 6 months ago) by joerg
Branch: MAIN
CVS Tags: bouyer-xenamd64-base2,
bouyer-xenamd64-base
Changes since 1.44: +58 -10
lines
Diff to previous 1.44 (colored)
Merge bunch of AGP changes from jmcneill-pm.
Revision 1.42.2.1 / (download) - annotate - [select for diffs], Tue Nov 6 23:28:35 2007 UTC (4 years, 6 months ago) by matt
Branch: matt-armv6
CVS Tags: matt-armv6-prevmlocking
Changes since 1.42: +7 -3
lines
Diff to previous 1.42 (colored)
sync with HEAD
Revision 1.41.6.10 / (download) - annotate - [select for diffs], Tue Nov 6 14:27:20 2007 UTC (4 years, 6 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.41.6.9: +8 -11
lines
Diff to previous 1.41.6.9 (colored) to branchpoint 1.41 (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.41.6.9 / (download) - annotate - [select for diffs], Wed Oct 31 23:14:05 2007 UTC (4 years, 6 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.41.6.8: +6 -2
lines
Diff to previous 1.41.6.8 (colored) to branchpoint 1.41 (colored)
Sync with HEAD.
Revision 1.44 / (download) - annotate - [select for diffs], Tue Oct 30 12:22:54 2007 UTC (4 years, 6 months ago) by jnemeth
Branch: MAIN
CVS Tags: jmcneill-base
Branch point for: mjf-devfs
Changes since 1.43: +6 -2
lines
Diff to previous 1.43 (colored)
PR/37201 - Yasushi Oshima -- Intel 82965G chipset support
Revision 1.26.2.4 / (download) - annotate - [select for diffs], Sat Oct 27 11:32:31 2007 UTC (4 years, 6 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.26.2.3: +3 -3
lines
Diff to previous 1.26.2.3 (colored) to branchpoint 1.26 (colored)
sync with head.
Revision 1.41.6.8 / (download) - annotate - [select for diffs], Fri Oct 26 15:45:51 2007 UTC (4 years, 7 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.41.6.7: +3 -3
lines
Diff to previous 1.41.6.7 (colored) to branchpoint 1.41 (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.42.6.1 / (download) - annotate - [select for diffs], Thu Oct 25 22:38:47 2007 UTC (4 years, 7 months ago) by bouyer
Branch: bouyer-xenamd64
Changes since 1.42: +3 -3
lines
Diff to previous 1.42 (colored)
Sync with HEAD.
Revision 1.36.2.4 / (download) - annotate - [select for diffs], Tue Oct 23 20:08:43 2007 UTC (4 years, 7 months ago) by ad
Branch: vmlocking
Changes since 1.36.2.3: +3 -3
lines
Diff to previous 1.36.2.3 (colored) next main 1.37 (colored)
Sync with head.
Revision 1.43 / (download) - annotate - [select for diffs], Fri Oct 19 12:00:39 2007 UTC (4 years, 7 months ago) by ad
Branch: MAIN
Changes since 1.42: +3 -3
lines
Diff to previous 1.42 (colored)
machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h
Revision 1.41.6.7 / (download) - annotate - [select for diffs], Mon Oct 1 05:37:31 2007 UTC (4 years, 7 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.41.6.6: +15 -37
lines
Diff to previous 1.41.6.6 (colored) to branchpoint 1.41 (colored)
Extend device API by device_power_private and device_power_set_private. The latter is a temporary mean until the pnp_register API itself is overhault. This functions allow a generic power handler to store its state independent of the driver. Use this and revamp the PCI power handling. Pretty much all PCI devices had power handlers that did the same thing, generalize this in pci_generic_power_register/deregister and the handler. This interface offers callbacks for the drivers to save and restore state on transistions. After a long discussion with jmcneill@ it was considered to be powerful enough until evidence is shown that devices can handle D1/D2 with less code and higher speed than without the full save/restore. The generic code is carefully written to handle device without PCI-PM support and ensure that the correct registers are written to when D3 loses all state. Reimplement the generic PCI network device handling on top of PCI generic power handling. Introduce pci_disable_retry as used and implemented locally at least by ath(4) and iwi(4). Use it in this drivers to restore behaviour from before the introduction of generic PCI network handling. Convert all PCI drivers that were using pnp_register to the new framework. The only exception is vga(4) as it is commonly used as console device. Add a note therein that this should be fixed later.
Revision 1.41.6.6 / (download) - annotate - [select for diffs], Thu Sep 6 22:12:53 2007 UTC (4 years, 8 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.41.6.5: +39 -8
lines
Diff to previous 1.41.6.5 (colored) to branchpoint 1.41 (colored)
Add Intel G33 AGP support, resolves PR36902, PR36903, PR36904, PR36906, PR36907, PR36908, PR36909, PR36910, PR36911, PR36912, PR36913, and PR36925.
Revision 1.26.2.3 / (download) - annotate - [select for diffs], Mon Sep 3 14:36:18 2007 UTC (4 years, 8 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.26.2.2: +123 -66
lines
Diff to previous 1.26.2.2 (colored) to branchpoint 1.26 (colored)
sync with head.
Revision 1.41.6.5 / (download) - annotate - [select for diffs], Mon Aug 27 03:15:52 2007 UTC (4 years, 9 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.41.6.4: +7 -3
lines
Diff to previous 1.41.6.4 (colored) to branchpoint 1.41 (colored)
Add 965PM support.
Revision 1.36.2.3 / (download) - annotate - [select for diffs], Mon Aug 20 18:37:04 2007 UTC (4 years, 9 months ago) by ad
Branch: vmlocking
Changes since 1.36.2.2: +102 -72
lines
Diff to previous 1.36.2.2 (colored)
Sync with HEAD.
Revision 1.41.6.4 / (download) - annotate - [select for diffs], Thu Aug 16 11:03:07 2007 UTC (4 years, 9 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.41.6.3: +102 -72
lines
Diff to previous 1.41.6.3 (colored) to branchpoint 1.41 (colored)
Sync with HEAD.
Revision 1.41.2.1 / (download) - annotate - [select for diffs], Wed Aug 15 13:48:27 2007 UTC (4 years, 9 months ago) by skrll
Branch: nick-csl-alignment
Changes since 1.41: +102 -72
lines
Diff to previous 1.41 (colored) next main 1.42 (colored)
Sync with HEAD.
Revision 1.42 / (download) - annotate - [select for diffs], Wed Aug 15 02:26:13 2007 UTC (4 years, 9 months ago) by markd
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.41: +102 -72
lines
Diff to previous 1.41 (colored)
Add agp support for i965Q. Based on a patch for FreeBSD by Eric Anholt. OKed on tech-kern some months ago.
Revision 1.41.6.3 / (download) - annotate - [select for diffs], Tue Aug 7 02:11:27 2007 UTC (4 years, 9 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.41.6.2: +58 -4
lines
Diff to previous 1.41.6.2 (colored) to branchpoint 1.41 (colored)
Add i810 power handler.
Revision 1.41.6.2 / (download) - annotate - [select for diffs], Mon Aug 6 19:49:35 2007 UTC (4 years, 9 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.41.6.1: +2 -68
lines
Diff to previous 1.41.6.1 (colored) to branchpoint 1.41 (colored)
Move agp_i810_power to agp, since it does nothing specific to the i810 hardware. Allow agp front-ends to override the default power handler if specific configuration needs to take place, and expose agp_power via agpvar.h so the front-ends can call back to it to do generic initialization.
Revision 1.41.6.1 / (download) - annotate - [select for diffs], Fri Aug 3 22:17:18 2007 UTC (4 years, 9 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.41: +60 -17
lines
Diff to previous 1.41 (colored)
Pull in power management changes from private branch.
Revision 1.36.2.2 / (download) - annotate - [select for diffs], Sun Jul 15 13:21:20 2007 UTC (4 years, 10 months ago) by ad
Branch: vmlocking
Changes since 1.36.2.1: +14 -2
lines
Diff to previous 1.36.2.1 (colored)
Sync with head.
Revision 1.36.4.1 / (download) - annotate - [select for diffs], Wed Jul 11 20:06:56 2007 UTC (4 years, 10 months ago) by mjf
Branch: mjf-ufs-trans
Changes since 1.36: +31 -4
lines
Diff to previous 1.36 (colored) next main 1.37 (colored)
Sync with head.
Revision 1.41 / (download) - annotate - [select for diffs], Wed Jun 20 08:17:12 2007 UTC (4 years, 11 months ago) by sborrill
Branch: MAIN
CVS Tags: nick-csl-alignment-base,
mjf-ufs-trans-base,
matt-mips64-base,
matt-mips64,
hpcarm-cleanup
Branch point for: nick-csl-alignment,
jmcneill-pm
Changes since 1.40: +14 -2
lines
Diff to previous 1.40 (colored)
Support more i915 stolen memory configurations (previous limit was 8MB, some configurations steal up to 64MB). OK christos@
Revision 1.35.4.3 / (download) - annotate - [select for diffs], Sun Apr 15 16:03:23 2007 UTC (5 years, 1 month ago) by yamt
Branch: yamt-idlelwp
Changes since 1.35.4.2: +4 -2
lines
Diff to previous 1.35.4.2 (colored) to branchpoint 1.35 (colored) next main 1.36 (colored)
sync with head.
Revision 1.36.2.1 / (download) - annotate - [select for diffs], Tue Apr 10 13:24:23 2007 UTC (5 years, 1 month ago) by ad
Branch: vmlocking
Changes since 1.36: +19 -4
lines
Diff to previous 1.36 (colored)
Sync with head.
Revision 1.36.6.1 / (download) - annotate - [select for diffs], Thu Mar 29 19:27:46 2007 UTC (5 years, 1 month ago) by reinoud
Branch: reinoud-bufcleanup
Changes since 1.36: +19 -4
lines
Diff to previous 1.36 (colored) next main 1.37 (colored)
Pullup to -current
Revision 1.40 / (download) - annotate - [select for diffs], Sat Mar 24 23:02:24 2007 UTC (5 years, 2 months ago) by christos
Branch: MAIN
CVS Tags: yamt-idlelwp-base8,
thorpej-atomic-base,
thorpej-atomic
Changes since 1.39: +4 -2
lines
Diff to previous 1.39 (colored)
comment out unmap; breaks X.
Revision 1.35.4.2 / (download) - annotate - [select for diffs], Sat Mar 24 14:55:30 2007 UTC (5 years, 2 months ago) by yamt
Branch: yamt-idlelwp
Changes since 1.35.4.1: +17 -4
lines
Diff to previous 1.35.4.1 (colored) to branchpoint 1.35 (colored)
sync with head.
Revision 1.39 / (download) - annotate - [select for diffs], Fri Mar 23 16:39:07 2007 UTC (5 years, 2 months ago) by drochner
Branch: MAIN
Changes since 1.38: +6 -10
lines
Diff to previous 1.38 (colored)
simplify previous: no need to call pci_mapreg_info()
Revision 1.38 / (download) - annotate - [select for diffs], Fri Mar 23 16:27:59 2007 UTC (5 years, 2 months ago) by jmcneill
Branch: MAIN
Changes since 1.37: +5 -2
lines
Diff to previous 1.37 (colored)
Initialize mmadrsize in the non-i910 case, otherwise we end up passing an uninitialized variable to bus_space_unmap.
Revision 1.37 / (download) - annotate - [select for diffs], Tue Mar 20 18:05:31 2007 UTC (5 years, 2 months ago) by drochner
Branch: MAIN
Changes since 1.36: +16 -2
lines
Diff to previous 1.36 (colored)
Import DRM drivers, brought into shape by Yorick Hardy, posted to tech-x11. Minor modifications by me: -use an mi device major number -(coarsly) divided into pci card specific and less specific parts, moved the latter to dev/drm -renamed autoconf attributes to reflect this Todo: -adapt all card frontends but i915 to drm include file location -review the mtrr change -make the change to agp_i810.c coexist with the fix for buggy VESA BIOSes which is commented out temporarily -RCS IDs etc style stuff -LKM support (rescan support for vga) -test
Revision 1.35.4.1 / (download) - annotate - [select for diffs], Mon Mar 12 05:55:10 2007 UTC (5 years, 2 months ago) by rmind
Branch: yamt-idlelwp
Changes since 1.35: +4 -4
lines
Diff to previous 1.35 (colored)
Sync with HEAD.
Revision 1.36 / (download) - annotate - [select for diffs], Sun Mar 4 06:02:15 2007 UTC (5 years, 2 months ago) by christos
Branch: MAIN
Branch point for: vmlocking,
reinoud-bufcleanup,
mjf-ufs-trans
Changes since 1.35: +4 -4
lines
Diff to previous 1.35 (colored)
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
Revision 1.26.2.2 / (download) - annotate - [select for diffs], Sat Dec 30 20:48:41 2006 UTC (5 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.26.2.1: +16 -6
lines
Diff to previous 1.26.2.1 (colored) to branchpoint 1.26 (colored)
sync with head.
Revision 1.32.6.2 / (download) - annotate - [select for diffs], Sun Dec 10 07:17:40 2006 UTC (5 years, 5 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.32.6.1: +4 -4
lines
Diff to previous 1.32.6.1 (colored) to branchpoint 1.32 (colored) next main 1.33 (colored)
sync with head.
Revision 1.32.4.1 / (download) - annotate - [select for diffs], Sat Nov 18 21:34:28 2006 UTC (5 years, 6 months ago) by ad
Branch: newlock2
Changes since 1.32: +4 -3
lines
Diff to previous 1.32 (colored) next main 1.33 (colored)
Sync with head.
Revision 1.35 / (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,
post-newlock2-merge,
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,
ad-audiomp-base,
ad-audiomp
Branch point for: yamt-idlelwp
Changes since 1.34: +4 -4
lines
Diff to previous 1.34 (colored)
__unused removal on arguments; approved by core.
Revision 1.32.6.1 / (download) - annotate - [select for diffs], Sun Oct 22 06:06:15 2006 UTC (5 years, 7 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.32: +6 -5
lines
Diff to previous 1.32 (colored)
sync with head
Revision 1.34 / (download) - annotate - [select for diffs], Thu Oct 12 01:31:27 2006 UTC (5 years, 7 months ago) by christos
Branch: MAIN
CVS Tags: yamt-splraiseipl-base2
Changes since 1.33: +4 -4
lines
Diff to previous 1.33 (colored)
- sprinkle __unused on function decls. - fix a couple of unused bugs - no more -Wno-unused for i386
Revision 1.33 / (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.32: +4 -3
lines
Diff to previous 1.32 (colored)
Add "name" parameter to powerhook_establish, to aid debugging. No objections on tech-kern@
Revision 1.28.2.1 / (download) - annotate - [select for diffs], Sat Sep 9 02:52:16 2006 UTC (5 years, 8 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.28: +18 -9
lines
Diff to previous 1.28 (colored) next main 1.29 (colored)
sync with head
Revision 1.28.6.2 / (download) - annotate - [select for diffs], Fri Aug 11 15:44:25 2006 UTC (5 years, 9 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.28.6.1: +14 -5
lines
Diff to previous 1.28.6.1 (colored) to branchpoint 1.28 (colored) next main 1.29 (colored)
sync with head
Revision 1.32 / (download) - annotate - [select for diffs], Sun Jul 30 04:23:44 2006 UTC (5 years, 9 months ago) by simonb
Branch: MAIN
CVS Tags: yamt-splraiseipl-base,
yamt-pdpolicy-base9,
yamt-pdpolicy-base8,
yamt-pdpolicy-base7,
rpaulo-netinet-merge-pcb-base,
abandoned-netbsd-4-base,
abandoned-netbsd-4
Branch point for: yamt-splraiseipl,
newlock2
Changes since 1.31: +9 -3
lines
Diff to previous 1.31 (colored)
Add support for 82945GM and (untested) 82945P AGP. FreeBSD and Linux both treat the 945 series exactly the same as the 915 series for AGP, so just match a few extra device IDs.
Revision 1.30.4.1 / (download) - annotate - [select for diffs], Thu Jul 13 17:49:26 2006 UTC (5 years, 10 months ago) by gdamore
Branch: gdamore-uart
Changes since 1.30: +7 -4
lines
Diff to previous 1.30 (colored) next main 1.31 (colored)
Merge from HEAD.
Revision 1.31 / (download) - annotate - [select for diffs], Tue Jun 27 10:34:25 2006 UTC (5 years, 11 months ago) by tron
Branch: MAIN
Changes since 1.30: +7 -4
lines
Diff to previous 1.30 (colored)
Make this build with GCC 4.x.
Revision 1.26.2.1 / (download) - annotate - [select for diffs], Wed Jun 21 15:05:03 2006 UTC (5 years, 11 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.26: +125 -39
lines
Diff to previous 1.26 (colored)
sync with head.
Revision 1.28.10.1 / (download) - annotate - [select for diffs], Wed May 24 15:50:27 2006 UTC (6 years ago) by tron
Branch: peter-altq
Changes since 1.28: +6 -6
lines
Diff to previous 1.28 (colored) next main 1.29 (colored)
Merge 2006-05-24 NetBSD-current into the "peter-altq" branch.
Revision 1.28.6.1 / (download) - annotate - [select for diffs], Wed May 24 10:58:00 2006 UTC (6 years ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.28: +6 -6
lines
Diff to previous 1.28 (colored)
sync with head.
Revision 1.30 / (download) - annotate - [select for diffs], Sun May 14 21:45:00 2006 UTC (6 years ago) by elad
Branch: MAIN
CVS Tags: yamt-pdpolicy-base6,
yamt-pdpolicy-base5,
simonb-timecounters-base,
gdamore-uart-base,
chap-midi-nbase,
chap-midi-base,
chap-midi
Branch point for: gdamore-uart
Changes since 1.29: +2 -2
lines
Diff to previous 1.29 (colored)
integrate kauth.
Revision 1.28.4.1 / (download) - annotate - [select for diffs], Sat Apr 22 11:39:13 2006 UTC (6 years, 1 month ago) by simonb
Branch: simonb-timecounters
CVS Tags: simonb-timcounters-final
Changes since 1.28: +6 -6
lines
Diff to previous 1.28 (colored) next main 1.29 (colored)
Sync with head.
Revision 1.28.8.1 / (download) - annotate - [select for diffs], Wed Apr 19 03:25:33 2006 UTC (6 years, 1 month ago) by elad
Branch: elad-kernelauth
Changes since 1.28: +6 -6
lines
Diff to previous 1.28 (colored) next main 1.29 (colored)
sync with head.
Revision 1.29 / (download) - annotate - [select for diffs], Sat Apr 15 20:23:32 2006 UTC (6 years, 1 month ago) by rpaulo
Branch: MAIN
CVS Tags: elad-kernelauth-base
Changes since 1.28: +6 -6
lines
Diff to previous 1.28 (colored)
s/#ifdef DEBUG/#ifdef AGP_DEBUG/
Revision 1.25.2.1 / (download) - annotate - [select for diffs], Tue Feb 14 20:39:35 2006 UTC (6 years, 3 months ago) by riz
Branch: netbsd-3
CVS Tags: netbsd-3-1-RELEASE,
netbsd-3-1-RC4,
netbsd-3-1-RC3,
netbsd-3-1-RC2,
netbsd-3-1-RC1,
netbsd-3-1-1-RELEASE,
netbsd-3-1
Changes since 1.25: +122 -36
lines
Diff to previous 1.25 (colored) next main 1.26 (colored)
Pull up following revision(s) (requested by tron in ticket #1168): sys/dev/pci/agp_i810.c: revision 1.28 sys/arch/i386/pci/pchb.c: revision 1.57 sys/dev/pci/agpvar.h: revision 1.11 sys/dev/pci/agp_via.c: revision 1.9 sys/dev/pci/agp.c: revision 1.37 sys/dev/pci/agpreg.h: revision 1.10 sys/dev/pci/pcidevs: revision 1.757 sys/dev/pci/agp_amd.c: revision 1.14 sys/dev/pci/agp_intel.c: revision 1.17 sys/dev/pci/agp_sis.c: revision 1.8 sys/dev/pci/agp_ali.c: revision 1.9 sys/arch/i386/pci/pchb_rnd.c: revision 1.16 PR/32550: Michael Eriksson: No agp(4) support for i915 integrated graphics
Revision 1.27.2.1 / (download) - annotate - [select for diffs], Wed Feb 1 14:52:08 2006 UTC (6 years, 3 months ago) by yamt
Branch: yamt-uio_vmspace
Changes since 1.27: +122 -36
lines
Diff to previous 1.27 (colored) next main 1.28 (colored)
sync with head.
Revision 1.28 / (download) - annotate - [select for diffs], Mon Jan 16 22:59:36 2006 UTC (6 years, 4 months ago) by christos
Branch: MAIN
CVS Tags: yamt-uio_vmspace-base5,
yamt-pdpolicy-base4,
yamt-pdpolicy-base3,
yamt-pdpolicy-base2,
yamt-pdpolicy-base,
peter-altq-base
Branch point for: yamt-pdpolicy,
simonb-timecounters,
rpaulo-netinet-merge-pcb,
peter-altq,
elad-kernelauth
Changes since 1.27: +122 -36
lines
Diff to previous 1.27 (colored)
PR/32550: Michael Eriksson: No agp(4) support for i915 integrated graphics
Revision 1.27 / (download) - annotate - [select for diffs], Sun Dec 11 12:22:48 2005 UTC (6 years, 5 months ago) by christos
Branch: MAIN
Branch point for: yamt-uio_vmspace
Changes since 1.26: +2 -2
lines
Diff to previous 1.26 (colored)
merge ktrace-lwp.
Revision 1.16.2.7 / (download) - annotate - [select for diffs], Thu Nov 10 14:06:00 2005 UTC (6 years, 6 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.16.2.6: +3 -3
lines
Diff to previous 1.16.2.6 (colored) next main 1.17 (colored)
Sync with HEAD. Here we go again...
Revision 1.26 / (download) - annotate - [select for diffs], Tue Jun 28 00:28:41 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.25: +3 -3
lines
Diff to previous 1.25 (colored)
Use ANSI function decls and static.
Revision 1.23.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.23: +29 -5
lines
Diff to previous 1.23 (colored) next main 1.24 (colored)
sync with -current
Revision 1.23.6.2 / (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.23.6.1: +5 -5
lines
Diff to previous 1.23.6.1 (colored) to branchpoint 1.23 (colored) next main 1.24 (colored)
sync with head. xen and whitespace. xen part is not finished.
Revision 1.16.2.6 / (download) - annotate - [select for diffs], Fri Mar 4 16:45:15 2005 UTC (7 years, 2 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.16.2.5: +5 -5
lines
Diff to previous 1.16.2.5 (colored)
Sync with HEAD. Hi Perry!
Revision 1.25 / (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,
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,
kent-audio2-base
Branch point for: netbsd-3
Changes since 1.24: +5 -5
lines
Diff to previous 1.24 (colored)
nuke trailing whitespace
Revision 1.23.6.1 / (download) - annotate - [select for diffs], Sat Feb 12 18:17:47 2005 UTC (7 years, 3 months ago) by yamt
Branch: yamt-km
Changes since 1.23: +26 -2
lines
Diff to previous 1.23 (colored)
sync with head.
Revision 1.16.2.5 / (download) - annotate - [select for diffs], Fri Feb 4 11:46:37 2005 UTC (7 years, 3 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.16.2.4: +26 -2
lines
Diff to previous 1.16.2.4 (colored)
Sync with HEAD.
Revision 1.24 / (download) - annotate - [select for diffs], Thu Jan 27 02:43:42 2005 UTC (7 years, 3 months ago) by jmcneill
Branch: MAIN
CVS Tags: yamt-km-base2,
matt-timespec
Changes since 1.23: +26 -2
lines
Diff to previous 1.23 (colored)
Add agp_i810 powerhook, from Kentaro A. Kurahone
Revision 1.16.2.4 / (download) - annotate - [select for diffs], Sun Nov 14 08:15:43 2004 UTC (7 years, 6 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.16.2.3: +3 -2
lines
Diff to previous 1.16.2.3 (colored)
Sync with HEAD.
Revision 1.22.2.1 / (download) - annotate - [select for diffs], Fri Nov 12 06:04:32 2004 UTC (7 years, 6 months ago) by jmc
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-3-RELEASE,
netbsd-2-0-2-RELEASE,
netbsd-2-0-1-RELEASE,
netbsd-2
Changes since 1.22: +3 -2
lines
Diff to previous 1.22 (colored) next main 1.23 (colored)
Pullup rev 1.23 (requested by xtraeme in ticket #938) Add another case to match "PCI_PRODUCT_INTEL_82815_FULL_HUB" (Intel 82815 Hub) in agp_i810_attach(). PR#27863
Revision 1.23 / (download) - annotate - [select for diffs], Sat Nov 6 07:43:30 2004 UTC (7 years, 6 months ago) by xtraeme
Branch: MAIN
CVS Tags: yamt-km-base,
kent-audio1-beforemerge,
kent-audio1-base,
kent-audio1
Branch point for: yamt-km,
kent-audio2
Changes since 1.22: +3 -2
lines
Diff to previous 1.22 (colored)
Add another case to match "PCI_PRODUCT_INTEL_82815_FULL_HUB" (Intel 82815 Hub) in agp_i810_attach(), closes PR 27863. Ok'ed christos@
Revision 1.16.2.3 / (download) - annotate - [select for diffs], Tue Sep 21 13:31:00 2004 UTC (7 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.16.2.2: +2 -2
lines
Diff to previous 1.16.2.2 (colored)
Fix the sync with head I botched.
Revision 1.16.2.2 / (download) - annotate - [select for diffs], Sat Sep 18 14:49:02 2004 UTC (7 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.16.2.1: +0 -0
lines
Diff to previous 1.16.2.1 (colored)
Sync with HEAD.
Revision 1.16.2.1 / (download) - annotate - [select for diffs], Tue Aug 3 10:49:06 2004 UTC (7 years, 9 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.16: +82 -15
lines
Diff to previous 1.16 (colored)
Sync with HEAD
Revision 1.22 / (download) - annotate - [select for diffs], Sat Mar 20 14:00:40 2004 UTC (8 years, 2 months ago) by jdolecek
Branch: MAIN
CVS Tags: netbsd-2-0-base,
netbsd-2-0-RC4,
netbsd-2-0-RC3,
netbsd-2-0-RC2,
netbsd-2-0-RC1
Branch point for: netbsd-2-0
Changes since 1.21: +2 -8
lines
Diff to previous 1.21 (colored)
eliminate redundant aperture size printouts reported in PR kern/24859 by Nicolas Joly
Revision 1.21 / (download) - annotate - [select for diffs], Tue Dec 23 19:56:58 2003 UTC (8 years, 5 months ago) by tron
Branch: MAIN
Changes since 1.20: +3 -2
lines
Diff to previous 1.20 (colored)
Support i82845G/GL based motherboards without an Integrated Graphics Device. Patch supplied by Nicolas Joly in PR kern/23860.
Revision 1.20 / (download) - annotate - [select for diffs], Sun Sep 7 15:40:57 2003 UTC (8 years, 8 months ago) by tron
Branch: MAIN
Changes since 1.19: +7 -3
lines
Diff to previous 1.19 (colored)
Compile in the i845/i865 fallback attachment code only if generic AGP Intel support is enabled.
Revision 1.19 / (download) - annotate - [select for diffs], Sun Sep 7 15:25:28 2003 UTC (8 years, 8 months ago) by tron
Branch: MAIN
Changes since 1.18: +9 -2
lines
Diff to previous 1.18 (colored)
If we fail to find the Integrated Graphics Device of an Intel i840 or i865 chipset try the generic Intel AGP code because it is probably a motherboard without onboard graphics.
Revision 1.18 / (download) - annotate - [select for diffs], Tue Aug 26 17:33:23 2003 UTC (8 years, 9 months ago) by tron
Branch: MAIN
Changes since 1.17: +4 -2
lines
Diff to previous 1.17 (colored)
Add support for i865G integrated graphics support to agp(4). Patches contributed by Michael D. Allen in PR port-i386/22600.
Revision 1.17 / (download) - annotate - [select for diffs], Sun Jul 20 18:56:32 2003 UTC (8 years, 10 months ago) by hannken
Branch: MAIN
Changes since 1.16: +74 -15
lines
Diff to previous 1.16 (colored)
Add support for i855 agp. From FreeBSD. Approved by: Frank van der Linden <fvdl@netbsd.org>
Revision 1.16 / (download) - annotate - [select for diffs], Mon Mar 24 09:12:55 2003 UTC (9 years, 2 months ago) by drochner
Branch: MAIN
Branch point for: ktrace-lwp
Changes since 1.15: +2 -4
lines
Diff to previous 1.15 (colored)
Remove an aprint_normal() so that the output looks reasonable at least in the non-error case. (The aprint_* stuff makes it hard to keep track of newlines and device name tags, and it suffers from lack of rules.)
Revision 1.15 / (download) - annotate - [select for diffs], Fri Jan 31 00:07:39 2003 UTC (9 years, 3 months ago) by thorpej
Branch: MAIN
Changes since 1.14: +11 -10
lines
Diff to previous 1.14 (colored)
Use aprint_*().
Revision 1.12.10.1 / (download) - annotate - [select for diffs], Sun Jan 26 10:23:48 2003 UTC (9 years, 4 months ago) by jmc
Branch: netbsd-1-6
CVS Tags: netbsd-1-6-PATCH002-RELEASE,
netbsd-1-6-PATCH002-RC4,
netbsd-1-6-PATCH002-RC3,
netbsd-1-6-PATCH002-RC2,
netbsd-1-6-PATCH002-RC1,
netbsd-1-6-PATCH002,
netbsd-1-6-PATCH001-RELEASE,
netbsd-1-6-PATCH001-RC3,
netbsd-1-6-PATCH001-RC2,
netbsd-1-6-PATCH001-RC1,
netbsd-1-6-PATCH001
Changes since 1.12: +4 -4
lines
Diff to previous 1.12 (colored) next main 1.13 (colored)
Pullup revisions 1.12-1.13 (requested by manu in ticket #1073) update the is_bound flag for local memory too
Revision 1.8.2.6 / (download) - annotate - [select for diffs], Thu Dec 19 00:48:09 2002 UTC (9 years, 5 months ago) by thorpej
Branch: nathanw_sa
CVS Tags: nathanw_sa_end
Changes since 1.8.2.5: +208 -51
lines
Diff to previous 1.8.2.5 (colored) to branchpoint 1.8 (colored) next main 1.9 (colored)
Sync with HEAD.
Revision 1.14 / (download) - annotate - [select for diffs], Fri Dec 13 11:32:51 2002 UTC (9 years, 5 months ago) by scw
Branch: MAIN
CVS Tags: nathanw_sa_before_merge,
nathanw_sa_base,
gmcgarry_ucred_base,
gmcgarry_ucred,
gmcgarry_ctxsw_base,
gmcgarry_ctxsw,
fvdl_fs64_base
Changes since 1.13: +208 -51
lines
Diff to previous 1.13 (colored)
Add support for i830/i845 agp. From Shingo WATANABE (on tech-x11) and FreeBSD, with cleanup/KNF by me. Note: These chipsets are not well supported by the i810 driver in NetBSD's in-tree xsrc (based on XFree86 4.2.1 at this time). However, the driver works perfectly using bleeding-edge XFree86-current on my Omnibook's i830MG with these agp changes.
Revision 1.3.2.5 / (download) - annotate - [select for diffs], Fri Sep 6 08:45:08 2002 UTC (9 years, 8 months ago) by jdolecek
Branch: kqueue
Changes since 1.3.2.4: +4 -4
lines
Diff to previous 1.3.2.4 (colored) next main 1.4 (colored)
sync kqueue branch with HEAD
Revision 1.12.8.1 / (download) - annotate - [select for diffs], Thu Aug 29 05:22:38 2002 UTC (9 years, 8 months ago) by gehenna
Branch: gehenna-devsw
Changes since 1.12: +4 -4
lines
Diff to previous 1.12 (colored) next main 1.13 (colored)
catch up with -current.
Revision 1.8.2.5 / (download) - annotate - [select for diffs], Tue Aug 13 02:19:35 2002 UTC (9 years, 9 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.8.2.4: +4 -4
lines
Diff to previous 1.8.2.4 (colored) to branchpoint 1.8 (colored)
Catch up to -current.
Revision 1.13 / (download) - annotate - [select for diffs], Sun Aug 11 12:36:21 2002 UTC (9 years, 9 months ago) by drochner
Branch: MAIN
CVS Tags: kqueue-beforemerge,
kqueue-base,
kqueue-aftermerge,
gehenna-devsw-base
Changes since 1.12: +4 -4
lines
Diff to previous 1.12 (colored)
update the is_bound flag for local memory too
Revision 1.8.2.4 / (download) - annotate - [select for diffs], Thu Feb 28 04:13:57 2002 UTC (10 years, 2 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.8.2.3: +5 -6
lines
Diff to previous 1.8.2.3 (colored) to branchpoint 1.8 (colored)
Catch up to -current.
Revision 1.3.2.4 / (download) - annotate - [select for diffs], Mon Feb 11 20:09:55 2002 UTC (10 years, 3 months ago) by jdolecek
Branch: kqueue
Changes since 1.3.2.3: +5 -6
lines
Diff to previous 1.3.2.3 (colored)
Sync w/ -current.
Revision 1.12 / (download) - annotate - [select for diffs], Tue Jan 22 17:29:36 2002 UTC (10 years, 4 months ago) by augustss
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,
ifpoll-base,
ifpoll,
eeh-devprop-base,
eeh-devprop
Branch point for: netbsd-1-6,
gehenna-devsw
Changes since 1.11: +3 -3
lines
Diff to previous 1.11 (colored)
Don't pretend we can handle i830; it needs a somewhat different AGP driver. (I added i830 to quickly.)
Revision 1.11 / (download) - annotate - [select for diffs], Mon Jan 14 01:38:25 2002 UTC (10 years, 4 months ago) by augustss
Branch: MAIN
Changes since 1.10: +3 -2
lines
Diff to previous 1.10 (colored)
Add i830M to agp chip tables.
Revision 1.10 / (download) - annotate - [select for diffs], Sat Jan 12 16:17:05 2002 UTC (10 years, 4 months ago) by tsutsui
Branch: MAIN
Changes since 1.9: +4 -6
lines
Diff to previous 1.9 (colored)
Call malloc(9) with M_ZERO flag instead of memset() after malloc().
Revision 1.3.2.3 / (download) - annotate - [select for diffs], Thu Jan 10 19:56:25 2002 UTC (10 years, 4 months ago) by thorpej
Branch: kqueue
Changes since 1.3.2.2: +44 -53
lines
Diff to previous 1.3.2.2 (colored)
Sync kqueue branch with -current.
Revision 1.8.2.3 / (download) - annotate - [select for diffs], Wed Nov 14 19:15:07 2001 UTC (10 years, 6 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.8.2.2: +4 -1
lines
Diff to previous 1.8.2.2 (colored) to branchpoint 1.8 (colored)
Catch up to -current.
Revision 1.9 / (download) - annotate - [select for diffs], Tue Nov 13 07:48:40 2001 UTC (10 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.8: +4 -1
lines
Diff to previous 1.8 (colored)
add RCSID
Revision 1.8.4.2 / (download) - annotate - [select for diffs], Mon Oct 1 12:45:51 2001 UTC (10 years, 7 months ago) by fvdl
Branch: thorpej-devvp
Changes since 1.8.4.1: +435 -0
lines
Diff to previous 1.8.4.1 (colored) to branchpoint 1.8 (colored) next main 1.9 (colored)
Catch up with -current.
Revision 1.8.2.2 / (download) - annotate - [select for diffs], Fri Sep 21 22:35:53 2001 UTC (10 years, 8 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.8.2.1: +435 -0
lines
Diff to previous 1.8.2.1 (colored) to branchpoint 1.8 (colored)
Catch up to -current.
Revision 1.8.4.1, Thu Sep 20 20:00:16 2001 UTC (10 years, 8 months ago) by fvdl
Branch: thorpej-devvp
Changes since 1.8: +0 -435
lines
FILE REMOVED
file agp_i810.c was added on branch thorpej-devvp on 2001-10-01 12:45:51 +0000
Revision 1.8.2.1, Thu Sep 20 20:00:16 2001 UTC (10 years, 8 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.8: +0 -435
lines
FILE REMOVED
file agp_i810.c was added on branch nathanw_sa on 2001-09-21 22:35:53 +0000
Revision 1.8 / (download) - annotate - [select for diffs], Thu Sep 20 20:00:16 2001 UTC (10 years, 8 months ago) by fvdl
Branch: MAIN
CVS Tags: thorpej-mips-cache-base,
thorpej-mips-cache,
thorpej-devvp-base3,
thorpej-devvp-base2
Branch point for: thorpej-devvp,
nathanw_sa
Changes since 1.7: +2 -1
lines
Diff to previous 1.7 (colored)
Add message to explain failure if the internal i810 config registers weren't found.
Revision 1.7 / (download) - annotate - [select for diffs], Sat Sep 15 13:01:45 2001 UTC (10 years, 8 months ago) by drochner
Branch: MAIN
CVS Tags: pre-chs-ubcperf,
post-chs-ubcperf
Changes since 1.6: +2 -1
lines
Diff to previous 1.6 (colored)
normalize error message if agp_map_aperture() fails
Revision 1.6 / (download) - annotate - [select for diffs], Sat Sep 15 00:25:00 2001 UTC (10 years, 8 months ago) by thorpej
Branch: MAIN
Changes since 1.5: +7 -48
lines
Diff to previous 1.5 (colored)
Clean up the AGP match/attach code somewhat.
Revision 1.5 / (download) - annotate - [select for diffs], Fri Sep 14 12:05:03 2001 UTC (10 years, 8 months ago) by drochner
Branch: MAIN
Changes since 1.4: +15 -3
lines
Diff to previous 1.4 (colored)
make the hardware cursor work
Revision 1.4 / (download) - annotate - [select for diffs], Thu Sep 13 16:18:53 2001 UTC (10 years, 8 months ago) by drochner
Branch: MAIN
Changes since 1.3: +19 -4
lines
Diff to previous 1.3 (colored)
-allocate DMA maps as large as necessary in the worst case -Add a really bad hack: The X server (4.1.0 afaict) appearently overwrites the PGTBL_CTL which contains the base address of the pseudo-GATT. Restore the original value if we notice this happened. The X server works now, but only with soft cursor.
Revision 1.3.2.2 / (download) - annotate - [select for diffs], Thu Sep 13 01:15:50 2001 UTC (10 years, 8 months ago) by thorpej
Branch: kqueue
Changes since 1.3.2.1: +447 -0
lines
Diff to previous 1.3.2.1 (colored)
Update the kqueue branch to HEAD.
Revision 1.3.2.1, Tue Sep 11 06:51:47 2001 UTC (10 years, 8 months ago) by thorpej
Branch: kqueue
Changes since 1.3: +0 -447
lines
FILE REMOVED
file agp_i810.c was added on branch kqueue on 2001-09-13 01:15:50 +0000
Revision 1.3 / (download) - annotate - [select for diffs], Tue Sep 11 06:51:47 2001 UTC (10 years, 8 months ago) by fvdl
Branch: MAIN
Branch point for: kqueue
Changes since 1.2: +2 -2
lines
Diff to previous 1.2 (colored)
Fix i810/other intel chipsets attach mishap.
Revision 1.2 / (download) - annotate - [select for diffs], Mon Sep 10 12:51:42 2001 UTC (10 years, 8 months ago) by fvdl
Branch: MAIN
Changes since 1.1: +3 -3
lines
Diff to previous 1.1 (colored)
Fix reversed if condition in agp_i810_vgamatch.
Revision 1.1 / (download) - annotate - [select for diffs], Mon Sep 10 10:01:01 2001 UTC (10 years, 8 months ago) by fvdl
Branch: MAIN
AGP GART support code. Originally written by Doug Rabson for FreeBSD, modifications to fit it into the NetBSD device/config structure and to use bus_dma by me.