Displaying 1 result from an estimated 1 matches for "nv50_vram_new".
2012 Feb 03
3
[PATCH 1/4] nouveau: Allow allocating BOs at specific offsets
...**);
+int nouveau_mm_get(struct nouveau_mm *, int type, u32 base, u32 size,
+ u32 size_nc, u32 align, struct nouveau_mm_node **);
void nouveau_mm_put(struct nouveau_mm *, struct nouveau_mm_node *);
int nv50_vram_init(struct drm_device *);
void nv50_vram_fini(struct drm_device *);
-int nv50_vram_new(struct drm_device *, u64 size, u32 align, u32 size_nc,
- u32 memtype, struct nouveau_mem **);
+int nv50_vram_new(struct drm_device *, u32 base, u64 size, u32 align,
+ u32 size_nc, u32 memtype, struct nouveau_mem **);
void nv50_vram_del(struct drm_device *, struct nouveau_mem **);
bool n...