Home
last modified time | relevance | path

Searched refs:vbp (Results 1 - 25 of 103) sorted by relevance

12345

/kernel/linux/linux-5.10/drivers/scsi/sym53c8xx_2/
H A Dsym_malloc.c212 m_vtob_p vbp; in ___get_dma_mem_cluster() local
215 vbp = __sym_calloc(&mp0, sizeof(*vbp), "VTOB"); in ___get_dma_mem_cluster()
216 if (!vbp) in ___get_dma_mem_cluster()
219 vaddr = sym_m_get_dma_mem_cluster(mp, vbp); in ___get_dma_mem_cluster()
222 vbp->next = mp->vtob[hc]; in ___get_dma_mem_cluster()
223 mp->vtob[hc] = vbp; in ___get_dma_mem_cluster()
235 m_vtob_p *vbpp, vbp; in ___free_dma_mem_cluster() local
242 vbp = *vbpp; in ___free_dma_mem_cluster()
244 sym_m_free_dma_mem_cluster(mp, vbp); in ___free_dma_mem_cluster()
[all...]
H A Dsym_hipd.h1193 static inline void *sym_m_get_dma_mem_cluster(m_pool_p mp, m_vtob_p vbp) in sym_m_get_dma_mem_cluster() argument
1201 vbp->vaddr = vaddr; in sym_m_get_dma_mem_cluster()
1202 vbp->baddr = baddr; in sym_m_get_dma_mem_cluster()
1207 static inline void sym_m_free_dma_mem_cluster(m_pool_p mp, m_vtob_p vbp) in sym_m_free_dma_mem_cluster() argument
1209 dma_free_coherent(mp->dev_dmat, SYM_MEM_CLUSTER_SIZE, vbp->vaddr, in sym_m_free_dma_mem_cluster()
1210 vbp->baddr); in sym_m_free_dma_mem_cluster()
/kernel/linux/linux-6.6/drivers/scsi/sym53c8xx_2/
H A Dsym_malloc.c212 m_vtob_p vbp; in ___get_dma_mem_cluster() local
215 vbp = __sym_calloc(&mp0, sizeof(*vbp), "VTOB"); in ___get_dma_mem_cluster()
216 if (!vbp) in ___get_dma_mem_cluster()
219 vaddr = sym_m_get_dma_mem_cluster(mp, vbp); in ___get_dma_mem_cluster()
222 vbp->next = mp->vtob[hc]; in ___get_dma_mem_cluster()
223 mp->vtob[hc] = vbp; in ___get_dma_mem_cluster()
235 m_vtob_p *vbpp, vbp; in ___free_dma_mem_cluster() local
242 vbp = *vbpp; in ___free_dma_mem_cluster()
244 sym_m_free_dma_mem_cluster(mp, vbp); in ___free_dma_mem_cluster()
[all...]
H A Dsym_hipd.h1193 static inline void *sym_m_get_dma_mem_cluster(m_pool_p mp, m_vtob_p vbp) in sym_m_get_dma_mem_cluster() argument
1201 vbp->vaddr = vaddr; in sym_m_get_dma_mem_cluster()
1202 vbp->baddr = baddr; in sym_m_get_dma_mem_cluster()
1207 static inline void sym_m_free_dma_mem_cluster(m_pool_p mp, m_vtob_p vbp) in sym_m_free_dma_mem_cluster() argument
1209 dma_free_coherent(mp->dev_dmat, SYM_MEM_CLUSTER_SIZE, vbp->vaddr, in sym_m_free_dma_mem_cluster()
1210 vbp->baddr); in sym_m_free_dma_mem_cluster()
/kernel/linux/linux-5.10/drivers/gpu/drm/bridge/adv7511/
H A Dadv7533.c31 unsigned int hsw, hfp, hbp, vsw, vfp, vbp; in adv7511_dsi_config_timing_gen() local
39 vbp = mode->vtotal - mode->vsync_end; in adv7511_dsi_config_timing_gen()
62 regmap_write(adv->regmap_cec, 0x36, vbp >> 4); in adv7511_dsi_config_timing_gen()
63 regmap_write(adv->regmap_cec, 0x37, (vbp << 4) & 0xff); in adv7511_dsi_config_timing_gen()
/kernel/linux/linux-6.6/drivers/gpu/drm/bridge/adv7511/
H A Dadv7533.c31 unsigned int hsw, hfp, hbp, vsw, vfp, vbp; in adv7511_dsi_config_timing_gen() local
39 vbp = mode->vtotal - mode->vsync_end; in adv7511_dsi_config_timing_gen()
62 regmap_write(adv->regmap_cec, 0x36, vbp >> 4); in adv7511_dsi_config_timing_gen()
63 regmap_write(adv->regmap_cec, 0x37, (vbp << 4) & 0xff); in adv7511_dsi_config_timing_gen()
/kernel/linux/linux-5.10/drivers/gpu/drm/tilcdc/
H A Dtilcdc_crtc.c280 uint32_t reg, hbp, hfp, hsw, vbp, vfp, vsw; in tilcdc_crtc_set_mode() local
319 vbp = mode->vtotal - mode->vsync_end; in tilcdc_crtc_set_mode()
323 DBG("%dx%d, hbp=%u, hfp=%u, hsw=%u, vbp=%u, vfp=%u, vsw=%u", in tilcdc_crtc_set_mode()
324 mode->hdisplay, mode->vdisplay, hbp, hfp, hsw, vbp, vfp, vsw); in tilcdc_crtc_set_mode()
353 ((vbp & 0xff) << 24) | in tilcdc_crtc_set_mode()
756 uint32_t hbp, hfp, hsw, vbp, vfp, vsw; in tilcdc_crtc_mode_valid() local
779 vbp = mode->vtotal - mode->vsync_end; in tilcdc_crtc_mode_valid()
798 if (vbp & ~0xff) { in tilcdc_crtc_mode_valid()
/kernel/linux/linux-6.6/drivers/gpu/drm/tilcdc/
H A Dtilcdc_crtc.c279 uint32_t reg, hbp, hfp, hsw, vbp, vfp, vsw; in tilcdc_crtc_set_mode() local
318 vbp = mode->vtotal - mode->vsync_end; in tilcdc_crtc_set_mode()
322 DBG("%dx%d, hbp=%u, hfp=%u, hsw=%u, vbp=%u, vfp=%u, vsw=%u", in tilcdc_crtc_set_mode()
323 mode->hdisplay, mode->vdisplay, hbp, hfp, hsw, vbp, vfp, vsw); in tilcdc_crtc_set_mode()
352 ((vbp & 0xff) << 24) | in tilcdc_crtc_set_mode()
776 uint32_t hbp, hfp, hsw, vbp, vfp, vsw; in tilcdc_crtc_mode_valid() local
799 vbp = mode->vtotal - mode->vsync_end; in tilcdc_crtc_mode_valid()
818 if (vbp & ~0xff) { in tilcdc_crtc_mode_valid()
/kernel/linux/linux-5.10/drivers/video/fbdev/omap2/omapfb/dss/
H A Dhdmi_wp.c175 timing_v |= FLD_VAL(timings->vbp, 31, 20); in hdmi_wp_video_config_timing()
195 timings->vbp = param->timings.vbp; in hdmi_wp_init_vid_fmt_timings()
H A Ddisplay-sysfs.c99 t.y_res, t.vfp, t.vbp, t.vsw); in display_timings_show()
124 &t.y_res, &t.vfp, &t.vbp, &t.vsw) != 9) in display_timings_store()
/kernel/linux/linux-6.6/drivers/video/fbdev/omap2/omapfb/dss/
H A Dhdmi_wp.c175 timing_v |= FLD_VAL(timings->vbp, 31, 20); in hdmi_wp_video_config_timing()
195 timings->vbp = param->timings.vbp; in hdmi_wp_init_vid_fmt_timings()
/kernel/linux/linux-6.6/drivers/gpu/drm/logicvc/
H A Dlogicvc_crtc.c75 unsigned int vact, vfp, vsl, vbp; in logicvc_crtc_atomic_enable() local
89 vbp = mode->vtotal - mode->vsync_end; in logicvc_crtc_atomic_enable()
98 regmap_write(logicvc->regmap, LOGICVC_VSYNC_BACK_PORCH_REG, vbp - 1); in logicvc_crtc_atomic_enable()
/kernel/linux/linux-6.6/drivers/gpu/drm/bridge/
H A Dlontium-lt8912b.c276 u32 vactive, v_total, vpw, vfp, vbp; in lt8912_video_setup() local
293 vbp = lt->mode.vback_porch; in lt8912_video_setup()
294 v_total = vactive + vfp + vpw + vbp; in lt8912_video_setup()
317 ret |= regmap_write(lt->regmap[I2C_CEC_DSI], 0x38, vbp & 0xff); in lt8912_video_setup()
318 ret |= regmap_write(lt->regmap[I2C_CEC_DSI], 0x39, vbp >> 8); in lt8912_video_setup()
/kernel/linux/linux-5.10/drivers/video/fbdev/omap/
H A Dlcd_inn1510.c42 .vbp = 0,
H A Dlcd_palmtt.c42 .vbp = 7,
H A Dlcd_palmz71.c36 .vbp = 7,
H A Dlcd_palmte.c31 .vbp = 7,
H A Dlcd_htcherald.c39 .vbp = 2,
H A Dlcd_osk.c62 .vbp = 0,
H A Dlcd_h3.c58 .vbp = 0,
H A Dlcd_inn1610.c73 .vbp = 0,
/kernel/linux/linux-6.6/drivers/video/fbdev/omap/
H A Dlcd_palmte.c31 .vbp = 7,
/kernel/linux/linux-5.10/drivers/gpu/drm/pl111/
H A Dpl111_display.c133 u32 lpp, vsw, vfp, vbp; in pl111_display_enable() local
154 vbp = mode->vtotal - mode->vsync_end; in pl111_display_enable()
166 (vbp << 24), in pl111_display_enable()
/kernel/linux/linux-6.6/drivers/gpu/drm/pl111/
H A Dpl111_display.c134 u32 lpp, vsw, vfp, vbp; in pl111_display_enable() local
155 vbp = mode->vtotal - mode->vsync_end; in pl111_display_enable()
167 (vbp << 24), in pl111_display_enable()
/kernel/linux/linux-5.10/drivers/gpu/drm/panel/
H A Dpanel-olimex-lcd-olinuxino.c35 u32 vbp; member
172 lcd_mode->vpw + lcd_mode->vbp; in lcd_olinuxino_get_modes()

Completed in 17 milliseconds

12345