Searched refs:cec_read (Results 1 – 4 of 4) sorted by relevance
/linux-6.1.9/drivers/media/cec/platform/tegra/ |
D | tegra_cec.c | 52 static inline u32 cec_read(struct tegra_cec *cec, u32 reg) in cec_read() function 66 hw_ctrl = cec_read(cec, TEGRA_CEC_HW_CONTROL); in tegra_cec_error_recovery() 99 status = cec_read(cec, TEGRA_CEC_INT_STAT); in tegra_cec_irq_handler() 100 mask = cec_read(cec, TEGRA_CEC_INT_MASK); in tegra_cec_irq_handler() 175 v = cec_read(cec, TEGRA_CEC_RX_REGISTER); in tegra_cec_irq_handler() 253 u32 state = cec_read(cec, TEGRA_CEC_HW_CONTROL); in tegra_cec_adap_log_addr() 268 u32 reg = cec_read(cec, TEGRA_CEC_HW_CONTROL); in tegra_cec_adap_monitor_all_enable() 303 mask = cec_read(cec, TEGRA_CEC_INT_MASK); in tegra_cec_adap_transmit()
|
/linux-6.1.9/drivers/gpu/drm/i2c/ |
D | tda998x_drv.c | 423 cec_read(struct tda998x_priv *priv, u8 addr) in cec_read() function 452 int val = cec_read(priv, REG_CEC_ENAMODS); in cec_enamods() 474 val = cec_read(priv, REG_CEC_DES_FREQ2); in tda998x_cec_set_calibration() 795 sta = cec_read(priv, REG_CEC_INTSTATUS); in tda998x_irq_thread() 797 cec = cec_read(priv, REG_CEC_RXSHPDINT); in tda998x_irq_thread() 798 lvl = cec_read(priv, REG_CEC_RXSHPDLEV); in tda998x_irq_thread() 1197 u8 val = cec_read(priv, REG_CEC_RXSHPDLEV); in tda998x_connector_detect() 1899 cec_read(priv, REG_CEC_RXSHPDINT); in tda998x_create()
|
/linux-6.1.9/drivers/media/i2c/ |
D | adv7842.c | 379 static inline int cec_read(struct v4l2_subdev *sd, u8 reg) in cec_read() function 395 return cec_write(sd, reg, (cec_read(sd, reg) & ~mask) | val); in cec_write_clr_set() 867 reg->val = cec_read(sd, reg->reg & 0xff); in adv7842_g_register() 2162 if ((cec_read(sd, 0x11) & 0x01) == 0) { in adv7842_cec_tx_raw_status() 2185 nack_cnt = cec_read(sd, 0x14) & 0xf; in adv7842_cec_tx_raw_status() 2188 low_drive_cnt = cec_read(sd, 0x14) >> 4; in adv7842_cec_tx_raw_status() 2217 msg.len = cec_read(sd, 0x25) & 0x1f; in adv7842_cec_isr() 2225 msg.msg[i] = cec_read(sd, i + 0x15); in adv7842_cec_isr()
|
D | adv7604.c | 415 static inline int cec_read(struct v4l2_subdev *sd, u8 reg) in cec_read() function 432 return cec_write(sd, reg, (cec_read(sd, reg) & ~mask) | val); in cec_write_clr_set() 1993 if ((cec_read(sd, 0x11) & 0x01) == 0) { in adv76xx_cec_tx_raw_status() 2016 nack_cnt = cec_read(sd, 0x14) & 0xf; in adv76xx_cec_tx_raw_status() 2019 low_drive_cnt = cec_read(sd, 0x14) >> 4; in adv76xx_cec_tx_raw_status() 2049 msg.len = cec_read(sd, 0x25) & 0x1f; in adv76xx_cec_isr() 2057 msg.msg[i] = cec_read(sd, i + 0x15); in adv76xx_cec_isr()
|