]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/gpu/drm/msm/hdmi/hdmi.h
1f498b017b9310304171f13b77f1b56cf84b8a63
[karo-tx-linux.git] / drivers / gpu / drm / msm / hdmi / hdmi.h
1 /*
2  * Copyright (C) 2013 Red Hat
3  * Author: Rob Clark <robdclark@gmail.com>
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 as published by
7  * the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
12  * more details.
13  *
14  * You should have received a copy of the GNU General Public License along with
15  * this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #ifndef __HDMI_CONNECTOR_H__
19 #define __HDMI_CONNECTOR_H__
20
21 #include <linux/i2c.h>
22 #include <linux/clk.h>
23 #include <linux/platform_device.h>
24 #include <linux/regulator/consumer.h>
25 #include <linux/hdmi.h>
26
27 #include "msm_drv.h"
28 #include "hdmi.xml.h"
29
30 #define HDMI_MAX_NUM_GPIO       6
31
32 struct hdmi_phy;
33 struct hdmi_platform_config;
34
35 struct hdmi_gpio_data {
36         int num;
37         bool output;
38         int value;
39         const char *label;
40 };
41
42 struct hdmi_audio {
43         bool enabled;
44         struct hdmi_audio_infoframe infoframe;
45         int rate;
46 };
47
48 struct hdmi_hdcp_ctrl;
49
50 struct hdmi {
51         struct drm_device *dev;
52         struct platform_device *pdev;
53
54         const struct hdmi_platform_config *config;
55
56         /* audio state: */
57         struct hdmi_audio audio;
58
59         /* video state: */
60         bool power_on;
61         unsigned long int pixclock;
62
63         void __iomem *mmio;
64         void __iomem *qfprom_mmio;
65         phys_addr_t mmio_phy_addr;
66
67         struct regulator **hpd_regs;
68         struct regulator **pwr_regs;
69         struct clk **hpd_clks;
70         struct clk **pwr_clks;
71
72         struct hdmi_phy *phy;
73         struct device *phy_dev;
74
75         struct i2c_adapter *i2c;
76         struct drm_connector *connector;
77         struct drm_bridge *bridge;
78
79         /* the encoder we are hooked to (outside of hdmi block) */
80         struct drm_encoder *encoder;
81
82         bool hdmi_mode;               /* are we in hdmi mode? */
83
84         int irq;
85         struct workqueue_struct *workq;
86
87         struct hdmi_hdcp_ctrl *hdcp_ctrl;
88
89         /*
90         * spinlock to protect registers shared by different execution
91         * REG_HDMI_CTRL
92         * REG_HDMI_DDC_ARBITRATION
93         * REG_HDMI_HDCP_INT_CTRL
94         * REG_HDMI_HPD_CTRL
95         */
96         spinlock_t reg_lock;
97 };
98
99 /* platform config data (ie. from DT, or pdata) */
100 struct hdmi_platform_config {
101         const char *mmio_name;
102         const char *qfprom_mmio_name;
103
104         /* regulators that need to be on for hpd: */
105         const char **hpd_reg_names;
106         int hpd_reg_cnt;
107
108         /* regulators that need to be on for screen pwr: */
109         const char **pwr_reg_names;
110         int pwr_reg_cnt;
111
112         /* clks that need to be on for hpd: */
113         const char **hpd_clk_names;
114         const long unsigned *hpd_freq;
115         int hpd_clk_cnt;
116
117         /* clks that need to be on for screen pwr (ie pixel clk): */
118         const char **pwr_clk_names;
119         int pwr_clk_cnt;
120
121         /* gpio's: */
122         struct hdmi_gpio_data gpios[HDMI_MAX_NUM_GPIO];
123 };
124
125 void hdmi_set_mode(struct hdmi *hdmi, bool power_on);
126
127 static inline void hdmi_write(struct hdmi *hdmi, u32 reg, u32 data)
128 {
129         msm_writel(data, hdmi->mmio + reg);
130 }
131
132 static inline u32 hdmi_read(struct hdmi *hdmi, u32 reg)
133 {
134         return msm_readl(hdmi->mmio + reg);
135 }
136
137 static inline u32 hdmi_qfprom_read(struct hdmi *hdmi, u32 reg)
138 {
139         return msm_readl(hdmi->qfprom_mmio + reg);
140 }
141
142 /*
143  * hdmi phy:
144  */
145
146 enum hdmi_phy_type {
147         MSM_HDMI_PHY_8x60,
148         MSM_HDMI_PHY_8960,
149         MSM_HDMI_PHY_8x74,
150         MSM_HDMI_PHY_MAX,
151 };
152
153 struct hdmi_phy_cfg {
154         enum hdmi_phy_type type;
155         void (*powerup)(struct hdmi_phy *phy, unsigned long int pixclock);
156         void (*powerdown)(struct hdmi_phy *phy);
157         const char * const *reg_names;
158         int num_regs;
159         const char * const *clk_names;
160         int num_clks;
161 };
162
163 extern const struct hdmi_phy_cfg hdmi_phy_8x60_cfg;
164 extern const struct hdmi_phy_cfg hdmi_phy_8960_cfg;
165 extern const struct hdmi_phy_cfg hdmi_phy_8x74_cfg;
166
167 struct hdmi_phy {
168         struct platform_device *pdev;
169         void __iomem *mmio;
170         struct hdmi_phy_cfg *cfg;
171         const struct hdmi_phy_funcs *funcs;
172         struct regulator **regs;
173         struct clk **clks;
174 };
175
176 static inline void hdmi_phy_write(struct hdmi_phy *phy, u32 reg, u32 data)
177 {
178         msm_writel(data, phy->mmio + reg);
179 }
180
181 static inline u32 hdmi_phy_read(struct hdmi_phy *phy, u32 reg)
182 {
183         return msm_readl(phy->mmio + reg);
184 }
185
186 int hdmi_phy_resource_enable(struct hdmi_phy *phy);
187 void hdmi_phy_resource_disable(struct hdmi_phy *phy);
188 void hdmi_phy_powerup(struct hdmi_phy *phy, unsigned long int pixclock);
189 void hdmi_phy_powerdown(struct hdmi_phy *phy);
190 void __init hdmi_phy_driver_register(void);
191 void __exit hdmi_phy_driver_unregister(void);
192
193 #ifdef CONFIG_COMMON_CLK
194 int hdmi_pll_8960_init(struct platform_device *pdev);
195 #else
196 int hdmi_pll_8960_init(struct platform_device *pdev);
197 {
198         return -ENODEV;
199 }
200 #endif
201
202 /*
203  * audio:
204  */
205
206 int hdmi_audio_update(struct hdmi *hdmi);
207 int hdmi_audio_info_setup(struct hdmi *hdmi, bool enabled,
208         uint32_t num_of_channels, uint32_t channel_allocation,
209         uint32_t level_shift, bool down_mix);
210 void hdmi_audio_set_sample_rate(struct hdmi *hdmi, int rate);
211
212
213 /*
214  * hdmi bridge:
215  */
216
217 struct drm_bridge *hdmi_bridge_init(struct hdmi *hdmi);
218 void hdmi_bridge_destroy(struct drm_bridge *bridge);
219
220 /*
221  * hdmi connector:
222  */
223
224 void hdmi_connector_irq(struct drm_connector *connector);
225 struct drm_connector *hdmi_connector_init(struct hdmi *hdmi);
226
227 /*
228  * i2c adapter for ddc:
229  */
230
231 void hdmi_i2c_irq(struct i2c_adapter *i2c);
232 void hdmi_i2c_destroy(struct i2c_adapter *i2c);
233 struct i2c_adapter *hdmi_i2c_init(struct hdmi *hdmi);
234
235 /*
236  * hdcp
237  */
238 struct hdmi_hdcp_ctrl *hdmi_hdcp_init(struct hdmi *hdmi);
239 void hdmi_hdcp_destroy(struct hdmi *hdmi);
240 void hdmi_hdcp_on(struct hdmi_hdcp_ctrl *hdcp_ctrl);
241 void hdmi_hdcp_off(struct hdmi_hdcp_ctrl *hdcp_ctrl);
242 void hdmi_hdcp_irq(struct hdmi_hdcp_ctrl *hdcp_ctrl);
243
244 #endif /* __HDMI_CONNECTOR_H__ */