Tomasz Stanislawski | 350f2f4d | 2011-09-21 11:53:31 -0300 | [diff] [blame] | 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 | |
| 13 | #ifndef S5P_HDMI_H |
| 14 | #define S5P_HDMI_H |
| 15 | |
| 16 | struct i2c_board_info; |
| 17 | |
| 18 | /** |
| 19 | * @hdmiphy_bus: controller id for HDMIPHY bus |
| 20 | * @hdmiphy_info: template for HDMIPHY I2C device |
| 21 | * @mhl_bus: controller id for MHL control bus |
| 22 | * @mhl_info: template for MHL I2C device |
Tomasz Stanislawski | c17eaf0 | 2012-10-04 20:48:43 +0530 | [diff] [blame] | 23 | * @hpd_gpio: GPIO for Hot-Plug-Detect pin |
Tomasz Stanislawski | 350f2f4d | 2011-09-21 11:53:31 -0300 | [diff] [blame] | 24 | * |
| 25 | * NULL pointer for *_info fields indicates that |
| 26 | * the corresponding chip is not present |
| 27 | */ |
| 28 | struct s5p_hdmi_platform_data { |
| 29 | int hdmiphy_bus; |
| 30 | struct i2c_board_info *hdmiphy_info; |
| 31 | int mhl_bus; |
| 32 | struct i2c_board_info *mhl_info; |
Tomasz Stanislawski | c17eaf0 | 2012-10-04 20:48:43 +0530 | [diff] [blame] | 33 | int hpd_gpio; |
Tomasz Stanislawski | 350f2f4d | 2011-09-21 11:53:31 -0300 | [diff] [blame] | 34 | }; |
| 35 | |
| 36 | #endif /* S5P_HDMI_H */ |
| 37 | |