Displaying 8 results from an estimated 8 matches for "nv50_instmem".
2009 Dec 19
1
[PATCH] drm/nouveau: always do buffer object moves on bo->channel
- Use the "direct" objects that previously only the kernel fifo had.
- This avoids corruption on some buffer moves.
Signed-off-by: Maarten Maathuis <madman2003 at gmail.com>
---
drivers/gpu/drm/nouveau/nouveau_bo.c | 23 ++---------------
drivers/gpu/drm/nouveau/nouveau_object.c | 36 ++++++++++++++++++++++++++++
drivers/gpu/drm/nouveau/nouveau_state.c | 38
2009 Aug 02
3
[PATCH 1/4] drm/nouveau: refactor VGA font save/restore
Remove drm_nouveau_private::fb member and map the piece of VRAM only
when accessing VGA fonts.
Collect copied code into the static function nouveau_vga_font_io().
Signed-off-by: Pekka Paalanen <pq at iki.fi>
---
drivers/gpu/drm/nouveau/nouveau_drv.h | 17 -------
drivers/gpu/drm/nouveau/nouveau_hw.c | 75 +++++++++++++++----------------
drivers/gpu/drm/nouveau/nouveau_state.c |
2012 May 20
16
nouveau_subdev & misc patches
...| 14 +++++++-------
drivers/gpu/drm/nouveau/nv40_fb.c | 11 ++++-------
drivers/gpu/drm/nouveau/nv50_bar.c | 2 --
drivers/gpu/drm/nouveau/nv50_fanpwm.c | 20 ++++++++++----------
drivers/gpu/drm/nouveau/nv50_gpio.c | 16 ++++++++--------
drivers/gpu/drm/nouveau/nv50_instmem.c | 10 +++-------
drivers/gpu/drm/nouveau/nvc0_instmem.c | 10 +++-------
drivers/gpu/drm/nouveau/nvd0_gpio.c | 16 ++++++++--------
21 files changed, 129 insertions(+), 114 deletions(-)
2012 Feb 03
3
[PATCH 1/4] nouveau: Allow allocating BOs at specific offsets
...ers/gpu/drm/nouveau/nouveau_mm.h | 12 ++++++------
drivers/gpu/drm/nouveau/nouveau_vm.c | 3 ++-
drivers/gpu/drm/nouveau/nv04_crtc.c | 2 +-
drivers/gpu/drm/nouveau/nv50_crtc.c | 4 ++--
drivers/gpu/drm/nouveau/nv50_evo.c | 4 ++--
drivers/gpu/drm/nouveau/nv50_instmem.c | 2 +-
drivers/gpu/drm/nouveau/nv50_vram.c | 17 +++++++++++++----
drivers/gpu/drm/nouveau/nvc0_vram.c | 5 +++--
drivers/gpu/drm/nouveau/nvd0_display.c | 6 +++---
17 files changed, 55 insertions(+), 32 deletions(-)
diff --git a/drivers/bcma/main.c b/drivers/bcma/m...
2007 Jul 30
0
Nouveau and Debian Unstable
...CC [M] /home/michael/drm/linux-core/nv20_graph.o
CC [M] /home/michael/drm/linux-core/nv30_graph.o
CC [M] /home/michael/drm/linux-core/nv40_graph.o
CC [M] /home/michael/drm/linux-core/nv50_graph.o
CC [M] /home/michael/drm/linux-core/nv04_instmem.o
CC [M] /home/michael/drm/linux-core/nv50_instmem.o
LD [M] /home/michael/drm/linux-core/drm.o
LD [M] /home/michael/drm/linux-core/nouveau.o
Building modules, stage 2.
MODPOST 2 modules
CC /home/michael/drm/linux-core/drm.mod.o
LD [M] /home/michael/drm/linux-core/drm.ko
CC /home/michael/drm/linux-core/nouveau.mod.o
LD [...
2009 Aug 13
9
[PATCHv2 01/10] drm/nouveau: Fix a lock up at NVSetOwner with nv11.
It seems it was only locking up in the context of
nouveau_hw_save_vga_fonts, when it actually did something (because
the console wasn't already in graphics mode).
Signed-off-by: Francisco Jerez <currojerez at riseup.net>
---
drivers/gpu/drm/nouveau/nouveau_hw.c | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/drivers/gpu/drm/nouveau/nouveau_hw.c
2009 Aug 12
14
[PATCH 00/12] TV-out modesetting kernel patches.
This patch series adds TV-out modesetting support to the KMS
implementation.
I've tried to test it on all the hardware I've got at hand (that is
nv11, nv17, nv34, nv35, nv40, nv4b) with every possible output
combination; I believe it has reached a mergeable state, however it
depends on some commits from drm-next that haven't got into Linus'
tree yet, if you agree to merge this
2010 Feb 25
3
[PATCH 1/3] drm/nv50: Implement ctxprog/state generation.
...te.o nouveau_channel.o nouveau_mem.o \
nv04_fifo.o nv10_fifo.o nv40_fifo.o nv50_fifo.o \
nv04_graph.o nv10_graph.o nv20_graph.o \
nv40_graph.o nv50_graph.o \
- nv40_grctx.o \
+ nv40_grctx.o nv50_grctx.o \
nv04_instmem.o nv50_instmem.o \
nv50_crtc.o nv50_dac.o nv50_sor.o \
nv50_cursor.o nv50_display.o nv50_fbcon.o \
diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h b/drivers/gpu/drm/nouveau/nouveau_drv.h
index a334236..792390c 100644
--- a/drivers/gpu/drm/nouveau/nouveau_drv.h
+++ b/drivers/gpu/drm/...