adv7511.h 547 B

123456789101112131415161718192021222324252627282930313233
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Analog Devices ADV7511 HDMI Transmitter Device Driver
  4. *
  5. * Copyright 2013 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
  6. */
  7. #ifndef ADV7511_H
  8. #define ADV7511_H
  9. /* notify events */
  10. #define ADV7511_MONITOR_DETECT 0
  11. #define ADV7511_EDID_DETECT 1
  12. struct adv7511_monitor_detect {
  13. int present;
  14. };
  15. struct adv7511_edid_detect {
  16. int present;
  17. int segment;
  18. uint16_t phys_addr;
  19. };
  20. struct adv7511_platform_data {
  21. u8 i2c_edid;
  22. u8 i2c_cec;
  23. u8 i2c_pktmem;
  24. u32 cec_clk;
  25. };
  26. #endif