Lines Matching full:sizes
230 * @sizes: specification of the layout
235 struct drm_fb_helper_surface_size *sizes) in psbfb_create() argument
249 mode_cmd.width = sizes->surface_width; in psbfb_create()
250 mode_cmd.height = sizes->surface_height; in psbfb_create()
251 bpp = sizes->surface_bpp; in psbfb_create()
252 depth = sizes->surface_depth; in psbfb_create()
303 drm_fb_helper_fill_info(info, fb_helper, sizes); in psbfb_create()
351 struct drm_fb_helper_surface_size *sizes) in psbfb_probe() argument
358 bytespp = sizes->surface_bpp / 8; in psbfb_probe()
365 fb_size = ALIGN(sizes->surface_width * bytespp, 64) * in psbfb_probe()
366 sizes->surface_height; in psbfb_probe()
370 sizes->surface_bpp = 16; in psbfb_probe()
371 sizes->surface_depth = 16; in psbfb_probe()
374 return psbfb_create(fb_helper, sizes); in psbfb_probe()