search for: nv_driver

Displaying 20 results from an estimated 68 matches for "nv_driver".

Did you mean: hv_driver
2015 Feb 22
2
[PATCH] Basic GM206 bringup (as copy of GM100)
--- src/nv_driver.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/nv_driver.c b/src/nv_driver.c index e726292..4c40763 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c @@ -377,6 +377,7 @@ NVHasKMS(struct pci_device *pci_dev, struct xf86_platform_device *platform_dev) case 0xf0: case 0x100: case 0...
2012 Nov 01
5
[PATCH 0/4] nouveau: xserver 1.13 compat fixes
Here are a few patches adding some missing functions in NvPlatformProbe, which iirc is being used as of xserver 1.13 First patch adds a nouveau_kernel_mode_enabled helper, similar to xf86-video-radeon Second and third use the function in Nv{Pci,Platform}Probe And last one ensures we can still use ZaphodHead and relative head positioning via xorg.conf The coding style may be a bit off, despite my
2013 Feb 16
8
Bugfix + dri1 cleanup patches
...[PATCH 4/7] dri1: purge the final references [PATCH 5/7] nouveau: mandate dri2 build [PATCH 6/7] configure: require xorg-macros 1.8 [PATCH 7/7] configure: printout the configuration info -- configure.ac | 33 ++++++++++++++++++++++++++++++++- src/nouveau_dri2.c | 16 ++-------------- src/nv_driver.c | 46 +++++++++++++++++----------------------------- src/nv_type.h | 8 -------- 4 files changed, 51 insertions(+), 52 deletions(-)
2018 Mar 01
1
[PATCH] Fix colormap handling at screen depth 30.
...30. Tested at depths 16, 24 and 30 and tested at depths 24 and 30 that xgamma and gamma table animations work, and with measurement equipment to make sure identity gamma ramps actually are identity mappings at the output. Signed-off-by: Mario Kleiner <mario.kleiner.de at gmail.com> --- src/nv_driver.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nv_driver.c b/src/nv_driver.c index 32062eb..4fcd4c1 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c @@ -1568,8 +1568,8 @@ NVScreenInit(SCREEN_INIT_ARGS_DECL) * Must follow initialization of the default colormap...
2013 Apr 26
1
[PATCH] nouveau: Allow 3D accelerators with output ports
...e the first GPU has PCI class 0x30000 and the other GPU has PCI class 0x30200. By ignoring the 1 << 9 bit in the PCI class mask, displays attached to the other GPU can also be used now. Signed-off-by: Marek Vasut <marex at denx.de> Cc: Dave Airlie <airlied at redhat.com> --- src/nv_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) NOTE: I might have sent this to the wrong ML, this is my first time submitting a nouveau patch. diff --git a/src/nv_driver.c b/src/nv_driver.c index 2b74fc6..0dce0aa 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c @@ -60,7 +60,7...
2019 Jan 27
1
[PATCH] update known chipsets list
--- man/nouveau.man | 9 ++++++++- src/nv_driver.c | 8 ++++++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/man/nouveau.man b/man/nouveau.man index 07d53c8..4878f24 100644 --- a/man/nouveau.man +++ b/man/nouveau.man @@ -63,7 +63,14 @@ GF100, GF104, GF106, GF108, GF110, GF114, GF116, GF117, GF119 GK104, GK106, GK107, GK110, G...
2009 Sep 14
1
[Nouveau-cvs] xf86-video-nv: Branch 'master'
On Sun, 13 Sep 2009 20:06:59 -0700 (PDT) darktama at kemper.freedesktop.org (Ben Skeggs) wrote: > src/drmmode_display.c | 6 ++++++ > src/nv_driver.c | 2 ++ > 2 files changed, 8 insertions(+) > > New commits: > commit 6c045fc44783454180d7b3d00b5f25436bd5544e > Author: Ben Skeggs <bskeggs at redhat.com> > Date: Mon Sep 14 13:04:12 2009 +1000 > > kms: wait for fbcon to be copied before continuing &...
2010 May 23
1
[PATCH] nv: improve KMS detection
...pengl set nvidia" switcher) Open code DRICreatePCIBusID to drop dri dependency. 2) Once we dropped dependency on dri module (which linked to libdrm), we have to link directly to libdrm. Signed-off-by: Marcin Slusarz <marcin.slusarz at gmail.com> --- src/Makefile.am | 2 +- src/nv_driver.c | 11 +++-------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 5d57010..8b23e21 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -25,7 +25,7 @@ # TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc. AM_CFLAGS...
2010 Feb 09
1
[PATCH] Remove some UMS leftovers.
--- src/nv_driver.c | 32 +------------------------------- 1 files changed, 1 insertions(+), 31 deletions(-) diff --git a/src/nv_driver.c b/src/nv_driver.c index 248a151..9606d97 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c @@ -315,8 +315,6 @@ NVAdjustFrame(int scrnIndex, int x, int y, int flags) /* * Th...
2015 Jun 30
3
[PATCH] Add Option "DRI3" to allow to disable DRI3 under EXA.
...I3/Present under EXA acceleration for testing. Also add a bit more output about status of Present and DRI3 to aid debugging. Signed-off-by: Mario Kleiner <mario.kleiner.de at gmail.com> --- man/nouveau.man | 6 ++++++ src/nouveau_dri2.c | 11 ++++++++++- src/nv_const.h | 2 ++ src/nv_driver.c | 17 +++++++++++++++-- 4 files changed, 33 insertions(+), 3 deletions(-) diff --git a/man/nouveau.man b/man/nouveau.man index 129bb7f..12cfbc0 100644 --- a/man/nouveau.man +++ b/man/nouveau.man @@ -125,6 +125,12 @@ that relies on correct presentation timing behaviour as defined in that spec...
2015 Jul 04
2
[PATCH] Add Option "DRI3" to allow to disable DRI3 under EXA.
...put about status of Present and >> DRI3 to aid debugging. >> >> Signed-off-by: Mario Kleiner <mario.kleiner.de at gmail.com> >> --- >> man/nouveau.man | 6 ++++++ >> src/nouveau_dri2.c | 11 ++++++++++- >> src/nv_const.h | 2 ++ >> src/nv_driver.c | 17 +++++++++++++++-- >> 4 files changed, 33 insertions(+), 3 deletions(-) >> >> diff --git a/man/nouveau.man b/man/nouveau.man >> index 129bb7f..12cfbc0 100644 >> --- a/man/nouveau.man >> +++ b/man/nouveau.man >> @@ -125,6 +125,12 @@ that relies on...
2010 May 23
1
[PATCH] nouveau: detect incompatible libglx.so
Exit with proper message instead of crashing when user forgot to uninstall the proprietary driver. Signed-off-by: Marcin Slusarz <marcin.slusarz at gmail.com> --- src/nv_driver.c | 35 +++++++++++++++++++++++++++++++++++ 1 files changed, 35 insertions(+), 0 deletions(-) diff --git a/src/nv_driver.c b/src/nv_driver.c index f60b6d9..2c953da 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c @@ -194,6 +194,38 @@ NVIdentify(int flags) } } +static Bool glxIsCompatib...
2015 Jul 29
3
[PATCH 1/2] present: Fixup return type of nouveau_present_init()
Make it a Bool consistently, as declared in header. Reported-by: Ilia Mirkin <imirkin at alum.mit.edu> Signed-off-by: Mario Kleiner <mario.kleiner.de at gmail.com> --- src/nouveau_present.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nouveau_present.c b/src/nouveau_present.c index 4de1e6e..699a58d 100644 --- a/src/nouveau_present.c +++
2015 Jul 04
2
[PATCH] Add Option "DRI3" to allow to disable DRI3 under EXA.
...ugging. >>>> >>>> Signed-off-by: Mario Kleiner <mario.kleiner.de at gmail.com> >>>> --- >>>> man/nouveau.man | 6 ++++++ >>>> src/nouveau_dri2.c | 11 ++++++++++- >>>> src/nv_const.h | 2 ++ >>>> src/nv_driver.c | 17 +++++++++++++++-- >>>> 4 files changed, 33 insertions(+), 3 deletions(-) >>>> >>>> diff --git a/man/nouveau.man b/man/nouveau.man >>>> index 129bb7f..12cfbc0 100644 >>>> --- a/man/nouveau.man >>>> +++ b/man/nouveau.m...
2016 Oct 16
0
[PATCH 5/5] recognize and accelerate GM20x
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu> --- Untested. I don't have the hardware. src/nv_driver.c | 2 ++ src/nvc0_accel.c | 10 +++++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/src/nv_driver.c b/src/nv_driver.c index fff83f8..61940a8 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c @@ -390,6 +390,7 @@ NVHasKMS(struct pci_device *pci_dev, struct xf86_platform_devi...
2016 Oct 17
2
[PATCH 5/5] recognize and accelerate GM20x
This requires at least a quick test. :-) Acked-by: Samuel Pitoiset <samuel.pitoiset at gmail.com> On 10/16/2016 09:14 PM, Ilia Mirkin wrote: > Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu> > --- > > Untested. I don't have the hardware. > > src/nv_driver.c | 2 ++ > src/nvc0_accel.c | 10 +++++++++- > 2 files changed, 11 insertions(+), 1 deletion(-) > > diff --git a/src/nv_driver.c b/src/nv_driver.c > index fff83f8..61940a8 100644 > --- a/src/nv_driver.c > +++ b/src/nv_driver.c > @@ -390,6 +390,7 @@ NVHasKMS(struct pci_dev...
2016 Oct 27
0
[PATCH v2 7/7] recognize and accelerate GM20x
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu> --- src/nv_driver.c | 2 ++ src/nvc0_accel.c | 10 +++++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/src/nv_driver.c b/src/nv_driver.c index fff83f8..61940a8 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c @@ -390,6 +390,7 @@ NVHasKMS(struct pci_device *pci_dev, struct xf86_platform_devi...
2017 Mar 22
0
[PATCH xf86-video-nouveau] Add Pascal family support, identical to Maxwell
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu> --- Untested. src/nouveau_copy.c | 2 ++ src/nouveau_exa.c | 1 + src/nv_accel_common.c | 1 + src/nv_driver.c | 3 +++ src/nv_type.h | 1 + src/nvc0_accel.c | 6 ++++++ 6 files changed, 14 insertions(+) diff --git a/src/nouveau_copy.c b/src/nouveau_copy.c index 7118a7a..7fbcc87 100644 --- a/src/nouveau_copy.c +++ b/src/nouveau_copy.c @@ -42,6 +42,7 @@ nouveau_copy_init(ScreenPtr pScre...
2018 Jun 12
0
[PATCH] Fix colormap handling at screen depth 30. (v2)
...6HandleColormaps() setup at > 8 bpc. This disables color palette handling on such servers at > 8 bpc, but still keeps RandR gamma table handling intact. Tested on 1.19.6 and 1.20.0 to do the right thing. Signed-off-by: Mario Kleiner <mario.kleiner.de at gmail.com> --- src/nv_driver.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/nv_driver.c b/src/nv_driver.c index 32062eb..a5d50c1 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c @@ -1565,11 +1565,14 @@ NVScreenInit(SCREEN_INIT_ARGS_DECL) /* * Initialize colormap layer. - * Must...
2019 Oct 12
0
[PATCH xf86-video-nouveau] nv4/exa: tiling is unsupported pre-nv10, reduce alignment requirements
...s to be strictly less than 8192. The current logic will align 1920*4 up to 8192 unnecessarily. Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu> Cc: Marcin Koƛcielnicki <koriakin at 0x04.net> Cc: Francisco Jerez <currojerez at riseup.net> --- src/nouveau_dri2.c | 5 ++++- src/nv_driver.c | 3 ++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/nouveau_dri2.c b/src/nouveau_dri2.c index 3d53785..ce0a573 100644 --- a/src/nouveau_dri2.c +++ b/src/nouveau_dri2.c @@ -62,7 +62,10 @@ nouveau_dri2_create_buffer2(ScreenPtr pScreen, DrawablePtr pDraw, unsigned int a...