Home
last modified time | relevance | path

Searched refs:dmcb (Results 1 – 1 of 1) sorted by relevance

/rockchip-linux_mpp/osal/allocator/
H A Dallocator_drm.c128 struct drm_mode_create_dumb dmcb; in drm_alloc() local
130 memset(&dmcb, 0, sizeof(struct drm_mode_create_dumb)); in drm_alloc()
131 dmcb.bpp = 8; in drm_alloc()
132 dmcb.width = (len + align - 1) & (~(align - 1)); in drm_alloc()
133 dmcb.height = 1; in drm_alloc()
134 dmcb.flags = to_rockchip_gem_mem_flag(flags); in drm_alloc()
139 ret = drm_ioctl(fd, DRM_IOCTL_MODE_CREATE_DUMB, &dmcb); in drm_alloc()
143 *handle = dmcb.handle; in drm_alloc()
145 align, flags, dmcb.flags, dmcb.handle, dmcb.size); in drm_alloc()