WIP FPC-III support
[linux/fpc-iii.git] / include / media / i2c / adv7511.h
blob1874c05f486fe31747d66cd65ed312f2fd3c471d
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Analog Devices ADV7511 HDMI Transmitter Device Driver
5 * Copyright 2013 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
6 */
8 #ifndef ADV7511_H
9 #define ADV7511_H
11 /* notify events */
12 #define ADV7511_MONITOR_DETECT 0
13 #define ADV7511_EDID_DETECT 1
16 struct adv7511_monitor_detect {
17 int present;
20 struct adv7511_edid_detect {
21 int present;
22 int segment;
23 uint16_t phys_addr;
26 struct adv7511_platform_data {
27 u8 i2c_edid;
28 u8 i2c_cec;
29 u8 i2c_pktmem;
30 u32 cec_clk;
33 #endif