search for: 860b0e2d4181

Displaying 6 results from an estimated 6 matches for "860b0e2d4181".

2015 Feb 19
1
[PATCH v3 1/6] make RAM device optional
...ase.c | 26 ++++++++++++++++++-------- > >> drm/nouveau/nvkm/subdev/ltc/gf100.c | 10 +++++++++- > >> 7 files changed, 55 insertions(+), 17 deletions(-) > >> > >> diff --git a/drm/nouveau/nouveau_display.c b/drm/nouveau/nouveau_display.c > >> index 860b0e2d4181..68ee0af22eea 100644 > >> --- a/drm/nouveau/nouveau_display.c > >> +++ b/drm/nouveau/nouveau_display.c > >> @@ -869,13 +869,19 @@ nouveau_display_dumb_create(struct drm_file *file_priv, struct drm_device *dev, > >> struct drm_mode_crea...
2015 Feb 17
2
[PATCH v3 1/6] make RAM device optional
...| 2 +- > drm/nouveau/nvkm/subdev/fb/base.c | 26 ++++++++++++++++++-------- > drm/nouveau/nvkm/subdev/ltc/gf100.c | 10 +++++++++- > 7 files changed, 55 insertions(+), 17 deletions(-) > > diff --git a/drm/nouveau/nouveau_display.c b/drm/nouveau/nouveau_display.c > index 860b0e2d4181..68ee0af22eea 100644 > --- a/drm/nouveau/nouveau_display.c > +++ b/drm/nouveau/nouveau_display.c > @@ -869,13 +869,19 @@ nouveau_display_dumb_create(struct drm_file *file_priv, struct drm_device *dev, > struct drm_mode_create_dumb *args) > { >...
2015 Feb 18
0
[PATCH v3 1/6] make RAM device optional
.../nouveau/nvkm/subdev/fb/base.c | 26 ++++++++++++++++++-------- >> drm/nouveau/nvkm/subdev/ltc/gf100.c | 10 +++++++++- >> 7 files changed, 55 insertions(+), 17 deletions(-) >> >> diff --git a/drm/nouveau/nouveau_display.c b/drm/nouveau/nouveau_display.c >> index 860b0e2d4181..68ee0af22eea 100644 >> --- a/drm/nouveau/nouveau_display.c >> +++ b/drm/nouveau/nouveau_display.c >> @@ -869,13 +869,19 @@ nouveau_display_dumb_create(struct drm_file *file_priv, struct drm_device *dev, >> struct drm_mode_create_dumb *args) >&...
2015 Feb 17
0
[PATCH v3 1/6] make RAM device optional
...uveau/nvkm/subdev/clk/base.c | 2 +- drm/nouveau/nvkm/subdev/fb/base.c | 26 ++++++++++++++++++-------- drm/nouveau/nvkm/subdev/ltc/gf100.c | 10 +++++++++- 7 files changed, 55 insertions(+), 17 deletions(-) diff --git a/drm/nouveau/nouveau_display.c b/drm/nouveau/nouveau_display.c index 860b0e2d4181..68ee0af22eea 100644 --- a/drm/nouveau/nouveau_display.c +++ b/drm/nouveau/nouveau_display.c @@ -869,13 +869,19 @@ nouveau_display_dumb_create(struct drm_file *file_priv, struct drm_device *dev, struct drm_mode_create_dumb *args) { struct nouveau_bo *bo; + uint32_t domain; int ret;...
2015 Feb 17
8
[PATCH v3 0/6] nouveau/gk20a: RAM device removal & IOMMU support
Thanks Ilia for the v2 review! Here is the v3 of this IOMMU support for GK20A series. Changes since v2: - Cleaner changes for ltc - Fixed typos in gk20a instmem IOMMU comments Changes since v1: - Add missing else condition in ltc - Remove extra flags that slipped into nouveau_display.c and nv84_fence.c. Original cover letter: Patches 1-3 make the presence of a RAM device optional, and remove
2015 Feb 20
6
[PATCH v4 0/6] nouveau/gk20a: RAM device removal & IOMMU support
Changes since v3: - Use a single dma_attr for all DMA-API allocations in instmem instead of one per allocation - Use device.info.ram_size instead of pfb->ram to check whether VRAM is present outside of nvkm Changes since v2: - Cleaner changes for ltc - Fixed typos in gk20a instmem IOMMU comments Changes since v1: - Add missing else condition in ltc - Remove extra flags that slipped into