Home
last modified time | relevance | path

Searched refs:FLD_GET (Results 1 – 9 of 9) sorted by relevance

/linux/drivers/gpu/drm/omapdrm/dss/
H A Dhdmi4_cec.c131 if (FLD_GET(temp, 7, 7) == 0) in hdmi_cec_clear_tx_fifo()
148 if (FLD_GET(temp, 1, 0) == 0) in hdmi_cec_clear_rx_fifo()
222 if (FLD_GET(temp, 4, 4) != 0) { in hdmi_cec_adap_enable()
H A Dpll.c338 if (FLD_GET(readl_relaxed(reg), bitnum, bitnum) == value) in wait_for_bit_change()
345 if (FLD_GET(readl_relaxed(reg), bitnum, bitnum) == value) in wait_for_bit_change()
H A Dhdmi.h281 FLD_GET(hdmi_read_reg(base, idx), start, end)
H A Ddss.c56 FLD_GET(dss_read_reg(dss, idx), start, end)
1407 pr_info("OMAP DSS rev %d.%d\n", FLD_GET(rev, 7, 4), FLD_GET(rev, 3, 0)); in dss_probe_hardware()
H A Ddispc.c51 FLD_GET(dispc_read_reg(dispc, idx), start, end)
1200 if (FLD_GET(val, shift, shift) == 1) in dispc_ovl_get_channel_out()
1206 switch (FLD_GET(val, 31, 30)) { in dispc_ovl_get_channel_out()
3159 *lck_div = FLD_GET(l, 23, 16); in dispc_mgr_get_lcd_divisor()
3160 *pck_div = FLD_GET(l, 7, 0); in dispc_mgr_get_lcd_divisor()
3226 pcd = FLD_GET(l, 7, 0); in dispc_mgr_pclk_rate()
3314 lcd = FLD_GET(l, 23, 16); in dispc_dump_clocks()
4671 FLD_GET(rev, 7, 4), FLD_GET(rev, 3, 0)); in dispc_bind()
/linux/drivers/video/fbdev/omap2/omapfb/dss/
H A Dpll.c196 if (FLD_GET(readl_relaxed(reg), bitnum, bitnum) == value) in wait_for_bit_change()
203 if (FLD_GET(readl_relaxed(reg), bitnum, bitnum) == value) in wait_for_bit_change()
H A Ddss.c57 FLD_GET(dss_read_reg(idx), start, end)
1134 FLD_GET(rev, 7, 4), FLD_GET(rev, 3, 0)); in dss_bind()
H A Dhdmi.h262 FLD_GET(hdmi_read_reg(base, idx), start, end)
H A Ddss.h61 #define FLD_GET(val, start, end) (((val) & FLD_MASK(start, end)) >> (end)) macro