/* SPDX-License-Identifier: GPL-2.0-only */1/*2* Analog Devices ADV7511 HDMI Transmitter Device Driver3*4* Copyright 2013 Cisco Systems, Inc. and/or its affiliates. All rights reserved.5*/67#ifndef ADV7511_H8#define ADV7511_H910/* notify events */11#define ADV7511_MONITOR_DETECT 012#define ADV7511_EDID_DETECT 1131415struct adv7511_monitor_detect {16int present;17};1819struct adv7511_edid_detect {20int present;21int segment;22uint16_t phys_addr;23};2425struct adv7511_platform_data {26u8 i2c_edid;27u8 i2c_cec;28u8 i2c_pktmem;29u32 cec_clk;30};3132#endif333435