Hi, On Wed, Apr 17, 2019 at 02:34:54PM +0200, Paul Kocialkowski wrote: > > +struct image_format_info { > > + union { > > + /** > > + * @drm_fmt: > > + * > > + * DRM 4CC format identifier (DRM_FORMAT_*) > > + */ > > + u32 drm_fmt; > > Could we call this one format_drm for consistency with the one below? The deprecated "format" field will go away at some point, so I'm not sure the consistency is an argument there. > > +/** > > + * image_format_info_min_pitch - computes the minimum required pitch in bytes > > + * @info: pixel format info > > + * @plane: plane index > > + * @buffer_width: buffer width in pixels > > + * > > + * Returns: > > + * The minimum required pitch in bytes for a buffer by taking into consideration > > + * the pixel format information and the buffer width. > > + */ > > +static inline > > +uint64_t image_format_info_min_pitch(const struct image_format_info *info, > > + int plane, unsigned int buffer_width) > > +{ > > + if (!info || plane < 0 || plane >= info->num_planes) > > + return 0; > > + > > + return DIV_ROUND_UP_ULL((u64)buffer_width * info->char_per_block[plane], > > + image_format_info_block_width(info, plane) * > > + image_format_info_block_height(info, plane)); > > I'm not sure I understand how this works: char_per_block is 0 for > almost all formats and this doesn't take in account the cpp. Am I > missing something here? I guess it doesn't. That's the DRM function here, without any modification, but from a quick look at the current users of that function, there's nobody that uses the value directly. So you might be right there. > Also, this might be a good occasion to discuss what meaning we want to > give "stride" and "pitch": should one be in bytes and the other in bit, > etc? I keep forgetting what each API expects. pitch is documented as bytes, and the function computing the stride I added did too. I'll remove the stride one. Maxime -- Maxime Ripard, Bootlin Embedded Linux and Kernel engineering https://bootlin.com