Home
last modified time | relevance | path

Searched refs:adv7511 (Results 1 – 16 of 16) sorted by relevance

/linux-5.19.10/drivers/gpu/drm/bridge/adv7511/
Dadv7511_drv.c135 static void adv7511_set_colormap(struct adv7511 *adv7511, bool enable, in adv7511_set_colormap() argument
141 regmap_update_bits(adv7511->regmap, ADV7511_REG_CSC_UPPER(1), in adv7511_set_colormap()
146 regmap_update_bits(adv7511->regmap, in adv7511_set_colormap()
149 regmap_write(adv7511->regmap, in adv7511_set_colormap()
156 regmap_update_bits(adv7511->regmap, ADV7511_REG_CSC_UPPER(0), in adv7511_set_colormap()
159 regmap_update_bits(adv7511->regmap, ADV7511_REG_CSC_UPPER(0), in adv7511_set_colormap()
162 regmap_update_bits(adv7511->regmap, ADV7511_REG_CSC_UPPER(1), in adv7511_set_colormap()
166 static int adv7511_packet_enable(struct adv7511 *adv7511, unsigned int packet) in adv7511_packet_enable() argument
169 regmap_update_bits(adv7511->regmap, ADV7511_REG_PACKET_ENABLE0, in adv7511_packet_enable()
174 regmap_update_bits(adv7511->regmap, ADV7511_REG_PACKET_ENABLE1, in adv7511_packet_enable()
[all …]
Dadv7511_cec.c35 static void adv_cec_tx_raw_status(struct adv7511 *adv7511, u8 tx_raw_status) in adv_cec_tx_raw_status() argument
37 unsigned int offset = adv7511->reg_cec_offset; in adv_cec_tx_raw_status()
40 if (regmap_read(adv7511->regmap_cec, in adv_cec_tx_raw_status()
48 cec_transmit_attempt_done(adv7511->cec_adap, in adv_cec_tx_raw_status()
64 if (regmap_read(adv7511->regmap_cec, in adv_cec_tx_raw_status()
76 cec_transmit_done(adv7511->cec_adap, status, in adv_cec_tx_raw_status()
81 cec_transmit_attempt_done(adv7511->cec_adap, CEC_TX_STATUS_OK); in adv_cec_tx_raw_status()
86 static void adv7511_cec_rx(struct adv7511 *adv7511, int rx_buf) in adv7511_cec_rx() argument
88 unsigned int offset = adv7511->reg_cec_offset; in adv7511_cec_rx()
94 if (regmap_read(adv7511->regmap_cec, in adv7511_cec_rx()
[all …]
Dadv7511_audio.c37 static int adv7511_update_cts_n(struct adv7511 *adv7511) in adv7511_update_cts_n() argument
42 adv7511_calc_cts_n(adv7511->f_tmds, adv7511->f_audio, &cts, &n); in adv7511_update_cts_n()
44 regmap_write(adv7511->regmap, ADV7511_REG_N0, (n >> 16) & 0xf); in adv7511_update_cts_n()
45 regmap_write(adv7511->regmap, ADV7511_REG_N1, (n >> 8) & 0xff); in adv7511_update_cts_n()
46 regmap_write(adv7511->regmap, ADV7511_REG_N2, n & 0xff); in adv7511_update_cts_n()
48 regmap_write(adv7511->regmap, ADV7511_REG_CTS_MANUAL0, in adv7511_update_cts_n()
50 regmap_write(adv7511->regmap, ADV7511_REG_CTS_MANUAL1, in adv7511_update_cts_n()
52 regmap_write(adv7511->regmap, ADV7511_REG_CTS_MANUAL2, in adv7511_update_cts_n()
62 struct adv7511 *adv7511 = dev_get_drvdata(dev); in adv7511_hdmi_hw_params() local
139 regmap_update_bits(adv7511->regmap, ADV7511_REG_AUDIO_SOURCE, 0x70, in adv7511_hdmi_hw_params()
[all …]
Dadv7511.h336 struct adv7511 { struct
392 int adv7511_cec_init(struct device *dev, struct adv7511 *adv7511); argument
393 void adv7511_cec_irq_process(struct adv7511 *adv7511, unsigned int irq1);
395 static inline int adv7511_cec_init(struct device *dev, struct adv7511 *adv7511) in adv7511_cec_init() argument
397 unsigned int offset = adv7511->type == ADV7533 ? in adv7511_cec_init()
400 regmap_write(adv7511->regmap, ADV7511_REG_CEC_CTRL + offset, in adv7511_cec_init()
406 void adv7533_dsi_power_on(struct adv7511 *adv);
407 void adv7533_dsi_power_off(struct adv7511 *adv);
408 void adv7533_mode_set(struct adv7511 *adv, const struct drm_display_mode *mode);
409 int adv7533_patch_registers(struct adv7511 *adv);
[all …]
DMakefile2 adv7511-y := adv7511_drv.o adv7533.o
3 adv7511-$(CONFIG_DRM_I2C_ADV7511_AUDIO) += adv7511_audio.o
4 adv7511-$(CONFIG_DRM_I2C_ADV7511_CEC) += adv7511_cec.o
5 obj-$(CONFIG_DRM_I2C_ADV7511) += adv7511.o
Dadv7533.c27 static void adv7511_dsi_config_timing_gen(struct adv7511 *adv) in adv7511_dsi_config_timing_gen()
66 void adv7533_dsi_power_on(struct adv7511 *adv) in adv7533_dsi_power_on()
95 void adv7533_dsi_power_off(struct adv7511 *adv) in adv7533_dsi_power_off()
103 void adv7533_mode_set(struct adv7511 *adv, const struct drm_display_mode *mode) in adv7533_mode_set()
125 int adv7533_patch_registers(struct adv7511 *adv) in adv7533_patch_registers()
132 int adv7533_patch_cec_registers(struct adv7511 *adv) in adv7533_patch_cec_registers()
139 int adv7533_attach_dsi(struct adv7511 *adv) in adv7533_attach_dsi()
178 int adv7533_parse_dt(struct device_node *np, struct adv7511 *adv) in adv7533_parse_dt()
/linux-5.19.10/arch/arc/boot/dts/
Daxs10x_mb.dtsi188 adv7511:adv7511@39{ label
189 compatible="adi,adv7511";
326 sound-dai = <&adv7511>;
/linux-5.19.10/arch/arm/boot/dts/
Dzynq-zc706.dts88 adv7511: hdmi-tx@39 { label
89 compatible = "adi,adv7511";
Dzynq-zc702.dts136 adv7511: hdmi-tx@39 { label
137 compatible = "adi,adv7511";
/linux-5.19.10/drivers/gpu/drm/bridge/
DMakefile28 obj-$(CONFIG_DRM_I2C_ADV7511) += adv7511/
DKconfig368 source "drivers/gpu/drm/bridge/adv7511/Kconfig"
/linux-5.19.10/Documentation/devicetree/bindings/display/bridge/
Dadi,adv7511.yaml4 $id: http://devicetree.org/schemas/display/bridge/adi,adv7511.yaml#
21 - adi,adv7511
/linux-5.19.10/drivers/media/i2c/
DMakefile16 obj-$(CONFIG_VIDEO_ADV7511) += adv7511-v4l2.o
DKconfig1423 module will be called adv7511.
1430 When selected the adv7511 will support the optional
/linux-5.19.10/Documentation/admin-guide/media/
Di2c-cardlist.rst230 adv7511-v4l2 Analog Devices ADV7511 encoder
/linux-5.19.10/
DMAINTAINERS1255 F: drivers/media/i2c/adv7511*