Lines Matching refs:top

314 	struct sti_hqvdp_top top;
485 seq_printf(s, "\n\t %-20s 0x%08X", "Config", c->top.config);
486 switch (c->top.config) {
491 seq_puts(s, "\tInterlaced, top field");
501 seq_printf(s, "\n\t %-20s 0x%08X", "MemFormat", c->top.mem_format);
502 seq_printf(s, "\n\t %-20s 0x%08X", "CurrentY", c->top.current_luma);
503 seq_printf(s, "\n\t %-20s 0x%08X", "CurrentC", c->top.current_chroma);
504 seq_printf(s, "\n\t %-20s 0x%08X", "YSrcPitch", c->top.luma_src_pitch);
506 c->top.chroma_src_pitch);
508 c->top.input_frame_size);
510 c->top.input_frame_size & 0x0000FFFF,
511 c->top.input_frame_size >> 16);
513 c->top.input_viewport_size);
514 src_w = c->top.input_viewport_size & 0x0000FFFF;
515 src_h = c->top.input_viewport_size >> 16;
830 btm_cmd->top.config = TOP_CONFIG_INTER_BTM;
831 btm_cmd->top.current_luma +=
832 btm_cmd->top.luma_src_pitch / 2;
833 btm_cmd->top.current_chroma +=
834 btm_cmd->top.chroma_src_pitch / 2;
1172 cmd->top.config = TOP_CONFIG_PROGRESSIVE;
1173 cmd->top.mem_format = TOP_MEM_FORMAT_DFLT;
1191 cmd->top.current_luma = (u32) dma_obj->dma_addr + fb->offsets[0];
1192 cmd->top.current_chroma = (u32) dma_obj->dma_addr + fb->offsets[1];
1195 cmd->top.luma_processed_pitch = fb->pitches[0];
1196 cmd->top.luma_src_pitch = fb->pitches[0];
1197 cmd->top.chroma_processed_pitch = fb->pitches[1];
1198 cmd->top.chroma_src_pitch = fb->pitches[1];
1205 cmd->top.input_viewport_size = src_h << 16 | src_w;
1206 cmd->top.input_frame_size = src_h << 16 | src_w;
1208 cmd->top.input_viewport_ori = src_y << 16 | src_x;
1213 cmd->top.config = TOP_CONFIG_INTER_TOP;
1216 cmd->top.input_frame_size = (src_h / 2) << 16 | src_w;
1217 cmd->top.luma_processed_pitch *= 2;
1218 cmd->top.luma_src_pitch *= 2;
1219 cmd->top.chroma_processed_pitch *= 2;
1220 cmd->top.chroma_src_pitch *= 2;