Lines Matching full:sizes
297 * @sizes: specification of the layout
302 struct drm_fb_helper_surface_size *sizes) in psbfb_create() argument
316 mode_cmd.width = sizes->surface_width; in psbfb_create()
317 mode_cmd.height = sizes->surface_height; in psbfb_create()
318 bpp = sizes->surface_bpp; in psbfb_create()
319 depth = sizes->surface_depth; in psbfb_create()
410 drm_fb_helper_fill_info(info, fb_helper, sizes); in psbfb_create()
452 struct drm_fb_helper_surface_size *sizes) in psbfb_probe() argument
459 bytespp = sizes->surface_bpp / 8; in psbfb_probe()
466 fb_size = ALIGN(sizes->surface_width * bytespp, 64) * in psbfb_probe()
467 sizes->surface_height; in psbfb_probe()
471 sizes->surface_bpp = 16; in psbfb_probe()
472 sizes->surface_depth = 16; in psbfb_probe()
475 return psbfb_create(fb_helper, sizes); in psbfb_probe()