s5p_hdmi.h 985 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Driver header for S5P HDMI chip.
  3. *
  4. * Copyright (c) 2011 Samsung Electronics, Co. Ltd
  5. * Contact: Tomasz Stanislawski <t.stanislaws@samsung.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. */
  12. #ifndef S5P_HDMI_H
  13. #define S5P_HDMI_H
  14. struct i2c_board_info;
  15. /**
  16. * @hdmiphy_bus: controller id for HDMIPHY bus
  17. * @hdmiphy_info: template for HDMIPHY I2C device
  18. * @mhl_bus: controller id for MHL control bus
  19. * @mhl_info: template for MHL I2C device
  20. * @hpd_gpio: GPIO for Hot-Plug-Detect pin
  21. *
  22. * NULL pointer for *_info fields indicates that
  23. * the corresponding chip is not present
  24. */
  25. struct s5p_hdmi_platform_data {
  26. int hdmiphy_bus;
  27. struct i2c_board_info *hdmiphy_info;
  28. int mhl_bus;
  29. struct i2c_board_info *mhl_info;
  30. int hpd_gpio;
  31. };
  32. #endif /* S5P_HDMI_H */