]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - include/media/i2c/adv7511.h
Merge tag 'asm-generic-fixes-v5.11' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-hirsute-kernel.git] / include / media / i2c / adv7511.h
CommitLineData
ab15d248 1/* SPDX-License-Identifier: GPL-2.0-only */
5a544cce
HV
2/*
3 * Analog Devices ADV7511 HDMI Transmitter Device Driver
4 *
5 * Copyright 2013 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
5a544cce
HV
6 */
7
8#ifndef ADV7511_H
9#define ADV7511_H
10
11/* notify events */
12#define ADV7511_MONITOR_DETECT 0
13#define ADV7511_EDID_DETECT 1
14
15
16struct adv7511_monitor_detect {
17 int present;
18};
19
20struct adv7511_edid_detect {
21 int present;
22 int segment;
257d4eae 23 uint16_t phys_addr;
5a544cce
HV
24};
25
26struct adv7511_platform_data {
5be50ef1
HV
27 u8 i2c_edid;
28 u8 i2c_cec;
b4dbad8f 29 u8 i2c_pktmem;
5be50ef1 30 u32 cec_clk;
5a544cce
HV
31};
32
33#endif