similar to: DRM and the Nouveau kernel tree

Displaying 20 results from an estimated 6000 matches similar to: "DRM and the Nouveau kernel tree"

2009 Jun 24
2
Why was old TTM removed from drm.git?
Hi Thomas, I meant to ask you this 24h ago: why did you deliberately break Nouveau in drm.git? The commit 9a33f62be1c478334572ea9384af60 "drm: Strip old ttm." not only removes the old TTM, it explicitly removes Nouveau from Makefile. IMHO this means you knew it broke Nouveau and you did not care. And there is no explanation in the commit as to why. Did you ask any Nouveau developer if
2009 Jul 09
4
When will nouveau kernel tree be merged into master
Hi, I've been using nouveau driveau for 8 months or so, using automated build from drm git, xf86-video-nouveau git and even sometimes mesa drm git and discovered the linux-core build did not build the nouveau driver the hard way: X was refusing to start as the nouveau.ko modules was not loaded nor build. Build process did chnage without obvious way to know womething was wrong. Then I tried
2009 Sep 29
1
master-compat branch in nouveau/linux-2.6
Hi, I would like to abandon the master-compat branch nouveau/linux-2.6 kernel tree. The difference to master branch is practically just the out-of-tree build Makefile. I'll find a new place for the Makefile and docs, likely in the wiki. Then I will break the build in master-compat, so that everyone surely notices it is not updated anymore. The reason for this is to reduce confusion, and that
2009 Jun 24
1
Out of tree nouveau.ko build.
As a part of updating Ubuntu's nouveau package, I've been figuring exactly how to build nouveau.ko from cgit.freedesktop.org/nouveau/linux-2.6 A first and trivial pass at this is attached. It doesn't do any interesting kernel configuration checking; it just sets the right include paths and calls out to make. -------------- next part -------------- A non-text attachment was
2009 Aug 17
3
[Bug 23382] New: Nouveau DRM module out-of-tree compile errors
http://bugs.freedesktop.org/show_bug.cgi?id=23382 Summary: Nouveau DRM module out-of-tree compile errors Product: xorg Version: git Platform: All OS/Version: Linux (All) Status: NEW Severity: blocker Priority: high Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org
2013 Oct 28
1
MmioTrace: Using the Instruction Decoder, etc.
On Fri, 25 Oct 2013 17:19:56 +0400 Eugene Shatokhin <euspectre at gmail.com> wrote: > Hi, > > 2013/10/25 Pekka Paalanen <pq at iki.fi> > ... > > We could use some comments from the real reverse-engineers. I used > > to be mostly a tool writer. > > > > Yes, if some experts could share their knowledge of this matter, this would > be most
2009 Jul 31
3
[Bug 23057] New: Nouveau/DRM from unamed reposiory failing to build
http://bugs.freedesktop.org/show_bug.cgi?id=23057 Summary: Nouveau/DRM from unamed reposiory failing to build Product: xorg Version: git Platform: Other OS/Version: All Status: NEW Severity: major Priority: medium Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org
2009 Dec 07
0
Nouveau wiki translations
Hi guys, it's been a year since my last call (below) for updating translations. Unless anyone objects, I propose, that all translation pages are eligible for removal if they have not been properly updated within two weeks since the original page was updated. TiNDCs are an exception, they are not live content, and they should be up-to-date anyway, by definition. mwk already did some good
2009 Aug 20
4
[PATCH 1/4] drm/nouveau: refactor nouveau_dma_wait()
A cleanup of nouveau_dma_wait(): extract a sub-function and eliminate two variables to improve readability. No functional changes. Signed-off-by: Pekka Paalanen <pq at iki.fi> --- drivers/gpu/drm/nouveau/nouveau_dma.c | 72 ++++++++++++++++++--------------- 1 files changed, 39 insertions(+), 33 deletions(-) diff --git a/drivers/gpu/drm/nouveau/nouveau_dma.c
2008 Apr 16
2
[BUG/PATCH] x86 mmiotrace: dynamically disable non-boot CPUs
On Wed, 16 Apr 2008 13:46:09 +0200 Ingo Molnar <mingo at elte.hu> wrote: > > * Pekka Paalanen <pq at iki.fi> wrote: > > > > we should fix this restriction ASAP. Forcibly dropping to UP will > > > cause mmiotrace to be much less useful for diagnostic purposes of > > > Linux > > > > Ok, how do you propose we solve this? > >
2009 Feb 28
1
kernel memory access tracer
Hi On Fri, 27 Feb 2009 22:39:06 +0100 Vegard Nossum <vegard.nossum at gmail.com> wrote: > I actually wanted to ask some questions about Nouveau and the NVIDIA > drivers. I was wondering if there would be any point in extending > kmemcheck to track this driver's use of kernel memory. We could quite > easily make a "memory access tracer", which would show all the
2009 Sep 09
2
Dropping compat from master-compat
Hi, the master-compat branch in nouveau/linux-2.6 kernel tree has got a little bit out of hand. Distributions are packaging that, and I cannot know if they warn their users well enough about the hazards of using backported DRM (see: http://nouveau.freedesktop.org/wiki/UpstreamKernelIssues ). I originally intended master-compat as an easy way of installing the Nouveau flavour of DRM modules even
2009 Feb 09
9
[Bug 20023] New: nv20: unwanted solid fills during busyloop rendering
http://bugs.freedesktop.org/show_bug.cgi?id=20023 Summary: nv20: unwanted solid fills during busyloop rendering Product: Mesa Version: CVS Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: ASSIGNED Severity: minor Priority: medium Component: Drivers/DRI/nouveau AssignedTo: pq at iki.fi
2009 Aug 04
5
[PATCH 1/6] drm/nouveau: bo read/write wrappers for nv04_crtc.c
Introduce accessors for TTM buffer object memory that has been mapped into the kernel virtual address space or as IO memory. IO memory needs to be accessed via special accessor functions, not by dereferencing the iomem cookie. The wrappers hide the details of 32-bit access and honour the TTM map type. nv04_crtc_cursor_set() is changed to use the new wrappers. 'cursor' is received from
2009 Jun 03
1
Nouveau DRM kernel tree
Just a heads up that there's a Linux kernel tree up at git://anongit.freedesktop.org/git/nouveau/linux-2.6 which (after discussion in #nouveau) is where development of the Nouveau drm will continue. In the newttm-devel branch is the latest work towards using the re-worked TTM memory manager that will likely appear in a future upstream kernel. The major differences between the drm in the
2009 Dec 05
1
[PATCH] drm/nouveau: fix array overflow
Noticed by sparse: in nouveau_dp_link_train(), the array 'status' was defined as 2 bytes, yet it was accessed for 3 bytes. Fix it by making the array size 3. Signed-off-by: Pekka Paalanen <pq at iki.fi> --- drivers/gpu/drm/nouveau/nouveau_dp.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/gpu/drm/nouveau/nouveau_dp.c
2009 Sep 10
24
[Bug 23847] New: kernel BUG when using nouveau
http://bugs.freedesktop.org/show_bug.cgi?id=23847 Summary: kernel BUG when using nouveau Product: xorg Version: 7.4 Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org ReportedBy: shiningxc at
2008 Jun 13
16
[Bug 16327] New: Graphical corruption with NVCrush11.
http://bugs.freedesktop.org/show_bug.cgi?id=16327 Summary: Graphical corruption with NVCrush11. Product: xorg Version: 7.3 Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org ReportedBy:
2008 May 06
8
[Bug 15845] New: X busyloops when huge image in firefox
http://bugs.freedesktop.org/show_bug.cgi?id=15845 Summary: X busyloops when huge image in firefox Product: xorg Version: git Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org
2008 Dec 13
3
Nouveau wiki translations
Hi all, it seems that the translations in the Nouveau wiki have been rotting for some time. Many translated pages even have a note saying they are not up to date, which makes me think they are not going to be updated anymore at all. I am planning to remove all translation links from FrontPage and FAQ. I will not remove the pages themselves. If someone wants to come back and actually maintain a