Home
last modified time | relevance | path

Searched refs:vsp (Results 1 – 25 of 46) sorted by relevance

12

/OK3568_Linux_fs/kernel/drivers/gpu/drm/rcar-du/
H A Drcar_du_vsp.c94 vsp1_du_setup_lif(crtc->vsp->vsp, crtc->vsp_pipe, &cfg); in rcar_du_vsp_enable()
99 vsp1_du_setup_lif(crtc->vsp->vsp, crtc->vsp_pipe, NULL); in rcar_du_vsp_disable()
104 vsp1_du_atomic_begin(crtc->vsp->vsp, crtc->vsp_pipe); in rcar_du_vsp_atomic_begin()
117 vsp1_du_atomic_flush(crtc->vsp->vsp, crtc->vsp_pipe, &cfg); in rcar_du_vsp_atomic_flush()
180 vsp1_du_atomic_update(plane->vsp->vsp, crtc->vsp_pipe, in rcar_du_vsp_plane_setup()
184 int rcar_du_vsp_map_fb(struct rcar_du_vsp *vsp, struct drm_framebuffer *fb, in rcar_du_vsp_map_fb() argument
187 struct rcar_du_device *rcdu = vsp->dev; in rcar_du_vsp_map_fb()
200 ret = vsp1_du_map_sg(vsp->vsp, sgt); in rcar_du_vsp_map_fb()
213 vsp1_du_unmap_sg(vsp->vsp, sgt); in rcar_du_vsp_map_fb()
224 struct rcar_du_vsp *vsp = to_rcar_vsp_plane(plane)->vsp; in rcar_du_vsp_plane_prepare_fb() local
[all …]
H A Drcar_du_vsp.h22 struct rcar_du_vsp *vsp; member
28 struct device *vsp; member
59 int rcar_du_vsp_init(struct rcar_du_vsp *vsp, struct device_node *np,
65 int rcar_du_vsp_map_fb(struct rcar_du_vsp *vsp, struct drm_framebuffer *fb,
67 void rcar_du_vsp_unmap_fb(struct rcar_du_vsp *vsp, struct drm_framebuffer *fb,
70 static inline int rcar_du_vsp_init(struct rcar_du_vsp *vsp, in rcar_du_vsp_init() argument
80 static inline int rcar_du_vsp_map_fb(struct rcar_du_vsp *vsp, in rcar_du_vsp_map_fb() argument
86 static inline void rcar_du_vsp_unmap_fb(struct rcar_du_vsp *vsp, in rcar_du_vsp_unmap_fb() argument
H A Drcar_du_kms.c652 rcdu->crtcs[i].vsp = &rcdu->vsps[j]; in rcar_du_vsps_init()
661 struct rcar_du_vsp *vsp = &rcdu->vsps[i]; in rcar_du_vsps_init() local
663 vsp->index = i; in rcar_du_vsps_init()
664 vsp->dev = rcdu; in rcar_du_vsps_init()
666 ret = rcar_du_vsp_init(vsp, vsps[i].np, vsps[i].crtcs_mask); in rcar_du_vsps_init()
H A Drcar_du_writeback.c63 ret = rcar_du_vsp_map_fb(rcrtc->vsp, job->fb, rjob->sg_tables); in rcar_du_wb_prepare_job()
82 rcar_du_vsp_unmap_fb(rcrtc->vsp, job->fb, rjob->sg_tables); in rcar_du_wb_cleanup_job()
H A Drcar_du_crtc.c886 count = rcrtc->vsp->num_planes + 1; in rcar_du_crtc_crc_init()
896 for (i = 0; i < rcrtc->vsp->num_planes; ++i) { in rcar_du_crtc_crc_init()
897 struct drm_plane *plane = &rcrtc->vsp->planes[i].plane; in rcar_du_crtc_crc_init()
1034 for (i = 0; i < rcrtc->vsp->num_planes; ++i) { in rcar_du_crtc_parse_crc_source()
1035 if (index == rcrtc->vsp->planes[i].plane.base.id) in rcar_du_crtc_parse_crc_source()
1257 primary = &rcrtc->vsp->planes[rcrtc->vsp_pipe].plane; in rcar_du_crtc_create()
H A Drcar_du_crtc.h69 struct rcar_du_vsp *vsp; member
/OK3568_Linux_fs/kernel/arch/arm/kernel/
H A Dunwind.c233 unsigned long **vsp, unsigned int reg) in unwind_pop_register() argument
236 if (*vsp >= (unsigned long *)ctrl->sp_high) in unwind_pop_register()
239 ctrl->vrs[reg] = *(*vsp)++; in unwind_pop_register()
247 unsigned long *vsp = (unsigned long *)ctrl->vrs[SP]; in unwind_exec_pop_subset_r4_to_r13() local
253 if (unwind_pop_register(ctrl, &vsp, reg)) in unwind_exec_pop_subset_r4_to_r13()
259 ctrl->vrs[SP] = (unsigned long)vsp; in unwind_exec_pop_subset_r4_to_r13()
267 unsigned long *vsp = (unsigned long *)ctrl->vrs[SP]; in unwind_exec_pop_r4_to_rN() local
272 if (unwind_pop_register(ctrl, &vsp, reg)) in unwind_exec_pop_r4_to_rN()
276 if (unwind_pop_register(ctrl, &vsp, 14)) in unwind_exec_pop_r4_to_rN()
279 ctrl->vrs[SP] = (unsigned long)vsp; in unwind_exec_pop_r4_to_rN()
[all …]
/OK3568_Linux_fs/u-boot/arch/arm/lib/
H A Dstacktrace.c205 static bool pop_vsp(uint32_t *reg, ulong *vsp, bool kernel_stack, in pop_vsp() argument
208 if (*vsp > gd->start_addr_sp || in pop_vsp()
209 *vsp < gd->start_addr_sp - CONFIG_SYS_STACK_SIZE) in pop_vsp()
212 if (!copy_in(reg, (void *)*vsp, sizeof(*reg), kernel_stack)) in pop_vsp()
215 (*vsp) += sizeof(*reg); in pop_vsp()
226 ulong vsp = state->registers[SP]; in unwind_exec_insn() local
258 if (!pop_vsp(&state->registers[reg], &vsp, in unwind_exec_insn()
287 if (!pop_vsp(&state->registers[reg], &vsp, in unwind_exec_insn()
295 if (!pop_vsp(&state->registers[14], &vsp, kernel_stack, in unwind_exec_insn()
319 if (!pop_vsp(&state->registers[reg], &vsp, in unwind_exec_insn()
[all …]
/OK3568_Linux_fs/kernel/sound/soc/codecs/
H A Dcx20442.c156 int vls, vsp, old, len; in cx20442_write() local
174 vsp = cx20442_pm_to_v253_vsp(value); in cx20442_write()
175 if (vsp < 0) in cx20442_write()
176 return vsp; in cx20442_write()
180 if (vsp == cx20442_pm_to_v253_vsp(old)) in cx20442_write()
182 len = snprintf(buf, ARRAY_SIZE(buf), "at+vsp=%d\r", vsp); in cx20442_write()
183 } else if (vsp == cx20442_pm_to_v253_vsp(old)) in cx20442_write()
187 "at+vls=%d;+vsp=%d\r", vls, vsp); in cx20442_write()
/OK3568_Linux_fs/kernel/arch/arm/vfp/
H A Dvfpsingle.c324 struct vfp_single *vsp = &vsd; in vfp_single_fsqrt() local
327 ret = vfp_propagate_nan(vsp, &vsm, NULL, fpscr); in vfp_single_fsqrt()
330 vsp = &vsm; in vfp_single_fsqrt()
334 vsp = &vfp_single_default_qnan; in vfp_single_fsqrt()
337 vfp_put_float(vfp_single_pack(vsp), sd); in vfp_single_fsqrt()
732 struct vfp_single *vsp; in vfp_single_fadd_nonnumber() local
748 vsp = &vfp_single_default_qnan; in vfp_single_fadd_nonnumber()
753 vsp = vsn; in vfp_single_fadd_nonnumber()
759 vsp = vsn; in vfp_single_fadd_nonnumber()
766 *vsd = *vsp; in vfp_single_fadd_nonnumber()
[all …]
/OK3568_Linux_fs/kernel/drivers/video/fbdev/
H A Dcarminefb.c66 u32 vsp; member
109 .vsp = 490,
121 .vsp = 601,
371 u32 hdp, vdp, htp, hsp, hsw, vtr, vsp, vsw; in set_display_parameters() local
383 vsp = par->res->vsp - 1; in set_display_parameters()
397 (vdp << CARMINE_DISP_VDP_SHIFT) | vsp); in set_display_parameters()
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/clock/
H A Dsprd,sc9860-clk.txt15 - "sprd,sc9860-vsp-clk"
16 - "sprd,sc9860-vsp-gate"
/OK3568_Linux_fs/kernel/drivers/video/fbdev/mb862xx/
H A Dmb862xxfbdrv.c59 static inline int vsp(struct fb_var_screeninfo *var) in vsp() function
255 reg = pack((fbi->var.yres - 1), vsp(&fbi->var)); in mb862xxfb_set_par()
447 unsigned long hsp, vsp, ht, vt; in mb862xxfb_init_fbinfo() local
454 vsp = (reg & 0x0fff) + 1; in mb862xxfb_init_fbinfo()
475 fbi->var.lower_margin = vsp - fbi->var.yres; in mb862xxfb_init_fbinfo()
476 fbi->var.upper_margin = vt - vsp - fbi->var.vsync_len; in mb862xxfb_init_fbinfo()
/OK3568_Linux_fs/kernel/arch/arm64/boot/dts/renesas/
H A Dr8a77950.dtsi155 vspd3: vsp@fea38000 {
166 vspi2: vsp@fe9c0000 {
H A Dr8a77995.dtsi949 vspbs: vsp@fe960000 {
959 vspd0: vsp@fea20000 {
969 vspd1: vsp@fea28000 {
H A Dr8a77961.dtsi1988 vspb: vsp@fe960000 {
1999 vspd0: vsp@fea20000 {
2010 vspd1: vsp@fea28000 {
2021 vspd2: vsp@fea30000 {
2032 vspi0: vsp@fe9a0000 {
H A Dr8a77951.dtsi2768 vspbc: vsp@fe920000 {
2779 vspbd: vsp@fe960000 {
2790 vspd0: vsp@fea20000 {
2801 vspd1: vsp@fea28000 {
2812 vspd2: vsp@fea30000 {
2823 vspi0: vsp@fe9a0000 {
2834 vspi1: vsp@fe9b0000 {
H A Dr8a774e1.dtsi2532 vspbc: vsp@fe920000 {
2543 vspbd: vsp@fe960000 {
2554 vspd0: vsp@fea20000 {
2565 vspd1: vsp@fea28000 {
2576 vspi0: vsp@fe9a0000 {
2587 vspi1: vsp@fe9b0000 {
/OK3568_Linux_fs/kernel/arch/arm64/boot/dts/sprd/
H A Dsc9860.dtsi254 compatible = "sprd,sc9860-vsp-clk";
260 vsp_gate: vsp-gate {
261 compatible = "sprd,sc9860-vsp-gate";
/OK3568_Linux_fs/u-boot/arch/arm/dts/
H A Dr8a7795.dtsi1540 vspbc: vsp@fe920000 {
1583 vspbd: vsp@fe960000 {
1602 vspi0: vsp@fe9a0000 {
1621 vspi1: vsp@fe9b0000 {
1640 vspi2: vsp@fe9c0000 {
1659 vspd0: vsp@fea20000 {
1678 vspd1: vsp@fea28000 {
1697 vspd2: vsp@fea30000 {
1716 vspd3: vsp@fea38000 {
H A Dexynos4210-universal_c210.dts48 samsung,vl-vsp = <1>;
H A Dexynos4210-trats.dts40 samsung,vl-vsp = <1>;
/OK3568_Linux_fs/kernel/drivers/gpu/drm/radeon/
H A Dni_dpm.h158 u32 vsp; member
/OK3568_Linux_fs/u-boot/doc/device-tree-bindings/video/
H A Dexynos-fb.txt31 samsung,vl-vsp: Vertical Sync polarity
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Dr8a7792.dtsi813 vsp@fe928000 {
822 vsp@fe930000 {
831 vsp@fe938000 {

12