Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * Analog Devices ADV7511 HDMI Transmitter Device Driver
0004  *
0005  * Copyright 2013 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
0006  */
0007 
0008 #ifndef ADV7511_H
0009 #define ADV7511_H
0010 
0011 /* notify events */
0012 #define ADV7511_MONITOR_DETECT 0
0013 #define ADV7511_EDID_DETECT 1
0014 
0015 
0016 struct adv7511_monitor_detect {
0017     int present;
0018 };
0019 
0020 struct adv7511_edid_detect {
0021     int present;
0022     int segment;
0023     uint16_t phys_addr;
0024 };
0025 
0026 struct adv7511_platform_data {
0027     u8 i2c_edid;
0028     u8 i2c_cec;
0029     u8 i2c_pktmem;
0030     u32 cec_clk;
0031 };
0032 
0033 #endif